Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save abracu/d8653ef32534316497efbe63c807fdfe to your computer and use it in GitHub Desktop.
Save abracu/d8653ef32534316497efbe63c807fdfe 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=undefined&optimize=undefined&runs=undefined&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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: balance query for the zero address");
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: owner query for nonexistent token");
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) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
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 overriden 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 owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
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: transfer caller is not 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: transfer caller is not 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) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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 a {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 a {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 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 {
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 v4.4.1 (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`, 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 be 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 Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @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 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);
/**
* @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;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 `IERC721.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.5.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
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/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 v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @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);
}
}
// SPDX-License-Identifier: MIT
// Version
pragma solidity ^0.8.4;
// Importar un Smart Contract desde Openzeppelin
import "@openzeppelin/contracts@4.5.0/token/ERC721/ERC721.sol";
// Declaracion del Smart Contracts
contract FirstContract is ERC721 {
// Diraccion de la persona que despliega el contrato
address owner;
/*
Almacenamos en la variable "owner" el nombre de quien despliega el contrato
*/
constructor(string memory _name, string memory _symbol) ERC721(_name,_symbol ){
owner = msg.sender;
}
}
// SPDX-License-Identifier: MIT
// Version
pragma solidity ^0.8.4;
// Declaracion del Smart Contracts
contract SecondContract{
// Valores enteros sin signo (uint)
uint256 a;
uint8 public b = 3;
// Valores enteros con signo (uint)
int256 c;
int8 public d = -32;
int e = 65;
// Variables string
string str;
string public str_public = "Esto es publico";
string private str_private = "Esto es privado";
// Variable booleana
bool boolean;
bool public boolean_true = true;
bool public boolean_false = false;
// Variable bytes
bytes32 first_bytes;
bytes4 second_bytes;
bytes1 byte_1;
// Algoritmo de hash
bytes32 public hashing_keccak256 = keccak256(abi.encodePacked("Hola", "Alfred"));
bytes32 public hashing_sha256 = sha256(abi.encodePacked("Hola", "Alfred"));
bytes32 public hashing_ripemd160 = ripemd160(abi.encodePacked("Hola", "Alfred"));
// Variable address
address my_address;
address public address1 = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2;
address public address2 = msg.sender;
// Variable de enumeracion
enum options {ON, OFF}
options state;
options constant defaultChoice = options.OFF;
function turnOn() public {
state = options.ON;
}
function turnOff() public {
state = options.OFF;
}
function displayState() public view returns(options){
return state;
}
}
{
"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": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3266:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "102:259:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "112:75:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "179:6:10"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "137:41:10"
},
"nodeType": "YulFunctionCall",
"src": "137:49:10"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "121:15:10"
},
"nodeType": "YulFunctionCall",
"src": "121:66:10"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "112:5:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "203:5:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "210:6:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "196:6:10"
},
"nodeType": "YulFunctionCall",
"src": "196:21:10"
},
"nodeType": "YulExpressionStatement",
"src": "196:21:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "226:27:10",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "241:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "248:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "237:3:10"
},
"nodeType": "YulFunctionCall",
"src": "237:16:10"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "230:3:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "291:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "300:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "303:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "293:6:10"
},
"nodeType": "YulFunctionCall",
"src": "293:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "293:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "272:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "277:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "268:3:10"
},
"nodeType": "YulFunctionCall",
"src": "268:16:10"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "286:3:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "265:2:10"
},
"nodeType": "YulFunctionCall",
"src": "265:25:10"
},
"nodeType": "YulIf",
"src": "262:2:10"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "338:3:10"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "343:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "348:6:10"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "316:21:10"
},
"nodeType": "YulFunctionCall",
"src": "316:39:10"
},
"nodeType": "YulExpressionStatement",
"src": "316:39:10"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "75:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "80:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "88:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "96:5:10",
"type": ""
}
],
"src": "7:354:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "454:215:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "503:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "512:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "515:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "505:6:10"
},
"nodeType": "YulFunctionCall",
"src": "505:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "505:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "482:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "490:4:10",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "478:3:10"
},
"nodeType": "YulFunctionCall",
"src": "478:17:10"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "497:3:10"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "474:3:10"
},
"nodeType": "YulFunctionCall",
"src": "474:27:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "467:6:10"
},
"nodeType": "YulFunctionCall",
"src": "467:35:10"
},
"nodeType": "YulIf",
"src": "464:2:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "528:27:10",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "548:6:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "542:5:10"
},
"nodeType": "YulFunctionCall",
"src": "542:13:10"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "532:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "564:99:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "636:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "644:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "632:3:10"
},
"nodeType": "YulFunctionCall",
"src": "632:17:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "651:6:10"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "659:3:10"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "573:58:10"
},
"nodeType": "YulFunctionCall",
"src": "573:90:10"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "564:5:10"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "432:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "440:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "448:5:10",
"type": ""
}
],
"src": "381:288:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "789:538:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "835:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "844:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "847:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "837:6:10"
},
"nodeType": "YulFunctionCall",
"src": "837:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "837:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "810:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "819:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "806:3:10"
},
"nodeType": "YulFunctionCall",
"src": "806:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "831:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "802:3:10"
},
"nodeType": "YulFunctionCall",
"src": "802:32:10"
},
"nodeType": "YulIf",
"src": "799:2:10"
},
{
"nodeType": "YulBlock",
"src": "861:224:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "876:38:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "900:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "911:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "896:3:10"
},
"nodeType": "YulFunctionCall",
"src": "896:17:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "890:5:10"
},
"nodeType": "YulFunctionCall",
"src": "890:24:10"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "880:6:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "961:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "970:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "973:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "963:6:10"
},
"nodeType": "YulFunctionCall",
"src": "963:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "963:12:10"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "933:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "941:18:10",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "930:2:10"
},
"nodeType": "YulFunctionCall",
"src": "930:30:10"
},
"nodeType": "YulIf",
"src": "927:2:10"
},
{
"nodeType": "YulAssignment",
"src": "991:84:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1047:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1058:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1043:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1043:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1067:7:10"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1001:41:10"
},
"nodeType": "YulFunctionCall",
"src": "1001:74:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "991:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1095:225:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1110:39:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1134:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1145:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1130:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1130:18:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1124:5:10"
},
"nodeType": "YulFunctionCall",
"src": "1124:25:10"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1114:6:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1196:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1205:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1208:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1198:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1198:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "1198:12:10"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1168:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1176:18:10",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1165:2:10"
},
"nodeType": "YulFunctionCall",
"src": "1165:30:10"
},
"nodeType": "YulIf",
"src": "1162:2:10"
},
{
"nodeType": "YulAssignment",
"src": "1226:84:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1282:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1293:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1278:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1278:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1302:7:10"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1236:41:10"
},
"nodeType": "YulFunctionCall",
"src": "1236:74:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1226:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "751:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "762:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "774:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "782:6:10",
"type": ""
}
],
"src": "675:652:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1374:88:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1384:30:10",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1394:18:10"
},
"nodeType": "YulFunctionCall",
"src": "1394:20:10"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1384:6:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1443:6:10"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1451:4:10"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1423:19:10"
},
"nodeType": "YulFunctionCall",
"src": "1423:33:10"
},
"nodeType": "YulExpressionStatement",
"src": "1423:33:10"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:10",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1367:6:10",
"type": ""
}
],
"src": "1333:129:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1508:35:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1518:19:10",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1534:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1528:5:10"
},
"nodeType": "YulFunctionCall",
"src": "1528:9:10"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1518:6:10"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1501:6:10",
"type": ""
}
],
"src": "1468:75:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1616:241:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1721:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1723:16:10"
},
"nodeType": "YulFunctionCall",
"src": "1723:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "1723:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1693:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1701:18:10",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1690:2:10"
},
"nodeType": "YulFunctionCall",
"src": "1690:30:10"
},
"nodeType": "YulIf",
"src": "1687:2:10"
},
{
"nodeType": "YulAssignment",
"src": "1753:37:10",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1783:6:10"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1761:21:10"
},
"nodeType": "YulFunctionCall",
"src": "1761:29:10"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1753:4:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1827:23:10",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1839:4:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1845:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1835:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1835:15:10"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1827:4:10"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1600:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1611:4:10",
"type": ""
}
],
"src": "1549:308:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1912:258:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1922:10:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1931:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1926:1:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1991:63:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2016:3:10"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2021:1:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2012:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2012:11:10"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2035:3:10"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2040:1:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2031:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2031:11:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2025:5:10"
},
"nodeType": "YulFunctionCall",
"src": "2025:18:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2005:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2005:39:10"
},
"nodeType": "YulExpressionStatement",
"src": "2005:39:10"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1952:1:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1955:6:10"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1949:2:10"
},
"nodeType": "YulFunctionCall",
"src": "1949:13:10"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1963:19:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1965:15:10",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1974:1:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1977:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1970:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1970:10:10"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1965:1:10"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1945:3:10",
"statements": []
},
"src": "1941:113:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2088:76:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2138:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2143:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2134:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2134:16:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2152:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2127:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2127:27:10"
},
"nodeType": "YulExpressionStatement",
"src": "2127:27:10"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2069:1:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2072:6:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2066:2:10"
},
"nodeType": "YulFunctionCall",
"src": "2066:13:10"
},
"nodeType": "YulIf",
"src": "2063:2:10"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1894:3:10",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1899:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1904:6:10",
"type": ""
}
],
"src": "1863:307:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2227:269:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2237:22:10",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2251:4:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2257:1:10",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2247:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2247:12:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2237:6:10"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2268:38:10",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2298:4:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2304:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2294:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2294:12:10"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "2272:18:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2345:51:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2359:27:10",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2373:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2381:4:10",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2369:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2369:17:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2359:6:10"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2325:18:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2318:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2318:26:10"
},
"nodeType": "YulIf",
"src": "2315:2:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2448:42:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "2462:16:10"
},
"nodeType": "YulFunctionCall",
"src": "2462:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "2462:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2412:18:10"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2435:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2443:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2432:2:10"
},
"nodeType": "YulFunctionCall",
"src": "2432:14:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2409:2:10"
},
"nodeType": "YulFunctionCall",
"src": "2409:38:10"
},
"nodeType": "YulIf",
"src": "2406:2:10"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2211:4:10",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2220:6:10",
"type": ""
}
],
"src": "2176:320:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2545:238:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2555:58:10",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2577:6:10"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2607:4:10"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2585:21:10"
},
"nodeType": "YulFunctionCall",
"src": "2585:27:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2573:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2573:40:10"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "2559:10:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2724:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2726:16:10"
},
"nodeType": "YulFunctionCall",
"src": "2726:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "2726:18:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2667:10:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2679:18:10",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2664:2:10"
},
"nodeType": "YulFunctionCall",
"src": "2664:34:10"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2703:10:10"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2715:6:10"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2700:2:10"
},
"nodeType": "YulFunctionCall",
"src": "2700:22:10"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "2661:2:10"
},
"nodeType": "YulFunctionCall",
"src": "2661:62:10"
},
"nodeType": "YulIf",
"src": "2658:2:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2762:2:10",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2766:10:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2755:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2755:22:10"
},
"nodeType": "YulExpressionStatement",
"src": "2755:22:10"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2531:6:10",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2539:4:10",
"type": ""
}
],
"src": "2502:281:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2817:152:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2834:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2837:77:10",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2827:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2827:88:10"
},
"nodeType": "YulExpressionStatement",
"src": "2827:88:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2931:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2934:4:10",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2924:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2924:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "2924:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2955:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2958:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2948:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2948:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "2948:15:10"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "2789:180:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3003:152:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3020:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3023:77:10",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3013:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3013:88:10"
},
"nodeType": "YulExpressionStatement",
"src": "3013:88:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3117:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3120:4:10",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3110:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3110:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "3110:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3141:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3144:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3134:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3134:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "3134:15:10"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "2975:180:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3209:54:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3219:38:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3237:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3244:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3233:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3233:14:10"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3253:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3249:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3249:7:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3229:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3229:28:10"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "3219:6:10"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3192:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "3202:6:10",
"type": ""
}
],
"src": "3161:102:10"
}
]
},
"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(0, 0) }\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(0, 0) }\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(0, 0) }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\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(0, 0) }\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 round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n}\n",
"id": 10,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b5060405162002792380380620027928339818101604052810190620000379190620001d8565b8181816000908051906020019062000051929190620000b6565b5080600190805190602001906200006a929190620000b6565b50505033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620003bb565b828054620000c490620002e0565b90600052602060002090601f016020900481019282620000e8576000855562000134565b82601f106200010357805160ff191683800117855562000134565b8280016001018555821562000134579182015b828111156200013357825182559160200191906001019062000116565b5b50905062000143919062000147565b5090565b5b808211156200016257600081600090555060010162000148565b5090565b60006200017d620001778462000274565b6200024b565b9050828152602081018484840111156200019657600080fd5b620001a3848285620002aa565b509392505050565b600082601f830112620001bd57600080fd5b8151620001cf84826020860162000166565b91505092915050565b60008060408385031215620001ec57600080fd5b600083015167ffffffffffffffff8111156200020757600080fd5b6200021585828601620001ab565b925050602083015167ffffffffffffffff8111156200023357600080fd5b6200024185828601620001ab565b9150509250929050565b6000620002576200026a565b905062000265828262000316565b919050565b6000604051905090565b600067ffffffffffffffff8211156200029257620002916200037b565b5b6200029d82620003aa565b9050602081019050919050565b60005b83811015620002ca578082015181840152602081019050620002ad565b83811115620002da576000848401525b50505050565b60006002820490506001821680620002f957607f821691505b6020821081141562000310576200030f6200034c565b5b50919050565b6200032182620003aa565b810181811067ffffffffffffffff821117156200034357620003426200037b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6123c780620003cb6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb46514610224578063b88d4fde14610240578063c87b56dd1461025c578063e985e9c51461028c576100cf565b80636352211e146101a657806370a08231146101d657806395d89b4114610206576100cf565b806301ffc9a7146100d457806306fdde0314610104578063081812fc14610122578063095ea7b31461015257806323b872dd1461016e57806342842e0e1461018a575b600080fd5b6100ee60048036038101906100e991906116a1565b6102bc565b6040516100fb9190611a1b565b60405180910390f35b61010c61039e565b6040516101199190611a36565b60405180910390f35b61013c600480360381019061013791906116f3565b610430565b60405161014991906119b4565b60405180910390f35b61016c60048036038101906101679190611665565b6104b5565b005b6101886004803603810190610183919061155f565b6105cd565b005b6101a4600480360381019061019f919061155f565b61062d565b005b6101c060048036038101906101bb91906116f3565b61064d565b6040516101cd91906119b4565b60405180910390f35b6101f060048036038101906101eb91906114fa565b6106ff565b6040516101fd9190611bd8565b60405180910390f35b61020e6107b7565b60405161021b9190611a36565b60405180910390f35b61023e60048036038101906102399190611629565b610849565b005b61025a600480360381019061025591906115ae565b61085f565b005b610276600480360381019061027191906116f3565b6108c1565b6040516102839190611a36565b60405180910390f35b6102a660048036038101906102a19190611523565b610968565b6040516102b39190611a1b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103975750610396826109fc565b5b9050919050565b6060600080546103ad90611dfd565b80601f01602080910402602001604051908101604052809291908181526020018280546103d990611dfd565b80156104265780601f106103fb57610100808354040283529160200191610426565b820191906000526020600020905b81548152906001019060200180831161040957829003601f168201915b5050505050905090565b600061043b82610a66565b61047a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047190611b58565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104c08261064d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052890611b98565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610550610ad2565b73ffffffffffffffffffffffffffffffffffffffff16148061057f575061057e81610579610ad2565b610968565b5b6105be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b590611af8565b60405180910390fd5b6105c88383610ada565b505050565b6105de6105d8610ad2565b82610b93565b61061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611bb8565b60405180910390fd5b610628838383610c71565b505050565b6106488383836040518060200160405280600081525061085f565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed90611b38565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076790611b18565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546107c690611dfd565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290611dfd565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b61085b610854610ad2565b8383610ed8565b5050565b61087061086a610ad2565b83610b93565b6108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a690611bb8565b60405180910390fd5b6108bb84848484611045565b50505050565b60606108cc82610a66565b61090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290611b78565b60405180910390fd5b60006109156110a1565b905060008151116109355760405180602001604052806000815250610960565b8061093f846110b8565b604051602001610950929190611990565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610b4d8361064d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610b9e82610a66565b610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490611ad8565b60405180910390fd5b6000610be88361064d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610c5757508373ffffffffffffffffffffffffffffffffffffffff16610c3f84610430565b73ffffffffffffffffffffffffffffffffffffffff16145b80610c685750610c678185610968565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610c918261064d565b73ffffffffffffffffffffffffffffffffffffffff1614610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90611a78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e90611a98565b60405180910390fd5b610d62838383611265565b610d6d600082610ada565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dbd9190611d13565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e149190611c8c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ed383838361126a565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90611ab8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110389190611a1b565b60405180910390a3505050565b611050848484610c71565b61105c8484848461126f565b61109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290611a58565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606000821415611100576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611260565b600082905060005b6000821461113257808061111b90611e60565b915050600a8261112b9190611ce2565b9150611108565b60008167ffffffffffffffff811115611174577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156111a65781602001600182028036833780820191505090505b5090505b60008514611259576001826111bf9190611d13565b9150600a856111ce9190611ea9565b60306111da9190611c8c565b60f81b818381518110611216577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856112529190611ce2565b94506111aa565b8093505050505b919050565b505050565b505050565b60006112908473ffffffffffffffffffffffffffffffffffffffff16611406565b156113f9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026112b9610ad2565b8786866040518563ffffffff1660e01b81526004016112db94939291906119cf565b602060405180830381600087803b1580156112f557600080fd5b505af192505050801561132657506040513d601f19601f8201168201806040525081019061132391906116ca565b60015b6113a9573d8060008114611356576040519150601f19603f3d011682016040523d82523d6000602084013e61135b565b606091505b506000815114156113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890611a58565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506113fe565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600061143c61143784611c18565b611bf3565b90508281526020810184848401111561145457600080fd5b61145f848285611dbb565b509392505050565b60008135905061147681612335565b92915050565b60008135905061148b8161234c565b92915050565b6000813590506114a081612363565b92915050565b6000815190506114b581612363565b92915050565b600082601f8301126114cc57600080fd5b81356114dc848260208601611429565b91505092915050565b6000813590506114f48161237a565b92915050565b60006020828403121561150c57600080fd5b600061151a84828501611467565b91505092915050565b6000806040838503121561153657600080fd5b600061154485828601611467565b925050602061155585828601611467565b9150509250929050565b60008060006060848603121561157457600080fd5b600061158286828701611467565b935050602061159386828701611467565b92505060406115a4868287016114e5565b9150509250925092565b600080600080608085870312156115c457600080fd5b60006115d287828801611467565b94505060206115e387828801611467565b93505060406115f4878288016114e5565b925050606085013567ffffffffffffffff81111561161157600080fd5b61161d878288016114bb565b91505092959194509250565b6000806040838503121561163c57600080fd5b600061164a85828601611467565b925050602061165b8582860161147c565b9150509250929050565b6000806040838503121561167857600080fd5b600061168685828601611467565b9250506020611697858286016114e5565b9150509250929050565b6000602082840312156116b357600080fd5b60006116c184828501611491565b91505092915050565b6000602082840312156116dc57600080fd5b60006116ea848285016114a6565b91505092915050565b60006020828403121561170557600080fd5b6000611713848285016114e5565b91505092915050565b61172581611d47565b82525050565b61173481611d59565b82525050565b600061174582611c49565b61174f8185611c5f565b935061175f818560208601611dca565b61176881611f96565b840191505092915050565b600061177e82611c54565b6117888185611c70565b9350611798818560208601611dca565b6117a181611f96565b840191505092915050565b60006117b782611c54565b6117c18185611c81565b93506117d1818560208601611dca565b80840191505092915050565b60006117ea603283611c70565b91506117f582611fa7565b604082019050919050565b600061180d602583611c70565b915061181882611ff6565b604082019050919050565b6000611830602483611c70565b915061183b82612045565b604082019050919050565b6000611853601983611c70565b915061185e82612094565b602082019050919050565b6000611876602c83611c70565b9150611881826120bd565b604082019050919050565b6000611899603883611c70565b91506118a48261210c565b604082019050919050565b60006118bc602a83611c70565b91506118c78261215b565b604082019050919050565b60006118df602983611c70565b91506118ea826121aa565b604082019050919050565b6000611902602c83611c70565b915061190d826121f9565b604082019050919050565b6000611925602f83611c70565b915061193082612248565b604082019050919050565b6000611948602183611c70565b915061195382612297565b604082019050919050565b600061196b603183611c70565b9150611976826122e6565b604082019050919050565b61198a81611db1565b82525050565b600061199c82856117ac565b91506119a882846117ac565b91508190509392505050565b60006020820190506119c9600083018461171c565b92915050565b60006080820190506119e4600083018761171c565b6119f1602083018661171c565b6119fe6040830185611981565b8181036060830152611a10818461173a565b905095945050505050565b6000602082019050611a30600083018461172b565b92915050565b60006020820190508181036000830152611a508184611773565b905092915050565b60006020820190508181036000830152611a71816117dd565b9050919050565b60006020820190508181036000830152611a9181611800565b9050919050565b60006020820190508181036000830152611ab181611823565b9050919050565b60006020820190508181036000830152611ad181611846565b9050919050565b60006020820190508181036000830152611af181611869565b9050919050565b60006020820190508181036000830152611b118161188c565b9050919050565b60006020820190508181036000830152611b31816118af565b9050919050565b60006020820190508181036000830152611b51816118d2565b9050919050565b60006020820190508181036000830152611b71816118f5565b9050919050565b60006020820190508181036000830152611b9181611918565b9050919050565b60006020820190508181036000830152611bb18161193b565b9050919050565b60006020820190508181036000830152611bd18161195e565b9050919050565b6000602082019050611bed6000830184611981565b92915050565b6000611bfd611c0e565b9050611c098282611e2f565b919050565b6000604051905090565b600067ffffffffffffffff821115611c3357611c32611f67565b5b611c3c82611f96565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000611c9782611db1565b9150611ca283611db1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611cd757611cd6611eda565b5b828201905092915050565b6000611ced82611db1565b9150611cf883611db1565b925082611d0857611d07611f09565b5b828204905092915050565b6000611d1e82611db1565b9150611d2983611db1565b925082821015611d3c57611d3b611eda565b5b828203905092915050565b6000611d5282611d91565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015611de8578082015181840152602081019050611dcd565b83811115611df7576000848401525b50505050565b60006002820490506001821680611e1557607f821691505b60208210811415611e2957611e28611f38565b5b50919050565b611e3882611f96565b810181811067ffffffffffffffff82111715611e5757611e56611f67565b5b80604052505050565b6000611e6b82611db1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611e9e57611e9d611eda565b5b600182019050919050565b6000611eb482611db1565b9150611ebf83611db1565b925082611ecf57611ece611f09565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61233e81611d47565b811461234957600080fd5b50565b61235581611d59565b811461236057600080fd5b50565b61236c81611d65565b811461237757600080fd5b50565b61238381611db1565b811461238e57600080fd5b5056fea2646970667358221220dd69c21d94e0f07225d2e2abfa63cac55a9a782016f5eb9f12b2c2b3c6a6cdfe64736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2792 CODESIZE SUB DUP1 PUSH3 0x2792 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x1D8 JUMP JUMPDEST DUP2 DUP2 DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x51 SWAP3 SWAP2 SWAP1 PUSH3 0xB6 JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x6A SWAP3 SWAP2 SWAP1 PUSH3 0xB6 JUMP JUMPDEST POP POP POP CALLER 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 POP POP PUSH3 0x3BB JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0xC4 SWAP1 PUSH3 0x2E0 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xE8 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x134 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x103 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x134 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x134 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x133 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x116 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x143 SWAP2 SWAP1 PUSH3 0x147 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x162 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x148 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x17D PUSH3 0x177 DUP5 PUSH3 0x274 JUMP JUMPDEST PUSH3 0x24B JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x196 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x1A3 DUP5 DUP3 DUP6 PUSH3 0x2AA JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x1BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH3 0x1CF DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x166 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x207 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x215 DUP6 DUP3 DUP7 ADD PUSH3 0x1AB JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x233 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x241 DUP6 DUP3 DUP7 ADD PUSH3 0x1AB JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x257 PUSH3 0x26A JUMP JUMPDEST SWAP1 POP PUSH3 0x265 DUP3 DUP3 PUSH3 0x316 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 0x292 JUMPI PUSH3 0x291 PUSH3 0x37B JUMP JUMPDEST JUMPDEST PUSH3 0x29D DUP3 PUSH3 0x3AA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x2CA JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x2AD JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x2DA 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 0x2F9 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x310 JUMPI PUSH3 0x30F PUSH3 0x34C JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x321 DUP3 PUSH3 0x3AA JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x343 JUMPI PUSH3 0x342 PUSH3 0x37B 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 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x23C7 DUP1 PUSH3 0x3CB 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 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x224 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x240 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x25C JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x28C JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1A6 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x206 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x104 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x152 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x16E JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x18A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE9 SWAP2 SWAP1 PUSH2 0x16A1 JUMP JUMPDEST PUSH2 0x2BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFB SWAP2 SWAP1 PUSH2 0x1A1B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x10C PUSH2 0x39E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x1A36 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x16F3 JUMP JUMPDEST PUSH2 0x430 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x149 SWAP2 SWAP1 PUSH2 0x19B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x167 SWAP2 SWAP1 PUSH2 0x1665 JUMP JUMPDEST PUSH2 0x4B5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x188 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x183 SWAP2 SWAP1 PUSH2 0x155F JUMP JUMPDEST PUSH2 0x5CD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19F SWAP2 SWAP1 PUSH2 0x155F JUMP JUMPDEST PUSH2 0x62D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BB SWAP2 SWAP1 PUSH2 0x16F3 JUMP JUMPDEST PUSH2 0x64D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CD SWAP2 SWAP1 PUSH2 0x19B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0x14FA JUMP JUMPDEST PUSH2 0x6FF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FD SWAP2 SWAP1 PUSH2 0x1BD8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20E PUSH2 0x7B7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21B SWAP2 SWAP1 PUSH2 0x1A36 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x239 SWAP2 SWAP1 PUSH2 0x1629 JUMP JUMPDEST PUSH2 0x849 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x25A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x15AE JUMP JUMPDEST PUSH2 0x85F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x276 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x271 SWAP2 SWAP1 PUSH2 0x16F3 JUMP JUMPDEST PUSH2 0x8C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x283 SWAP2 SWAP1 PUSH2 0x1A36 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A1 SWAP2 SWAP1 PUSH2 0x1523 JUMP JUMPDEST PUSH2 0x968 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B3 SWAP2 SWAP1 PUSH2 0x1A1B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x387 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x397 JUMPI POP PUSH2 0x396 DUP3 PUSH2 0x9FC JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x3AD SWAP1 PUSH2 0x1DFD 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 0x3D9 SWAP1 PUSH2 0x1DFD JUMP JUMPDEST DUP1 ISZERO PUSH2 0x426 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3FB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x426 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 0x409 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43B DUP3 PUSH2 0xA66 JUMP JUMPDEST PUSH2 0x47A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x471 SWAP1 PUSH2 0x1B58 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT 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 0x4C0 DUP3 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x531 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x528 SWAP1 PUSH2 0x1B98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x550 PUSH2 0xAD2 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x57F JUMPI POP PUSH2 0x57E DUP2 PUSH2 0x579 PUSH2 0xAD2 JUMP JUMPDEST PUSH2 0x968 JUMP JUMPDEST JUMPDEST PUSH2 0x5BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5B5 SWAP1 PUSH2 0x1AF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5C8 DUP4 DUP4 PUSH2 0xADA JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x5DE PUSH2 0x5D8 PUSH2 0xAD2 JUMP JUMPDEST DUP3 PUSH2 0xB93 JUMP JUMPDEST PUSH2 0x61D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x614 SWAP1 PUSH2 0x1BB8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x628 DUP4 DUP4 DUP4 PUSH2 0xC71 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x648 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x85F 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 0x6F6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6ED SWAP1 PUSH2 0x1B38 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 0x770 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x767 SWAP1 PUSH2 0x1B18 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 PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x7C6 SWAP1 PUSH2 0x1DFD 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 0x7F2 SWAP1 PUSH2 0x1DFD JUMP JUMPDEST DUP1 ISZERO PUSH2 0x83F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x814 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x83F 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 0x822 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x85B PUSH2 0x854 PUSH2 0xAD2 JUMP JUMPDEST DUP4 DUP4 PUSH2 0xED8 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x870 PUSH2 0x86A PUSH2 0xAD2 JUMP JUMPDEST DUP4 PUSH2 0xB93 JUMP JUMPDEST PUSH2 0x8AF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8A6 SWAP1 PUSH2 0x1BB8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8BB DUP5 DUP5 DUP5 DUP5 PUSH2 0x1045 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x8CC DUP3 PUSH2 0xA66 JUMP JUMPDEST PUSH2 0x90B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x902 SWAP1 PUSH2 0x1B78 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x915 PUSH2 0x10A1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x935 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x960 JUMP JUMPDEST DUP1 PUSH2 0x93F DUP5 PUSH2 0x10B8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x950 SWAP3 SWAP2 SWAP1 PUSH2 0x1990 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 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 PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 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 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 0xB4D DUP4 PUSH2 0x64D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB9E DUP3 PUSH2 0xA66 JUMP JUMPDEST PUSH2 0xBDD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBD4 SWAP1 PUSH2 0x1AD8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xBE8 DUP4 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xC57 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC3F DUP5 PUSH2 0x430 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0xC68 JUMPI POP PUSH2 0xC67 DUP2 DUP6 PUSH2 0x968 JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC91 DUP3 PUSH2 0x64D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xCE7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCDE SWAP1 PUSH2 0x1A78 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD57 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD4E SWAP1 PUSH2 0x1A98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD62 DUP4 DUP4 DUP4 PUSH2 0x1265 JUMP JUMPDEST PUSH2 0xD6D PUSH1 0x0 DUP3 PUSH2 0xADA 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 0xDBD SWAP2 SWAP1 PUSH2 0x1D13 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 0xE14 SWAP2 SWAP1 PUSH2 0x1C8C 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 0xED3 DUP4 DUP4 DUP4 PUSH2 0x126A JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF47 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF3E SWAP1 PUSH2 0x1AB8 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 0x1038 SWAP2 SWAP1 PUSH2 0x1A1B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1050 DUP5 DUP5 DUP5 PUSH2 0xC71 JUMP JUMPDEST PUSH2 0x105C DUP5 DUP5 DUP5 DUP5 PUSH2 0x126F JUMP JUMPDEST PUSH2 0x109B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1092 SWAP1 PUSH2 0x1A58 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x1100 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1260 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1132 JUMPI DUP1 DUP1 PUSH2 0x111B SWAP1 PUSH2 0x1E60 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x112B SWAP2 SWAP1 PUSH2 0x1CE2 JUMP JUMPDEST SWAP2 POP PUSH2 0x1108 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1174 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x11A6 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x1259 JUMPI PUSH1 0x1 DUP3 PUSH2 0x11BF SWAP2 SWAP1 PUSH2 0x1D13 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x11CE SWAP2 SWAP1 PUSH2 0x1EA9 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x11DA SWAP2 SWAP1 PUSH2 0x1C8C JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1216 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1252 SWAP2 SWAP1 PUSH2 0x1CE2 JUMP JUMPDEST SWAP5 POP PUSH2 0x11AA JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1290 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1406 JUMP JUMPDEST ISZERO PUSH2 0x13F9 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x12B9 PUSH2 0xAD2 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12DB SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x12F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1326 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 0x1323 SWAP2 SWAP1 PUSH2 0x16CA JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x13A9 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1356 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 0x135B JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x13A1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1398 SWAP1 PUSH2 0x1A58 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 0x13FE JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x143C PUSH2 0x1437 DUP5 PUSH2 0x1C18 JUMP JUMPDEST PUSH2 0x1BF3 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1454 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x145F DUP5 DUP3 DUP6 PUSH2 0x1DBB JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1476 DUP2 PUSH2 0x2335 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x148B DUP2 PUSH2 0x234C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14A0 DUP2 PUSH2 0x2363 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x14B5 DUP2 PUSH2 0x2363 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x14CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x14DC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1429 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14F4 DUP2 PUSH2 0x237A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x150C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x151A DUP5 DUP3 DUP6 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1536 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1544 DUP6 DUP3 DUP7 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1555 DUP6 DUP3 DUP7 ADD PUSH2 0x1467 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 0x1574 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1582 DUP7 DUP3 DUP8 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1593 DUP7 DUP3 DUP8 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x15A4 DUP7 DUP3 DUP8 ADD PUSH2 0x14E5 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 0x15C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x15D2 DUP8 DUP3 DUP9 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x15E3 DUP8 DUP3 DUP9 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x15F4 DUP8 DUP3 DUP9 ADD PUSH2 0x14E5 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1611 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x161D DUP8 DUP3 DUP9 ADD PUSH2 0x14BB 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 0x163C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x164A DUP6 DUP3 DUP7 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x165B DUP6 DUP3 DUP7 ADD PUSH2 0x147C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1678 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1686 DUP6 DUP3 DUP7 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1697 DUP6 DUP3 DUP7 ADD PUSH2 0x14E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x16B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x16C1 DUP5 DUP3 DUP6 ADD PUSH2 0x1491 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x16DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x16EA DUP5 DUP3 DUP6 ADD PUSH2 0x14A6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1705 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1713 DUP5 DUP3 DUP6 ADD PUSH2 0x14E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1725 DUP2 PUSH2 0x1D47 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1734 DUP2 PUSH2 0x1D59 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1745 DUP3 PUSH2 0x1C49 JUMP JUMPDEST PUSH2 0x174F DUP2 DUP6 PUSH2 0x1C5F JUMP JUMPDEST SWAP4 POP PUSH2 0x175F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DCA JUMP JUMPDEST PUSH2 0x1768 DUP2 PUSH2 0x1F96 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x177E DUP3 PUSH2 0x1C54 JUMP JUMPDEST PUSH2 0x1788 DUP2 DUP6 PUSH2 0x1C70 JUMP JUMPDEST SWAP4 POP PUSH2 0x1798 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DCA JUMP JUMPDEST PUSH2 0x17A1 DUP2 PUSH2 0x1F96 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17B7 DUP3 PUSH2 0x1C54 JUMP JUMPDEST PUSH2 0x17C1 DUP2 DUP6 PUSH2 0x1C81 JUMP JUMPDEST SWAP4 POP PUSH2 0x17D1 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DCA JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17EA PUSH1 0x32 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x17F5 DUP3 PUSH2 0x1FA7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x180D PUSH1 0x25 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1818 DUP3 PUSH2 0x1FF6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1830 PUSH1 0x24 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x183B DUP3 PUSH2 0x2045 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1853 PUSH1 0x19 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x185E DUP3 PUSH2 0x2094 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1876 PUSH1 0x2C DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1881 DUP3 PUSH2 0x20BD JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1899 PUSH1 0x38 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x18A4 DUP3 PUSH2 0x210C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18BC PUSH1 0x2A DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x18C7 DUP3 PUSH2 0x215B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18DF PUSH1 0x29 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x18EA DUP3 PUSH2 0x21AA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1902 PUSH1 0x2C DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x190D DUP3 PUSH2 0x21F9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1925 PUSH1 0x2F DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1930 DUP3 PUSH2 0x2248 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1948 PUSH1 0x21 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1953 DUP3 PUSH2 0x2297 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x196B PUSH1 0x31 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1976 DUP3 PUSH2 0x22E6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x198A DUP2 PUSH2 0x1DB1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x199C DUP3 DUP6 PUSH2 0x17AC JUMP JUMPDEST SWAP2 POP PUSH2 0x19A8 DUP3 DUP5 PUSH2 0x17AC JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x19C9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x171C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x19E4 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x171C JUMP JUMPDEST PUSH2 0x19F1 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x171C JUMP JUMPDEST PUSH2 0x19FE PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1981 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1A10 DUP2 DUP5 PUSH2 0x173A JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A30 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x172B 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 0x1A50 DUP2 DUP5 PUSH2 0x1773 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 0x1A71 DUP2 PUSH2 0x17DD 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 0x1A91 DUP2 PUSH2 0x1800 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 0x1AB1 DUP2 PUSH2 0x1823 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 0x1AD1 DUP2 PUSH2 0x1846 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 0x1AF1 DUP2 PUSH2 0x1869 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 0x1B11 DUP2 PUSH2 0x188C 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 0x1B31 DUP2 PUSH2 0x18AF 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 0x1B51 DUP2 PUSH2 0x18D2 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 0x1B71 DUP2 PUSH2 0x18F5 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 0x1B91 DUP2 PUSH2 0x1918 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 0x1BB1 DUP2 PUSH2 0x193B 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 0x1BD1 DUP2 PUSH2 0x195E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1BED PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1981 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BFD PUSH2 0x1C0E JUMP JUMPDEST SWAP1 POP PUSH2 0x1C09 DUP3 DUP3 PUSH2 0x1E2F 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 0x1C33 JUMPI PUSH2 0x1C32 PUSH2 0x1F67 JUMP JUMPDEST JUMPDEST PUSH2 0x1C3C DUP3 PUSH2 0x1F96 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 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C97 DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1CA2 DUP4 PUSH2 0x1DB1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1CD7 JUMPI PUSH2 0x1CD6 PUSH2 0x1EDA JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CED DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1CF8 DUP4 PUSH2 0x1DB1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1D08 JUMPI PUSH2 0x1D07 PUSH2 0x1F09 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D1E DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D29 DUP4 PUSH2 0x1DB1 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1D3C JUMPI PUSH2 0x1D3B PUSH2 0x1EDA JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D52 DUP3 PUSH2 0x1D91 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 0x1DE8 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1DCD JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1DF7 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 0x1E15 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1E29 JUMPI PUSH2 0x1E28 PUSH2 0x1F38 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1E38 DUP3 PUSH2 0x1F96 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1E57 JUMPI PUSH2 0x1E56 PUSH2 0x1F67 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E6B DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1E9E JUMPI PUSH2 0x1E9D PUSH2 0x1EDA JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EB4 DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1EBF DUP4 PUSH2 0x1DB1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1ECF JUMPI PUSH2 0x1ECE PUSH2 0x1F09 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 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 0x12 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 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 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 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 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x233E DUP2 PUSH2 0x1D47 JUMP JUMPDEST DUP2 EQ PUSH2 0x2349 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2355 DUP2 PUSH2 0x1D59 JUMP JUMPDEST DUP2 EQ PUSH2 0x2360 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x236C DUP2 PUSH2 0x1D65 JUMP JUMPDEST DUP2 EQ PUSH2 0x2377 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2383 DUP2 PUSH2 0x1DB1 JUMP JUMPDEST DUP2 EQ PUSH2 0x238E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDD PUSH10 0xC21D94E0F07225D2E2AB STATICCALL PUSH4 0xCAC55A9A PUSH25 0x2016F5EB9F12B2C2B3C6A6CDFE64736F6C6343000804003300 ",
"sourceMap": "218:326:9:-:0;;;429:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;492:5;498:7;1464:5:0;1456;:13;;;;;;;;;;;;:::i;:::-;;1489:7;1479;:17;;;;;;;;;;;;:::i;:::-;;1390:113;;525:10:9::1;517:5;;:18;;;;;;;;;;;;;;;;;;429:113:::0;;218:326;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:354:10:-;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:2;;;303:1;300;293:12;262:2;316:39;348:6;343:3;338;316:39;:::i;:::-;102:259;;;;;;:::o;381:288::-;448:5;497:3;490:4;482:6;478:17;474:27;464:2;;515:1;512;505:12;464:2;548:6;542:13;573:90;659:3;651:6;644:4;636:6;632:17;573:90;:::i;:::-;564:99;;454:215;;;;;:::o;675:652::-;774:6;782;831:2;819:9;810:7;806:23;802:32;799:2;;;847:1;844;837:12;799:2;911:1;900:9;896:17;890:24;941:18;933:6;930:30;927:2;;;973:1;970;963:12;927:2;1001:74;1067:7;1058:6;1047:9;1043:22;1001:74;:::i;:::-;991:84;;861:224;1145:2;1134:9;1130:18;1124:25;1176:18;1168:6;1165:30;1162:2;;;1208:1;1205;1198:12;1162:2;1236:74;1302:7;1293:6;1282:9;1278:22;1236:74;:::i;:::-;1226:84;;1095:225;789:538;;;;;:::o;1333:129::-;1367:6;1394:20;;:::i;:::-;1384:30;;1423:33;1451:4;1443:6;1423:33;:::i;:::-;1374:88;;;:::o;1468:75::-;1501:6;1534:2;1528:9;1518:19;;1508:35;:::o;1549:308::-;1611:4;1701:18;1693:6;1690:30;1687:2;;;1723:18;;:::i;:::-;1687:2;1761:29;1783:6;1761:29;:::i;:::-;1753:37;;1845:4;1839;1835:15;1827:23;;1616:241;;;:::o;1863:307::-;1931:1;1941:113;1955:6;1952:1;1949:13;1941:113;;;2040:1;2035:3;2031:11;2025:18;2021:1;2016:3;2012:11;2005:39;1977:2;1974:1;1970:10;1965:15;;1941:113;;;2072:6;2069:1;2066:13;2063:2;;;2152:1;2143:6;2138:3;2134:16;2127:27;2063:2;1912:258;;;;:::o;2176:320::-;2220:6;2257:1;2251:4;2247:12;2237:22;;2304:1;2298:4;2294:12;2325:18;2315:2;;2381:4;2373:6;2369:17;2359:27;;2315:2;2443;2435:6;2432:14;2412:18;2409:38;2406:2;;;2462:18;;:::i;:::-;2406:2;2227:269;;;;:::o;2502:281::-;2585:27;2607:4;2585:27;:::i;:::-;2577:6;2573:40;2715:6;2703:10;2700:22;2679:18;2667:10;2664:34;2661:62;2658:2;;;2726:18;;:::i;:::-;2658:2;2766:10;2762:2;2755:22;2545:238;;;:::o;2789:180::-;2837:77;2834:1;2827:88;2934:4;2931:1;2924:15;2958:4;2955:1;2948:15;2975:180;3023:77;3020:1;3013:88;3120:4;3117:1;3110:15;3144:4;3141:1;3134:15;3161:102;3202:6;3253:2;3249:7;3244:2;3237:5;3233:14;3229:28;3219:38;;3209:54;;;:::o;218:326:9:-;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:26336:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "90:260:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "100:74:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "166:6:10"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "125:40:10"
},
"nodeType": "YulFunctionCall",
"src": "125:48:10"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "109:15:10"
},
"nodeType": "YulFunctionCall",
"src": "109:65:10"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "100:5:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "190:5:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "197:6:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "183:6:10"
},
"nodeType": "YulFunctionCall",
"src": "183:21:10"
},
"nodeType": "YulExpressionStatement",
"src": "183:21:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "213:27:10",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "228:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "235:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "224:3:10"
},
"nodeType": "YulFunctionCall",
"src": "224:16:10"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "217:3:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "278:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "287:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "290:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "280:6:10"
},
"nodeType": "YulFunctionCall",
"src": "280:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "280:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "259:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "264:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "255:3:10"
},
"nodeType": "YulFunctionCall",
"src": "255:16:10"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "273:3:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "252:2:10"
},
"nodeType": "YulFunctionCall",
"src": "252:25:10"
},
"nodeType": "YulIf",
"src": "249:2:10"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "327:3:10"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "332:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "337:6:10"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "303:23:10"
},
"nodeType": "YulFunctionCall",
"src": "303:41:10"
},
"nodeType": "YulExpressionStatement",
"src": "303:41:10"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "63:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "68:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "76:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "84:5:10",
"type": ""
}
],
"src": "7:343:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "408:87:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "418:29:10",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "440:6:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "427:12:10"
},
"nodeType": "YulFunctionCall",
"src": "427:20:10"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "418:5:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "483:5:10"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "456:26:10"
},
"nodeType": "YulFunctionCall",
"src": "456:33:10"
},
"nodeType": "YulExpressionStatement",
"src": "456:33:10"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "386:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "394:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "402:5:10",
"type": ""
}
],
"src": "356:139:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "550:84:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "560:29:10",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "582:6:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "569:12:10"
},
"nodeType": "YulFunctionCall",
"src": "569:20:10"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "560:5:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "622:5:10"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "598:23:10"
},
"nodeType": "YulFunctionCall",
"src": "598:30:10"
},
"nodeType": "YulExpressionStatement",
"src": "598:30:10"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "528:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "536:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "544:5:10",
"type": ""
}
],
"src": "501:133:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "691:86:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "701:29:10",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "723:6:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "710:12:10"
},
"nodeType": "YulFunctionCall",
"src": "710:20:10"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "701:5:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "765:5:10"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "739:25:10"
},
"nodeType": "YulFunctionCall",
"src": "739:32:10"
},
"nodeType": "YulExpressionStatement",
"src": "739:32:10"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "669:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "677:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "685:5:10",
"type": ""
}
],
"src": "640:137:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "845:79:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "855:22:10",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "870:6:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "864:5:10"
},
"nodeType": "YulFunctionCall",
"src": "864:13:10"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "855:5:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "912:5:10"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "886:25:10"
},
"nodeType": "YulFunctionCall",
"src": "886:32:10"
},
"nodeType": "YulExpressionStatement",
"src": "886:32:10"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "823:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "831:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "839:5:10",
"type": ""
}
],
"src": "783:141:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1004:210:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1053:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1062:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1065:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1055:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1055:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "1055:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1032:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1040:4:10",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1028:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1028:17:10"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1047:3:10"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1024:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1024:27:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1017:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1017:35:10"
},
"nodeType": "YulIf",
"src": "1014:2:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1078:34:10",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1105:6:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1092:12:10"
},
"nodeType": "YulFunctionCall",
"src": "1092:20:10"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1082:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1121:87:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1181:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1189:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1177:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1177:17:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1196:6:10"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1204:3:10"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1130:46:10"
},
"nodeType": "YulFunctionCall",
"src": "1130:78:10"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1121:5:10"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "982:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "990:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "998:5:10",
"type": ""
}
],
"src": "943:271:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1272:87:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1282:29:10",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1304:6:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1291:12:10"
},
"nodeType": "YulFunctionCall",
"src": "1291:20:10"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1282:5:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1347:5:10"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1320:26:10"
},
"nodeType": "YulFunctionCall",
"src": "1320:33:10"
},
"nodeType": "YulExpressionStatement",
"src": "1320:33:10"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1250:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1258:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1266:5:10",
"type": ""
}
],
"src": "1220:139:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1431:196:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1477:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1486:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1489:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1479:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1479:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "1479:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1452:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1461:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1448:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1448:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1473:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1444:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1444:32:10"
},
"nodeType": "YulIf",
"src": "1441:2:10"
},
{
"nodeType": "YulBlock",
"src": "1503:117:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1518:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1532:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1522:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1547:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1582:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1593:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1578:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1578:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1602:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1557:20:10"
},
"nodeType": "YulFunctionCall",
"src": "1557:53:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1547:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1401:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1412:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1424:6:10",
"type": ""
}
],
"src": "1365:262:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1716:324:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1762:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1771:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1774:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1764:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1764:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "1764:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1737:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1746:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1733:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1733:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1758:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1729:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1729:32:10"
},
"nodeType": "YulIf",
"src": "1726:2:10"
},
{
"nodeType": "YulBlock",
"src": "1788:117:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1803:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1817:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1807:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1832:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1867:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1878:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1863:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1863:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1887:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1842:20:10"
},
"nodeType": "YulFunctionCall",
"src": "1842:53:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1832:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1915:118:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1930:16:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1944:2:10",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1934:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1960:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1995:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2006:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1991:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1991:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2015:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1970:20:10"
},
"nodeType": "YulFunctionCall",
"src": "1970:53:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1960:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1678:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1689:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1701:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1709:6:10",
"type": ""
}
],
"src": "1633:407:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2146:452:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2192:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2201:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2204:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2194:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2194:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "2194:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2167:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2176:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2163:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2163:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2188:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2159:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2159:32:10"
},
"nodeType": "YulIf",
"src": "2156:2:10"
},
{
"nodeType": "YulBlock",
"src": "2218:117:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2233:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2247:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2237:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2262:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2297:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2308:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2293:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2293:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2317:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2272:20:10"
},
"nodeType": "YulFunctionCall",
"src": "2272:53:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2262:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2345:118:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2360:16:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2374:2:10",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2364:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2390:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2425:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2436:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2421:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2421:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2445:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2400:20:10"
},
"nodeType": "YulFunctionCall",
"src": "2400:53:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2390:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2473:118:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2488:16:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2502:2:10",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2492:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2518:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2553:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2564:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2549:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2549:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2573:7:10"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2528:20:10"
},
"nodeType": "YulFunctionCall",
"src": "2528:53:10"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2518:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2100:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2111:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2123:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2131:6:10",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2139:6:10",
"type": ""
}
],
"src": "2046:552:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2730:683:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2777:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2786:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2789:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2779:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2779:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "2779:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2751:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2760:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2747:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2747:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2772:3:10",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2743:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2743:33:10"
},
"nodeType": "YulIf",
"src": "2740:2:10"
},
{
"nodeType": "YulBlock",
"src": "2803:117:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2818:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2832:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2822:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2847:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2882:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2893:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2878:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2878:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2902:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2857:20:10"
},
"nodeType": "YulFunctionCall",
"src": "2857:53:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2847:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2930:118:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2945:16:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2959:2:10",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2949:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2975:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3010:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3021:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3006:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3006:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3030:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2985:20:10"
},
"nodeType": "YulFunctionCall",
"src": "2985:53:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2975:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3058:118:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3073:16:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3087:2:10",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3077:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3103:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3138:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3149:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3134:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3134:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3158:7:10"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3113:20:10"
},
"nodeType": "YulFunctionCall",
"src": "3113:53:10"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3103:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3186:220:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3201:46:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3232:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3243:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3228:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3228:18:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3215:12:10"
},
"nodeType": "YulFunctionCall",
"src": "3215:32:10"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3205:6:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3294:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3303:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3306:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3296:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3296:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "3296:12:10"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3266:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3274:18:10",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3263:2:10"
},
"nodeType": "YulFunctionCall",
"src": "3263:30:10"
},
"nodeType": "YulIf",
"src": "3260:2:10"
},
{
"nodeType": "YulAssignment",
"src": "3324:72:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3368:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3379:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3364:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3364:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3388:7:10"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3334:29:10"
},
"nodeType": "YulFunctionCall",
"src": "3334:62:10"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "3324:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2676:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2687:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2699:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2707:6:10",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2715:6:10",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "2723:6:10",
"type": ""
}
],
"src": "2604:809:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3499:321:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3545:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3554:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3557:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3547:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3547:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "3547:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3520:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3529:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3516:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3516:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3541:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3512:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3512:32:10"
},
"nodeType": "YulIf",
"src": "3509:2:10"
},
{
"nodeType": "YulBlock",
"src": "3571:117:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3586:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3600:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3590:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3615:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3650:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3661:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3646:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3646:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3670:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3625:20:10"
},
"nodeType": "YulFunctionCall",
"src": "3625:53:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3615:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3698:115:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3713:16:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3727:2:10",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3717:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3743:60:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3775:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3786:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3771:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3771:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3795:7:10"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "3753:17:10"
},
"nodeType": "YulFunctionCall",
"src": "3753:50:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3743:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3461:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3472:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3484:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3492:6:10",
"type": ""
}
],
"src": "3419:401:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3909:324:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3955:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3964:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3967:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3957:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3957:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "3957:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3930:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3939:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3926:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3926:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3951:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3922:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3922:32:10"
},
"nodeType": "YulIf",
"src": "3919:2:10"
},
{
"nodeType": "YulBlock",
"src": "3981:117:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3996:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4010:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4000:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4025:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4060:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4071:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4056:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4056:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4080:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4035:20:10"
},
"nodeType": "YulFunctionCall",
"src": "4035:53:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4025:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4108:118:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4123:16:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4137:2:10",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4127:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4153:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4188:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4199:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4184:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4184:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4208:7:10"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4163:20:10"
},
"nodeType": "YulFunctionCall",
"src": "4163:53:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4153:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3871:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3882:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3894:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3902:6:10",
"type": ""
}
],
"src": "3826:407:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4304:195:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4350:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4359:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4362:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4352:6:10"
},
"nodeType": "YulFunctionCall",
"src": "4352:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "4352:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4325:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4334:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4321:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4321:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4346:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4317:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4317:32:10"
},
"nodeType": "YulIf",
"src": "4314:2:10"
},
{
"nodeType": "YulBlock",
"src": "4376:116:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4391:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4405:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4395:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4420:62:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4454:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4465:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4450:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4450:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4474:7:10"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "4430:19:10"
},
"nodeType": "YulFunctionCall",
"src": "4430:52:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4420:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4274:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4285:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4297:6:10",
"type": ""
}
],
"src": "4239:260:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4581:206:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4627:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4636:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4639:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4629:6:10"
},
"nodeType": "YulFunctionCall",
"src": "4629:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "4629:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4602:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4611:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4598:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4598:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4623:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4594:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4594:32:10"
},
"nodeType": "YulIf",
"src": "4591:2:10"
},
{
"nodeType": "YulBlock",
"src": "4653:127:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4668:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4682:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4672:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4697:73:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4742:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4753:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4738:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4738:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4762:7:10"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "4707:30:10"
},
"nodeType": "YulFunctionCall",
"src": "4707:63:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4697:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4551:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4562:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4574:6:10",
"type": ""
}
],
"src": "4505:282:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4859:196:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4905:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4914:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4917:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4907:6:10"
},
"nodeType": "YulFunctionCall",
"src": "4907:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "4907:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4880:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4889:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4876:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4876:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4901:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4872:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4872:32:10"
},
"nodeType": "YulIf",
"src": "4869:2:10"
},
{
"nodeType": "YulBlock",
"src": "4931:117:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4946:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4960:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4950:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4975:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5010:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5021:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5006:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5006:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5030:7:10"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4985:20:10"
},
"nodeType": "YulFunctionCall",
"src": "4985:53:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4975:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4829:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4840:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4852:6:10",
"type": ""
}
],
"src": "4793:262:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5126:53:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5143:3:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5166:5:10"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "5148:17:10"
},
"nodeType": "YulFunctionCall",
"src": "5148:24:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5136:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5136:37:10"
},
"nodeType": "YulExpressionStatement",
"src": "5136:37:10"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5114:5:10",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5121:3:10",
"type": ""
}
],
"src": "5061:118:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5244:50:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5261:3:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5281:5:10"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "5266:14:10"
},
"nodeType": "YulFunctionCall",
"src": "5266:21:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5254:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5254:34:10"
},
"nodeType": "YulExpressionStatement",
"src": "5254:34:10"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5232:5:10",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5239:3:10",
"type": ""
}
],
"src": "5185:109:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5390:270:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5400:52:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5446:5:10"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5414:31:10"
},
"nodeType": "YulFunctionCall",
"src": "5414:38:10"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5404:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5461:77:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5526:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5531:6:10"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5468:57:10"
},
"nodeType": "YulFunctionCall",
"src": "5468:70:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5461:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5573:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5580:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5569:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5569:16:10"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5587:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5592:6:10"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5547:21:10"
},
"nodeType": "YulFunctionCall",
"src": "5547:52:10"
},
"nodeType": "YulExpressionStatement",
"src": "5547:52:10"
},
{
"nodeType": "YulAssignment",
"src": "5608:46:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5619:3:10"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5646:6:10"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5624:21:10"
},
"nodeType": "YulFunctionCall",
"src": "5624:29:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5615:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5615:39:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5608:3:10"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5371:5:10",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5378:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5386:3:10",
"type": ""
}
],
"src": "5300:360:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5758:272:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5768:53:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5815:5:10"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5782:32:10"
},
"nodeType": "YulFunctionCall",
"src": "5782:39:10"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5772:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5830:78:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5896:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5901:6:10"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5837:58:10"
},
"nodeType": "YulFunctionCall",
"src": "5837:71:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5830:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5943:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5950:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5939:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5939:16:10"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5957:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5962:6:10"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5917:21:10"
},
"nodeType": "YulFunctionCall",
"src": "5917:52:10"
},
"nodeType": "YulExpressionStatement",
"src": "5917:52:10"
},
{
"nodeType": "YulAssignment",
"src": "5978:46:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5989:3:10"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6016:6:10"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5994:21:10"
},
"nodeType": "YulFunctionCall",
"src": "5994:29:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5985:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5985:39:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5978:3:10"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5739:5:10",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5746:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5754:3:10",
"type": ""
}
],
"src": "5666:364:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6146:267:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6156:53:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6203:5:10"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6170:32:10"
},
"nodeType": "YulFunctionCall",
"src": "6170:39:10"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6160:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6218:96:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6302:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6307:6:10"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "6225:76:10"
},
"nodeType": "YulFunctionCall",
"src": "6225:89:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6218:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6349:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6356:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6345:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6345:16:10"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6363:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6368:6:10"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "6323:21:10"
},
"nodeType": "YulFunctionCall",
"src": "6323:52:10"
},
"nodeType": "YulExpressionStatement",
"src": "6323:52:10"
},
{
"nodeType": "YulAssignment",
"src": "6384:23:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6395:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6400:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6391:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6391:16:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6384:3:10"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6127:5:10",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6134:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6142:3:10",
"type": ""
}
],
"src": "6036:377:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6565:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6575:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6641:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6646:2:10",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6582:58:10"
},
"nodeType": "YulFunctionCall",
"src": "6582:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6575:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6747:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "6658:88:10"
},
"nodeType": "YulFunctionCall",
"src": "6658:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "6658:93:10"
},
{
"nodeType": "YulAssignment",
"src": "6760:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6771:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6776:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6767:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6767:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6760:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6553:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6561:3:10",
"type": ""
}
],
"src": "6419:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6937:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6947:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7013:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7018:2:10",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6954:58:10"
},
"nodeType": "YulFunctionCall",
"src": "6954:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6947:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7119:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulIdentifier",
"src": "7030:88:10"
},
"nodeType": "YulFunctionCall",
"src": "7030:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "7030:93:10"
},
{
"nodeType": "YulAssignment",
"src": "7132:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7143:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7148:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7139:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7139:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7132:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6925:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6933:3:10",
"type": ""
}
],
"src": "6791:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7309:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7319:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7385:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7390:2:10",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7326:58:10"
},
"nodeType": "YulFunctionCall",
"src": "7326:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7319:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7491:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "7402:88:10"
},
"nodeType": "YulFunctionCall",
"src": "7402:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "7402:93:10"
},
{
"nodeType": "YulAssignment",
"src": "7504:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7515:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7520:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7511:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7511:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7504:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7297:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7305:3:10",
"type": ""
}
],
"src": "7163:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7681:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7691:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7757:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7762:2:10",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7698:58:10"
},
"nodeType": "YulFunctionCall",
"src": "7698:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7691:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7863:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "7774:88:10"
},
"nodeType": "YulFunctionCall",
"src": "7774:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "7774:93:10"
},
{
"nodeType": "YulAssignment",
"src": "7876:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7887:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7892:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7883:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7883:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7876:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7669:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7677:3:10",
"type": ""
}
],
"src": "7535:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8053:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8063:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8129:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8134:2:10",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8070:58:10"
},
"nodeType": "YulFunctionCall",
"src": "8070:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8063:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8235:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulIdentifier",
"src": "8146:88:10"
},
"nodeType": "YulFunctionCall",
"src": "8146:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "8146:93:10"
},
{
"nodeType": "YulAssignment",
"src": "8248:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8259:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8264:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8255:3:10"
},
"nodeType": "YulFunctionCall",
"src": "8255:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8248:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8041:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8049:3:10",
"type": ""
}
],
"src": "7907:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8425:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8435:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8501:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8506:2:10",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8442:58:10"
},
"nodeType": "YulFunctionCall",
"src": "8442:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8435:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8607:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulIdentifier",
"src": "8518:88:10"
},
"nodeType": "YulFunctionCall",
"src": "8518:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "8518:93:10"
},
{
"nodeType": "YulAssignment",
"src": "8620:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8631:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8636:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8627:3:10"
},
"nodeType": "YulFunctionCall",
"src": "8627:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8620:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8413:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8421:3:10",
"type": ""
}
],
"src": "8279:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8797:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8807:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8873:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8878:2:10",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8814:58:10"
},
"nodeType": "YulFunctionCall",
"src": "8814:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8807:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8979:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulIdentifier",
"src": "8890:88:10"
},
"nodeType": "YulFunctionCall",
"src": "8890:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "8890:93:10"
},
{
"nodeType": "YulAssignment",
"src": "8992:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9003:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9008:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8999:3:10"
},
"nodeType": "YulFunctionCall",
"src": "8999:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8992:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8785:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8793:3:10",
"type": ""
}
],
"src": "8651:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9169:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9179:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9245:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9250:2:10",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9186:58:10"
},
"nodeType": "YulFunctionCall",
"src": "9186:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9179:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9351:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulIdentifier",
"src": "9262:88:10"
},
"nodeType": "YulFunctionCall",
"src": "9262:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "9262:93:10"
},
{
"nodeType": "YulAssignment",
"src": "9364:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9375:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9380:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9371:3:10"
},
"nodeType": "YulFunctionCall",
"src": "9371:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9364:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9157:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9165:3:10",
"type": ""
}
],
"src": "9023:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9541:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9551:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9617:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9622:2:10",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9558:58:10"
},
"nodeType": "YulFunctionCall",
"src": "9558:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9551:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9723:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulIdentifier",
"src": "9634:88:10"
},
"nodeType": "YulFunctionCall",
"src": "9634:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "9634:93:10"
},
{
"nodeType": "YulAssignment",
"src": "9736:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9747:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9752:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9743:3:10"
},
"nodeType": "YulFunctionCall",
"src": "9743:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9736:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9529:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9537:3:10",
"type": ""
}
],
"src": "9395:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9913:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9923:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9989:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9994:2:10",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9930:58:10"
},
"nodeType": "YulFunctionCall",
"src": "9930:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9923:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10095:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulIdentifier",
"src": "10006:88:10"
},
"nodeType": "YulFunctionCall",
"src": "10006:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "10006:93:10"
},
{
"nodeType": "YulAssignment",
"src": "10108:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10119:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10124:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10115:3:10"
},
"nodeType": "YulFunctionCall",
"src": "10115:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10108:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9901:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9909:3:10",
"type": ""
}
],
"src": "9767:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10285:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10295:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10361:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10366:2:10",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10302:58:10"
},
"nodeType": "YulFunctionCall",
"src": "10302:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10295:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10467:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "10378:88:10"
},
"nodeType": "YulFunctionCall",
"src": "10378:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "10378:93:10"
},
{
"nodeType": "YulAssignment",
"src": "10480:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10491:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10496:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10487:3:10"
},
"nodeType": "YulFunctionCall",
"src": "10487:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10480:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10273:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10281:3:10",
"type": ""
}
],
"src": "10139:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10657:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10667:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10733:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10738:2:10",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10674:58:10"
},
"nodeType": "YulFunctionCall",
"src": "10674:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10667:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10839:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulIdentifier",
"src": "10750:88:10"
},
"nodeType": "YulFunctionCall",
"src": "10750:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "10750:93:10"
},
{
"nodeType": "YulAssignment",
"src": "10852:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10863:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10868:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10859:3:10"
},
"nodeType": "YulFunctionCall",
"src": "10859:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10852:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10645:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10653:3:10",
"type": ""
}
],
"src": "10511:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10948:53:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10965:3:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10988:5:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "10970:17:10"
},
"nodeType": "YulFunctionCall",
"src": "10970:24:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10958:6:10"
},
"nodeType": "YulFunctionCall",
"src": "10958:37:10"
},
"nodeType": "YulExpressionStatement",
"src": "10958:37:10"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10936:5:10",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10943:3:10",
"type": ""
}
],
"src": "10883:118:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11191:251:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11202:102:10",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11291:6:10"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11300:3:10"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "11209:81:10"
},
"nodeType": "YulFunctionCall",
"src": "11209:95:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11202:3:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11314:102:10",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "11403:6:10"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11412:3:10"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "11321:81:10"
},
"nodeType": "YulFunctionCall",
"src": "11321:95:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11314:3:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11426:10:10",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11433:3:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11426:3:10"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11162:3:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11168:6:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11176:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11187:3:10",
"type": ""
}
],
"src": "11007:435:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11546:124:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11556:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11568:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11579:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11564:3:10"
},
"nodeType": "YulFunctionCall",
"src": "11564:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11556:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11636:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11649:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11660:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11645:3:10"
},
"nodeType": "YulFunctionCall",
"src": "11645:17:10"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "11592:43:10"
},
"nodeType": "YulFunctionCall",
"src": "11592:71:10"
},
"nodeType": "YulExpressionStatement",
"src": "11592:71:10"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11518:9:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11530:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11541:4:10",
"type": ""
}
],
"src": "11448:222:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11876:440:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11886:27:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11898:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11909:3:10",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11894:3:10"
},
"nodeType": "YulFunctionCall",
"src": "11894:19:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11886:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11967:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11980:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11991:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11976:3:10"
},
"nodeType": "YulFunctionCall",
"src": "11976:17:10"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "11923:43:10"
},
"nodeType": "YulFunctionCall",
"src": "11923:71:10"
},
"nodeType": "YulExpressionStatement",
"src": "11923:71:10"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "12048:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12061:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12072:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12057:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12057:18:10"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "12004:43:10"
},
"nodeType": "YulFunctionCall",
"src": "12004:72:10"
},
"nodeType": "YulExpressionStatement",
"src": "12004:72:10"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "12130:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12143:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12154:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12139:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12139:18:10"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "12086:43:10"
},
"nodeType": "YulFunctionCall",
"src": "12086:72:10"
},
"nodeType": "YulExpressionStatement",
"src": "12086:72:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12179:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12190:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12175:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12175:18:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12199:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12205:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12195:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12195:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12168:6:10"
},
"nodeType": "YulFunctionCall",
"src": "12168:48:10"
},
"nodeType": "YulExpressionStatement",
"src": "12168:48:10"
},
{
"nodeType": "YulAssignment",
"src": "12225:84:10",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "12295:6:10"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12304:4:10"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12233:61:10"
},
"nodeType": "YulFunctionCall",
"src": "12233:76:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12225:4:10"
}
]
}
]
},
"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": "11824:9:10",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "11836:6:10",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "11844:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11852:6:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11860:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11871:4:10",
"type": ""
}
],
"src": "11676:640:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12414:118:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12424:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12436:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12447:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12432:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12432:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12424:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12498:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12511:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12522:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12507:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12507:17:10"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "12460:37:10"
},
"nodeType": "YulFunctionCall",
"src": "12460:65:10"
},
"nodeType": "YulExpressionStatement",
"src": "12460:65:10"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12386:9:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12398:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12409:4:10",
"type": ""
}
],
"src": "12322:210:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12656:195:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12666:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12678:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12689:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12674:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12674:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12666:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12713:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12724:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12709:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12709:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12732:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12738:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12728:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12728:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12702:6:10"
},
"nodeType": "YulFunctionCall",
"src": "12702:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "12702:47:10"
},
{
"nodeType": "YulAssignment",
"src": "12758:86:10",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12830:6:10"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12839:4:10"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12766:63:10"
},
"nodeType": "YulFunctionCall",
"src": "12766:78:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12758:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12628:9:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12640:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12651:4:10",
"type": ""
}
],
"src": "12538:313:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13028:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13038:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13050:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13061:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13046:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13046:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13038:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13085:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13096:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13081:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13081:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13104:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13110:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13100:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13100:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13074:6:10"
},
"nodeType": "YulFunctionCall",
"src": "13074:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "13074:47:10"
},
{
"nodeType": "YulAssignment",
"src": "13130:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13264:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13138:124:10"
},
"nodeType": "YulFunctionCall",
"src": "13138:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13130:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13008:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13023:4:10",
"type": ""
}
],
"src": "12857:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13453:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13463:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13475:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13486:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13471:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13471:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13463:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13510:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13521:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13506:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13506:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13529:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13535:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13525:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13525:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13499:6:10"
},
"nodeType": "YulFunctionCall",
"src": "13499:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "13499:47:10"
},
{
"nodeType": "YulAssignment",
"src": "13555:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13689:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13563:124:10"
},
"nodeType": "YulFunctionCall",
"src": "13563:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13555:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13433:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13448:4:10",
"type": ""
}
],
"src": "13282:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13878:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13888:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13900:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13911:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13896:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13896:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13888:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13935:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13946:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13931:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13931:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13954:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13960:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13950:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13950:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13924:6:10"
},
"nodeType": "YulFunctionCall",
"src": "13924:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "13924:47:10"
},
{
"nodeType": "YulAssignment",
"src": "13980:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14114:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13988:124:10"
},
"nodeType": "YulFunctionCall",
"src": "13988:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13980:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13858:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13873:4:10",
"type": ""
}
],
"src": "13707:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14303:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14313:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14325:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14336:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14321:3:10"
},
"nodeType": "YulFunctionCall",
"src": "14321:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14313:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14360:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14371:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14356:3:10"
},
"nodeType": "YulFunctionCall",
"src": "14356:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14379:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14385:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14375:3:10"
},
"nodeType": "YulFunctionCall",
"src": "14375:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14349:6:10"
},
"nodeType": "YulFunctionCall",
"src": "14349:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "14349:47:10"
},
{
"nodeType": "YulAssignment",
"src": "14405:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14539:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14413:124:10"
},
"nodeType": "YulFunctionCall",
"src": "14413:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14405:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14283:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14298:4:10",
"type": ""
}
],
"src": "14132:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14728:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14738:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14750:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14761:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14746:3:10"
},
"nodeType": "YulFunctionCall",
"src": "14746:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14738:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14785:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14796:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14781:3:10"
},
"nodeType": "YulFunctionCall",
"src": "14781:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14804:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14810:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14800:3:10"
},
"nodeType": "YulFunctionCall",
"src": "14800:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14774:6:10"
},
"nodeType": "YulFunctionCall",
"src": "14774:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "14774:47:10"
},
{
"nodeType": "YulAssignment",
"src": "14830:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14964:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14838:124:10"
},
"nodeType": "YulFunctionCall",
"src": "14838:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14830:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14708:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14723:4:10",
"type": ""
}
],
"src": "14557:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15153:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15163:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15175:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15186:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15171:3:10"
},
"nodeType": "YulFunctionCall",
"src": "15171:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15163:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15210:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15221:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15206:3:10"
},
"nodeType": "YulFunctionCall",
"src": "15206:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15229:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15235:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15225:3:10"
},
"nodeType": "YulFunctionCall",
"src": "15225:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15199:6:10"
},
"nodeType": "YulFunctionCall",
"src": "15199:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "15199:47:10"
},
{
"nodeType": "YulAssignment",
"src": "15255:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15389:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15263:124:10"
},
"nodeType": "YulFunctionCall",
"src": "15263:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15255:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15133:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15148:4:10",
"type": ""
}
],
"src": "14982:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15578:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15588:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15600:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15611:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15596:3:10"
},
"nodeType": "YulFunctionCall",
"src": "15596:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15588:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15635:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15646:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15631:3:10"
},
"nodeType": "YulFunctionCall",
"src": "15631:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15654:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15660:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15650:3:10"
},
"nodeType": "YulFunctionCall",
"src": "15650:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15624:6:10"
},
"nodeType": "YulFunctionCall",
"src": "15624:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "15624:47:10"
},
{
"nodeType": "YulAssignment",
"src": "15680:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15814:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15688:124:10"
},
"nodeType": "YulFunctionCall",
"src": "15688:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15680:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15558:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15573:4:10",
"type": ""
}
],
"src": "15407:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16003:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16013:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16025:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16036:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16021:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16021:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16013:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16060:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16071:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16056:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16056:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16079:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16085:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16075:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16075:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16049:6:10"
},
"nodeType": "YulFunctionCall",
"src": "16049:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "16049:47:10"
},
{
"nodeType": "YulAssignment",
"src": "16105:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16239:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16113:124:10"
},
"nodeType": "YulFunctionCall",
"src": "16113:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16105:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15983:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15998:4:10",
"type": ""
}
],
"src": "15832:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16428:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16438:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16450:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16461:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16446:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16446:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16438:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16485:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16496:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16481:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16481:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16504:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16510:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16500:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16500:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16474:6:10"
},
"nodeType": "YulFunctionCall",
"src": "16474:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "16474:47:10"
},
{
"nodeType": "YulAssignment",
"src": "16530:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16664:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16538:124:10"
},
"nodeType": "YulFunctionCall",
"src": "16538:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16530:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16408:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16423:4:10",
"type": ""
}
],
"src": "16257:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16853:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16863:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16875:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16886:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16871:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16871:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16863:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16910:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16921:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16906:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16906:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16929:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16935:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16925:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16925:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16899:6:10"
},
"nodeType": "YulFunctionCall",
"src": "16899:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "16899:47:10"
},
{
"nodeType": "YulAssignment",
"src": "16955:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17089:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16963:124:10"
},
"nodeType": "YulFunctionCall",
"src": "16963:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16955:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16833:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16848:4:10",
"type": ""
}
],
"src": "16682:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17278:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17288:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17300:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17311:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17296:3:10"
},
"nodeType": "YulFunctionCall",
"src": "17296:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17288:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17335:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17346:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17331:3:10"
},
"nodeType": "YulFunctionCall",
"src": "17331:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17354:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17360:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17350:3:10"
},
"nodeType": "YulFunctionCall",
"src": "17350:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17324:6:10"
},
"nodeType": "YulFunctionCall",
"src": "17324:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "17324:47:10"
},
{
"nodeType": "YulAssignment",
"src": "17380:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17514:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17388:124:10"
},
"nodeType": "YulFunctionCall",
"src": "17388:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17380:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17258:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17273:4:10",
"type": ""
}
],
"src": "17107:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17703:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17713:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17725:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17736:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17721:3:10"
},
"nodeType": "YulFunctionCall",
"src": "17721:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17713:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17760:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17771:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17756:3:10"
},
"nodeType": "YulFunctionCall",
"src": "17756:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17779:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17785:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17775:3:10"
},
"nodeType": "YulFunctionCall",
"src": "17775:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17749:6:10"
},
"nodeType": "YulFunctionCall",
"src": "17749:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "17749:47:10"
},
{
"nodeType": "YulAssignment",
"src": "17805:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17939:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17813:124:10"
},
"nodeType": "YulFunctionCall",
"src": "17813:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17805:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17683:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17698:4:10",
"type": ""
}
],
"src": "17532:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18055:124:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18065:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18077:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18088:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18073:3:10"
},
"nodeType": "YulFunctionCall",
"src": "18073:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18065:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18145:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18158:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18169:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18154:3:10"
},
"nodeType": "YulFunctionCall",
"src": "18154:17:10"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "18101:43:10"
},
"nodeType": "YulFunctionCall",
"src": "18101:71:10"
},
"nodeType": "YulExpressionStatement",
"src": "18101:71:10"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18027:9:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18039:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18050:4:10",
"type": ""
}
],
"src": "17957:222:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18226:88:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18236:30:10",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "18246:18:10"
},
"nodeType": "YulFunctionCall",
"src": "18246:20:10"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18236:6:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18295:6:10"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "18303:4:10"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "18275:19:10"
},
"nodeType": "YulFunctionCall",
"src": "18275:33:10"
},
"nodeType": "YulExpressionStatement",
"src": "18275:33:10"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "18210:4:10",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18219:6:10",
"type": ""
}
],
"src": "18185:129:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18360:35:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18370:19:10",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18386:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "18380:5:10"
},
"nodeType": "YulFunctionCall",
"src": "18380:9:10"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18370:6:10"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18353:6:10",
"type": ""
}
],
"src": "18320:75:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18467:241:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "18572:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "18574:16:10"
},
"nodeType": "YulFunctionCall",
"src": "18574:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "18574:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "18544:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18552:18:10",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "18541:2:10"
},
"nodeType": "YulFunctionCall",
"src": "18541:30:10"
},
"nodeType": "YulIf",
"src": "18538:2:10"
},
{
"nodeType": "YulAssignment",
"src": "18604:37:10",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "18634:6:10"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "18612:21:10"
},
"nodeType": "YulFunctionCall",
"src": "18612:29:10"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "18604:4:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "18678:23:10",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "18690:4:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18696:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18686:3:10"
},
"nodeType": "YulFunctionCall",
"src": "18686:15:10"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "18678:4:10"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "18451:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "18462:4:10",
"type": ""
}
],
"src": "18401:307:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18772:40:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18783:22:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18799:5:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "18793:5:10"
},
"nodeType": "YulFunctionCall",
"src": "18793:12:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "18783:6:10"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18755:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "18765:6:10",
"type": ""
}
],
"src": "18714:98:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18877:40:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18888:22:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18904:5:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "18898:5:10"
},
"nodeType": "YulFunctionCall",
"src": "18898:12:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "18888:6:10"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18860:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "18870:6:10",
"type": ""
}
],
"src": "18818:99:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19018:73:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19035:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19040:6:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19028:6:10"
},
"nodeType": "YulFunctionCall",
"src": "19028:19:10"
},
"nodeType": "YulExpressionStatement",
"src": "19028:19:10"
},
{
"nodeType": "YulAssignment",
"src": "19056:29:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19075:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19080:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19071:3:10"
},
"nodeType": "YulFunctionCall",
"src": "19071:14:10"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "19056:11:10"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18990:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "18995:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "19006:11:10",
"type": ""
}
],
"src": "18923:168:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19193:73:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19210:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19215:6:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19203:6:10"
},
"nodeType": "YulFunctionCall",
"src": "19203:19:10"
},
"nodeType": "YulExpressionStatement",
"src": "19203:19:10"
},
{
"nodeType": "YulAssignment",
"src": "19231:29:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19250:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19255:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19246:3:10"
},
"nodeType": "YulFunctionCall",
"src": "19246:14:10"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "19231:11:10"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19165:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "19170:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "19181:11:10",
"type": ""
}
],
"src": "19097:169:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19386:34:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19396:18:10",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19411:3:10"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "19396:11:10"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19358:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "19363:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "19374:11:10",
"type": ""
}
],
"src": "19272:148:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19470:261:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19480:25:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19503:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "19485:17:10"
},
"nodeType": "YulFunctionCall",
"src": "19485:20:10"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19480:1:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "19514:25:10",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19537:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "19519:17:10"
},
"nodeType": "YulFunctionCall",
"src": "19519:20:10"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19514:1:10"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "19677:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "19679:16:10"
},
"nodeType": "YulFunctionCall",
"src": "19679:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "19679:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19598:1:10"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19605:66:10",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19673:1:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19601:3:10"
},
"nodeType": "YulFunctionCall",
"src": "19601:74:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "19595:2:10"
},
"nodeType": "YulFunctionCall",
"src": "19595:81:10"
},
"nodeType": "YulIf",
"src": "19592:2:10"
},
{
"nodeType": "YulAssignment",
"src": "19709:16:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19720:1:10"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19723:1:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19716:3:10"
},
"nodeType": "YulFunctionCall",
"src": "19716:9:10"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "19709:3:10"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "19457:1:10",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "19460:1:10",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "19466:3:10",
"type": ""
}
],
"src": "19426:305:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19779:143:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19789:25:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19812:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "19794:17:10"
},
"nodeType": "YulFunctionCall",
"src": "19794:20:10"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19789:1:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "19823:25:10",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19846:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "19828:17:10"
},
"nodeType": "YulFunctionCall",
"src": "19828:20:10"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19823:1:10"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "19870:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "19872:16:10"
},
"nodeType": "YulFunctionCall",
"src": "19872:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "19872:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19867:1:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "19860:6:10"
},
"nodeType": "YulFunctionCall",
"src": "19860:9:10"
},
"nodeType": "YulIf",
"src": "19857:2:10"
},
{
"nodeType": "YulAssignment",
"src": "19902:14:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19911:1:10"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19914:1:10"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "19907:3:10"
},
"nodeType": "YulFunctionCall",
"src": "19907:9:10"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "19902:1:10"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "19768:1:10",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "19771:1:10",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "19777:1:10",
"type": ""
}
],
"src": "19737:185:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19973:146:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19983:25:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20006:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "19988:17:10"
},
"nodeType": "YulFunctionCall",
"src": "19988:20:10"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19983:1:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "20017:25:10",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20040:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "20022:17:10"
},
"nodeType": "YulFunctionCall",
"src": "20022:20:10"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20017:1:10"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "20064:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "20066:16:10"
},
"nodeType": "YulFunctionCall",
"src": "20066:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "20066:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20058:1:10"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20061:1:10"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "20055:2:10"
},
"nodeType": "YulFunctionCall",
"src": "20055:8:10"
},
"nodeType": "YulIf",
"src": "20052:2:10"
},
{
"nodeType": "YulAssignment",
"src": "20096:17:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20108:1:10"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20111:1:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20104:3:10"
},
"nodeType": "YulFunctionCall",
"src": "20104:9:10"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "20096:4:10"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "19959:1:10",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "19962:1:10",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "19968:4:10",
"type": ""
}
],
"src": "19928:191:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20170:51:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20180:35:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20209:5:10"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "20191:17:10"
},
"nodeType": "YulFunctionCall",
"src": "20191:24:10"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "20180:7:10"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20152:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "20162:7:10",
"type": ""
}
],
"src": "20125:96:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20269:48:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20279:32:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20304:5:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "20297:6:10"
},
"nodeType": "YulFunctionCall",
"src": "20297:13:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "20290:6:10"
},
"nodeType": "YulFunctionCall",
"src": "20290:21:10"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "20279:7:10"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20251:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "20261:7:10",
"type": ""
}
],
"src": "20227:90:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20367:105:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20377:89:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20392:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20399:66:10",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "20388:3:10"
},
"nodeType": "YulFunctionCall",
"src": "20388:78:10"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "20377:7:10"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20349:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "20359:7:10",
"type": ""
}
],
"src": "20323:149:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20523:81:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20533:65:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20548:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20555:42:10",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "20544:3:10"
},
"nodeType": "YulFunctionCall",
"src": "20544:54:10"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "20533:7:10"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20505:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "20515:7:10",
"type": ""
}
],
"src": "20478:126:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20655:32:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20665:16:10",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "20676:5:10"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "20665:7:10"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20637:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "20647:7:10",
"type": ""
}
],
"src": "20610:77:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20744:103:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "20767:3:10"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "20772:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20777:6:10"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "20754:12:10"
},
"nodeType": "YulFunctionCall",
"src": "20754:30:10"
},
"nodeType": "YulExpressionStatement",
"src": "20754:30:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "20825:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20830:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20821:3:10"
},
"nodeType": "YulFunctionCall",
"src": "20821:16:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20839:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20814:6:10"
},
"nodeType": "YulFunctionCall",
"src": "20814:27:10"
},
"nodeType": "YulExpressionStatement",
"src": "20814:27:10"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "20726:3:10",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "20731:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20736:6:10",
"type": ""
}
],
"src": "20693:154:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20902:258:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "20912:10:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "20921:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "20916:1:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "20981:63:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "21006:3:10"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "21011:1:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21002:3:10"
},
"nodeType": "YulFunctionCall",
"src": "21002:11:10"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "21025:3:10"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "21030:1:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21021:3:10"
},
"nodeType": "YulFunctionCall",
"src": "21021:11:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "21015:5:10"
},
"nodeType": "YulFunctionCall",
"src": "21015:18:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20995:6:10"
},
"nodeType": "YulFunctionCall",
"src": "20995:39:10"
},
"nodeType": "YulExpressionStatement",
"src": "20995:39:10"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "20942:1:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20945:6:10"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "20939:2:10"
},
"nodeType": "YulFunctionCall",
"src": "20939:13:10"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "20953:19:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20955:15:10",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "20964:1:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20967:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20960:3:10"
},
"nodeType": "YulFunctionCall",
"src": "20960:10:10"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "20955:1:10"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "20935:3:10",
"statements": []
},
"src": "20931:113:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21078:76:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "21128:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21133:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21124:3:10"
},
"nodeType": "YulFunctionCall",
"src": "21124:16:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21142:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21117:6:10"
},
"nodeType": "YulFunctionCall",
"src": "21117:27:10"
},
"nodeType": "YulExpressionStatement",
"src": "21117:27:10"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "21059:1:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21062:6:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "21056:2:10"
},
"nodeType": "YulFunctionCall",
"src": "21056:13:10"
},
"nodeType": "YulIf",
"src": "21053:2:10"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "20884:3:10",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "20889:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20894:6:10",
"type": ""
}
],
"src": "20853:307:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21217:269:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21227:22:10",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "21241:4:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21247:1:10",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "21237:3:10"
},
"nodeType": "YulFunctionCall",
"src": "21237:12:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21227:6:10"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "21258:38:10",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "21288:4:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21294:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "21284:3:10"
},
"nodeType": "YulFunctionCall",
"src": "21284:12:10"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "21262:18:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21335:51:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21349:27:10",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21363:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21371:4:10",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "21359:3:10"
},
"nodeType": "YulFunctionCall",
"src": "21359:17:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21349:6:10"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "21315:18:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21308:6:10"
},
"nodeType": "YulFunctionCall",
"src": "21308:26:10"
},
"nodeType": "YulIf",
"src": "21305:2:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21438:42:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "21452:16:10"
},
"nodeType": "YulFunctionCall",
"src": "21452:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "21452:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "21402:18:10"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21425:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21433:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "21422:2:10"
},
"nodeType": "YulFunctionCall",
"src": "21422:14:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "21399:2:10"
},
"nodeType": "YulFunctionCall",
"src": "21399:38:10"
},
"nodeType": "YulIf",
"src": "21396:2:10"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "21201:4:10",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "21210:6:10",
"type": ""
}
],
"src": "21166:320:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21535:238:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "21545:58:10",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21567:6:10"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "21597:4:10"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "21575:21:10"
},
"nodeType": "YulFunctionCall",
"src": "21575:27:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21563:3:10"
},
"nodeType": "YulFunctionCall",
"src": "21563:40:10"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "21549:10:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21714:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "21716:16:10"
},
"nodeType": "YulFunctionCall",
"src": "21716:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "21716:18:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "21657:10:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21669:18:10",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "21654:2:10"
},
"nodeType": "YulFunctionCall",
"src": "21654:34:10"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "21693:10:10"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21705:6:10"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "21690:2:10"
},
"nodeType": "YulFunctionCall",
"src": "21690:22:10"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "21651:2:10"
},
"nodeType": "YulFunctionCall",
"src": "21651:62:10"
},
"nodeType": "YulIf",
"src": "21648:2:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21752:2:10",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "21756:10:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21745:6:10"
},
"nodeType": "YulFunctionCall",
"src": "21745:22:10"
},
"nodeType": "YulExpressionStatement",
"src": "21745:22:10"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "21521:6:10",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "21529:4:10",
"type": ""
}
],
"src": "21492:281:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21822:190:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21832:33:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21859:5:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21841:17:10"
},
"nodeType": "YulFunctionCall",
"src": "21841:24:10"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21832:5:10"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21955:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "21957:16:10"
},
"nodeType": "YulFunctionCall",
"src": "21957:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "21957:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21880:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21887:66:10",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "21877:2:10"
},
"nodeType": "YulFunctionCall",
"src": "21877:77:10"
},
"nodeType": "YulIf",
"src": "21874:2:10"
},
{
"nodeType": "YulAssignment",
"src": "21986:20:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21997:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22004:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21993:3:10"
},
"nodeType": "YulFunctionCall",
"src": "21993:13:10"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "21986:3:10"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21808:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "21818:3:10",
"type": ""
}
],
"src": "21779:233:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22052:142:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22062:25:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22085:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22067:17:10"
},
"nodeType": "YulFunctionCall",
"src": "22067:20:10"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22062:1:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "22096:25:10",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22119:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22101:17:10"
},
"nodeType": "YulFunctionCall",
"src": "22101:20:10"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22096:1:10"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "22143:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "22145:16:10"
},
"nodeType": "YulFunctionCall",
"src": "22145:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "22145:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22140:1:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "22133:6:10"
},
"nodeType": "YulFunctionCall",
"src": "22133:9:10"
},
"nodeType": "YulIf",
"src": "22130:2:10"
},
{
"nodeType": "YulAssignment",
"src": "22174:14:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22183:1:10"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22186:1:10"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "22179:3:10"
},
"nodeType": "YulFunctionCall",
"src": "22179:9:10"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "22174:1:10"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "22041:1:10",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "22044:1:10",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "22050:1:10",
"type": ""
}
],
"src": "22018:176:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22228:152:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22245:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22248:77:10",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22238:6:10"
},
"nodeType": "YulFunctionCall",
"src": "22238:88:10"
},
"nodeType": "YulExpressionStatement",
"src": "22238:88:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22342:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22345:4:10",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22335:6:10"
},
"nodeType": "YulFunctionCall",
"src": "22335:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "22335:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22366:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22369:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "22359:6:10"
},
"nodeType": "YulFunctionCall",
"src": "22359:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "22359:15:10"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "22200:180:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22414:152:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22431:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22434:77:10",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22424:6:10"
},
"nodeType": "YulFunctionCall",
"src": "22424:88:10"
},
"nodeType": "YulExpressionStatement",
"src": "22424:88:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22528:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22531:4:10",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22521:6:10"
},
"nodeType": "YulFunctionCall",
"src": "22521:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "22521:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22552:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22555:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "22545:6:10"
},
"nodeType": "YulFunctionCall",
"src": "22545:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "22545:15:10"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "22386:180:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22600:152:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22617:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22620:77:10",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22610:6:10"
},
"nodeType": "YulFunctionCall",
"src": "22610:88:10"
},
"nodeType": "YulExpressionStatement",
"src": "22610:88:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22714:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22717:4:10",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22707:6:10"
},
"nodeType": "YulFunctionCall",
"src": "22707:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "22707:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22738:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22741:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "22731:6:10"
},
"nodeType": "YulFunctionCall",
"src": "22731:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "22731:15:10"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "22572:180:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22786:152:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22803:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22806:77:10",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22796:6:10"
},
"nodeType": "YulFunctionCall",
"src": "22796:88:10"
},
"nodeType": "YulExpressionStatement",
"src": "22796:88:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22900:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22903:4:10",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22893:6:10"
},
"nodeType": "YulFunctionCall",
"src": "22893:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "22893:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22924:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22927:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "22917:6:10"
},
"nodeType": "YulFunctionCall",
"src": "22917:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "22917:15:10"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "22758:180:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22992:54:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23002:38:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "23020:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23027:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23016:3:10"
},
"nodeType": "YulFunctionCall",
"src": "23016:14:10"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23036:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "23032:3:10"
},
"nodeType": "YulFunctionCall",
"src": "23032:7:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "23012:3:10"
},
"nodeType": "YulFunctionCall",
"src": "23012:28:10"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "23002:6:10"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22975:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "22985:6:10",
"type": ""
}
],
"src": "22944:102:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23158:131:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23180:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23188:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23176:3:10"
},
"nodeType": "YulFunctionCall",
"src": "23176:14:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "23192:34:10",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23169:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23169:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "23169:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23248:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23256:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23244:3:10"
},
"nodeType": "YulFunctionCall",
"src": "23244:15:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "23261:20:10",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23237:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23237:45:10"
},
"nodeType": "YulExpressionStatement",
"src": "23237:45:10"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23150:6:10",
"type": ""
}
],
"src": "23052:237:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23401:118:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23423:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23431:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23419:3:10"
},
"nodeType": "YulFunctionCall",
"src": "23419:14:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "23435:34:10",
"type": "",
"value": "ERC721: transfer from incorrect "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23412:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23412:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "23412:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23491:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23499:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23487:3:10"
},
"nodeType": "YulFunctionCall",
"src": "23487:15:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "23504:7:10",
"type": "",
"value": "owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23480:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23480:32:10"
},
"nodeType": "YulExpressionStatement",
"src": "23480:32:10"
}
]
},
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23393:6:10",
"type": ""
}
],
"src": "23295:224:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23631:117:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23653:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23661:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23649:3:10"
},
"nodeType": "YulFunctionCall",
"src": "23649:14:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "23665:34:10",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23642:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23642:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "23642:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23721:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23729:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23717:3:10"
},
"nodeType": "YulFunctionCall",
"src": "23717:15:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "23734:6:10",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23710:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23710:31:10"
},
"nodeType": "YulExpressionStatement",
"src": "23710:31:10"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23623:6:10",
"type": ""
}
],
"src": "23525:223:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23860:69:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23882:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23890:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23878:3:10"
},
"nodeType": "YulFunctionCall",
"src": "23878:14:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "23894:27:10",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23871:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23871:51:10"
},
"nodeType": "YulExpressionStatement",
"src": "23871:51:10"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23852:6:10",
"type": ""
}
],
"src": "23754:175:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24041:125:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24063:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24071:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24059:3:10"
},
"nodeType": "YulFunctionCall",
"src": "24059:14:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "24075:34:10",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24052:6:10"
},
"nodeType": "YulFunctionCall",
"src": "24052:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "24052:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24131:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24139:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24127:3:10"
},
"nodeType": "YulFunctionCall",
"src": "24127:15:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "24144:14:10",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24120:6:10"
},
"nodeType": "YulFunctionCall",
"src": "24120:39:10"
},
"nodeType": "YulExpressionStatement",
"src": "24120:39:10"
}
]
},
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24033:6:10",
"type": ""
}
],
"src": "23935:231:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24278:137:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24300:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24308:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24296:3:10"
},
"nodeType": "YulFunctionCall",
"src": "24296:14:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "24312:34:10",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24289:6:10"
},
"nodeType": "YulFunctionCall",
"src": "24289:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "24289:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24368:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24376:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24364:3:10"
},
"nodeType": "YulFunctionCall",
"src": "24364:15:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "24381:26:10",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24357:6:10"
},
"nodeType": "YulFunctionCall",
"src": "24357:51:10"
},
"nodeType": "YulExpressionStatement",
"src": "24357:51:10"
}
]
},
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24270:6:10",
"type": ""
}
],
"src": "24172:243:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24527:123:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24549:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24557:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24545:3:10"
},
"nodeType": "YulFunctionCall",
"src": "24545:14:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "24561:34:10",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24538:6:10"
},
"nodeType": "YulFunctionCall",
"src": "24538:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "24538:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24617:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24625:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24613:3:10"
},
"nodeType": "YulFunctionCall",
"src": "24613:15:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "24630:12:10",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24606:6:10"
},
"nodeType": "YulFunctionCall",
"src": "24606:37:10"
},
"nodeType": "YulExpressionStatement",
"src": "24606:37:10"
}
]
},
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24519:6:10",
"type": ""
}
],
"src": "24421:229:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24762:122:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24784:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24792:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24780:3:10"
},
"nodeType": "YulFunctionCall",
"src": "24780:14:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "24796:34:10",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24773:6:10"
},
"nodeType": "YulFunctionCall",
"src": "24773:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "24773:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24852:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24860:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24848:3:10"
},
"nodeType": "YulFunctionCall",
"src": "24848:15:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "24865:11:10",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24841:6:10"
},
"nodeType": "YulFunctionCall",
"src": "24841:36:10"
},
"nodeType": "YulExpressionStatement",
"src": "24841:36:10"
}
]
},
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24754:6:10",
"type": ""
}
],
"src": "24656:228:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24996:125:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25018:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25026:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25014:3:10"
},
"nodeType": "YulFunctionCall",
"src": "25014:14:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25030:34:10",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25007:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25007:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "25007:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25086:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25094:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25082:3:10"
},
"nodeType": "YulFunctionCall",
"src": "25082:15:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25099:14:10",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25075:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25075:39:10"
},
"nodeType": "YulExpressionStatement",
"src": "25075:39:10"
}
]
},
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24988:6:10",
"type": ""
}
],
"src": "24890:231:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25233:128:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25255:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25263:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25251:3:10"
},
"nodeType": "YulFunctionCall",
"src": "25251:14:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25267:34:10",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25244:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25244:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "25244:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25323:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25331:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25319:3:10"
},
"nodeType": "YulFunctionCall",
"src": "25319:15:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25336:17:10",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25312:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25312:42:10"
},
"nodeType": "YulExpressionStatement",
"src": "25312:42:10"
}
]
},
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25225:6:10",
"type": ""
}
],
"src": "25127:234:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25473:114:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25495:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25503:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25491:3:10"
},
"nodeType": "YulFunctionCall",
"src": "25491:14:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25507:34:10",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25484:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25484:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "25484:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25563:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25571:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25559:3:10"
},
"nodeType": "YulFunctionCall",
"src": "25559:15:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25576:3:10",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25552:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25552:28:10"
},
"nodeType": "YulExpressionStatement",
"src": "25552:28:10"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25465:6:10",
"type": ""
}
],
"src": "25367:220:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25699:130:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25721:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25729:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25717:3:10"
},
"nodeType": "YulFunctionCall",
"src": "25717:14:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25733:34:10",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25710:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25710:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "25710:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25789:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25797:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25785:3:10"
},
"nodeType": "YulFunctionCall",
"src": "25785:15:10"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25802:19:10",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25778:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25778:44:10"
},
"nodeType": "YulExpressionStatement",
"src": "25778:44:10"
}
]
},
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25691:6:10",
"type": ""
}
],
"src": "25593:236:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25878:79:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "25935:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25944:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25947:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "25937:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25937:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "25937:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25901:5:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25926:5:10"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "25908:17:10"
},
"nodeType": "YulFunctionCall",
"src": "25908:24:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "25898:2:10"
},
"nodeType": "YulFunctionCall",
"src": "25898:35:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "25891:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25891:43:10"
},
"nodeType": "YulIf",
"src": "25888:2:10"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "25871:5:10",
"type": ""
}
],
"src": "25835:122:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26003:76:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "26057:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26066:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26069:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "26059:6:10"
},
"nodeType": "YulFunctionCall",
"src": "26059:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "26059:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26026:5:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26048:5:10"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "26033:14:10"
},
"nodeType": "YulFunctionCall",
"src": "26033:21:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "26023:2:10"
},
"nodeType": "YulFunctionCall",
"src": "26023:32:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26016:6:10"
},
"nodeType": "YulFunctionCall",
"src": "26016:40:10"
},
"nodeType": "YulIf",
"src": "26013:2:10"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "25996:5:10",
"type": ""
}
],
"src": "25963:116:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26127:78:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "26183:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26192:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26195:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "26185:6:10"
},
"nodeType": "YulFunctionCall",
"src": "26185:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "26185:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26150:5:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26174:5:10"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "26157:16:10"
},
"nodeType": "YulFunctionCall",
"src": "26157:23:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "26147:2:10"
},
"nodeType": "YulFunctionCall",
"src": "26147:34:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26140:6:10"
},
"nodeType": "YulFunctionCall",
"src": "26140:42:10"
},
"nodeType": "YulIf",
"src": "26137:2:10"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26120:5:10",
"type": ""
}
],
"src": "26085:120:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26254:79:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "26311:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26320:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26323:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "26313:6:10"
},
"nodeType": "YulFunctionCall",
"src": "26313:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "26313:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26277:5:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26302:5:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26284:17:10"
},
"nodeType": "YulFunctionCall",
"src": "26284:24:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "26274:2:10"
},
"nodeType": "YulFunctionCall",
"src": "26274:35:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26267:6:10"
},
"nodeType": "YulFunctionCall",
"src": "26267:43:10"
},
"nodeType": "YulIf",
"src": "26264:2:10"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26247:5:10",
"type": ""
}
],
"src": "26211:122:10"
}
]
},
"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(0, 0) }\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(0, 0) }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_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(0, 0) }\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(0, 0) }\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(0, 0) }\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(0, 0) }\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(0, 0) }\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(0, 0) }\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_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\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(0, 0) }\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(0, 0) }\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(0, 0) }\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_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, 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_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_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_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 56)\n store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb(pos)\n end := add(pos, 64)\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_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 49)\n store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2(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_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\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_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_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_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__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_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__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_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__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_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__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_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__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_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__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_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_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_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__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_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_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_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 array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\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_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n 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 increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function mod_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\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_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\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 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_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_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_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: operator query for nonex\")\n\n mstore(add(memPtr, 32), \"istent token\")\n\n }\n\n function store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve caller is not ow\")\n\n mstore(add(memPtr, 32), \"ner nor approved for all\")\n\n }\n\n function store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: balance query for the ze\")\n\n mstore(add(memPtr, 32), \"ro address\")\n\n }\n\n function store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: owner query for nonexist\")\n\n mstore(add(memPtr, 32), \"ent token\")\n\n }\n\n function store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approved query for nonex\")\n\n mstore(add(memPtr, 32), \"istent token\")\n\n }\n\n function store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Metadata: URI query for no\")\n\n mstore(add(memPtr, 32), \"nexistent token\")\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_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer caller is not o\")\n\n mstore(add(memPtr, 32), \"wner 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": 10,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb46514610224578063b88d4fde14610240578063c87b56dd1461025c578063e985e9c51461028c576100cf565b80636352211e146101a657806370a08231146101d657806395d89b4114610206576100cf565b806301ffc9a7146100d457806306fdde0314610104578063081812fc14610122578063095ea7b31461015257806323b872dd1461016e57806342842e0e1461018a575b600080fd5b6100ee60048036038101906100e991906116a1565b6102bc565b6040516100fb9190611a1b565b60405180910390f35b61010c61039e565b6040516101199190611a36565b60405180910390f35b61013c600480360381019061013791906116f3565b610430565b60405161014991906119b4565b60405180910390f35b61016c60048036038101906101679190611665565b6104b5565b005b6101886004803603810190610183919061155f565b6105cd565b005b6101a4600480360381019061019f919061155f565b61062d565b005b6101c060048036038101906101bb91906116f3565b61064d565b6040516101cd91906119b4565b60405180910390f35b6101f060048036038101906101eb91906114fa565b6106ff565b6040516101fd9190611bd8565b60405180910390f35b61020e6107b7565b60405161021b9190611a36565b60405180910390f35b61023e60048036038101906102399190611629565b610849565b005b61025a600480360381019061025591906115ae565b61085f565b005b610276600480360381019061027191906116f3565b6108c1565b6040516102839190611a36565b60405180910390f35b6102a660048036038101906102a19190611523565b610968565b6040516102b39190611a1b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103975750610396826109fc565b5b9050919050565b6060600080546103ad90611dfd565b80601f01602080910402602001604051908101604052809291908181526020018280546103d990611dfd565b80156104265780601f106103fb57610100808354040283529160200191610426565b820191906000526020600020905b81548152906001019060200180831161040957829003601f168201915b5050505050905090565b600061043b82610a66565b61047a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047190611b58565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104c08261064d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052890611b98565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610550610ad2565b73ffffffffffffffffffffffffffffffffffffffff16148061057f575061057e81610579610ad2565b610968565b5b6105be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b590611af8565b60405180910390fd5b6105c88383610ada565b505050565b6105de6105d8610ad2565b82610b93565b61061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611bb8565b60405180910390fd5b610628838383610c71565b505050565b6106488383836040518060200160405280600081525061085f565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed90611b38565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076790611b18565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546107c690611dfd565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290611dfd565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b61085b610854610ad2565b8383610ed8565b5050565b61087061086a610ad2565b83610b93565b6108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a690611bb8565b60405180910390fd5b6108bb84848484611045565b50505050565b60606108cc82610a66565b61090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290611b78565b60405180910390fd5b60006109156110a1565b905060008151116109355760405180602001604052806000815250610960565b8061093f846110b8565b604051602001610950929190611990565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610b4d8361064d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610b9e82610a66565b610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490611ad8565b60405180910390fd5b6000610be88361064d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610c5757508373ffffffffffffffffffffffffffffffffffffffff16610c3f84610430565b73ffffffffffffffffffffffffffffffffffffffff16145b80610c685750610c678185610968565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610c918261064d565b73ffffffffffffffffffffffffffffffffffffffff1614610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90611a78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e90611a98565b60405180910390fd5b610d62838383611265565b610d6d600082610ada565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dbd9190611d13565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e149190611c8c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ed383838361126a565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90611ab8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110389190611a1b565b60405180910390a3505050565b611050848484610c71565b61105c8484848461126f565b61109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290611a58565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606000821415611100576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611260565b600082905060005b6000821461113257808061111b90611e60565b915050600a8261112b9190611ce2565b9150611108565b60008167ffffffffffffffff811115611174577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156111a65781602001600182028036833780820191505090505b5090505b60008514611259576001826111bf9190611d13565b9150600a856111ce9190611ea9565b60306111da9190611c8c565b60f81b818381518110611216577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856112529190611ce2565b94506111aa565b8093505050505b919050565b505050565b505050565b60006112908473ffffffffffffffffffffffffffffffffffffffff16611406565b156113f9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026112b9610ad2565b8786866040518563ffffffff1660e01b81526004016112db94939291906119cf565b602060405180830381600087803b1580156112f557600080fd5b505af192505050801561132657506040513d601f19601f8201168201806040525081019061132391906116ca565b60015b6113a9573d8060008114611356576040519150601f19603f3d011682016040523d82523d6000602084013e61135b565b606091505b506000815114156113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890611a58565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506113fe565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600061143c61143784611c18565b611bf3565b90508281526020810184848401111561145457600080fd5b61145f848285611dbb565b509392505050565b60008135905061147681612335565b92915050565b60008135905061148b8161234c565b92915050565b6000813590506114a081612363565b92915050565b6000815190506114b581612363565b92915050565b600082601f8301126114cc57600080fd5b81356114dc848260208601611429565b91505092915050565b6000813590506114f48161237a565b92915050565b60006020828403121561150c57600080fd5b600061151a84828501611467565b91505092915050565b6000806040838503121561153657600080fd5b600061154485828601611467565b925050602061155585828601611467565b9150509250929050565b60008060006060848603121561157457600080fd5b600061158286828701611467565b935050602061159386828701611467565b92505060406115a4868287016114e5565b9150509250925092565b600080600080608085870312156115c457600080fd5b60006115d287828801611467565b94505060206115e387828801611467565b93505060406115f4878288016114e5565b925050606085013567ffffffffffffffff81111561161157600080fd5b61161d878288016114bb565b91505092959194509250565b6000806040838503121561163c57600080fd5b600061164a85828601611467565b925050602061165b8582860161147c565b9150509250929050565b6000806040838503121561167857600080fd5b600061168685828601611467565b9250506020611697858286016114e5565b9150509250929050565b6000602082840312156116b357600080fd5b60006116c184828501611491565b91505092915050565b6000602082840312156116dc57600080fd5b60006116ea848285016114a6565b91505092915050565b60006020828403121561170557600080fd5b6000611713848285016114e5565b91505092915050565b61172581611d47565b82525050565b61173481611d59565b82525050565b600061174582611c49565b61174f8185611c5f565b935061175f818560208601611dca565b61176881611f96565b840191505092915050565b600061177e82611c54565b6117888185611c70565b9350611798818560208601611dca565b6117a181611f96565b840191505092915050565b60006117b782611c54565b6117c18185611c81565b93506117d1818560208601611dca565b80840191505092915050565b60006117ea603283611c70565b91506117f582611fa7565b604082019050919050565b600061180d602583611c70565b915061181882611ff6565b604082019050919050565b6000611830602483611c70565b915061183b82612045565b604082019050919050565b6000611853601983611c70565b915061185e82612094565b602082019050919050565b6000611876602c83611c70565b9150611881826120bd565b604082019050919050565b6000611899603883611c70565b91506118a48261210c565b604082019050919050565b60006118bc602a83611c70565b91506118c78261215b565b604082019050919050565b60006118df602983611c70565b91506118ea826121aa565b604082019050919050565b6000611902602c83611c70565b915061190d826121f9565b604082019050919050565b6000611925602f83611c70565b915061193082612248565b604082019050919050565b6000611948602183611c70565b915061195382612297565b604082019050919050565b600061196b603183611c70565b9150611976826122e6565b604082019050919050565b61198a81611db1565b82525050565b600061199c82856117ac565b91506119a882846117ac565b91508190509392505050565b60006020820190506119c9600083018461171c565b92915050565b60006080820190506119e4600083018761171c565b6119f1602083018661171c565b6119fe6040830185611981565b8181036060830152611a10818461173a565b905095945050505050565b6000602082019050611a30600083018461172b565b92915050565b60006020820190508181036000830152611a508184611773565b905092915050565b60006020820190508181036000830152611a71816117dd565b9050919050565b60006020820190508181036000830152611a9181611800565b9050919050565b60006020820190508181036000830152611ab181611823565b9050919050565b60006020820190508181036000830152611ad181611846565b9050919050565b60006020820190508181036000830152611af181611869565b9050919050565b60006020820190508181036000830152611b118161188c565b9050919050565b60006020820190508181036000830152611b31816118af565b9050919050565b60006020820190508181036000830152611b51816118d2565b9050919050565b60006020820190508181036000830152611b71816118f5565b9050919050565b60006020820190508181036000830152611b9181611918565b9050919050565b60006020820190508181036000830152611bb18161193b565b9050919050565b60006020820190508181036000830152611bd18161195e565b9050919050565b6000602082019050611bed6000830184611981565b92915050565b6000611bfd611c0e565b9050611c098282611e2f565b919050565b6000604051905090565b600067ffffffffffffffff821115611c3357611c32611f67565b5b611c3c82611f96565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000611c9782611db1565b9150611ca283611db1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611cd757611cd6611eda565b5b828201905092915050565b6000611ced82611db1565b9150611cf883611db1565b925082611d0857611d07611f09565b5b828204905092915050565b6000611d1e82611db1565b9150611d2983611db1565b925082821015611d3c57611d3b611eda565b5b828203905092915050565b6000611d5282611d91565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015611de8578082015181840152602081019050611dcd565b83811115611df7576000848401525b50505050565b60006002820490506001821680611e1557607f821691505b60208210811415611e2957611e28611f38565b5b50919050565b611e3882611f96565b810181811067ffffffffffffffff82111715611e5757611e56611f67565b5b80604052505050565b6000611e6b82611db1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611e9e57611e9d611eda565b5b600182019050919050565b6000611eb482611db1565b9150611ebf83611db1565b925082611ecf57611ece611f09565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61233e81611d47565b811461234957600080fd5b50565b61235581611d59565b811461236057600080fd5b50565b61236c81611d65565b811461237757600080fd5b50565b61238381611db1565b811461238e57600080fd5b5056fea2646970667358221220dd69c21d94e0f07225d2e2abfa63cac55a9a782016f5eb9f12b2c2b3c6a6cdfe64736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x224 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x240 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x25C JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x28C JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1A6 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x206 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x104 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x152 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x16E JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x18A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE9 SWAP2 SWAP1 PUSH2 0x16A1 JUMP JUMPDEST PUSH2 0x2BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFB SWAP2 SWAP1 PUSH2 0x1A1B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x10C PUSH2 0x39E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x1A36 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x16F3 JUMP JUMPDEST PUSH2 0x430 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x149 SWAP2 SWAP1 PUSH2 0x19B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x167 SWAP2 SWAP1 PUSH2 0x1665 JUMP JUMPDEST PUSH2 0x4B5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x188 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x183 SWAP2 SWAP1 PUSH2 0x155F JUMP JUMPDEST PUSH2 0x5CD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19F SWAP2 SWAP1 PUSH2 0x155F JUMP JUMPDEST PUSH2 0x62D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BB SWAP2 SWAP1 PUSH2 0x16F3 JUMP JUMPDEST PUSH2 0x64D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CD SWAP2 SWAP1 PUSH2 0x19B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0x14FA JUMP JUMPDEST PUSH2 0x6FF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FD SWAP2 SWAP1 PUSH2 0x1BD8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20E PUSH2 0x7B7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21B SWAP2 SWAP1 PUSH2 0x1A36 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x239 SWAP2 SWAP1 PUSH2 0x1629 JUMP JUMPDEST PUSH2 0x849 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x25A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x15AE JUMP JUMPDEST PUSH2 0x85F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x276 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x271 SWAP2 SWAP1 PUSH2 0x16F3 JUMP JUMPDEST PUSH2 0x8C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x283 SWAP2 SWAP1 PUSH2 0x1A36 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A1 SWAP2 SWAP1 PUSH2 0x1523 JUMP JUMPDEST PUSH2 0x968 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B3 SWAP2 SWAP1 PUSH2 0x1A1B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x387 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x397 JUMPI POP PUSH2 0x396 DUP3 PUSH2 0x9FC JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x3AD SWAP1 PUSH2 0x1DFD 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 0x3D9 SWAP1 PUSH2 0x1DFD JUMP JUMPDEST DUP1 ISZERO PUSH2 0x426 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3FB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x426 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 0x409 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43B DUP3 PUSH2 0xA66 JUMP JUMPDEST PUSH2 0x47A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x471 SWAP1 PUSH2 0x1B58 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT 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 0x4C0 DUP3 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x531 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x528 SWAP1 PUSH2 0x1B98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x550 PUSH2 0xAD2 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x57F JUMPI POP PUSH2 0x57E DUP2 PUSH2 0x579 PUSH2 0xAD2 JUMP JUMPDEST PUSH2 0x968 JUMP JUMPDEST JUMPDEST PUSH2 0x5BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5B5 SWAP1 PUSH2 0x1AF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5C8 DUP4 DUP4 PUSH2 0xADA JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x5DE PUSH2 0x5D8 PUSH2 0xAD2 JUMP JUMPDEST DUP3 PUSH2 0xB93 JUMP JUMPDEST PUSH2 0x61D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x614 SWAP1 PUSH2 0x1BB8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x628 DUP4 DUP4 DUP4 PUSH2 0xC71 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x648 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x85F 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 0x6F6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6ED SWAP1 PUSH2 0x1B38 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 0x770 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x767 SWAP1 PUSH2 0x1B18 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 PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x7C6 SWAP1 PUSH2 0x1DFD 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 0x7F2 SWAP1 PUSH2 0x1DFD JUMP JUMPDEST DUP1 ISZERO PUSH2 0x83F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x814 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x83F 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 0x822 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x85B PUSH2 0x854 PUSH2 0xAD2 JUMP JUMPDEST DUP4 DUP4 PUSH2 0xED8 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x870 PUSH2 0x86A PUSH2 0xAD2 JUMP JUMPDEST DUP4 PUSH2 0xB93 JUMP JUMPDEST PUSH2 0x8AF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8A6 SWAP1 PUSH2 0x1BB8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8BB DUP5 DUP5 DUP5 DUP5 PUSH2 0x1045 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x8CC DUP3 PUSH2 0xA66 JUMP JUMPDEST PUSH2 0x90B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x902 SWAP1 PUSH2 0x1B78 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x915 PUSH2 0x10A1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x935 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x960 JUMP JUMPDEST DUP1 PUSH2 0x93F DUP5 PUSH2 0x10B8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x950 SWAP3 SWAP2 SWAP1 PUSH2 0x1990 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 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 PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 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 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 0xB4D DUP4 PUSH2 0x64D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB9E DUP3 PUSH2 0xA66 JUMP JUMPDEST PUSH2 0xBDD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBD4 SWAP1 PUSH2 0x1AD8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xBE8 DUP4 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xC57 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC3F DUP5 PUSH2 0x430 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0xC68 JUMPI POP PUSH2 0xC67 DUP2 DUP6 PUSH2 0x968 JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC91 DUP3 PUSH2 0x64D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xCE7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCDE SWAP1 PUSH2 0x1A78 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD57 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD4E SWAP1 PUSH2 0x1A98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD62 DUP4 DUP4 DUP4 PUSH2 0x1265 JUMP JUMPDEST PUSH2 0xD6D PUSH1 0x0 DUP3 PUSH2 0xADA 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 0xDBD SWAP2 SWAP1 PUSH2 0x1D13 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 0xE14 SWAP2 SWAP1 PUSH2 0x1C8C 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 0xED3 DUP4 DUP4 DUP4 PUSH2 0x126A JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF47 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF3E SWAP1 PUSH2 0x1AB8 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 0x1038 SWAP2 SWAP1 PUSH2 0x1A1B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1050 DUP5 DUP5 DUP5 PUSH2 0xC71 JUMP JUMPDEST PUSH2 0x105C DUP5 DUP5 DUP5 DUP5 PUSH2 0x126F JUMP JUMPDEST PUSH2 0x109B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1092 SWAP1 PUSH2 0x1A58 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x1100 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1260 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1132 JUMPI DUP1 DUP1 PUSH2 0x111B SWAP1 PUSH2 0x1E60 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x112B SWAP2 SWAP1 PUSH2 0x1CE2 JUMP JUMPDEST SWAP2 POP PUSH2 0x1108 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1174 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x11A6 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x1259 JUMPI PUSH1 0x1 DUP3 PUSH2 0x11BF SWAP2 SWAP1 PUSH2 0x1D13 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x11CE SWAP2 SWAP1 PUSH2 0x1EA9 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x11DA SWAP2 SWAP1 PUSH2 0x1C8C JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1216 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1252 SWAP2 SWAP1 PUSH2 0x1CE2 JUMP JUMPDEST SWAP5 POP PUSH2 0x11AA JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1290 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1406 JUMP JUMPDEST ISZERO PUSH2 0x13F9 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x12B9 PUSH2 0xAD2 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12DB SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x12F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1326 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 0x1323 SWAP2 SWAP1 PUSH2 0x16CA JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x13A9 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1356 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 0x135B JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x13A1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1398 SWAP1 PUSH2 0x1A58 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 0x13FE JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x143C PUSH2 0x1437 DUP5 PUSH2 0x1C18 JUMP JUMPDEST PUSH2 0x1BF3 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1454 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x145F DUP5 DUP3 DUP6 PUSH2 0x1DBB JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1476 DUP2 PUSH2 0x2335 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x148B DUP2 PUSH2 0x234C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14A0 DUP2 PUSH2 0x2363 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x14B5 DUP2 PUSH2 0x2363 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x14CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x14DC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1429 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14F4 DUP2 PUSH2 0x237A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x150C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x151A DUP5 DUP3 DUP6 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1536 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1544 DUP6 DUP3 DUP7 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1555 DUP6 DUP3 DUP7 ADD PUSH2 0x1467 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 0x1574 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1582 DUP7 DUP3 DUP8 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1593 DUP7 DUP3 DUP8 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x15A4 DUP7 DUP3 DUP8 ADD PUSH2 0x14E5 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 0x15C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x15D2 DUP8 DUP3 DUP9 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x15E3 DUP8 DUP3 DUP9 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x15F4 DUP8 DUP3 DUP9 ADD PUSH2 0x14E5 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1611 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x161D DUP8 DUP3 DUP9 ADD PUSH2 0x14BB 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 0x163C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x164A DUP6 DUP3 DUP7 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x165B DUP6 DUP3 DUP7 ADD PUSH2 0x147C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1678 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1686 DUP6 DUP3 DUP7 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1697 DUP6 DUP3 DUP7 ADD PUSH2 0x14E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x16B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x16C1 DUP5 DUP3 DUP6 ADD PUSH2 0x1491 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x16DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x16EA DUP5 DUP3 DUP6 ADD PUSH2 0x14A6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1705 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1713 DUP5 DUP3 DUP6 ADD PUSH2 0x14E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1725 DUP2 PUSH2 0x1D47 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1734 DUP2 PUSH2 0x1D59 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1745 DUP3 PUSH2 0x1C49 JUMP JUMPDEST PUSH2 0x174F DUP2 DUP6 PUSH2 0x1C5F JUMP JUMPDEST SWAP4 POP PUSH2 0x175F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DCA JUMP JUMPDEST PUSH2 0x1768 DUP2 PUSH2 0x1F96 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x177E DUP3 PUSH2 0x1C54 JUMP JUMPDEST PUSH2 0x1788 DUP2 DUP6 PUSH2 0x1C70 JUMP JUMPDEST SWAP4 POP PUSH2 0x1798 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DCA JUMP JUMPDEST PUSH2 0x17A1 DUP2 PUSH2 0x1F96 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17B7 DUP3 PUSH2 0x1C54 JUMP JUMPDEST PUSH2 0x17C1 DUP2 DUP6 PUSH2 0x1C81 JUMP JUMPDEST SWAP4 POP PUSH2 0x17D1 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DCA JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17EA PUSH1 0x32 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x17F5 DUP3 PUSH2 0x1FA7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x180D PUSH1 0x25 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1818 DUP3 PUSH2 0x1FF6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1830 PUSH1 0x24 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x183B DUP3 PUSH2 0x2045 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1853 PUSH1 0x19 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x185E DUP3 PUSH2 0x2094 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1876 PUSH1 0x2C DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1881 DUP3 PUSH2 0x20BD JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1899 PUSH1 0x38 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x18A4 DUP3 PUSH2 0x210C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18BC PUSH1 0x2A DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x18C7 DUP3 PUSH2 0x215B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18DF PUSH1 0x29 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x18EA DUP3 PUSH2 0x21AA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1902 PUSH1 0x2C DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x190D DUP3 PUSH2 0x21F9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1925 PUSH1 0x2F DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1930 DUP3 PUSH2 0x2248 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1948 PUSH1 0x21 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1953 DUP3 PUSH2 0x2297 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x196B PUSH1 0x31 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1976 DUP3 PUSH2 0x22E6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x198A DUP2 PUSH2 0x1DB1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x199C DUP3 DUP6 PUSH2 0x17AC JUMP JUMPDEST SWAP2 POP PUSH2 0x19A8 DUP3 DUP5 PUSH2 0x17AC JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x19C9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x171C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x19E4 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x171C JUMP JUMPDEST PUSH2 0x19F1 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x171C JUMP JUMPDEST PUSH2 0x19FE PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1981 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1A10 DUP2 DUP5 PUSH2 0x173A JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A30 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x172B 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 0x1A50 DUP2 DUP5 PUSH2 0x1773 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 0x1A71 DUP2 PUSH2 0x17DD 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 0x1A91 DUP2 PUSH2 0x1800 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 0x1AB1 DUP2 PUSH2 0x1823 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 0x1AD1 DUP2 PUSH2 0x1846 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 0x1AF1 DUP2 PUSH2 0x1869 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 0x1B11 DUP2 PUSH2 0x188C 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 0x1B31 DUP2 PUSH2 0x18AF 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 0x1B51 DUP2 PUSH2 0x18D2 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 0x1B71 DUP2 PUSH2 0x18F5 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 0x1B91 DUP2 PUSH2 0x1918 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 0x1BB1 DUP2 PUSH2 0x193B 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 0x1BD1 DUP2 PUSH2 0x195E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1BED PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1981 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BFD PUSH2 0x1C0E JUMP JUMPDEST SWAP1 POP PUSH2 0x1C09 DUP3 DUP3 PUSH2 0x1E2F 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 0x1C33 JUMPI PUSH2 0x1C32 PUSH2 0x1F67 JUMP JUMPDEST JUMPDEST PUSH2 0x1C3C DUP3 PUSH2 0x1F96 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 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C97 DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1CA2 DUP4 PUSH2 0x1DB1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1CD7 JUMPI PUSH2 0x1CD6 PUSH2 0x1EDA JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CED DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1CF8 DUP4 PUSH2 0x1DB1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1D08 JUMPI PUSH2 0x1D07 PUSH2 0x1F09 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D1E DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D29 DUP4 PUSH2 0x1DB1 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1D3C JUMPI PUSH2 0x1D3B PUSH2 0x1EDA JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D52 DUP3 PUSH2 0x1D91 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 0x1DE8 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1DCD JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1DF7 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 0x1E15 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1E29 JUMPI PUSH2 0x1E28 PUSH2 0x1F38 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1E38 DUP3 PUSH2 0x1F96 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1E57 JUMPI PUSH2 0x1E56 PUSH2 0x1F67 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E6B DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1E9E JUMPI PUSH2 0x1E9D PUSH2 0x1EDA JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EB4 DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1EBF DUP4 PUSH2 0x1DB1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1ECF JUMPI PUSH2 0x1ECE PUSH2 0x1F09 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 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 0x12 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 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 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 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 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x233E DUP2 PUSH2 0x1D47 JUMP JUMPDEST DUP2 EQ PUSH2 0x2349 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2355 DUP2 PUSH2 0x1D59 JUMP JUMPDEST DUP2 EQ PUSH2 0x2360 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x236C DUP2 PUSH2 0x1D65 JUMP JUMPDEST DUP2 EQ PUSH2 0x2377 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2383 DUP2 PUSH2 0x1DB1 JUMP JUMPDEST DUP2 EQ PUSH2 0x238E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDD PUSH10 0xC21D94E0F07225D2E2AB STATICCALL PUSH4 0xCAC55A9A PUSH25 0x2016F5EB9F12B2C2B3C6A6CDFE64736F6C6343000804003300 ",
"sourceMap": "218:326:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2488:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3999:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3537:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4726:330;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5122:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2191:235;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1929:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2650:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4283:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5367:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2818:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4502:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1570:300;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;2488:98::-;2542:13;2574:5;2567:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2488:98;:::o;3999:217::-;4075:7;4102:16;4110:7;4102;:16::i;:::-;4094:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4185:15;:24;4201:7;4185:24;;;;;;;;;;;;;;;;;;;;;4178:31;;3999:217;;;:::o;3537:401::-;3617:13;3633:23;3648:7;3633:14;:23::i;:::-;3617:39;;3680:5;3674:11;;:2;:11;;;;3666:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3771:5;3755:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3780:37;3797:5;3804:12;:10;:12::i;:::-;3780:16;:37::i;:::-;3755:62;3734:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3910:21;3919:2;3923:7;3910:8;:21::i;:::-;3537:401;;;:::o;4726:330::-;4915:41;4934:12;:10;:12::i;:::-;4948:7;4915:18;:41::i;:::-;4907:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5021:28;5031:4;5037:2;5041:7;5021:9;:28::i;:::-;4726:330;;;:::o;5122:179::-;5255:39;5272:4;5278:2;5282:7;5255:39;;;;;;;;;;;;:16;:39::i;:::-;5122:179;;;:::o;2191:235::-;2263:7;2282:13;2298:7;:16;2306:7;2298:16;;;;;;;;;;;;;;;;;;;;;2282:32;;2349:1;2332:19;;:5;:19;;;;2324:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2414:5;2407:12;;;2191:235;;;:::o;1929:205::-;2001:7;2045:1;2028:19;;:5;:19;;;;2020:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2111:9;:16;2121:5;2111:16;;;;;;;;;;;;;;;;2104:23;;1929:205;;;:::o;2650:102::-;2706:13;2738:7;2731:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2650:102;:::o;4283:153::-;4377:52;4396:12;:10;:12::i;:::-;4410:8;4420;4377:18;:52::i;:::-;4283:153;;:::o;5367:320::-;5536:41;5555:12;:10;:12::i;:::-;5569:7;5536:18;:41::i;:::-;5528:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5641:39;5655:4;5661:2;5665:7;5674:5;5641:13;:39::i;:::-;5367:320;;;;:::o;2818:329::-;2891:13;2924:16;2932:7;2924;:16::i;:::-;2916:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;3003:21;3027:10;:8;:10::i;:::-;3003:34;;3078:1;3060:7;3054:21;:25;:86;;;;;;;;;;;;;;;;;3106:7;3115:18;:7;:16;:18::i;:::-;3089:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3054:86;3047:93;;;2818:329;;;:::o;4502:162::-;4599:4;4622:18;:25;4641:5;4622:25;;;;;;;;;;;;;;;:35;4648:8;4622:35;;;;;;;;;;;;;;;;;;;;;;;;;4615:42;;4502:162;;;;:::o;829:155:7:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;7159:125:0:-;7224:4;7275:1;7247:30;;:7;:16;7255:7;7247:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7240:37;;7159:125;;;:::o;640:96:5:-;693:7;719:10;712:17;;640:96;:::o;11168:171:0:-;11269:2;11242:15;:24;11258:7;11242:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11324:7;11320:2;11286:46;;11295:23;11310:7;11295:14;:23::i;:::-;11286:46;;;;;;;;;;;;11168:171;;:::o;7442:344::-;7535:4;7559:16;7567:7;7559;:16::i;:::-;7551:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7634:13;7650:23;7665:7;7650:14;:23::i;:::-;7634:39;;7702:5;7691:16;;:7;:16;;;:51;;;;7735:7;7711:31;;:20;7723:7;7711:11;:20::i;:::-;:31;;;7691:51;:87;;;;7746:32;7763:5;7770:7;7746:16;:32::i;:::-;7691:87;7683:96;;;7442:344;;;;:::o;10452:605::-;10606:4;10579:31;;:23;10594:7;10579:14;:23::i;:::-;:31;;;10571:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10684:1;10670:16;;:2;:16;;;;10662:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10738:39;10759:4;10765:2;10769:7;10738:20;:39::i;:::-;10839:29;10856:1;10860:7;10839:8;:29::i;:::-;10898:1;10879:9;:15;10889:4;10879:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10926:1;10909:9;:13;10919:2;10909:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10956:2;10937:7;:16;10945:7;10937:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10993:7;10989:2;10974:27;;10983:4;10974:27;;;;;;;;;;;;11012:38;11032:4;11038:2;11042:7;11012:19;:38::i;:::-;10452:605;;;:::o;11474:307::-;11624:8;11615:17;;:5;:17;;;;11607:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11710:8;11672:18;:25;11691:5;11672:25;;;;;;;;;;;;;;;:35;11698:8;11672:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11755:8;11733:41;;11748:5;11733:41;;;11765:8;11733:41;;;;;;:::i;:::-;;;;;;;;11474:307;;;:::o;6549:::-;6700:28;6710:4;6716:2;6720:7;6700:9;:28::i;:::-;6746:48;6769:4;6775:2;6779:7;6788:5;6746:22;:48::i;:::-;6738:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6549:307;;;;:::o;3388:92::-;3439:13;3464:9;;;;;;;;;;;;;;3388:92;:::o;328:703:6:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;13668:122:0:-;;;;:::o;14162:121::-;;;;:::o;12334:778::-;12484:4;12504:15;:2;:13;;;:15::i;:::-;12500:606;;;12555:2;12539:36;;;12576:12;:10;:12::i;:::-;12590:4;12596:7;12605:5;12539:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12535:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12795:1;12778:6;:13;:18;12774:266;;;12820:60;;;;;;;;;;:::i;:::-;;;;;;;;12774:266;12992:6;12986:13;12977:6;12973:2;12969:15;12962:38;12535:519;12671:41;;;12661:51;;;:6;:51;;;;12654:58;;;;;12500:606;13091:4;13084:11;;12334:778;;;;;;;:::o;1175:320:4:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;7:343:10:-;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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;544:5;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;685:5;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;839:5;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;998:5;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1220:139::-;1266:5;1304:6;1291:20;1282:29;;1320:33;1347:5;1320:33;:::i;:::-;1272:87;;;;:::o;1365:262::-;1424:6;1473:2;1461:9;1452:7;1448:23;1444:32;1441:2;;;1489:1;1486;1479:12;1441:2;1532:1;1557:53;1602:7;1593:6;1582:9;1578:22;1557:53;:::i;:::-;1547:63;;1503:117;1431:196;;;;:::o;1633:407::-;1701:6;1709;1758:2;1746:9;1737:7;1733:23;1729:32;1726:2;;;1774:1;1771;1764:12;1726:2;1817:1;1842:53;1887:7;1878:6;1867:9;1863:22;1842:53;:::i;:::-;1832:63;;1788:117;1944:2;1970:53;2015:7;2006:6;1995:9;1991:22;1970:53;:::i;:::-;1960:63;;1915:118;1716:324;;;;;:::o;2046:552::-;2123:6;2131;2139;2188:2;2176:9;2167:7;2163:23;2159:32;2156:2;;;2204:1;2201;2194:12;2156:2;2247:1;2272:53;2317:7;2308:6;2297:9;2293:22;2272:53;:::i;:::-;2262:63;;2218:117;2374:2;2400:53;2445:7;2436:6;2425:9;2421:22;2400:53;:::i;:::-;2390:63;;2345:118;2502:2;2528:53;2573:7;2564:6;2553:9;2549:22;2528:53;:::i;:::-;2518:63;;2473:118;2146:452;;;;;:::o;2604:809::-;2699:6;2707;2715;2723;2772:3;2760:9;2751:7;2747:23;2743:33;2740:2;;;2789:1;2786;2779:12;2740:2;2832:1;2857:53;2902:7;2893:6;2882:9;2878:22;2857:53;:::i;:::-;2847:63;;2803:117;2959:2;2985:53;3030:7;3021:6;3010:9;3006:22;2985:53;:::i;:::-;2975:63;;2930:118;3087:2;3113:53;3158:7;3149:6;3138:9;3134:22;3113:53;:::i;:::-;3103:63;;3058:118;3243:2;3232:9;3228:18;3215:32;3274:18;3266:6;3263:30;3260:2;;;3306:1;3303;3296:12;3260:2;3334:62;3388:7;3379:6;3368:9;3364:22;3334:62;:::i;:::-;3324:72;;3186:220;2730:683;;;;;;;:::o;3419:401::-;3484:6;3492;3541:2;3529:9;3520:7;3516:23;3512:32;3509:2;;;3557:1;3554;3547:12;3509:2;3600:1;3625:53;3670:7;3661:6;3650:9;3646:22;3625:53;:::i;:::-;3615:63;;3571:117;3727:2;3753:50;3795:7;3786:6;3775:9;3771:22;3753:50;:::i;:::-;3743:60;;3698:115;3499:321;;;;;:::o;3826:407::-;3894:6;3902;3951:2;3939:9;3930:7;3926:23;3922:32;3919:2;;;3967:1;3964;3957:12;3919:2;4010:1;4035:53;4080:7;4071:6;4060:9;4056:22;4035:53;:::i;:::-;4025:63;;3981:117;4137:2;4163:53;4208:7;4199:6;4188:9;4184:22;4163:53;:::i;:::-;4153:63;;4108:118;3909:324;;;;;:::o;4239:260::-;4297:6;4346:2;4334:9;4325:7;4321:23;4317:32;4314:2;;;4362:1;4359;4352:12;4314:2;4405:1;4430:52;4474:7;4465:6;4454:9;4450:22;4430:52;:::i;:::-;4420:62;;4376:116;4304:195;;;;:::o;4505:282::-;4574:6;4623:2;4611:9;4602:7;4598:23;4594:32;4591:2;;;4639:1;4636;4629:12;4591:2;4682:1;4707:63;4762:7;4753:6;4742:9;4738:22;4707:63;:::i;:::-;4697:73;;4653:127;4581:206;;;;:::o;4793:262::-;4852:6;4901:2;4889:9;4880:7;4876:23;4872:32;4869:2;;;4917:1;4914;4907:12;4869:2;4960:1;4985:53;5030:7;5021:6;5010:9;5006:22;4985:53;:::i;:::-;4975:63;;4931:117;4859:196;;;;:::o;5061:118::-;5148:24;5166:5;5148:24;:::i;:::-;5143:3;5136:37;5126:53;;:::o;5185:109::-;5266:21;5281:5;5266:21;:::i;:::-;5261:3;5254:34;5244:50;;:::o;5300:360::-;5386:3;5414:38;5446:5;5414:38;:::i;:::-;5468:70;5531:6;5526:3;5468:70;:::i;:::-;5461:77;;5547:52;5592:6;5587:3;5580:4;5573:5;5569:16;5547:52;:::i;:::-;5624:29;5646:6;5624:29;:::i;:::-;5619:3;5615:39;5608:46;;5390:270;;;;;:::o;5666:364::-;5754:3;5782:39;5815:5;5782:39;:::i;:::-;5837:71;5901:6;5896:3;5837:71;:::i;:::-;5830:78;;5917:52;5962:6;5957:3;5950:4;5943:5;5939:16;5917:52;:::i;:::-;5994:29;6016:6;5994:29;:::i;:::-;5989:3;5985:39;5978:46;;5758:272;;;;;:::o;6036:377::-;6142:3;6170:39;6203:5;6170:39;:::i;:::-;6225:89;6307:6;6302:3;6225:89;:::i;:::-;6218:96;;6323:52;6368:6;6363:3;6356:4;6349:5;6345:16;6323:52;:::i;:::-;6400:6;6395:3;6391:16;6384:23;;6146:267;;;;;:::o;6419:366::-;6561:3;6582:67;6646:2;6641:3;6582:67;:::i;:::-;6575:74;;6658:93;6747:3;6658:93;:::i;:::-;6776:2;6771:3;6767:12;6760:19;;6565:220;;;:::o;6791:366::-;6933:3;6954:67;7018:2;7013:3;6954:67;:::i;:::-;6947:74;;7030:93;7119:3;7030:93;:::i;:::-;7148:2;7143:3;7139:12;7132:19;;6937:220;;;:::o;7163:366::-;7305:3;7326:67;7390:2;7385:3;7326:67;:::i;:::-;7319:74;;7402:93;7491:3;7402:93;:::i;:::-;7520:2;7515:3;7511:12;7504:19;;7309:220;;;:::o;7535:366::-;7677:3;7698:67;7762:2;7757:3;7698:67;:::i;:::-;7691:74;;7774:93;7863:3;7774:93;:::i;:::-;7892:2;7887:3;7883:12;7876:19;;7681:220;;;:::o;7907:366::-;8049:3;8070:67;8134:2;8129:3;8070:67;:::i;:::-;8063:74;;8146:93;8235:3;8146:93;:::i;:::-;8264:2;8259:3;8255:12;8248:19;;8053:220;;;:::o;8279:366::-;8421:3;8442:67;8506:2;8501:3;8442:67;:::i;:::-;8435:74;;8518:93;8607:3;8518:93;:::i;:::-;8636:2;8631:3;8627:12;8620:19;;8425:220;;;:::o;8651:366::-;8793:3;8814:67;8878:2;8873:3;8814:67;:::i;:::-;8807:74;;8890:93;8979:3;8890:93;:::i;:::-;9008:2;9003:3;8999:12;8992:19;;8797:220;;;:::o;9023:366::-;9165:3;9186:67;9250:2;9245:3;9186:67;:::i;:::-;9179:74;;9262:93;9351:3;9262:93;:::i;:::-;9380:2;9375:3;9371:12;9364:19;;9169:220;;;:::o;9395:366::-;9537:3;9558:67;9622:2;9617:3;9558:67;:::i;:::-;9551:74;;9634:93;9723:3;9634:93;:::i;:::-;9752:2;9747:3;9743:12;9736:19;;9541:220;;;:::o;9767:366::-;9909:3;9930:67;9994:2;9989:3;9930:67;:::i;:::-;9923:74;;10006:93;10095:3;10006:93;:::i;:::-;10124:2;10119:3;10115:12;10108:19;;9913:220;;;:::o;10139:366::-;10281:3;10302:67;10366:2;10361:3;10302:67;:::i;:::-;10295:74;;10378:93;10467:3;10378:93;:::i;:::-;10496:2;10491:3;10487:12;10480:19;;10285:220;;;:::o;10511:366::-;10653:3;10674:67;10738:2;10733:3;10674:67;:::i;:::-;10667:74;;10750:93;10839:3;10750:93;:::i;:::-;10868:2;10863:3;10859:12;10852:19;;10657:220;;;:::o;10883:118::-;10970:24;10988:5;10970:24;:::i;:::-;10965:3;10958:37;10948:53;;:::o;11007:435::-;11187:3;11209:95;11300:3;11291:6;11209:95;:::i;:::-;11202:102;;11321:95;11412:3;11403:6;11321:95;:::i;:::-;11314:102;;11433:3;11426:10;;11191:251;;;;;:::o;11448:222::-;11541:4;11579:2;11568:9;11564:18;11556:26;;11592:71;11660:1;11649:9;11645:17;11636:6;11592:71;:::i;:::-;11546:124;;;;:::o;11676:640::-;11871:4;11909:3;11898:9;11894:19;11886:27;;11923:71;11991:1;11980:9;11976:17;11967:6;11923:71;:::i;:::-;12004:72;12072:2;12061:9;12057:18;12048:6;12004:72;:::i;:::-;12086;12154:2;12143:9;12139:18;12130:6;12086:72;:::i;:::-;12205:9;12199:4;12195:20;12190:2;12179:9;12175:18;12168:48;12233:76;12304:4;12295:6;12233:76;:::i;:::-;12225:84;;11876:440;;;;;;;:::o;12322:210::-;12409:4;12447:2;12436:9;12432:18;12424:26;;12460:65;12522:1;12511:9;12507:17;12498:6;12460:65;:::i;:::-;12414:118;;;;:::o;12538:313::-;12651:4;12689:2;12678:9;12674:18;12666:26;;12738:9;12732:4;12728:20;12724:1;12713:9;12709:17;12702:47;12766:78;12839:4;12830:6;12766:78;:::i;:::-;12758:86;;12656:195;;;;:::o;12857:419::-;13023:4;13061:2;13050:9;13046:18;13038:26;;13110:9;13104:4;13100:20;13096:1;13085:9;13081:17;13074:47;13138:131;13264:4;13138:131;:::i;:::-;13130:139;;13028:248;;;:::o;13282:419::-;13448:4;13486:2;13475:9;13471:18;13463:26;;13535:9;13529:4;13525:20;13521:1;13510:9;13506:17;13499:47;13563:131;13689:4;13563:131;:::i;:::-;13555:139;;13453:248;;;:::o;13707:419::-;13873:4;13911:2;13900:9;13896:18;13888:26;;13960:9;13954:4;13950:20;13946:1;13935:9;13931:17;13924:47;13988:131;14114:4;13988:131;:::i;:::-;13980:139;;13878:248;;;:::o;14132:419::-;14298:4;14336:2;14325:9;14321:18;14313:26;;14385:9;14379:4;14375:20;14371:1;14360:9;14356:17;14349:47;14413:131;14539:4;14413:131;:::i;:::-;14405:139;;14303:248;;;:::o;14557:419::-;14723:4;14761:2;14750:9;14746:18;14738:26;;14810:9;14804:4;14800:20;14796:1;14785:9;14781:17;14774:47;14838:131;14964:4;14838:131;:::i;:::-;14830:139;;14728:248;;;:::o;14982:419::-;15148:4;15186:2;15175:9;15171:18;15163:26;;15235:9;15229:4;15225:20;15221:1;15210:9;15206:17;15199:47;15263:131;15389:4;15263:131;:::i;:::-;15255:139;;15153:248;;;:::o;15407:419::-;15573:4;15611:2;15600:9;15596:18;15588:26;;15660:9;15654:4;15650:20;15646:1;15635:9;15631:17;15624:47;15688:131;15814:4;15688:131;:::i;:::-;15680:139;;15578:248;;;:::o;15832:419::-;15998:4;16036:2;16025:9;16021:18;16013:26;;16085:9;16079:4;16075:20;16071:1;16060:9;16056:17;16049:47;16113:131;16239:4;16113:131;:::i;:::-;16105:139;;16003:248;;;:::o;16257:419::-;16423:4;16461:2;16450:9;16446:18;16438:26;;16510:9;16504:4;16500:20;16496:1;16485:9;16481:17;16474:47;16538:131;16664:4;16538:131;:::i;:::-;16530:139;;16428:248;;;:::o;16682:419::-;16848:4;16886:2;16875:9;16871:18;16863:26;;16935:9;16929:4;16925:20;16921:1;16910:9;16906:17;16899:47;16963:131;17089:4;16963:131;:::i;:::-;16955:139;;16853:248;;;:::o;17107:419::-;17273:4;17311:2;17300:9;17296:18;17288:26;;17360:9;17354:4;17350:20;17346:1;17335:9;17331:17;17324:47;17388:131;17514:4;17388:131;:::i;:::-;17380:139;;17278:248;;;:::o;17532:419::-;17698:4;17736:2;17725:9;17721:18;17713:26;;17785:9;17779:4;17775:20;17771:1;17760:9;17756:17;17749:47;17813:131;17939:4;17813:131;:::i;:::-;17805:139;;17703:248;;;:::o;17957:222::-;18050:4;18088:2;18077:9;18073:18;18065:26;;18101:71;18169:1;18158:9;18154:17;18145:6;18101:71;:::i;:::-;18055:124;;;;:::o;18185:129::-;18219:6;18246:20;;:::i;:::-;18236:30;;18275:33;18303:4;18295:6;18275:33;:::i;:::-;18226:88;;;:::o;18320:75::-;18353:6;18386:2;18380:9;18370:19;;18360:35;:::o;18401:307::-;18462:4;18552:18;18544:6;18541:30;18538:2;;;18574:18;;:::i;:::-;18538:2;18612:29;18634:6;18612:29;:::i;:::-;18604:37;;18696:4;18690;18686:15;18678:23;;18467:241;;;:::o;18714:98::-;18765:6;18799:5;18793:12;18783:22;;18772:40;;;:::o;18818:99::-;18870:6;18904:5;18898:12;18888:22;;18877:40;;;:::o;18923:168::-;19006:11;19040:6;19035:3;19028:19;19080:4;19075:3;19071:14;19056:29;;19018:73;;;;:::o;19097:169::-;19181:11;19215:6;19210:3;19203:19;19255:4;19250:3;19246:14;19231:29;;19193:73;;;;:::o;19272:148::-;19374:11;19411:3;19396:18;;19386:34;;;;:::o;19426:305::-;19466:3;19485:20;19503:1;19485:20;:::i;:::-;19480:25;;19519:20;19537:1;19519:20;:::i;:::-;19514:25;;19673:1;19605:66;19601:74;19598:1;19595:81;19592:2;;;19679:18;;:::i;:::-;19592:2;19723:1;19720;19716:9;19709:16;;19470:261;;;;:::o;19737:185::-;19777:1;19794:20;19812:1;19794:20;:::i;:::-;19789:25;;19828:20;19846:1;19828:20;:::i;:::-;19823:25;;19867:1;19857:2;;19872:18;;:::i;:::-;19857:2;19914:1;19911;19907:9;19902:14;;19779:143;;;;:::o;19928:191::-;19968:4;19988:20;20006:1;19988:20;:::i;:::-;19983:25;;20022:20;20040:1;20022:20;:::i;:::-;20017:25;;20061:1;20058;20055:8;20052:2;;;20066:18;;:::i;:::-;20052:2;20111:1;20108;20104:9;20096:17;;19973:146;;;;:::o;20125:96::-;20162:7;20191:24;20209:5;20191:24;:::i;:::-;20180:35;;20170:51;;;:::o;20227:90::-;20261:7;20304:5;20297:13;20290:21;20279:32;;20269:48;;;:::o;20323:149::-;20359:7;20399:66;20392:5;20388:78;20377:89;;20367:105;;;:::o;20478:126::-;20515:7;20555:42;20548:5;20544:54;20533:65;;20523:81;;;:::o;20610:77::-;20647:7;20676:5;20665:16;;20655:32;;;:::o;20693:154::-;20777:6;20772:3;20767;20754:30;20839:1;20830:6;20825:3;20821:16;20814:27;20744:103;;;:::o;20853:307::-;20921:1;20931:113;20945:6;20942:1;20939:13;20931:113;;;21030:1;21025:3;21021:11;21015:18;21011:1;21006:3;21002:11;20995:39;20967:2;20964:1;20960:10;20955:15;;20931:113;;;21062:6;21059:1;21056:13;21053:2;;;21142:1;21133:6;21128:3;21124:16;21117:27;21053:2;20902:258;;;;:::o;21166:320::-;21210:6;21247:1;21241:4;21237:12;21227:22;;21294:1;21288:4;21284:12;21315:18;21305:2;;21371:4;21363:6;21359:17;21349:27;;21305:2;21433;21425:6;21422:14;21402:18;21399:38;21396:2;;;21452:18;;:::i;:::-;21396:2;21217:269;;;;:::o;21492:281::-;21575:27;21597:4;21575:27;:::i;:::-;21567:6;21563:40;21705:6;21693:10;21690:22;21669:18;21657:10;21654:34;21651:62;21648:2;;;21716:18;;:::i;:::-;21648:2;21756:10;21752:2;21745:22;21535:238;;;:::o;21779:233::-;21818:3;21841:24;21859:5;21841:24;:::i;:::-;21832:33;;21887:66;21880:5;21877:77;21874:2;;;21957:18;;:::i;:::-;21874:2;22004:1;21997:5;21993:13;21986:20;;21822:190;;;:::o;22018:176::-;22050:1;22067:20;22085:1;22067:20;:::i;:::-;22062:25;;22101:20;22119:1;22101:20;:::i;:::-;22096:25;;22140:1;22130:2;;22145:18;;:::i;:::-;22130:2;22186:1;22183;22179:9;22174:14;;22052:142;;;;:::o;22200:180::-;22248:77;22245:1;22238:88;22345:4;22342:1;22335:15;22369:4;22366:1;22359:15;22386:180;22434:77;22431:1;22424:88;22531:4;22528:1;22521:15;22555:4;22552:1;22545:15;22572:180;22620:77;22617:1;22610:88;22717:4;22714:1;22707:15;22741:4;22738:1;22731:15;22758:180;22806:77;22803:1;22796:88;22903:4;22900:1;22893:15;22927:4;22924:1;22917:15;22944:102;22985:6;23036:2;23032:7;23027:2;23020:5;23016:14;23012:28;23002:38;;22992:54;;;:::o;23052:237::-;23192:34;23188:1;23180:6;23176:14;23169:58;23261:20;23256:2;23248:6;23244:15;23237:45;23158:131;:::o;23295:224::-;23435:34;23431:1;23423:6;23419:14;23412:58;23504:7;23499:2;23491:6;23487:15;23480:32;23401:118;:::o;23525:223::-;23665:34;23661:1;23653:6;23649:14;23642:58;23734:6;23729:2;23721:6;23717:15;23710:31;23631:117;:::o;23754:175::-;23894:27;23890:1;23882:6;23878:14;23871:51;23860:69;:::o;23935:231::-;24075:34;24071:1;24063:6;24059:14;24052:58;24144:14;24139:2;24131:6;24127:15;24120:39;24041:125;:::o;24172:243::-;24312:34;24308:1;24300:6;24296:14;24289:58;24381:26;24376:2;24368:6;24364:15;24357:51;24278:137;:::o;24421:229::-;24561:34;24557:1;24549:6;24545:14;24538:58;24630:12;24625:2;24617:6;24613:15;24606:37;24527:123;:::o;24656:228::-;24796:34;24792:1;24784:6;24780:14;24773:58;24865:11;24860:2;24852:6;24848:15;24841:36;24762:122;:::o;24890:231::-;25030:34;25026:1;25018:6;25014:14;25007:58;25099:14;25094:2;25086:6;25082:15;25075:39;24996:125;:::o;25127:234::-;25267:34;25263:1;25255:6;25251:14;25244:58;25336:17;25331:2;25323:6;25319:15;25312:42;25233:128;:::o;25367:220::-;25507:34;25503:1;25495:6;25491:14;25484:58;25576:3;25571:2;25563:6;25559:15;25552:28;25473:114;:::o;25593:236::-;25733:34;25729:1;25721:6;25717:14;25710:58;25802:19;25797:2;25789:6;25785:15;25778:44;25699:130;:::o;25835:122::-;25908:24;25926:5;25908:24;:::i;:::-;25901:5;25898:35;25888:2;;25947:1;25944;25937:12;25888:2;25878:79;:::o;25963:116::-;26033:21;26048:5;26033:21;:::i;:::-;26026:5;26023:32;26013:2;;26069:1;26066;26059:12;26013:2;26003:76;:::o;26085:120::-;26157:23;26174:5;26157:23;:::i;:::-;26150:5;26147:34;26137:2;;26195:1;26192;26185:12;26137:2;26127:78;:::o;26211:122::-;26284:24;26302:5;26284:24;:::i;:::-;26277:5;26274:35;26264:2;;26323:1;26320;26313:12;26264:2;26254:79;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1831800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "1624",
"getApproved(uint256)": "2605",
"isApprovedForAll(address,address)": "infinite",
"name()": "infinite",
"ownerOf(uint256)": "1700",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "infinite",
"supportsInterface(bytes4)": "774",
"symbol()": "infinite",
"tokenURI(uint256)": "2095",
"transferFrom(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"name()": "06fdde03",
"ownerOf(uint256)": "6352211e",
"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"
}
},
"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"
}
]
}
{
"compiler": {
"version": "0.8.4+commit.c7e474f2"
},
"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": "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": {
"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}."
},
"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
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"Contracts/1.contract.sol": "FirstContract"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts@4.5.0/token/ERC721/ERC721.sol": {
"keccak256": "0x11b84bb56dc112a6590bfe3e0efa118aa1b5891132342200d04c4ef544cb93de",
"license": "MIT",
"urls": [
"bzz-raw://cbc4803332d45dff58f865ed21c942fe4668e47cc7196c8dfe84102040b1d70f",
"dweb:/ipfs/QmXhZLsocznRWCSyhjo3vo66Z1VsuuNptAVb6ASPYsWtGx"
]
},
"@openzeppelin/contracts@4.5.0/token/ERC721/IERC721.sol": {
"keccak256": "0x516a22876c1fab47f49b1bc22b4614491cd05338af8bd2e7b382da090a079990",
"license": "MIT",
"urls": [
"bzz-raw://a439187f7126d31add4557f82d8aed6be0162007cd7182c48fd934dbab8f3849",
"dweb:/ipfs/QmRPLguRFvrRJS7r6F1bcLvsx6q1VrgjEpZafyeL8D7xZh"
]
},
"@openzeppelin/contracts@4.5.0/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xd5fa74b4fb323776fa4a8158800fec9d5ac0fec0d6dd046dd93798632ada265f",
"license": "MIT",
"urls": [
"bzz-raw://33017a30a99cc5411a9e376622c31fc4a55cfc6a335e2f57f00cbf24a817ff3f",
"dweb:/ipfs/QmWNQtWTPhA7Lo8nbxbc8KFMvZwbFYB8fSeEQ3vuapSV4a"
]
},
"@openzeppelin/contracts@4.5.0/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9",
"license": "MIT",
"urls": [
"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146",
"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf"
]
},
"@openzeppelin/contracts@4.5.0/utils/Address.sol": {
"keccak256": "0x2ccf9d2313a313d41a791505f2b5abfdc62191b5d4334f7f7a82691c088a1c87",
"license": "MIT",
"urls": [
"bzz-raw://b3a57d0854b2fdce6ebff933a48dca2445643d1eccfc27f00292e937f26c6a58",
"dweb:/ipfs/QmW45rZooS9TqR4YXUbjRbtf2Bpb5ouSarBvfW1LdGprvV"
]
},
"@openzeppelin/contracts@4.5.0/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"@openzeppelin/contracts@4.5.0/utils/Strings.sol": {
"keccak256": "0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45",
"license": "MIT",
"urls": [
"bzz-raw://8179c356adb19e70d6b31a1eedc8c5c7f0c00e669e2540f4099e3844c6074d30",
"dweb:/ipfs/QmWFbivarEobbqhS1go64ootVuHfVohBseerYy9FTEd1W2"
]
},
"@openzeppelin/contracts@4.5.0/utils/introspection/ERC165.sol": {
"keccak256": "0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b",
"license": "MIT",
"urls": [
"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d",
"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43"
]
},
"@openzeppelin/contracts@4.5.0/utils/introspection/IERC165.sol": {
"keccak256": "0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1",
"license": "MIT",
"urls": [
"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f",
"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy"
]
},
"Contracts/1.contract.sol": {
"keccak256": "0x37ac4f1cd1a71b3a4c0a9b0b11f1c9510cb75dbda4f5eb5d1a90edd201294ed7",
"license": "MIT",
"urls": [
"bzz-raw://a34f61fc40128ffc5ae5cb844fe82e1bea9d579b84452fa7ea7be3bb2c1452d4",
"dweb:/ipfs/Qmed2ndReWoUTDHD2EiZ2fnitp3dpYamtAVXWETxFThGR4"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4333:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "70:80:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "80:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "95:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "89:5:1"
},
"nodeType": "YulFunctionCall",
"src": "89:13:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "80:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "138:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bytes32",
"nodeType": "YulIdentifier",
"src": "111:26:1"
},
"nodeType": "YulFunctionCall",
"src": "111:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "111:33:1"
}
]
},
"name": "abi_decode_t_bytes32_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "48:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "56:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "64:5:1",
"type": ""
}
],
"src": "7:143:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "233:207:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "279:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "288:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "291:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "281:6:1"
},
"nodeType": "YulFunctionCall",
"src": "281:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "281:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "254:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "263:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "250:3:1"
},
"nodeType": "YulFunctionCall",
"src": "250:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "275:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "246:3:1"
},
"nodeType": "YulFunctionCall",
"src": "246:32:1"
},
"nodeType": "YulIf",
"src": "243:2:1"
},
{
"nodeType": "YulBlock",
"src": "305:128:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "320:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "334:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "324:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "349:74:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "395:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "406:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "391:3:1"
},
"nodeType": "YulFunctionCall",
"src": "391:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "415:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bytes32_fromMemory",
"nodeType": "YulIdentifier",
"src": "359:31:1"
},
"nodeType": "YulFunctionCall",
"src": "359:64:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "349:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes32_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "203:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "214:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "226:6:1",
"type": ""
}
],
"src": "156:284:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "554:265:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "564:52:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "610:5:1"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "578:31:1"
},
"nodeType": "YulFunctionCall",
"src": "578:38:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "568:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "625:95:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "708:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "713:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "632:75:1"
},
"nodeType": "YulFunctionCall",
"src": "632:88:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "625:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "755:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "762:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "751:3:1"
},
"nodeType": "YulFunctionCall",
"src": "751:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "769:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "774:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "729:21:1"
},
"nodeType": "YulFunctionCall",
"src": "729:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "729:52:1"
},
{
"nodeType": "YulAssignment",
"src": "790:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "801:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "806:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "797:3:1"
},
"nodeType": "YulFunctionCall",
"src": "797:16:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "790:3:1"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "535:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "542:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "550:3:1",
"type": ""
}
],
"src": "446:373:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "989:236:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "999:91:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1083:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1088:1:1",
"type": "",
"value": "4"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "1006:76:1"
},
"nodeType": "YulFunctionCall",
"src": "1006:84:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "999:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1188:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085",
"nodeType": "YulIdentifier",
"src": "1099:88:1"
},
"nodeType": "YulFunctionCall",
"src": "1099:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "1099:93:1"
},
{
"nodeType": "YulAssignment",
"src": "1201:18:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1212:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1217:1:1",
"type": "",
"value": "4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1208:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1208:11:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1201:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "977:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "985:3:1",
"type": ""
}
],
"src": "825:400:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1395:236:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1405:91:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1489:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1494:1:1",
"type": "",
"value": "6"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "1412:76:1"
},
"nodeType": "YulFunctionCall",
"src": "1412:84:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1405:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1594:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c",
"nodeType": "YulIdentifier",
"src": "1505:88:1"
},
"nodeType": "YulFunctionCall",
"src": "1505:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "1505:93:1"
},
{
"nodeType": "YulAssignment",
"src": "1607:18:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1618:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1623:1:1",
"type": "",
"value": "6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1614:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1614:11:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1607:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1383:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1391:3:1",
"type": ""
}
],
"src": "1231:400:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1771:137:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1782:100:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1869:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1878:3:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "1789:79:1"
},
"nodeType": "YulFunctionCall",
"src": "1789:93:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1782:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1892:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1899:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1892:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1750:3:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1756:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1767:3:1",
"type": ""
}
],
"src": "1637:271:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2204:357:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2215:155:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2366:3:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "2222:142:1"
},
"nodeType": "YulFunctionCall",
"src": "2222:148:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2215:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2380:155:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2531:3:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "2387:142:1"
},
"nodeType": "YulFunctionCall",
"src": "2387:148:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2380:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2545:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2552:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2545:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085_t_stringliteral_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2191:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2200:3:1",
"type": ""
}
],
"src": "1914:647:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2625:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2636:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2652:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2646:5:1"
},
"nodeType": "YulFunctionCall",
"src": "2646:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2636:6:1"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2608:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2618:6:1",
"type": ""
}
],
"src": "2567:98:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2784:34:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2794:18:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2809:3:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2794:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2756:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2761:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2772:11:1",
"type": ""
}
],
"src": "2671:147:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2938:34:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2948:18:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2963:3:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2948:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2910:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2915:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2926:11:1",
"type": ""
}
],
"src": "2824:148:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3023:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3033:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3044:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3033:7:1"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3005:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3015:7:1",
"type": ""
}
],
"src": "2978:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3110:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3120:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3129:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "3124:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3189:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3214:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3219:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3210:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3210:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3233:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3238:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3229:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3229:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3223:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3223:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3203:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3203:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "3203:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3150:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3153:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3147:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3147:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "3161:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3163:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3172:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3175:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3168:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3168:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3163:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "3143:3:1",
"statements": []
},
"src": "3139:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3286:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3336:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3341:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3332:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3332:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3350:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3325:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3325:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "3325:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3267:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3270:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3264:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3264:13:1"
},
"nodeType": "YulIf",
"src": "3261:2:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3092:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3097:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3102:6:1",
"type": ""
}
],
"src": "3061:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3425:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3435:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3449:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3455:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3445:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3445:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3435:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3466:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3496:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3502:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3492:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3492:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "3470:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3543:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3557:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3571:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3579:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3567:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3567:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3557:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3523:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3516:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3516:26:1"
},
"nodeType": "YulIf",
"src": "3513:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3646:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "3660:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3660:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3660:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3610:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3633:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3641:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3630:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3630:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3607:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3607:38:1"
},
"nodeType": "YulIf",
"src": "3604:2:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3409:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3418:6:1",
"type": ""
}
],
"src": "3374:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3728:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3745:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3748:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3738:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3738:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "3738:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3842:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3845:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3835:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3835:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3835:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3866:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3869:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3859:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3859:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3859:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "3700:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3992:48:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4014:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4022:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4010:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4010:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4026:6:1",
"type": "",
"value": "Hola"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4003:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4003:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "4003:30:1"
}
]
},
"name": "store_literal_in_memory_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3984:6:1",
"type": ""
}
],
"src": "3886:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4152:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4174:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4182:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4170:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4170:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4186:8:1",
"type": "",
"value": "Alfred"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4163:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4163:32:1"
},
"nodeType": "YulExpressionStatement",
"src": "4163:32:1"
}
]
},
"name": "store_literal_in_memory_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4144:6:1",
"type": ""
}
],
"src": "4046:156:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4251:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4308:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4310:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4274:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4299:5:1"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "4281:17:1"
},
"nodeType": "YulFunctionCall",
"src": "4281:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4271:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4271:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4264:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4264:43:1"
},
"nodeType": "YulIf",
"src": "4261:2:1"
}
]
},
"name": "validator_revert_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4244:5:1",
"type": ""
}
],
"src": "4208:122:1"
}
]
},
"contents": "{\n\n function abi_decode_t_bytes32_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes32(value)\n }\n\n function abi_decode_tuple_t_bytes32_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_t_stringliteral_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 4)\n store_literal_in_memory_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085(pos)\n end := add(pos, 4)\n }\n\n function abi_encode_t_stringliteral_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 6)\n store_literal_in_memory_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c(pos)\n end := add(pos, 6)\n }\n\n function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n function abi_encode_tuple_packed_t_stringliteral_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085_t_stringliteral_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos ) -> end {\n\n pos := abi_encode_t_stringliteral_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n pos := abi_encode_t_stringliteral_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n end := pos\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\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 panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function store_literal_in_memory_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085(memPtr) {\n\n mstore(add(memPtr, 0), \"Hola\")\n\n }\n\n function store_literal_in_memory_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c(memPtr) {\n\n mstore(add(memPtr, 0), \"Alfred\")\n\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526003600160006101000a81548160ff021916908360ff1602179055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0600360006101000a81548160ff021916908360000b60ff16021790555060416004556040518060400160405280600f81526020017f4573746f206573207075626c69636f000000000000000000000000000000000081525060069080519060200190620000b0929190620002eb565b506040518060400160405280600f81526020017f4573746f206573207072697661646f000000000000000000000000000000000081525060079080519060200190620000fe929190620002eb565b506001600860016101000a81548160ff0219169083151502179055506000600860026101000a81548160ff02191690831515021790555060405160200162000146906200047c565b60405160208183030381529060405280519060200120600b55600260405160200162000172906200047c565b60405160208183030381529060405260405162000190919062000463565b602060405180830381855afa158015620001ae573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190620001d39190620003b2565b600c556003604051602001620001e9906200047c565b60405160208183030381529060405260405162000207919062000463565b602060405180830381855afa15801562000225573d6000803e3d6000fd5b5050506040515160601b6bffffffffffffffffffffffff1916600d5573ab8483f64d9c6d1ecf9b849ae677dd3315835cb2600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620002e457600080fd5b50620005d2565b828054620002f99062000501565b90600052602060002090601f0160209004810192826200031d576000855562000369565b82601f106200033857805160ff191683800117855562000369565b8280016001018555821562000369579182015b82811115620003685782518255916020019190600101906200034b565b5b5090506200037891906200037c565b5090565b5b80821115620003975760008160009055506001016200037d565b5090565b600081519050620003ac81620005b8565b92915050565b600060208284031215620003c557600080fd5b6000620003d5848285016200039b565b91505092915050565b6000620003eb82620004a0565b620003f78185620004ab565b935062000409818560208601620004cb565b80840191505092915050565b600062000424600483620004b6565b9150620004318262000566565b600482019050919050565b60006200044b600683620004b6565b915062000458826200058f565b600682019050919050565b6000620004718284620003de565b915081905092915050565b6000620004898262000415565b915062000496826200043c565b9150819050919050565b600081519050919050565b600081905092915050565b600081905092915050565b6000819050919050565b60005b83811015620004eb578082015181840152602081019050620004ce565b83811115620004fb576000848401525b50505050565b600060028204905060018216806200051a57607f821691505b6020821081141562000531576200053062000537565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f486f6c6100000000000000000000000000000000000000000000000000000000600082015250565b7f416c667265640000000000000000000000000000000000000000000000000000600082015250565b620005c381620004c1565b8114620005cf57600080fd5b50565b61073e80620005e26000396000f3fe608060405234801561001057600080fd5b50600436106100ce5760003560e01c80637a68ef7f1161008c578063af10c81011610066578063af10c810146101e1578063b83d07b7146101eb578063ba33ed7d14610209578063c7109d0414610213576100ce565b80637a68ef7f146101875780638a054ac2146101a55780639eea4a3a146101c3576100ce565b80628e8b8d146100d35780632b73648d146100f1578063312eef291461010f5780633a36399e1461012d5780634df7e3d01461014b5780637272eea114610169575b600080fd5b6100db610231565b6040516100e891906104d4565b60405180910390f35b6100f9610244565b60405161010691906104ef565b60405180910390f35b61011761024a565b60405161012491906104d4565b60405180910390f35b61013561025d565b60405161014291906104b9565b60405180910390f35b610153610283565b6040516101609190610562565b60405180910390f35b610171610296565b60405161017e919061050a565b60405180910390f35b61018f6102ad565b60405161019c91906104ef565b60405180910390f35b6101ad6102b3565b6040516101ba9190610525565b60405180910390f35b6101cb6102c6565b6040516101d891906104b9565b60405180910390f35b6101e96102ec565b005b6101f361033f565b6040516102009190610540565b60405180910390f35b6102116103cd565b005b61021b610420565b60405161022891906104ef565b60405180910390f35b600860029054906101000a900460ff1681565b600b5481565b600860019054906101000a900460ff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160009054906101000a900460ff1681565b6000601060149054906101000a900460ff16905090565b600d5481565b600360009054906101000a900460000b81565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6001601060146101000a81548160ff02191690836001811115610338577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b6006805461034c90610653565b80601f016020809104026020016040519081016040528092919081815260200182805461037890610653565b80156103c55780601f1061039a576101008083540402835291602001916103c5565b820191906000526020600020905b8154815290600101906020018083116103a857829003601f168201915b505050505081565b6000601060146101000a81548160ff02191690836001811115610419577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b600c5481565b61042f81610599565b82525050565b61043e816105ab565b82525050565b61044d816105b7565b82525050565b61045c8161060e565b82525050565b61046b816105d4565b82525050565b600061047c8261057d565b6104868185610588565b9350610496818560208601610620565b61049f816106e3565b840191505092915050565b6104b381610601565b82525050565b60006020820190506104ce6000830184610426565b92915050565b60006020820190506104e96000830184610435565b92915050565b60006020820190506105046000830184610444565b92915050565b600060208201905061051f6000830184610453565b92915050565b600060208201905061053a6000830184610462565b92915050565b6000602082019050818103600083015261055a8184610471565b905092915050565b600060208201905061057760008301846104aa565b92915050565b600081519050919050565b600082825260208201905092915050565b60006105a4826105e1565b9050919050565b60008115159050919050565b6000819050919050565b60008190506105cf826106f4565b919050565b60008160000b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060ff82169050919050565b6000610619826105c1565b9050919050565b60005b8381101561063e578082015181840152602081019050610623565b8381111561064d576000848401525b50505050565b6000600282049050600182168061066b57607f821691505b6020821081141561067f5761067e6106b4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6002811061070557610704610685565b5b5056fea2646970667358221220da47dc5dbbe1f2c3c6e932f6469c69a7b23a61818e392fdac635f12579aad2a364736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x3 PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 PUSH1 0x3 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x0 SIGNEXTEND PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x41 PUSH1 0x4 SSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xF DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4573746F206573207075626C69636F0000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x6 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xB0 SWAP3 SWAP2 SWAP1 PUSH3 0x2EB JUMP JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xF DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4573746F206573207072697661646F0000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x7 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xFE SWAP3 SWAP2 SWAP1 PUSH3 0x2EB JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x8 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x8 PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH3 0x146 SWAP1 PUSH3 0x47C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0xB SSTORE PUSH1 0x2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH3 0x172 SWAP1 PUSH3 0x47C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH3 0x190 SWAP2 SWAP1 PUSH3 0x463 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH3 0x1AE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH3 0x1D3 SWAP2 SWAP1 PUSH3 0x3B2 JUMP JUMPDEST PUSH1 0xC SSTORE PUSH1 0x3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH3 0x1E9 SWAP1 PUSH3 0x47C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH3 0x207 SWAP2 SWAP1 PUSH3 0x463 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH3 0x225 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP PUSH1 0x40 MLOAD MLOAD PUSH1 0x60 SHL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0xD SSTORE PUSH20 0xAB8483F64D9C6D1ECF9B849AE677DD3315835CB2 PUSH1 0xF PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP CALLER PUSH1 0x10 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH3 0x2E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x5D2 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x2F9 SWAP1 PUSH3 0x501 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x31D JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x369 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x338 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x369 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x369 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x368 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x34B JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x378 SWAP2 SWAP1 PUSH3 0x37C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x397 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x37D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x3AC DUP2 PUSH3 0x5B8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x3C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH3 0x3D5 DUP5 DUP3 DUP6 ADD PUSH3 0x39B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3EB DUP3 PUSH3 0x4A0 JUMP JUMPDEST PUSH3 0x3F7 DUP2 DUP6 PUSH3 0x4AB JUMP JUMPDEST SWAP4 POP PUSH3 0x409 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH3 0x4CB JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x424 PUSH1 0x4 DUP4 PUSH3 0x4B6 JUMP JUMPDEST SWAP2 POP PUSH3 0x431 DUP3 PUSH3 0x566 JUMP JUMPDEST PUSH1 0x4 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x44B PUSH1 0x6 DUP4 PUSH3 0x4B6 JUMP JUMPDEST SWAP2 POP PUSH3 0x458 DUP3 PUSH3 0x58F JUMP JUMPDEST PUSH1 0x6 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x471 DUP3 DUP5 PUSH3 0x3DE JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x489 DUP3 PUSH3 0x415 JUMP JUMPDEST SWAP2 POP PUSH3 0x496 DUP3 PUSH3 0x43C JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x4EB JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x4CE JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x4FB 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 0x51A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x531 JUMPI PUSH3 0x530 PUSH3 0x537 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x486F6C6100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x416C667265640000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH3 0x5C3 DUP2 PUSH3 0x4C1 JUMP JUMPDEST DUP2 EQ PUSH3 0x5CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x73E DUP1 PUSH3 0x5E2 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 0xCE JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7A68EF7F GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xAF10C810 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xAF10C810 EQ PUSH2 0x1E1 JUMPI DUP1 PUSH4 0xB83D07B7 EQ PUSH2 0x1EB JUMPI DUP1 PUSH4 0xBA33ED7D EQ PUSH2 0x209 JUMPI DUP1 PUSH4 0xC7109D04 EQ PUSH2 0x213 JUMPI PUSH2 0xCE JUMP JUMPDEST DUP1 PUSH4 0x7A68EF7F EQ PUSH2 0x187 JUMPI DUP1 PUSH4 0x8A054AC2 EQ PUSH2 0x1A5 JUMPI DUP1 PUSH4 0x9EEA4A3A EQ PUSH2 0x1C3 JUMPI PUSH2 0xCE JUMP JUMPDEST DUP1 PUSH3 0x8E8B8D EQ PUSH2 0xD3 JUMPI DUP1 PUSH4 0x2B73648D EQ PUSH2 0xF1 JUMPI DUP1 PUSH4 0x312EEF29 EQ PUSH2 0x10F JUMPI DUP1 PUSH4 0x3A36399E EQ PUSH2 0x12D JUMPI DUP1 PUSH4 0x4DF7E3D0 EQ PUSH2 0x14B JUMPI DUP1 PUSH4 0x7272EEA1 EQ PUSH2 0x169 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDB PUSH2 0x231 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE8 SWAP2 SWAP1 PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF9 PUSH2 0x244 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x106 SWAP2 SWAP1 PUSH2 0x4EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x117 PUSH2 0x24A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x124 SWAP2 SWAP1 PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x135 PUSH2 0x25D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x142 SWAP2 SWAP1 PUSH2 0x4B9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x153 PUSH2 0x283 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x160 SWAP2 SWAP1 PUSH2 0x562 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x171 PUSH2 0x296 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x17E SWAP2 SWAP1 PUSH2 0x50A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x18F PUSH2 0x2AD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19C SWAP2 SWAP1 PUSH2 0x4EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AD PUSH2 0x2B3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BA SWAP2 SWAP1 PUSH2 0x525 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CB PUSH2 0x2C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D8 SWAP2 SWAP1 PUSH2 0x4B9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1E9 PUSH2 0x2EC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1F3 PUSH2 0x33F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 SWAP2 SWAP1 PUSH2 0x540 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x211 PUSH2 0x3CD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x21B PUSH2 0x420 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x228 SWAP2 SWAP1 PUSH2 0x4EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x8 PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0xB SLOAD DUP2 JUMP JUMPDEST PUSH1 0x8 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0xF PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x10 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0xD SLOAD DUP2 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x0 SIGNEXTEND DUP2 JUMP JUMPDEST PUSH1 0x10 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x10 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x338 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x6 DUP1 SLOAD PUSH2 0x34C SWAP1 PUSH2 0x653 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 0x378 SWAP1 PUSH2 0x653 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3C5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x39A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3C5 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 0x3A8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x10 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x419 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0xC SLOAD DUP2 JUMP JUMPDEST PUSH2 0x42F DUP2 PUSH2 0x599 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x43E DUP2 PUSH2 0x5AB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x44D DUP2 PUSH2 0x5B7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x45C DUP2 PUSH2 0x60E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x46B DUP2 PUSH2 0x5D4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x47C DUP3 PUSH2 0x57D JUMP JUMPDEST PUSH2 0x486 DUP2 DUP6 PUSH2 0x588 JUMP JUMPDEST SWAP4 POP PUSH2 0x496 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x620 JUMP JUMPDEST PUSH2 0x49F DUP2 PUSH2 0x6E3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4B3 DUP2 PUSH2 0x601 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x4CE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x426 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x4E9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x435 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x504 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x444 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x51F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x453 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x53A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x462 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 0x55A DUP2 DUP5 PUSH2 0x471 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x577 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x4AA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5A4 DUP3 PUSH2 0x5E1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH2 0x5CF DUP3 PUSH2 0x6F4 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SIGNEXTEND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x619 DUP3 PUSH2 0x5C1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x63E JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x623 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x64D 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 0x66B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x67F JUMPI PUSH2 0x67E PUSH2 0x6B4 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x2 DUP2 LT PUSH2 0x705 JUMPI PUSH2 0x704 PUSH2 0x685 JUMP JUMPDEST JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDA SELFBALANCE 0xDC 0x5D 0xBB 0xE1 CALLCODE 0xC3 0xC6 0xE9 ORIGIN 0xF6 CHAINID SWAP13 PUSH10 0xA7B23A61818E392FDAC6 CALLDATALOAD CALL 0x25 PUSH26 0xAAD2A364736F6C63430008040033000000000000000000000000 ",
"sourceMap": "104:1352:0:-:0;;;206:1;189:18;;;;;;;;;;;;;;;;;;;;284:3;268:19;;;;;;;;;;;;;;;;;;;;;;301:2;293:10;;350:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;400:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;523:4;496:31;;;;;;;;;;;;;;;;;;;;561:5;533:33;;;;;;;;;;;;;;;;;;;;735:34;;;;;;;:::i;:::-;;;;;;;;;;;;;725:45;;;;;;690:80;;808:42;815:34;;;;;;;:::i;:::-;;;;;;;;;;;;;808:42;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;776:74;;891:45;901:34;;;;;;;:::i;:::-;;;;;;;;;;;;;891:45;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;856:80;;;;;1018:42;992:68;;;;;;;;;;;;;;;;;;;;1093:10;1067:36;;;;;;;;;;;;;;;;;;;;104:1352;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:143:1:-;64:5;95:6;89:13;80:22;;111:33;138:5;111:33;:::i;:::-;70:80;;;;:::o;156:284::-;226:6;275:2;263:9;254:7;250:23;246:32;243:2;;;291:1;288;281:12;243:2;334:1;359:64;415:7;406:6;395:9;391:22;359:64;:::i;:::-;349:74;;305:128;233:207;;;;:::o;446:373::-;550:3;578:38;610:5;578:38;:::i;:::-;632:88;713:6;708:3;632:88;:::i;:::-;625:95;;729:52;774:6;769:3;762:4;755:5;751:16;729:52;:::i;:::-;806:6;801:3;797:16;790:23;;554:265;;;;;:::o;825:400::-;985:3;1006:84;1088:1;1083:3;1006:84;:::i;:::-;999:91;;1099:93;1188:3;1099:93;:::i;:::-;1217:1;1212:3;1208:11;1201:18;;989:236;;;:::o;1231:400::-;1391:3;1412:84;1494:1;1489:3;1412:84;:::i;:::-;1405:91;;1505:93;1594:3;1505:93;:::i;:::-;1623:1;1618:3;1614:11;1607:18;;1395:236;;;:::o;1637:271::-;1767:3;1789:93;1878:3;1869:6;1789:93;:::i;:::-;1782:100;;1899:3;1892:10;;1771:137;;;;:::o;1914:647::-;2200:3;2222:148;2366:3;2222:148;:::i;:::-;2215:155;;2387:148;2531:3;2387:148;:::i;:::-;2380:155;;2552:3;2545:10;;2204:357;;;:::o;2567:98::-;2618:6;2652:5;2646:12;2636:22;;2625:40;;;:::o;2671:147::-;2772:11;2809:3;2794:18;;2784:34;;;;:::o;2824:148::-;2926:11;2963:3;2948:18;;2938:34;;;;:::o;2978:77::-;3015:7;3044:5;3033:16;;3023:32;;;:::o;3061:307::-;3129:1;3139:113;3153:6;3150:1;3147:13;3139:113;;;3238:1;3233:3;3229:11;3223:18;3219:1;3214:3;3210:11;3203:39;3175:2;3172:1;3168:10;3163:15;;3139:113;;;3270:6;3267:1;3264:13;3261:2;;;3350:1;3341:6;3336:3;3332:16;3325:27;3261:2;3110:258;;;;:::o;3374:320::-;3418:6;3455:1;3449:4;3445:12;3435:22;;3502:1;3496:4;3492:12;3523:18;3513:2;;3579:4;3571:6;3567:17;3557:27;;3513:2;3641;3633:6;3630:14;3610:18;3607:38;3604:2;;;3660:18;;:::i;:::-;3604:2;3425:269;;;;:::o;3700:180::-;3748:77;3745:1;3738:88;3845:4;3842:1;3835:15;3869:4;3866:1;3859:15;3886:154;4026:6;4022:1;4014:6;4010:14;4003:30;3992:48;:::o;4046:156::-;4186:8;4182:1;4174:6;4170:14;4163:32;4152:50;:::o;4208:122::-;4281:24;4299:5;4281:24;:::i;:::-;4274:5;4271:35;4261:2;;4320:1;4317;4310:12;4261:2;4251:79;:::o;104:1352:0:-;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5188:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "72:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "89:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "112:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "94:17:1"
},
"nodeType": "YulFunctionCall",
"src": "94:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "82:6:1"
},
"nodeType": "YulFunctionCall",
"src": "82:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "82:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "60:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "67:3:1",
"type": ""
}
],
"src": "7:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "190:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "207:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "227:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "212:14:1"
},
"nodeType": "YulFunctionCall",
"src": "212:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "200:6:1"
},
"nodeType": "YulFunctionCall",
"src": "200:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "200:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "178:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "185:3:1",
"type": ""
}
],
"src": "131:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "311:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "328:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "351:5:1"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "333:17:1"
},
"nodeType": "YulFunctionCall",
"src": "333:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "321:6:1"
},
"nodeType": "YulFunctionCall",
"src": "321:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "321:37:1"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "299:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "306:3:1",
"type": ""
}
],
"src": "246:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "443:74:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "460:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "504:5:1"
}
],
"functionName": {
"name": "convert_t_enum$_options_$76_to_t_uint8",
"nodeType": "YulIdentifier",
"src": "465:38:1"
},
"nodeType": "YulFunctionCall",
"src": "465:45:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "453:6:1"
},
"nodeType": "YulFunctionCall",
"src": "453:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "453:58:1"
}
]
},
"name": "abi_encode_t_enum$_options_$76_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "431:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "438:3:1",
"type": ""
}
],
"src": "370:147:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "582:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "599:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "619:5:1"
}
],
"functionName": {
"name": "cleanup_t_int8",
"nodeType": "YulIdentifier",
"src": "604:14:1"
},
"nodeType": "YulFunctionCall",
"src": "604:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "592:6:1"
},
"nodeType": "YulFunctionCall",
"src": "592:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "592:34:1"
}
]
},
"name": "abi_encode_t_int8_to_t_int8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "570:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "577:3:1",
"type": ""
}
],
"src": "523:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "730:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "740:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "787:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "754:32:1"
},
"nodeType": "YulFunctionCall",
"src": "754:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "744:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "802:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "868:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "873:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "809:58:1"
},
"nodeType": "YulFunctionCall",
"src": "809:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "802:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "915:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "922:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "911:3:1"
},
"nodeType": "YulFunctionCall",
"src": "911:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "929:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "934:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "889:21:1"
},
"nodeType": "YulFunctionCall",
"src": "889:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "889:52:1"
},
{
"nodeType": "YulAssignment",
"src": "950:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "961:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "988:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "966:21:1"
},
"nodeType": "YulFunctionCall",
"src": "966:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "957:3:1"
},
"nodeType": "YulFunctionCall",
"src": "957:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "950:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "711:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "718:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "726:3:1",
"type": ""
}
],
"src": "638:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1069:51:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1086:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1107:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "1091:15:1"
},
"nodeType": "YulFunctionCall",
"src": "1091:22:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1079:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1079:35:1"
},
"nodeType": "YulExpressionStatement",
"src": "1079:35:1"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1057:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1064:3:1",
"type": ""
}
],
"src": "1008:112:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1224:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1234:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1246:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1257:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1242:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1242:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1234:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1314:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1327:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1338:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1323:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1323:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "1270:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1270:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1270:71:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1196:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1208:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1219:4:1",
"type": ""
}
],
"src": "1126:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1446:118:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1456:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1468:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1479:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1464:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1464:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1456:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1530:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1543:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1554:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1539:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1539:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "1492:37:1"
},
"nodeType": "YulFunctionCall",
"src": "1492:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "1492:65:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1418:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1430:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1441:4:1",
"type": ""
}
],
"src": "1354:210:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1668:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1678:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1690:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1701:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1686:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1686:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1678:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1758:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1771:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1782:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1767:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1767:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "1714:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1714:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1714:71:1"
}
]
},
"name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1640:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1652:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1663:4:1",
"type": ""
}
],
"src": "1570:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1904:132:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1914:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1926:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1937:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1922:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1922:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1914:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2002:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2015:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2026:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2011:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2011:17:1"
}
],
"functionName": {
"name": "abi_encode_t_enum$_options_$76_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "1950:51:1"
},
"nodeType": "YulFunctionCall",
"src": "1950:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1950:79:1"
}
]
},
"name": "abi_encode_tuple_t_enum$_options_$76__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1876:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1888:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1899:4:1",
"type": ""
}
],
"src": "1798:238:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2134:118:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2144:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2156:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2167:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2152:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2152:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2144:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2218:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2231:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2242:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2227:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2227:17:1"
}
],
"functionName": {
"name": "abi_encode_t_int8_to_t_int8_fromStack",
"nodeType": "YulIdentifier",
"src": "2180:37:1"
},
"nodeType": "YulFunctionCall",
"src": "2180:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "2180:65:1"
}
]
},
"name": "abi_encode_tuple_t_int8__to_t_int8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2106:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2118:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2129:4:1",
"type": ""
}
],
"src": "2042:210:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2376:195:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2386:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2398:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2409:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2394:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2394:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2386:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2433:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2444:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2429:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2429:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2452:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2458:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2448:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2448:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2422:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2422:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "2422:47:1"
},
{
"nodeType": "YulAssignment",
"src": "2478:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2550:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2559:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2486:63:1"
},
"nodeType": "YulFunctionCall",
"src": "2486:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2478:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2348:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2360:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2371:4:1",
"type": ""
}
],
"src": "2258:313:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2671:120:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2681:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2693:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2704:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2689:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2689:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2681:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2757:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2770:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2781:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2766:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2766:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "2717:39:1"
},
"nodeType": "YulFunctionCall",
"src": "2717:67:1"
},
"nodeType": "YulExpressionStatement",
"src": "2717:67:1"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2643:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2655:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2666:4:1",
"type": ""
}
],
"src": "2577:214:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2856:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2867:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2883:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2877:5:1"
},
"nodeType": "YulFunctionCall",
"src": "2877:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2867:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2839:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2849:6:1",
"type": ""
}
],
"src": "2797:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2998:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3015:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3020:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3008:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3008:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "3008:19:1"
},
{
"nodeType": "YulAssignment",
"src": "3036:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3055:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3060:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3051:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3051:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "3036:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2970:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2975:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2986:11:1",
"type": ""
}
],
"src": "2902:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3122:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3132:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3161:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "3143:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3143:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3132:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3104:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3114:7:1",
"type": ""
}
],
"src": "3077:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3221:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3231:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3256:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3249:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3249:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3242:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3242:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3231:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3203:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3213:7:1",
"type": ""
}
],
"src": "3179:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3320:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3330:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3341:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3330:7:1"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3302:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3312:7:1",
"type": ""
}
],
"src": "3275:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3413:76:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3423:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3434:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3423:7:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3477:5:1"
}
],
"functionName": {
"name": "validator_assert_t_enum$_options_$76",
"nodeType": "YulIdentifier",
"src": "3440:36:1"
},
"nodeType": "YulFunctionCall",
"src": "3440:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "3440:43:1"
}
]
},
"name": "cleanup_t_enum$_options_$76",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3395:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3405:7:1",
"type": ""
}
],
"src": "3358:131:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3537:47:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3547:31:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3569:1:1",
"type": "",
"value": "0"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3572:5:1"
}
],
"functionName": {
"name": "signextend",
"nodeType": "YulIdentifier",
"src": "3558:10:1"
},
"nodeType": "YulFunctionCall",
"src": "3558:20:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3547:7:1"
}
]
}
]
},
"name": "cleanup_t_int8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3519:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3529:7:1",
"type": ""
}
],
"src": "3495:89:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3635:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3645:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3660:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3667:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3656:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3656:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3645:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3617:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3627:7:1",
"type": ""
}
],
"src": "3590:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3765:43:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3775:27:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3790:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3797:4:1",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3786:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3786:16:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3775:7:1"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3747:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3757:7:1",
"type": ""
}
],
"src": "3722:86:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3882:63:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3892:47:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3933:5:1"
}
],
"functionName": {
"name": "cleanup_t_enum$_options_$76",
"nodeType": "YulIdentifier",
"src": "3905:27:1"
},
"nodeType": "YulFunctionCall",
"src": "3905:34:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "3892:9:1"
}
]
}
]
},
"name": "convert_t_enum$_options_$76_to_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3862:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "3872:9:1",
"type": ""
}
],
"src": "3814:131:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4000:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4010:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4019:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4014:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4079:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4104:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4109:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4100:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4100:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4123:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4128:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4119:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4119:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4113:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4113:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4093:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4093:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "4093:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4040:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4043:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4037:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4037:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4051:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4053:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4062:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4065:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4058:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4058:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4053:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4033:3:1",
"statements": []
},
"src": "4029:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4176:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4226:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4231:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4222:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4222:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4240:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4215:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4215:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "4215:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4157:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4160:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4154:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4154:13:1"
},
"nodeType": "YulIf",
"src": "4151:2:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3982:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3987:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3992:6:1",
"type": ""
}
],
"src": "3951:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4315:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4325:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4339:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4345:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4335:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4335:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4325:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4356:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4386:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4392:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4382:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4382:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "4360:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4433:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4447:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4461:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4469:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4457:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4457:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4447:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4413:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4406:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4406:26:1"
},
"nodeType": "YulIf",
"src": "4403:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4536:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "4550:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4550:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4550:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4500:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4523:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4531:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4520:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4520:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4497:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4497:38:1"
},
"nodeType": "YulIf",
"src": "4494:2:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "4299:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4308:6:1",
"type": ""
}
],
"src": "4264:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4618:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4635:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4638:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4628:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4628:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "4628:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4732:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4735:4:1",
"type": "",
"value": "0x21"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4725:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4725:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4725:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4756:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4759:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4749:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4749:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4749:15:1"
}
]
},
"name": "panic_error_0x21",
"nodeType": "YulFunctionDefinition",
"src": "4590:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4804:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4821:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4824:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4814:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4814:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "4814:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4918:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4921:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4911:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4911:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4911:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4942:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4945:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4935:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4935:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4935:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "4776:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5010:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5020:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5038:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5045:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5034:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5034:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5054:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "5050:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5050:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5030:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5030:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "5020:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4993:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "5003:6:1",
"type": ""
}
],
"src": "4962:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5123:62:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5157:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x21",
"nodeType": "YulIdentifier",
"src": "5159:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5159:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5159:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5146:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5153:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5143:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5143:12:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5136:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5136:20:1"
},
"nodeType": "YulIf",
"src": "5133:2:1"
}
]
},
"name": "validator_assert_t_enum$_options_$76",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5116:5:1",
"type": ""
}
],
"src": "5070:115:1"
}
]
},
"contents": "{\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_bytes32_to_t_bytes32_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n function abi_encode_t_enum$_options_$76_to_t_uint8_fromStack(value, pos) {\n mstore(pos, convert_t_enum$_options_$76_to_t_uint8(value))\n }\n\n function abi_encode_t_int8_to_t_int8_fromStack(value, pos) {\n mstore(pos, cleanup_t_int8(value))\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_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(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_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_bytes32__to_t_bytes32__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_enum$_options_$76__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_enum$_options_$76_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_int8__to_t_int8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_int8_to_t_int8_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_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function 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_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_enum$_options_$76(value) -> cleaned {\n cleaned := value validator_assert_t_enum$_options_$76(value)\n }\n\n function cleanup_t_int8(value) -> cleaned {\n cleaned := signextend(0, value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function convert_t_enum$_options_$76_to_t_uint8(value) -> converted {\n converted := cleanup_t_enum$_options_$76(value)\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 panic_error_0x21() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x21)\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 round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_assert_t_enum$_options_$76(value) {\n if iszero(lt(value, 2)) { panic_error_0x21() }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100ce5760003560e01c80637a68ef7f1161008c578063af10c81011610066578063af10c810146101e1578063b83d07b7146101eb578063ba33ed7d14610209578063c7109d0414610213576100ce565b80637a68ef7f146101875780638a054ac2146101a55780639eea4a3a146101c3576100ce565b80628e8b8d146100d35780632b73648d146100f1578063312eef291461010f5780633a36399e1461012d5780634df7e3d01461014b5780637272eea114610169575b600080fd5b6100db610231565b6040516100e891906104d4565b60405180910390f35b6100f9610244565b60405161010691906104ef565b60405180910390f35b61011761024a565b60405161012491906104d4565b60405180910390f35b61013561025d565b60405161014291906104b9565b60405180910390f35b610153610283565b6040516101609190610562565b60405180910390f35b610171610296565b60405161017e919061050a565b60405180910390f35b61018f6102ad565b60405161019c91906104ef565b60405180910390f35b6101ad6102b3565b6040516101ba9190610525565b60405180910390f35b6101cb6102c6565b6040516101d891906104b9565b60405180910390f35b6101e96102ec565b005b6101f361033f565b6040516102009190610540565b60405180910390f35b6102116103cd565b005b61021b610420565b60405161022891906104ef565b60405180910390f35b600860029054906101000a900460ff1681565b600b5481565b600860019054906101000a900460ff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160009054906101000a900460ff1681565b6000601060149054906101000a900460ff16905090565b600d5481565b600360009054906101000a900460000b81565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6001601060146101000a81548160ff02191690836001811115610338577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b6006805461034c90610653565b80601f016020809104026020016040519081016040528092919081815260200182805461037890610653565b80156103c55780601f1061039a576101008083540402835291602001916103c5565b820191906000526020600020905b8154815290600101906020018083116103a857829003601f168201915b505050505081565b6000601060146101000a81548160ff02191690836001811115610419577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b600c5481565b61042f81610599565b82525050565b61043e816105ab565b82525050565b61044d816105b7565b82525050565b61045c8161060e565b82525050565b61046b816105d4565b82525050565b600061047c8261057d565b6104868185610588565b9350610496818560208601610620565b61049f816106e3565b840191505092915050565b6104b381610601565b82525050565b60006020820190506104ce6000830184610426565b92915050565b60006020820190506104e96000830184610435565b92915050565b60006020820190506105046000830184610444565b92915050565b600060208201905061051f6000830184610453565b92915050565b600060208201905061053a6000830184610462565b92915050565b6000602082019050818103600083015261055a8184610471565b905092915050565b600060208201905061057760008301846104aa565b92915050565b600081519050919050565b600082825260208201905092915050565b60006105a4826105e1565b9050919050565b60008115159050919050565b6000819050919050565b60008190506105cf826106f4565b919050565b60008160000b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060ff82169050919050565b6000610619826105c1565b9050919050565b60005b8381101561063e578082015181840152602081019050610623565b8381111561064d576000848401525b50505050565b6000600282049050600182168061066b57607f821691505b6020821081141561067f5761067e6106b4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6002811061070557610704610685565b5b5056fea2646970667358221220da47dc5dbbe1f2c3c6e932f6469c69a7b23a61818e392fdac635f12579aad2a364736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCE JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7A68EF7F GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xAF10C810 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xAF10C810 EQ PUSH2 0x1E1 JUMPI DUP1 PUSH4 0xB83D07B7 EQ PUSH2 0x1EB JUMPI DUP1 PUSH4 0xBA33ED7D EQ PUSH2 0x209 JUMPI DUP1 PUSH4 0xC7109D04 EQ PUSH2 0x213 JUMPI PUSH2 0xCE JUMP JUMPDEST DUP1 PUSH4 0x7A68EF7F EQ PUSH2 0x187 JUMPI DUP1 PUSH4 0x8A054AC2 EQ PUSH2 0x1A5 JUMPI DUP1 PUSH4 0x9EEA4A3A EQ PUSH2 0x1C3 JUMPI PUSH2 0xCE JUMP JUMPDEST DUP1 PUSH3 0x8E8B8D EQ PUSH2 0xD3 JUMPI DUP1 PUSH4 0x2B73648D EQ PUSH2 0xF1 JUMPI DUP1 PUSH4 0x312EEF29 EQ PUSH2 0x10F JUMPI DUP1 PUSH4 0x3A36399E EQ PUSH2 0x12D JUMPI DUP1 PUSH4 0x4DF7E3D0 EQ PUSH2 0x14B JUMPI DUP1 PUSH4 0x7272EEA1 EQ PUSH2 0x169 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDB PUSH2 0x231 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE8 SWAP2 SWAP1 PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF9 PUSH2 0x244 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x106 SWAP2 SWAP1 PUSH2 0x4EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x117 PUSH2 0x24A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x124 SWAP2 SWAP1 PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x135 PUSH2 0x25D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x142 SWAP2 SWAP1 PUSH2 0x4B9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x153 PUSH2 0x283 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x160 SWAP2 SWAP1 PUSH2 0x562 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x171 PUSH2 0x296 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x17E SWAP2 SWAP1 PUSH2 0x50A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x18F PUSH2 0x2AD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19C SWAP2 SWAP1 PUSH2 0x4EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AD PUSH2 0x2B3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BA SWAP2 SWAP1 PUSH2 0x525 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CB PUSH2 0x2C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D8 SWAP2 SWAP1 PUSH2 0x4B9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1E9 PUSH2 0x2EC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1F3 PUSH2 0x33F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 SWAP2 SWAP1 PUSH2 0x540 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x211 PUSH2 0x3CD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x21B PUSH2 0x420 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x228 SWAP2 SWAP1 PUSH2 0x4EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x8 PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0xB SLOAD DUP2 JUMP JUMPDEST PUSH1 0x8 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0xF PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x10 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0xD SLOAD DUP2 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x0 SIGNEXTEND DUP2 JUMP JUMPDEST PUSH1 0x10 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x10 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x338 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x6 DUP1 SLOAD PUSH2 0x34C SWAP1 PUSH2 0x653 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 0x378 SWAP1 PUSH2 0x653 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3C5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x39A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3C5 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 0x3A8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x10 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x419 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0xC SLOAD DUP2 JUMP JUMPDEST PUSH2 0x42F DUP2 PUSH2 0x599 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x43E DUP2 PUSH2 0x5AB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x44D DUP2 PUSH2 0x5B7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x45C DUP2 PUSH2 0x60E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x46B DUP2 PUSH2 0x5D4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x47C DUP3 PUSH2 0x57D JUMP JUMPDEST PUSH2 0x486 DUP2 DUP6 PUSH2 0x588 JUMP JUMPDEST SWAP4 POP PUSH2 0x496 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x620 JUMP JUMPDEST PUSH2 0x49F DUP2 PUSH2 0x6E3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4B3 DUP2 PUSH2 0x601 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x4CE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x426 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x4E9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x435 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x504 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x444 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x51F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x453 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x53A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x462 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 0x55A DUP2 DUP5 PUSH2 0x471 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x577 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x4AA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5A4 DUP3 PUSH2 0x5E1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH2 0x5CF DUP3 PUSH2 0x6F4 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SIGNEXTEND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x619 DUP3 PUSH2 0x5C1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x63E JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x623 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x64D 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 0x66B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x67F JUMPI PUSH2 0x67E PUSH2 0x6B4 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x2 DUP2 LT PUSH2 0x705 JUMPI PUSH2 0x704 PUSH2 0x685 JUMP JUMPDEST JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDA SELFBALANCE 0xDC 0x5D 0xBB 0xE1 CALLCODE 0xC3 0xC6 0xE9 ORIGIN 0xF6 CHAINID SWAP13 PUSH10 0xA7B23A61818E392FDAC6 CALLDATALOAD CALL 0x25 PUSH26 0xAAD2A364736F6C63430008040033000000000000000000000000 ",
"sourceMap": "104:1352:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;533:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;690:80;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;496:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;992:68;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;189:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1372:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;856:80;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;268:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1067:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1304:62;;;:::i;:::-;;350:44;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1238:60;;;:::i;:::-;;776:74;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;533:33;;;;;;;;;;;;;:::o;690:80::-;;;;:::o;496:31::-;;;;;;;;;;;;;:::o;992:68::-;;;;;;;;;;;;;:::o;189:18::-;;;;;;;;;;;;;:::o;1372:81::-;1416:7;1441:5;;;;;;;;;;;1434:12;;1372:81;:::o;856:80::-;;;;:::o;268:19::-;;;;;;;;;;;;;:::o;1067:36::-;;;;;;;;;;;;;:::o;1304:62::-;1348:11;1340:5;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1304:62::o;350:44::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1238:60::-;1281:10;1273:5;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1238:60::o;776:74::-;;;;:::o;7:118:1:-;94:24;112:5;94:24;:::i;:::-;89:3;82:37;72:53;;:::o;131:109::-;212:21;227:5;212:21;:::i;:::-;207:3;200:34;190:50;;:::o;246:118::-;333:24;351:5;333:24;:::i;:::-;328:3;321:37;311:53;;:::o;370:147::-;465:45;504:5;465:45;:::i;:::-;460:3;453:58;443:74;;:::o;523:109::-;604:21;619:5;604:21;:::i;:::-;599:3;592:34;582:50;;:::o;638:364::-;726:3;754:39;787:5;754:39;:::i;:::-;809:71;873:6;868:3;809:71;:::i;:::-;802:78;;889:52;934:6;929:3;922:4;915:5;911:16;889:52;:::i;:::-;966:29;988:6;966:29;:::i;:::-;961:3;957:39;950:46;;730:272;;;;;:::o;1008:112::-;1091:22;1107:5;1091:22;:::i;:::-;1086:3;1079:35;1069:51;;:::o;1126:222::-;1219:4;1257:2;1246:9;1242:18;1234:26;;1270:71;1338:1;1327:9;1323:17;1314:6;1270:71;:::i;:::-;1224:124;;;;:::o;1354:210::-;1441:4;1479:2;1468:9;1464:18;1456:26;;1492:65;1554:1;1543:9;1539:17;1530:6;1492:65;:::i;:::-;1446:118;;;;:::o;1570:222::-;1663:4;1701:2;1690:9;1686:18;1678:26;;1714:71;1782:1;1771:9;1767:17;1758:6;1714:71;:::i;:::-;1668:124;;;;:::o;1798:238::-;1899:4;1937:2;1926:9;1922:18;1914:26;;1950:79;2026:1;2015:9;2011:17;2002:6;1950:79;:::i;:::-;1904:132;;;;:::o;2042:210::-;2129:4;2167:2;2156:9;2152:18;2144:26;;2180:65;2242:1;2231:9;2227:17;2218:6;2180:65;:::i;:::-;2134:118;;;;:::o;2258:313::-;2371:4;2409:2;2398:9;2394:18;2386:26;;2458:9;2452:4;2448:20;2444:1;2433:9;2429:17;2422:47;2486:78;2559:4;2550:6;2486:78;:::i;:::-;2478:86;;2376:195;;;;:::o;2577:214::-;2666:4;2704:2;2693:9;2689:18;2681:26;;2717:67;2781:1;2770:9;2766:17;2757:6;2717:67;:::i;:::-;2671:120;;;;:::o;2797:99::-;2849:6;2883:5;2877:12;2867:22;;2856:40;;;:::o;2902:169::-;2986:11;3020:6;3015:3;3008:19;3060:4;3055:3;3051:14;3036:29;;2998:73;;;;:::o;3077:96::-;3114:7;3143:24;3161:5;3143:24;:::i;:::-;3132:35;;3122:51;;;:::o;3179:90::-;3213:7;3256:5;3249:13;3242:21;3231:32;;3221:48;;;:::o;3275:77::-;3312:7;3341:5;3330:16;;3320:32;;;:::o;3358:131::-;3405:7;3434:5;3423:16;;3440:43;3477:5;3440:43;:::i;:::-;3413:76;;;:::o;3495:89::-;3529:7;3572:5;3569:1;3558:20;3547:31;;3537:47;;;:::o;3590:126::-;3627:7;3667:42;3660:5;3656:54;3645:65;;3635:81;;;:::o;3722:86::-;3757:7;3797:4;3790:5;3786:16;3775:27;;3765:43;;;:::o;3814:131::-;3872:9;3905:34;3933:5;3905:34;:::i;:::-;3892:47;;3882:63;;;:::o;3951:307::-;4019:1;4029:113;4043:6;4040:1;4037:13;4029:113;;;4128:1;4123:3;4119:11;4113:18;4109:1;4104:3;4100:11;4093:39;4065:2;4062:1;4058:10;4053:15;;4029:113;;;4160:6;4157:1;4154:13;4151:2;;;4240:1;4231:6;4226:3;4222:16;4215:27;4151:2;4000:258;;;;:::o;4264:320::-;4308:6;4345:1;4339:4;4335:12;4325:22;;4392:1;4386:4;4382:12;4413:18;4403:2;;4469:4;4461:6;4457:17;4447:27;;4403:2;4531;4523:6;4520:14;4500:18;4497:38;4494:2;;;4550:18;;:::i;:::-;4494:2;4315:269;;;;:::o;4590:180::-;4638:77;4635:1;4628:88;4735:4;4732:1;4725:15;4759:4;4756:1;4749:15;4776:180;4824:77;4821:1;4814:88;4921:4;4918:1;4911:15;4945:4;4942:1;4935:15;4962:102;5003:6;5054:2;5050:7;5045:2;5038:5;5034:14;5030:28;5020:38;;5010:54;;;:::o;5070:115::-;5153:1;5146:5;5143:12;5133:2;;5159:18;;:::i;:::-;5133:2;5123:62;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "370800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"address1()": "1281",
"address2()": "1281",
"b()": "1260",
"boolean_false()": "1222",
"boolean_true()": "1266",
"d()": "1220",
"displayState()": "1429",
"hashing_keccak256()": "1152",
"hashing_ripemd160()": "1152",
"hashing_sha256()": "1217",
"str_public()": "infinite",
"turnOff()": "21103",
"turnOn()": "21147"
}
},
"methodIdentifiers": {
"address1()": "3a36399e",
"address2()": "9eea4a3a",
"b()": "4df7e3d0",
"boolean_false()": "008e8b8d",
"boolean_true()": "312eef29",
"d()": "8a054ac2",
"displayState()": "7272eea1",
"hashing_keccak256()": "2b73648d",
"hashing_ripemd160()": "7a68ef7f",
"hashing_sha256()": "c7109d04",
"str_public()": "b83d07b7",
"turnOff()": "af10c810",
"turnOn()": "ba33ed7d"
}
},
"abi": [
{
"inputs": [],
"name": "address1",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "address2",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "b",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "boolean_false",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "boolean_true",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "d",
"outputs": [
{
"internalType": "int8",
"name": "",
"type": "int8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "displayState",
"outputs": [
{
"internalType": "enum SecondContract.options",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "hashing_keccak256",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "hashing_ripemd160",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "hashing_sha256",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "str_public",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "turnOff",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "turnOn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.4+commit.c7e474f2"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "address1",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "address2",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "b",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "boolean_false",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "boolean_true",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "d",
"outputs": [
{
"internalType": "int8",
"name": "",
"type": "int8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "displayState",
"outputs": [
{
"internalType": "enum SecondContract.options",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "hashing_keccak256",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "hashing_ripemd160",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "hashing_sha256",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "str_public",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "turnOff",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "turnOn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"Contracts/2.variableAndModifier.sol": "SecondContract"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"Contracts/2.variableAndModifier.sol": {
"keccak256": "0x171c87673d44643b7a12ed94dfb244c845bc2c8ec0b4ecd5ab400a304a62b3db",
"license": "MIT",
"urls": [
"bzz-raw://297073b0418951a87c646429baa72c73a9adc256ce8dafb5eabbb064b5128f4c",
"dweb:/ipfs/QmXZDG3NfFmyxzLngNAy5mUo7WQhN5UFfwRPCpJ8MgoMVs"
]
}
},
"version": 1
}
This file has been truncated, but you can view the full file.
{
"id": "3111d5d6b94c4657db4dfac94928140e",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.4",
"solcLongVersion": "0.8.4+commit.c7e474f2",
"input": {
"language": "Solidity",
"sources": {
"Contracts/2.contract.sol": {
"content": "// SPDX-License-Identifier: MIT\n\n// Version\npragma solidity ^0.8.4;\n\n// Declaracion del Smart Contracts\ncontract SecondContract{\n\n // Valores enteros sin signo (uint)\n uint256 a;\n uint8 public b = 3;\n\n // Valores enteros con signo (uint)\n int256 c;\n int8 public d = -32;\n int e = 65;\n\n // Variables string\n string str;\n string public str_public = \"Esto es publico\";\n string private str_private = \"Esto es privado\";\n\n // Variable booleana\n bool boolean;\n bool public boolean_true = true;\n bool public boolean_false = false;\n\n // Variable bytes\n bytes32 first_bytes;\n bytes4 second_bytes;\n bytes1 byte_1;\n\n // Algoritmo de hash\n bytes32 public hashing = keccak256(abi.encodePacked(\"Hola\", \"Alfred\"));\n\n // Variable address\n address my_address; \n address public address1 = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2; \n address public address2 = msg.sender;\n\n // Variable de enumeracion\n enum options {ON, OFF}\n options state;\n options constant defaultChoice = options.OFF;\n\n function turnOn() public {\n state = options.ON;\n }\n\n function turnOff() public {\n state = options.OFF;\n }\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": {
"Contracts/2.contract.sol": {
"SecondContract": {
"abi": [
{
"inputs": [],
"name": "address1",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "address2",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "b",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "boolean_false",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "boolean_true",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "d",
"outputs": [
{
"internalType": "int8",
"name": "",
"type": "int8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "hashing",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "str_public",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "turnOff",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "turnOn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"Contracts/2.contract.sol\":104:1193 contract SecondContract{... */\n mstore(0x40, 0x80)\n /* \"Contracts/2.contract.sol\":206:207 3 */\n 0x03\n /* \"Contracts/2.contract.sol\":189:207 uint8 public b = 3 */\n 0x01\n exp(0x0100, 0x00)\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n 0xff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"Contracts/2.contract.sol\":284:287 -32 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0\n /* \"Contracts/2.contract.sol\":268:287 int8 public d = -32 */\n 0x03\n exp(0x0100, 0x00)\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n 0x00\n signextend\n 0xff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"Contracts/2.contract.sol\":301:303 65 */\n 0x41\n /* \"Contracts/2.contract.sol\":293:303 int e = 65 */\n 0x04\n sstore\n /* \"Contracts/2.contract.sol\":350:394 string public str_public = \"Esto es publico\" */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x0f\n dup2\n mstore\n 0x20\n add\n 0x4573746f206573207075626c69636f0000000000000000000000000000000000\n dup2\n mstore\n pop\n 0x06\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_1\n swap3\n swap2\n swap1\n tag_2\n jump\t// in\ntag_1:\n pop\n /* \"Contracts/2.contract.sol\":400:446 string private str_private = \"Esto es privado\" */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x0f\n dup2\n mstore\n 0x20\n add\n 0x4573746f206573207072697661646f0000000000000000000000000000000000\n dup2\n mstore\n pop\n 0x07\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_3\n swap3\n swap2\n swap1\n tag_2\n jump\t// in\ntag_3:\n pop\n /* \"Contracts/2.contract.sol\":523:527 true */\n 0x01\n /* \"Contracts/2.contract.sol\":496:527 bool public boolean_true = true */\n 0x08\n exp(0x0100, 0x01)\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 /* \"Contracts/2.contract.sol\":561:566 false */\n 0x00\n /* \"Contracts/2.contract.sol\":533:566 bool public boolean_false = false */\n 0x08\n exp(0x0100, 0x02)\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 /* \"Contracts/2.contract.sol\":725:759 abi.encodePacked(\"Hola\", \"Alfred\") */\n add(0x20, mload(0x40))\n tag_4\n swap1\n tag_5\n jump\t// in\ntag_4:\n mload(0x40)\n 0x20\n dup2\n dup4\n sub\n sub\n dup2\n mstore\n swap1\n 0x40\n mstore\n /* \"Contracts/2.contract.sol\":715:760 keccak256(abi.encodePacked(\"Hola\", \"Alfred\")) */\n dup1\n mload\n swap1\n 0x20\n add\n keccak256\n /* \"Contracts/2.contract.sol\":690:760 bytes32 public hashing = keccak256(abi.encodePacked(\"Hola\", \"Alfred\")) */\n 0x0b\n sstore\n /* \"Contracts/2.contract.sol\":842:884 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2 */\n 0xab8483f64d9c6d1ecf9b849ae677dd3315835cb2\n /* \"Contracts/2.contract.sol\":816:884 address public address1 = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2 */\n 0x0d\n exp(0x0100, 0x00)\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 /* \"Contracts/2.contract.sol\":917:927 msg.sender */\n caller\n /* \"Contracts/2.contract.sol\":891:927 address public address2 = msg.sender */\n 0x0e\n exp(0x0100, 0x00)\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 /* \"Contracts/2.contract.sol\":104:1193 contract SecondContract{... */\n callvalue\n dup1\n iszero\n tag_6\n jumpi\n 0x00\n dup1\n revert\ntag_6:\n pop\n jump(tag_7)\ntag_2:\n dup3\n dup1\n sload\n tag_8\n swap1\n tag_9\n jump\t// in\ntag_8:\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_11\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_10)\ntag_11:\n dup3\n 0x1f\n lt\n tag_12\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_10)\ntag_12:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_10\n jumpi\n swap2\n dup3\n add\ntag_13:\n dup3\n dup2\n gt\n iszero\n tag_14\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_13)\ntag_14:\ntag_10:\n pop\n swap1\n pop\n tag_15\n swap2\n swap1\n tag_16\n jump\t// in\ntag_15:\n pop\n swap1\n jump\t// out\ntag_16:\ntag_17:\n dup1\n dup3\n gt\n iszero\n tag_18\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_17)\ntag_18:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:407 */\ntag_20:\n /* \"#utility.yul\":167:170 */\n 0x00\n /* \"#utility.yul\":188:272 */\n tag_22\n /* \"#utility.yul\":270:271 */\n 0x04\n /* \"#utility.yul\":265:268 */\n dup4\n /* \"#utility.yul\":188:272 */\n tag_23\n jump\t// in\ntag_22:\n /* \"#utility.yul\":181:272 */\n swap2\n pop\n /* \"#utility.yul\":281:374 */\n tag_24\n /* \"#utility.yul\":370:373 */\n dup3\n /* \"#utility.yul\":281:374 */\n tag_25\n jump\t// in\ntag_24:\n /* \"#utility.yul\":399:400 */\n 0x04\n /* \"#utility.yul\":394:397 */\n dup3\n /* \"#utility.yul\":390:401 */\n add\n /* \"#utility.yul\":383:401 */\n swap1\n pop\n /* \"#utility.yul\":171:407 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":413:813 */\ntag_26:\n /* \"#utility.yul\":573:576 */\n 0x00\n /* \"#utility.yul\":594:678 */\n tag_28\n /* \"#utility.yul\":676:677 */\n 0x06\n /* \"#utility.yul\":671:674 */\n dup4\n /* \"#utility.yul\":594:678 */\n tag_23\n jump\t// in\ntag_28:\n /* \"#utility.yul\":587:678 */\n swap2\n pop\n /* \"#utility.yul\":687:780 */\n tag_29\n /* \"#utility.yul\":776:779 */\n dup3\n /* \"#utility.yul\":687:780 */\n tag_30\n jump\t// in\ntag_29:\n /* \"#utility.yul\":805:806 */\n 0x06\n /* \"#utility.yul\":800:803 */\n dup3\n /* \"#utility.yul\":796:807 */\n add\n /* \"#utility.yul\":789:807 */\n swap1\n pop\n /* \"#utility.yul\":577:813 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":819:1466 */\ntag_5:\n /* \"#utility.yul\":1105:1108 */\n 0x00\n /* \"#utility.yul\":1127:1275 */\n tag_32\n /* \"#utility.yul\":1271:1274 */\n dup3\n /* \"#utility.yul\":1127:1275 */\n tag_20\n jump\t// in\ntag_32:\n /* \"#utility.yul\":1120:1275 */\n swap2\n pop\n /* \"#utility.yul\":1292:1440 */\n tag_33\n /* \"#utility.yul\":1436:1439 */\n dup3\n /* \"#utility.yul\":1292:1440 */\n tag_26\n jump\t// in\ntag_33:\n /* \"#utility.yul\":1285:1440 */\n swap2\n pop\n /* \"#utility.yul\":1457:1460 */\n dup2\n /* \"#utility.yul\":1450:1460 */\n swap1\n pop\n /* \"#utility.yul\":1109:1466 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1472:1620 */\ntag_23:\n /* \"#utility.yul\":1574:1585 */\n 0x00\n /* \"#utility.yul\":1611:1614 */\n dup2\n /* \"#utility.yul\":1596:1614 */\n swap1\n pop\n /* \"#utility.yul\":1586:1620 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1626:1946 */\ntag_9:\n /* \"#utility.yul\":1670:1676 */\n 0x00\n /* \"#utility.yul\":1707:1708 */\n 0x02\n /* \"#utility.yul\":1701:1705 */\n dup3\n /* \"#utility.yul\":1697:1709 */\n div\n /* \"#utility.yul\":1687:1709 */\n swap1\n pop\n /* \"#utility.yul\":1754:1755 */\n 0x01\n /* \"#utility.yul\":1748:1752 */\n dup3\n /* \"#utility.yul\":1744:1756 */\n and\n /* \"#utility.yul\":1775:1793 */\n dup1\n /* \"#utility.yul\":1765:1767 */\n tag_36\n jumpi\n /* \"#utility.yul\":1831:1835 */\n 0x7f\n /* \"#utility.yul\":1823:1829 */\n dup3\n /* \"#utility.yul\":1819:1836 */\n and\n /* \"#utility.yul\":1809:1836 */\n swap2\n pop\n /* \"#utility.yul\":1765:1767 */\ntag_36:\n /* \"#utility.yul\":1893:1895 */\n 0x20\n /* \"#utility.yul\":1885:1891 */\n dup3\n /* \"#utility.yul\":1882:1896 */\n lt\n /* \"#utility.yul\":1862:1880 */\n dup2\n /* \"#utility.yul\":1859:1897 */\n eq\n /* \"#utility.yul\":1856:1858 */\n iszero\n tag_37\n jumpi\n /* \"#utility.yul\":1912:1930 */\n tag_38\n tag_39\n jump\t// in\ntag_38:\n /* \"#utility.yul\":1856:1858 */\ntag_37:\n /* \"#utility.yul\":1677:1946 */\n pop\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1952:2132 */\ntag_39:\n /* \"#utility.yul\":2000:2077 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":1997:1998 */\n 0x00\n /* \"#utility.yul\":1990:2078 */\n mstore\n /* \"#utility.yul\":2097:2101 */\n 0x22\n /* \"#utility.yul\":2094:2095 */\n 0x04\n /* \"#utility.yul\":2087:2102 */\n mstore\n /* \"#utility.yul\":2121:2125 */\n 0x24\n /* \"#utility.yul\":2118:2119 */\n 0x00\n /* \"#utility.yul\":2111:2126 */\n revert\n /* \"#utility.yul\":2138:2292 */\ntag_25:\n /* \"#utility.yul\":2278:2284 */\n 0x486f6c6100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":2274:2275 */\n 0x00\n /* \"#utility.yul\":2266:2272 */\n dup3\n /* \"#utility.yul\":2262:2276 */\n add\n /* \"#utility.yul\":2255:2285 */\n mstore\n /* \"#utility.yul\":2244:2292 */\n pop\n jump\t// out\n /* \"#utility.yul\":2298:2454 */\ntag_30:\n /* \"#utility.yul\":2438:2446 */\n 0x416c667265640000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":2434:2435 */\n 0x00\n /* \"#utility.yul\":2426:2432 */\n dup3\n /* \"#utility.yul\":2422:2436 */\n add\n /* \"#utility.yul\":2415:2447 */\n mstore\n /* \"#utility.yul\":2404:2454 */\n pop\n jump\t// out\n /* \"Contracts/2.contract.sol\":104:1193 contract SecondContract{... */\ntag_7:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"Contracts/2.contract.sol\":104:1193 contract SecondContract{... */\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 0x9eea4a3a\n gt\n tag_13\n jumpi\n dup1\n 0x9eea4a3a\n eq\n tag_8\n jumpi\n dup1\n 0xaf10c810\n eq\n tag_9\n jumpi\n dup1\n 0xb83d07b7\n eq\n tag_10\n jumpi\n dup1\n 0xba33ed7d\n eq\n tag_11\n jumpi\n dup1\n 0xcd97d84e\n eq\n tag_12\n jumpi\n jump(tag_2)\n tag_13:\n dup1\n 0x8e8b8d\n eq\n tag_3\n jumpi\n dup1\n 0x312eef29\n eq\n tag_4\n jumpi\n dup1\n 0x3a36399e\n eq\n tag_5\n jumpi\n dup1\n 0x4df7e3d0\n eq\n tag_6\n jumpi\n dup1\n 0x8a054ac2\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"Contracts/2.contract.sol\":533:566 bool public boolean_false = false */\n tag_3:\n tag_14\n tag_15\n jump\t// in\n tag_14:\n mload(0x40)\n tag_16\n swap2\n swap1\n tag_17\n jump\t// in\n tag_16:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"Contracts/2.contract.sol\":496:527 bool public boolean_true = true */\n tag_4:\n tag_18\n tag_19\n jump\t// in\n tag_18:\n mload(0x40)\n tag_20\n swap2\n swap1\n tag_17\n jump\t// in\n tag_20:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"Contracts/2.contract.sol\":816:884 address public address1 = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2 */\n tag_5:\n tag_21\n tag_22\n jump\t// in\n tag_21:\n mload(0x40)\n tag_23\n swap2\n swap1\n tag_24\n jump\t// in\n tag_23:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"Contracts/2.contract.sol\":189:207 uint8 public b = 3 */\n tag_6:\n tag_25\n tag_26\n jump\t// in\n tag_25:\n mload(0x40)\n tag_27\n swap2\n swap1\n tag_28\n jump\t// in\n tag_27:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"Contracts/2.contract.sol\":268:287 int8 public d = -32 */\n tag_7:\n tag_29\n tag_30\n jump\t// in\n tag_29:\n mload(0x40)\n tag_31\n swap2\n swap1\n tag_32\n jump\t// in\n tag_31:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"Contracts/2.contract.sol\":891:927 address public address2 = msg.sender */\n tag_8:\n tag_33\n tag_34\n jump\t// in\n tag_33:\n mload(0x40)\n tag_35\n swap2\n swap1\n tag_24\n jump\t// in\n tag_35:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"Contracts/2.contract.sol\":1128:1190 function turnOff() public {... */\n tag_9:\n tag_36\n tag_37\n jump\t// in\n tag_36:\n stop\n /* \"Contracts/2.contract.sol\":350:394 string public str_public = \"Esto es publico\" */\n tag_10:\n tag_38\n tag_39\n jump\t// in\n tag_38:\n mload(0x40)\n tag_40\n swap2\n swap1\n tag_41\n jump\t// in\n tag_40:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"Contracts/2.contract.sol\":1062:1122 function turnOn() public {... */\n tag_11:\n tag_42\n tag_43\n jump\t// in\n tag_42:\n stop\n /* \"Contracts/2.contract.sol\":690:760 bytes32 public hashing = keccak256(abi.encodePacked(\"Hola\", \"Alfred\")) */\n tag_12:\n tag_44\n tag_45\n jump\t// in\n tag_44:\n mload(0x40)\n tag_46\n swap2\n swap1\n tag_47\n jump\t// in\n tag_46:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"Contracts/2.contract.sol\":533:566 bool public boolean_false = false */\n tag_15:\n 0x08\n 0x02\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n dup2\n jump\t// out\n /* \"Contracts/2.contract.sol\":496:527 bool public boolean_true = true */\n tag_19:\n 0x08\n 0x01\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n dup2\n jump\t// out\n /* \"Contracts/2.contract.sol\":816:884 address public address1 = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2 */\n tag_22:\n 0x0d\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n jump\t// out\n /* \"Contracts/2.contract.sol\":189:207 uint8 public b = 3 */\n tag_26:\n 0x01\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n dup2\n jump\t// out\n /* \"Contracts/2.contract.sol\":268:287 int8 public d = -32 */\n tag_30:\n 0x03\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0x00\n signextend\n dup2\n jump\t// out\n /* \"Contracts/2.contract.sol\":891:927 address public address2 = msg.sender */\n tag_34:\n 0x0e\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n jump\t// out\n /* \"Contracts/2.contract.sol\":1128:1190 function turnOff() public {... */\n tag_37:\n /* \"Contracts/2.contract.sol\":1172:1183 options.OFF */\n 0x01\n /* \"Contracts/2.contract.sol\":1164:1169 state */\n 0x0e\n 0x14\n /* \"Contracts/2.contract.sol\":1164:1183 state = options.OFF */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n 0x01\n dup2\n gt\n iszero\n tag_49\n jumpi\n mstore(0x00, 0x4e487b7100000000000000000000000000000000000000000000000000000000)\n mstore(0x04, 0x21)\n revert(0x00, 0x24)\n tag_49:\n mul\n or\n swap1\n sstore\n pop\n /* \"Contracts/2.contract.sol\":1128:1190 function turnOff() public {... */\n jump\t// out\n /* \"Contracts/2.contract.sol\":350:394 string public str_public = \"Esto es publico\" */\n tag_39:\n 0x06\n dup1\n sload\n tag_50\n swap1\n tag_51\n jump\t// in\n tag_50:\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_52\n swap1\n tag_51\n jump\t// in\n tag_52:\n dup1\n iszero\n tag_53\n jumpi\n dup1\n 0x1f\n lt\n tag_54\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_53)\n tag_54:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_55:\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_55\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_53:\n pop\n pop\n pop\n pop\n pop\n dup2\n jump\t// out\n /* \"Contracts/2.contract.sol\":1062:1122 function turnOn() public {... */\n tag_43:\n /* \"Contracts/2.contract.sol\":1105:1115 options.ON */\n 0x00\n /* \"Contracts/2.contract.sol\":1097:1102 state */\n 0x0e\n 0x14\n /* \"Contracts/2.contract.sol\":1097:1115 state = options.ON */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n 0x01\n dup2\n gt\n iszero\n tag_57\n jumpi\n mstore(0x00, 0x4e487b7100000000000000000000000000000000000000000000000000000000)\n mstore(0x04, 0x21)\n revert(0x00, 0x24)\n tag_57:\n mul\n or\n swap1\n sstore\n pop\n /* \"Contracts/2.contract.sol\":1062:1122 function turnOn() public {... */\n jump\t// out\n /* \"Contracts/2.contract.sol\":690:760 bytes32 public hashing = keccak256(abi.encodePacked(\"Hola\", \"Alfred\")) */\n tag_45:\n sload(0x0b)\n dup2\n jump\t// out\n /* \"#utility.yul\":7:125 */\n tag_59:\n /* \"#utility.yul\":94:118 */\n tag_61\n /* \"#utility.yul\":112:117 */\n dup2\n /* \"#utility.yul\":94:118 */\n tag_62\n jump\t// in\n tag_61:\n /* \"#utility.yul\":89:92 */\n dup3\n /* \"#utility.yul\":82:119 */\n mstore\n /* \"#utility.yul\":72:125 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":131:240 */\n tag_63:\n /* \"#utility.yul\":212:233 */\n tag_65\n /* \"#utility.yul\":227:232 */\n dup2\n /* \"#utility.yul\":212:233 */\n tag_66\n jump\t// in\n tag_65:\n /* \"#utility.yul\":207:210 */\n dup3\n /* \"#utility.yul\":200:234 */\n mstore\n /* \"#utility.yul\":190:240 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":246:364 */\n tag_67:\n /* \"#utility.yul\":333:357 */\n tag_69\n /* \"#utility.yul\":351:356 */\n dup2\n /* \"#utility.yul\":333:357 */\n tag_70\n jump\t// in\n tag_69:\n /* \"#utility.yul\":328:331 */\n dup3\n /* \"#utility.yul\":321:358 */\n mstore\n /* \"#utility.yul\":311:364 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":370:479 */\n tag_71:\n /* \"#utility.yul\":451:472 */\n tag_73\n /* \"#utility.yul\":466:471 */\n dup2\n /* \"#utility.yul\":451:472 */\n tag_74\n jump\t// in\n tag_73:\n /* \"#utility.yul\":446:449 */\n dup3\n /* \"#utility.yul\":439:473 */\n mstore\n /* \"#utility.yul\":429:479 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":485:849 */\n tag_75:\n /* \"#utility.yul\":573:576 */\n 0x00\n /* \"#utility.yul\":601:640 */\n tag_77\n /* \"#utility.yul\":634:639 */\n dup3\n /* \"#utility.yul\":601:640 */\n tag_78\n jump\t// in\n tag_77:\n /* \"#utility.yul\":656:727 */\n tag_79\n /* \"#utility.yul\":720:726 */\n dup2\n /* \"#utility.yul\":715:718 */\n dup6\n /* \"#utility.yul\":656:727 */\n tag_80\n jump\t// in\n tag_79:\n /* \"#utility.yul\":649:727 */\n swap4\n pop\n /* \"#utility.yul\":736:788 */\n tag_81\n /* \"#utility.yul\":781:787 */\n dup2\n /* \"#utility.yul\":776:779 */\n dup6\n /* \"#utility.yul\":769:773 */\n 0x20\n /* \"#utility.yul\":762:767 */\n dup7\n /* \"#utility.yul\":758:774 */\n add\n /* \"#utility.yul\":736:788 */\n tag_82\n jump\t// in\n tag_81:\n /* \"#utility.yul\":813:842 */\n tag_83\n /* \"#utility.yul\":835:841 */\n dup2\n /* \"#utility.yul\":813:842 */\n tag_84\n jump\t// in\n tag_83:\n /* \"#utility.yul\":808:811 */\n dup5\n /* \"#utility.yul\":804:843 */\n add\n /* \"#utility.yul\":797:843 */\n swap2\n pop\n /* \"#utility.yul\":577:849 */\n pop\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":855:967 */\n tag_85:\n /* \"#utility.yul\":938:960 */\n tag_87\n /* \"#utility.yul\":954:959 */\n dup2\n /* \"#utility.yul\":938:960 */\n tag_88\n jump\t// in\n tag_87:\n /* \"#utility.yul\":933:936 */\n dup3\n /* \"#utility.yul\":926:961 */\n mstore\n /* \"#utility.yul\":916:967 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":973:1195 */\n tag_24:\n /* \"#utility.yul\":1066:1070 */\n 0x00\n /* \"#utility.yul\":1104:1106 */\n 0x20\n /* \"#utility.yul\":1093:1102 */\n dup3\n /* \"#utility.yul\":1089:1107 */\n add\n /* \"#utility.yul\":1081:1107 */\n swap1\n pop\n /* \"#utility.yul\":1117:1188 */\n tag_90\n /* \"#utility.yul\":1185:1186 */\n 0x00\n /* \"#utility.yul\":1174:1183 */\n dup4\n /* \"#utility.yul\":1170:1187 */\n add\n /* \"#utility.yul\":1161:1167 */\n dup5\n /* \"#utility.yul\":1117:1188 */\n tag_59\n jump\t// in\n tag_90:\n /* \"#utility.yul\":1071:1195 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1201:1411 */\n tag_17:\n /* \"#utility.yul\":1288:1292 */\n 0x00\n /* \"#utility.yul\":1326:1328 */\n 0x20\n /* \"#utility.yul\":1315:1324 */\n dup3\n /* \"#utility.yul\":1311:1329 */\n add\n /* \"#utility.yul\":1303:1329 */\n swap1\n pop\n /* \"#utility.yul\":1339:1404 */\n tag_92\n /* \"#utility.yul\":1401:1402 */\n 0x00\n /* \"#utility.yul\":1390:1399 */\n dup4\n /* \"#utility.yul\":1386:1403 */\n add\n /* \"#utility.yul\":1377:1383 */\n dup5\n /* \"#utility.yul\":1339:1404 */\n tag_63\n jump\t// in\n tag_92:\n /* \"#utility.yul\":1293:1411 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1417:1639 */\n tag_47:\n /* \"#utility.yul\":1510:1514 */\n 0x00\n /* \"#utility.yul\":1548:1550 */\n 0x20\n /* \"#utility.yul\":1537:1546 */\n dup3\n /* \"#utility.yul\":1533:1551 */\n add\n /* \"#utility.yul\":1525:1551 */\n swap1\n pop\n /* \"#utility.yul\":1561:1632 */\n tag_94\n /* \"#utility.yul\":1629:1630 */\n 0x00\n /* \"#utility.yul\":1618:1627 */\n dup4\n /* \"#utility.yul\":1614:1631 */\n add\n /* \"#utility.yul\":1605:1611 */\n dup5\n /* \"#utility.yul\":1561:1632 */\n tag_67\n jump\t// in\n tag_94:\n /* \"#utility.yul\":1515:1639 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1645:1855 */\n tag_32:\n /* \"#utility.yul\":1732:1736 */\n 0x00\n /* \"#utility.yul\":1770:1772 */\n 0x20\n /* \"#utility.yul\":1759:1768 */\n dup3\n /* \"#utility.yul\":1755:1773 */\n add\n /* \"#utility.yul\":1747:1773 */\n swap1\n pop\n /* \"#utility.yul\":1783:1848 */\n tag_96\n /* \"#utility.yul\":1845:1846 */\n 0x00\n /* \"#utility.yul\":1834:1843 */\n dup4\n /* \"#utility.yul\":1830:1847 */\n add\n /* \"#utility.yul\":1821:1827 */\n dup5\n /* \"#utility.yul\":1783:1848 */\n tag_71\n jump\t// in\n tag_96:\n /* \"#utility.yul\":1737:1855 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1861:2174 */\n tag_41:\n /* \"#utility.yul\":1974:1978 */\n 0x00\n /* \"#utility.yul\":2012:2014 */\n 0x20\n /* \"#utility.yul\":2001:2010 */\n dup3\n /* \"#utility.yul\":1997:2015 */\n add\n /* \"#utility.yul\":1989:2015 */\n swap1\n pop\n /* \"#utility.yul\":2061:2070 */\n dup2\n /* \"#utility.yul\":2055:2059 */\n dup2\n /* \"#utility.yul\":2051:2071 */\n sub\n /* \"#utility.yul\":2047:2048 */\n 0x00\n /* \"#utility.yul\":2036:2045 */\n dup4\n /* \"#utility.yul\":2032:2049 */\n add\n /* \"#utility.yul\":2025:2072 */\n mstore\n /* \"#utility.yul\":2089:2167 */\n tag_98\n /* \"#utility.yul\":2162:2166 */\n dup2\n /* \"#utility.yul\":2153:2159 */\n dup5\n /* \"#utility.yul\":2089:2167 */\n tag_75\n jump\t// in\n tag_98:\n /* \"#utility.yul\":2081:2167 */\n swap1\n pop\n /* \"#utility.yul\":1979:2174 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2180:2394 */\n tag_28:\n /* \"#utility.yul\":2269:2273 */\n 0x00\n /* \"#utility.yul\":2307:2309 */\n 0x20\n /* \"#utility.yul\":2296:2305 */\n dup3\n /* \"#utility.yul\":2292:2310 */\n add\n /* \"#utility.yul\":2284:2310 */\n swap1\n pop\n /* \"#utility.yul\":2320:2387 */\n tag_100\n /* \"#utility.yul\":2384:2385 */\n 0x00\n /* \"#utility.yul\":2373:2382 */\n dup4\n /* \"#utility.yul\":2369:2386 */\n add\n /* \"#utility.yul\":2360:2366 */\n dup5\n /* \"#utility.yul\":2320:2387 */\n tag_85\n jump\t// in\n tag_100:\n /* \"#utility.yul\":2274:2394 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2400:2499 */\n tag_78:\n /* \"#utility.yul\":2452:2458 */\n 0x00\n /* \"#utility.yul\":2486:2491 */\n dup2\n /* \"#utility.yul\":2480:2492 */\n mload\n /* \"#utility.yul\":2470:2492 */\n swap1\n pop\n /* \"#utility.yul\":2459:2499 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2505:2674 */\n tag_80:\n /* \"#utility.yul\":2589:2600 */\n 0x00\n /* \"#utility.yul\":2623:2629 */\n dup3\n /* \"#utility.yul\":2618:2621 */\n dup3\n /* \"#utility.yul\":2611:2630 */\n mstore\n /* \"#utility.yul\":2663:2667 */\n 0x20\n /* \"#utility.yul\":2658:2661 */\n dup3\n /* \"#utility.yul\":2654:2668 */\n add\n /* \"#utility.yul\":2639:2668 */\n swap1\n pop\n /* \"#utility.yul\":2601:2674 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2680:2776 */\n tag_62:\n /* \"#utility.yul\":2717:2724 */\n 0x00\n /* \"#utility.yul\":2746:2770 */\n tag_104\n /* \"#utility.yul\":2764:2769 */\n dup3\n /* \"#utility.yul\":2746:2770 */\n tag_105\n jump\t// in\n tag_104:\n /* \"#utility.yul\":2735:2770 */\n swap1\n pop\n /* \"#utility.yul\":2725:2776 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2782:2872 */\n tag_66:\n /* \"#utility.yul\":2816:2823 */\n 0x00\n /* \"#utility.yul\":2859:2864 */\n dup2\n /* \"#utility.yul\":2852:2865 */\n iszero\n /* \"#utility.yul\":2845:2866 */\n iszero\n /* \"#utility.yul\":2834:2866 */\n swap1\n pop\n /* \"#utility.yul\":2824:2872 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2878:2955 */\n tag_70:\n /* \"#utility.yul\":2915:2922 */\n 0x00\n /* \"#utility.yul\":2944:2949 */\n dup2\n /* \"#utility.yul\":2933:2949 */\n swap1\n pop\n /* \"#utility.yul\":2923:2955 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2961:3050 */\n tag_74:\n /* \"#utility.yul\":2995:3002 */\n 0x00\n /* \"#utility.yul\":3038:3043 */\n dup2\n /* \"#utility.yul\":3035:3036 */\n 0x00\n /* \"#utility.yul\":3024:3044 */\n signextend\n /* \"#utility.yul\":3013:3044 */\n swap1\n pop\n /* \"#utility.yul\":3003:3050 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3056:3182 */\n tag_105:\n /* \"#utility.yul\":3093:3100 */\n 0x00\n /* \"#utility.yul\":3133:3175 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":3126:3131 */\n dup3\n /* \"#utility.yul\":3122:3176 */\n and\n /* \"#utility.yul\":3111:3176 */\n swap1\n pop\n /* \"#utility.yul\":3101:3182 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3188:3274 */\n tag_88:\n /* \"#utility.yul\":3223:3230 */\n 0x00\n /* \"#utility.yul\":3263:3267 */\n 0xff\n /* \"#utility.yul\":3256:3261 */\n dup3\n /* \"#utility.yul\":3252:3268 */\n and\n /* \"#utility.yul\":3241:3268 */\n swap1\n pop\n /* \"#utility.yul\":3231:3274 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3280:3587 */\n tag_82:\n /* \"#utility.yul\":3348:3349 */\n 0x00\n /* \"#utility.yul\":3358:3471 */\n tag_112:\n /* \"#utility.yul\":3372:3378 */\n dup4\n /* \"#utility.yul\":3369:3370 */\n dup2\n /* \"#utility.yul\":3366:3379 */\n lt\n /* \"#utility.yul\":3358:3471 */\n iszero\n tag_114\n jumpi\n /* \"#utility.yul\":3457:3458 */\n dup1\n /* \"#utility.yul\":3452:3455 */\n dup3\n /* \"#utility.yul\":3448:3459 */\n add\n /* \"#utility.yul\":3442:3460 */\n mload\n /* \"#utility.yul\":3438:3439 */\n dup2\n /* \"#utility.yul\":3433:3436 */\n dup5\n /* \"#utility.yul\":3429:3440 */\n add\n /* \"#utility.yul\":3422:3461 */\n mstore\n /* \"#utility.yul\":3394:3396 */\n 0x20\n /* \"#utility.yul\":3391:3392 */\n dup2\n /* \"#utility.yul\":3387:3397 */\n add\n /* \"#utility.yul\":3382:3397 */\n swap1\n pop\n /* \"#utility.yul\":3358:3471 */\n jump(tag_112)\n tag_114:\n /* \"#utility.yul\":3489:3495 */\n dup4\n /* \"#utility.yul\":3486:3487 */\n dup2\n /* \"#utility.yul\":3483:3496 */\n gt\n /* \"#utility.yul\":3480:3482 */\n iszero\n tag_115\n jumpi\n /* \"#utility.yul\":3569:3570 */\n 0x00\n /* \"#utility.yul\":3560:3566 */\n dup5\n /* \"#utility.yul\":3555:3558 */\n dup5\n /* \"#utility.yul\":3551:3567 */\n add\n /* \"#utility.yul\":3544:3571 */\n mstore\n /* \"#utility.yul\":3480:3482 */\n tag_115:\n /* \"#utility.yul\":3329:3587 */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3593:3913 */\n tag_51:\n /* \"#utility.yul\":3637:3643 */\n 0x00\n /* \"#utility.yul\":3674:3675 */\n 0x02\n /* \"#utility.yul\":3668:3672 */\n dup3\n /* \"#utility.yul\":3664:3676 */\n div\n /* \"#utility.yul\":3654:3676 */\n swap1\n pop\n /* \"#utility.yul\":3721:3722 */\n 0x01\n /* \"#utility.yul\":3715:3719 */\n dup3\n /* \"#utility.yul\":3711:3723 */\n and\n /* \"#utility.yul\":3742:3760 */\n dup1\n /* \"#utility.yul\":3732:3734 */\n tag_117\n jumpi\n /* \"#utility.yul\":3798:3802 */\n 0x7f\n /* \"#utility.yul\":3790:3796 */\n dup3\n /* \"#utility.yul\":3786:3803 */\n and\n /* \"#utility.yul\":3776:3803 */\n swap2\n pop\n /* \"#utility.yul\":3732:3734 */\n tag_117:\n /* \"#utility.yul\":3860:3862 */\n 0x20\n /* \"#utility.yul\":3852:3858 */\n dup3\n /* \"#utility.yul\":3849:3863 */\n lt\n /* \"#utility.yul\":3829:3847 */\n dup2\n /* \"#utility.yul\":3826:3864 */\n eq\n /* \"#utility.yul\":3823:3825 */\n iszero\n tag_118\n jumpi\n /* \"#utility.yul\":3879:3897 */\n tag_119\n tag_120\n jump\t// in\n tag_119:\n /* \"#utility.yul\":3823:3825 */\n tag_118:\n /* \"#utility.yul\":3644:3913 */\n pop\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3919:4099 */\n tag_120:\n /* \"#utility.yul\":3967:4044 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3964:3965 */\n 0x00\n /* \"#utility.yul\":3957:4045 */\n mstore\n /* \"#utility.yul\":4064:4068 */\n 0x22\n /* \"#utility.yul\":4061:4062 */\n 0x04\n /* \"#utility.yul\":4054:4069 */\n mstore\n /* \"#utility.yul\":4088:4092 */\n 0x24\n /* \"#utility.yul\":4085:4086 */\n 0x00\n /* \"#utility.yul\":4078:4093 */\n revert\n /* \"#utility.yul\":4105:4207 */\n tag_84:\n /* \"#utility.yul\":4146:4152 */\n 0x00\n /* \"#utility.yul\":4197:4199 */\n 0x1f\n /* \"#utility.yul\":4193:4200 */\n not\n /* \"#utility.yul\":4188:4190 */\n 0x1f\n /* \"#utility.yul\":4181:4186 */\n dup4\n /* \"#utility.yul\":4177:4191 */\n add\n /* \"#utility.yul\":4173:4201 */\n and\n /* \"#utility.yul\":4163:4201 */\n swap1\n pop\n /* \"#utility.yul\":4153:4207 */\n swap2\n swap1\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220caf554ba56767dc771f9922269b5caeecb6d957855fbf733a6317f36ebd0e2f764736f6c63430008040033\n}\n",
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2457:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "171:236:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "181:91:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "265:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "270:1:1",
"type": "",
"value": "4"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "188:76:1"
},
"nodeType": "YulFunctionCall",
"src": "188:84:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "181:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "370:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085",
"nodeType": "YulIdentifier",
"src": "281:88:1"
},
"nodeType": "YulFunctionCall",
"src": "281:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "281:93:1"
},
{
"nodeType": "YulAssignment",
"src": "383:18:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "394:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "399:1:1",
"type": "",
"value": "4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "390:3:1"
},
"nodeType": "YulFunctionCall",
"src": "390:11:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "383:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "159:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "167:3:1",
"type": ""
}
],
"src": "7:400:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "577:236:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "587:91:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "671:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "676:1:1",
"type": "",
"value": "6"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "594:76:1"
},
"nodeType": "YulFunctionCall",
"src": "594:84:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "587:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "776:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c",
"nodeType": "YulIdentifier",
"src": "687:88:1"
},
"nodeType": "YulFunctionCall",
"src": "687:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "687:93:1"
},
{
"nodeType": "YulAssignment",
"src": "789:18:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "800:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "805:1:1",
"type": "",
"value": "6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "796:3:1"
},
"nodeType": "YulFunctionCall",
"src": "796:11:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "789:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "565:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "573:3:1",
"type": ""
}
],
"src": "413:400:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1109:357:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1120:155:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1271:3:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "1127:142:1"
},
"nodeType": "YulFunctionCall",
"src": "1127:148:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1120:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1285:155:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1436:3:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "1292:142:1"
},
"nodeType": "YulFunctionCall",
"src": "1292:148:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1285:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1450:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1457:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1450:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085_t_stringliteral_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1096:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1105:3:1",
"type": ""
}
],
"src": "819:647:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1586:34:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1596:18:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1611:3:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1596:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1558:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1563:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1574:11:1",
"type": ""
}
],
"src": "1472:148:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1677:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1687:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1701:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1707:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1697:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1697:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1687:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1718:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1748:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1754:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1744:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1744:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "1722:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1795:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1809:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1823:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1831:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1819:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1819:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1809:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1775:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1768:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1768:26:1"
},
"nodeType": "YulIf",
"src": "1765:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1898:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "1912:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1912:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1912:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1862:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1885:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1893:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1882:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1882:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1859:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1859:38:1"
},
"nodeType": "YulIf",
"src": "1856:2:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "1661:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1670:6:1",
"type": ""
}
],
"src": "1626:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1980:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1997:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2000:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1990:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1990:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "1990:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2094:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2097:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2087:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2087:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2087:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2118:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2121:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2111:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2111:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2111:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "1952:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2244:48:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2266:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2274:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2262:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2262:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2278:6:1",
"type": "",
"value": "Hola"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2255:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2255:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "2255:30:1"
}
]
},
"name": "store_literal_in_memory_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2236:6:1",
"type": ""
}
],
"src": "2138:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2404:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2426:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2434:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2422:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2422:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2438:8:1",
"type": "",
"value": "Alfred"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2415:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2415:32:1"
},
"nodeType": "YulExpressionStatement",
"src": "2415:32:1"
}
]
},
"name": "store_literal_in_memory_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2396:6:1",
"type": ""
}
],
"src": "2298:156:1"
}
]
},
"contents": "{\n\n function abi_encode_t_stringliteral_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 4)\n store_literal_in_memory_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085(pos)\n end := add(pos, 4)\n }\n\n function abi_encode_t_stringliteral_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 6)\n store_literal_in_memory_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c(pos)\n end := add(pos, 6)\n }\n\n function abi_encode_tuple_packed_t_stringliteral_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085_t_stringliteral_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos ) -> end {\n\n pos := abi_encode_t_stringliteral_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n pos := abi_encode_t_stringliteral_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n end := pos\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function store_literal_in_memory_98d72beb4bd8117253d41e6075451e4c62e8f4cb6538536ef1fc13333c7a4085(memPtr) {\n\n mstore(add(memPtr, 0), \"Hola\")\n\n }\n\n function store_literal_in_memory_e091b71d6451e48f229dc04b0d9f87f89ee1f2b64bd18a7be584e1db170fb46c(memPtr) {\n\n mstore(add(memPtr, 0), \"Alfred\")\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526003600160006101000a81548160ff021916908360ff1602179055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0600360006101000a81548160ff021916908360000b60ff16021790555060416004556040518060400160405280600f81526020017f4573746f206573207075626c69636f0000000000000000000000000000000000815250600690805190602001906100ae929190610201565b506040518060400160405280600f81526020017f4573746f206573207072697661646f0000000000000000000000000000000000815250600790805190602001906100fa929190610201565b506001600860016101000a81548160ff0219169083151502179055506000600860026101000a81548160ff021916908315150217905550604051602001610140906102ea565b60405160208183030381529060405280519060200120600b5573ab8483f64d9c6d1ecf9b849ae677dd3315835cb2600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156101fb57600080fd5b506103c8565b82805461020d90610315565b90600052602060002090601f01602090048101928261022f5760008555610276565b82601f1061024857805160ff1916838001178555610276565b82800160010185558215610276579182015b8281111561027557825182559160200191906001019061025a565b5b5090506102839190610287565b5090565b5b808211156102a0576000816000905550600101610288565b5090565b60006102b160048361030a565b91506102bc82610376565b600482019050919050565b60006102d460068361030a565b91506102df8261039f565b600682019050919050565b60006102f5826102a4565b9150610300826102c7565b9150819050919050565b600081905092915050565b6000600282049050600182168061032d57607f821691505b6020821081141561034157610340610347565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f486f6c6100000000000000000000000000000000000000000000000000000000600082015250565b7f416c667265640000000000000000000000000000000000000000000000000000600082015250565b6105fe806103d76000396000f3fe608060405234801561001057600080fd5b506004361061009d5760003560e01c80639eea4a3a116100665780639eea4a3a14610138578063af10c81014610156578063b83d07b714610160578063ba33ed7d1461017e578063cd97d84e146101885761009d565b80628e8b8d146100a2578063312eef29146100c05780633a36399e146100de5780634df7e3d0146100fc5780638a054ac21461011a575b600080fd5b6100aa6101a6565b6040516100b79190610417565b60405180910390f35b6100c86101b9565b6040516100d59190610417565b60405180910390f35b6100e66101cc565b6040516100f391906103fc565b60405180910390f35b6101046101f2565b604051610111919061048a565b60405180910390f35b610122610205565b60405161012f919061044d565b60405180910390f35b610140610218565b60405161014d91906103fc565b60405180910390f35b61015e61023e565b005b610168610291565b6040516101759190610468565b60405180910390f35b61018661031f565b005b610190610372565b60405161019d9190610432565b60405180910390f35b600860029054906101000a900460ff1681565b600860019054906101000a900460ff1681565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160009054906101000a900460ff1681565b600360009054906101000a900460000b81565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6001600e60146101000a81548160ff0219169083600181111561028a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b6006805461029e90610556565b80601f01602080910402602001604051908101604052809291908181526020018280546102ca90610556565b80156103175780601f106102ec57610100808354040283529160200191610317565b820191906000526020600020905b8154815290600101906020018083116102fa57829003601f168201915b505050505081565b6000600e60146101000a81548160ff0219169083600181111561036b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b600b5481565b610381816104c1565b82525050565b610390816104d3565b82525050565b61039f816104df565b82525050565b6103ae816104e9565b82525050565b60006103bf826104a5565b6103c981856104b0565b93506103d9818560208601610523565b6103e2816105b7565b840191505092915050565b6103f681610516565b82525050565b60006020820190506104116000830184610378565b92915050565b600060208201905061042c6000830184610387565b92915050565b60006020820190506104476000830184610396565b92915050565b600060208201905061046260008301846103a5565b92915050565b6000602082019050818103600083015261048281846103b4565b905092915050565b600060208201905061049f60008301846103ed565b92915050565b600081519050919050565b600082825260208201905092915050565b60006104cc826104f6565b9050919050565b60008115159050919050565b6000819050919050565b60008160000b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060ff82169050919050565b60005b83811015610541578082015181840152602081019050610526565b83811115610550576000848401525b50505050565b6000600282049050600182168061056e57607f821691505b6020821081141561058257610581610588565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f830116905091905056fea2646970667358221220caf554ba56767dc771f9922269b5caeecb6d957855fbf733a6317f36ebd0e2f764736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x3 PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 PUSH1 0x3 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x0 SIGNEXTEND PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x41 PUSH1 0x4 SSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xF DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4573746F206573207075626C69636F0000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x6 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0xAE SWAP3 SWAP2 SWAP1 PUSH2 0x201 JUMP JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xF DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4573746F206573207072697661646F0000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x7 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0xFA SWAP3 SWAP2 SWAP1 PUSH2 0x201 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x8 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x8 PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x140 SWAP1 PUSH2 0x2EA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0xB SSTORE PUSH20 0xAB8483F64D9C6D1ECF9B849AE677DD3315835CB2 PUSH1 0xD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP CALLER PUSH1 0xE PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH2 0x1FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3C8 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x20D SWAP1 PUSH2 0x315 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x22F JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x276 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x248 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x276 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x276 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x275 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x25A JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x283 SWAP2 SWAP1 PUSH2 0x287 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x2A0 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x288 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B1 PUSH1 0x4 DUP4 PUSH2 0x30A JUMP JUMPDEST SWAP2 POP PUSH2 0x2BC DUP3 PUSH2 0x376 JUMP JUMPDEST PUSH1 0x4 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D4 PUSH1 0x6 DUP4 PUSH2 0x30A JUMP JUMPDEST SWAP2 POP PUSH2 0x2DF DUP3 PUSH2 0x39F JUMP JUMPDEST PUSH1 0x6 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2F5 DUP3 PUSH2 0x2A4 JUMP JUMPDEST SWAP2 POP PUSH2 0x300 DUP3 PUSH2 0x2C7 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x32D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x341 JUMPI PUSH2 0x340 PUSH2 0x347 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x486F6C6100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x416C667265640000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x5FE DUP1 PUSH2 0x3D7 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 0x9D JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x9EEA4A3A GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x9EEA4A3A EQ PUSH2 0x138 JUMPI DUP1 PUSH4 0xAF10C810 EQ PUSH2 0x156 JUMPI DUP1 PUSH4 0xB83D07B7 EQ PUSH2 0x160 JUMPI DUP1 PUSH4 0xBA33ED7D EQ PUSH2 0x17E JUMPI DUP1 PUSH4 0xCD97D84E EQ PUSH2 0x188 JUMPI PUSH2 0x9D JUMP JUMPDEST DUP1 PUSH3 0x8E8B8D EQ PUSH2 0xA2 JUMPI DUP1 PUSH4 0x312EEF29 EQ PUSH2 0xC0 JUMPI DUP1 PUSH4 0x3A36399E EQ PUSH2 0xDE JUMPI DUP1 PUSH4 0x4DF7E3D0 EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x8A054AC2 EQ PUSH2 0x11A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xAA PUSH2 0x1A6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB7 SWAP2 SWAP1 PUSH2 0x417 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC8 PUSH2 0x1B9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD5 SWAP2 SWAP1 PUSH2 0x417 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE6 PUSH2 0x1CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x1F2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x111 SWAP2 SWAP1 PUSH2 0x48A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x122 PUSH2 0x205 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x12F SWAP2 SWAP1 PUSH2 0x44D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x140 PUSH2 0x218 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14D SWAP2 SWAP1 PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x15E PUSH2 0x23E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x168 PUSH2 0x291 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x175 SWAP2 SWAP1 PUSH2 0x468 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x186 PUSH2 0x31F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x190 PUSH2 0x372 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19D SWAP2 SWAP1 PUSH2 0x432 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x8 PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x8 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x0 SIGNEXTEND DUP2 JUMP JUMPDEST PUSH1 0xE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0xE PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x28A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x6 DUP1 SLOAD PUSH2 0x29E SWAP1 PUSH2 0x556 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 0x2CA SWAP1 PUSH2 0x556 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x317 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2EC JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x317 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 0x2FA JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xE PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x36B JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0xB SLOAD DUP2 JUMP JUMPDEST PUSH2 0x381 DUP2 PUSH2 0x4C1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x390 DUP2 PUSH2 0x4D3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x39F DUP2 PUSH2 0x4DF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3AE DUP2 PUSH2 0x4E9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BF DUP3 PUSH2 0x4A5 JUMP JUMPDEST PUSH2 0x3C9 DUP2 DUP6 PUSH2 0x4B0 JUMP JUMPDEST SWAP4 POP PUSH2 0x3D9 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x523 JUMP JUMPDEST PUSH2 0x3E2 DUP2 PUSH2 0x5B7 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3F6 DUP2 PUSH2 0x516 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x411 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x378 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x42C PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x387 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x447 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x396 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x462 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3A5 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 0x482 DUP2 DUP5 PUSH2 0x3B4 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x49F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3ED JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4CC DUP3 PUSH2 0x4F6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SIGNEXTEND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x541 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x526 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x550 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 0x56E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x582 JUMPI PUSH2 0x581 PUSH2 0x588 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCA CREATE2 SLOAD 0xBA JUMP PUSH23 0x7DC771F9922269B5CAEECB6D957855FBF733A6317F36EB 0xD0 0xE2 0xF7 PUSH5 0x736F6C6343 STOP ADDMOD DIV STOP CALLER ",
"sourceMap": "104:1089:0:-:0;;;206:1;189:18;;;;;;;;;;;;;;;;;;;;284:3;268:19;;;;;;;;;;;;;;;;;;;;;;301:2;293:10;;350:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;400:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;523:4;496:31;;;;;;;;;;;;;;;;;;;;561:5;533:33;;;;;;;;;;;;;;;;;;;;725:34;;;;;;;:::i;:::-;;;;;;;;;;;;;715:45;;;;;;690:70;;842:42;816:68;;;;;;;;;;;;;;;;;;;;917:10;891:36;;;;;;;;;;;;;;;;;;;;104:1089;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:400:1:-;167:3;188:84;270:1;265:3;188:84;:::i;:::-;181:91;;281:93;370:3;281:93;:::i;:::-;399:1;394:3;390:11;383:18;;171:236;;;:::o;413:400::-;573:3;594:84;676:1;671:3;594:84;:::i;:::-;587:91;;687:93;776:3;687:93;:::i;:::-;805:1;800:3;796:11;789:18;;577:236;;;:::o;819:647::-;1105:3;1127:148;1271:3;1127:148;:::i;:::-;1120:155;;1292:148;1436:3;1292:148;:::i;:::-;1285:155;;1457:3;1450:10;;1109:357;;;:::o;1472:148::-;1574:11;1611:3;1596:18;;1586:34;;;;:::o;1626:320::-;1670:6;1707:1;1701:4;1697:12;1687:22;;1754:1;1748:4;1744:12;1775:18;1765:2;;1831:4;1823:6;1819:17;1809:27;;1765:2;1893;1885:6;1882:14;1862:18;1859:38;1856:2;;;1912:18;;:::i;:::-;1856:2;1677:269;;;;:::o;1952:180::-;2000:77;1997:1;1990:88;2097:4;2094:1;2087:15;2121:4;2118:1;2111:15;2138:154;2278:6;2274:1;2266:6;2262:14;2255:30;2244:48;:::o;2298:156::-;2438:8;2434:1;2426:6;2422:14;2415:32;2404:50;:::o;104:1089:0:-;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4210:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "72:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "89:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "112:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "94:17:1"
},
"nodeType": "YulFunctionCall",
"src": "94:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "82:6:1"
},
"nodeType": "YulFunctionCall",
"src": "82:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "82:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "60:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "67:3:1",
"type": ""
}
],
"src": "7:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "190:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "207:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "227:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "212:14:1"
},
"nodeType": "YulFunctionCall",
"src": "212:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "200:6:1"
},
"nodeType": "YulFunctionCall",
"src": "200:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "200:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "178:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "185:3:1",
"type": ""
}
],
"src": "131:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "311:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "328:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "351:5:1"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "333:17:1"
},
"nodeType": "YulFunctionCall",
"src": "333:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "321:6:1"
},
"nodeType": "YulFunctionCall",
"src": "321:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "321:37:1"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "299:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "306:3:1",
"type": ""
}
],
"src": "246:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "429:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "446:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "466:5:1"
}
],
"functionName": {
"name": "cleanup_t_int8",
"nodeType": "YulIdentifier",
"src": "451:14:1"
},
"nodeType": "YulFunctionCall",
"src": "451:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "439:6:1"
},
"nodeType": "YulFunctionCall",
"src": "439:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "439:34:1"
}
]
},
"name": "abi_encode_t_int8_to_t_int8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "417:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "424:3:1",
"type": ""
}
],
"src": "370:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "577:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "587:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "634:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "601:32:1"
},
"nodeType": "YulFunctionCall",
"src": "601:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "591:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "649:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "715:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "720:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "656:58:1"
},
"nodeType": "YulFunctionCall",
"src": "656:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "649:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "762:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "769:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "758:3:1"
},
"nodeType": "YulFunctionCall",
"src": "758:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "776:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "781:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "736:21:1"
},
"nodeType": "YulFunctionCall",
"src": "736:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "736:52:1"
},
{
"nodeType": "YulAssignment",
"src": "797:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "808:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "835:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "813:21:1"
},
"nodeType": "YulFunctionCall",
"src": "813:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "804:3:1"
},
"nodeType": "YulFunctionCall",
"src": "804:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "797:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "558:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "565:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "573:3:1",
"type": ""
}
],
"src": "485:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "916:51:1",
"statements": [
{
"expression": {
"arguments": [
{
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.)

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