Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonathonyule/9794fe274aafb8027a4bf3ad064df387 to your computer and use it in GitHub Desktop.
Save jonathonyule/9794fe274aafb8027a4bf3ad064df387 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.8+commit.dddeac2f.js&optimize=true&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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);
}
/**
* @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);
}
/**
* @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 of token that is not own");
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);
}
/**
* @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 {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @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` cannot be the zero address.
* - `to` cannot be the zero address.
*
* 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 override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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.0 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, 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.0 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @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
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 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.0 (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.0 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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.0 (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.0 (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);
}
}
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
The 'scripts' folder contains example async/await scripts for deploying the 'Storage' contract.
For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required).
Scripts have full access to the web3.js and ethers.js libraries.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
{
"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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122088fd4ac1e3d28dfbb9855348e6e98c06d592516928cca1698cffe8c3a7c69a0d64736f6c63430008080033",
"opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP9 REVERT 0x4A 0xC1 0xE3 0xD2 DUP14 0xFB 0xB9 DUP6 MSTORE8 BASEFEE 0xE6 0xE9 DUP13 MOD 0xD5 SWAP3 MLOAD PUSH10 0x28CCA1698CFFE8C3A7C6 SWAP11 0xD PUSH5 0x736F6C6343 STOP ADDMOD ADDMOD STOP CALLER ",
"sourceMap": "207:1509:0:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;207:1509:0;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122088fd4ac1e3d28dfbb9855348e6e98c06d592516928cca1698cffe8c3a7c69a0d64736f6c63430008080033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP9 REVERT 0x4A 0xC1 0xE3 0xD2 DUP14 0xFB 0xB9 DUP6 MSTORE8 BASEFEE 0xE6 0xE9 DUP13 MOD 0xD5 SWAP3 MLOAD PUSH10 0x28CCA1698CFFE8C3A7C6 SWAP11 0xD PUSH5 0x736F6C6343 STOP ADDMOD ADDMOD STOP CALLER ",
"sourceMap": "207:1509:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "103",
"totalCost": "17303"
},
"internal": {
"encode(bytes memory)": "infinite"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.8+commit.dddeac2f"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"author": "Brecht Devos <brecht@loopring.org>",
"kind": "dev",
"methods": {},
"title": "Base64",
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"notice": "[MIT License]Provides a function for encoding some bytes in base64",
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/Base64.sol": "Base64"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/Base64.sol": {
"keccak256": "0xca56cde9ae3a400e28929e9fe720eab5001f1ed08834a95b52622faa74c278be",
"license": "MIT",
"urls": [
"bzz-raw://b4b15565ca89d3b1fc0694119d85a92f2c247421fca0accc3c100425547c0719",
"dweb:/ipfs/QmcTLr2bR6T4BnAi68SgqJaS6G6t2KdVPDAnsTTrvqE7hv"
]
}
},
"version": 1
}
pragma solidity ^0.8.2;
// SPDX-License-Identifier: MIT
/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <brecht@loopring.org>
library Base64 {
bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
/// @notice Encodes some bytes to the base64 representation
function encode(bytes memory data) internal pure returns (string memory) {
uint256 len = data.length;
if (len == 0) return "";
// multiply by 4/3 rounded up
uint256 encodedLen = 4 * ((len + 2) / 3);
// Add some extra buffer at the end
bytes memory result = new bytes(encodedLen + 32);
bytes memory table = TABLE;
assembly {
let tablePtr := add(table, 1)
let resultPtr := add(result, 32)
for {
let i := 0
} lt(i, len) {
} {
i := add(i, 3)
let input := and(mload(add(data, i)), 0xffffff)
let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
out := shl(8, out)
out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
out := shl(8, out)
out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
out := shl(8, out)
out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
out := shl(224, out)
mstore(resultPtr, out)
resultPtr := add(resultPtr, 4)
}
switch mod(len, 3)
case 1 {
mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
}
case 2 {
mstore(sub(resultPtr, 1), shl(248, 0x3d))
}
mstore(result, encodedLen)
}
return string(result);
}
}
/*
MMMMMMMMMMXo. 'oXMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMK: :xKMMMMMMMMMMMMMMMMMM
MMMMMMMMWo .oWMMMMMMMMMMMMMMMMM
MMMMMMMMNc ;KWMMMMMMMMMMMMMMMM
MMMMMMMMNc .,,lKMMMMMMMMMMMMMMMM
MMMMMMW0l. 'l0WNXNMMMMMMMMMMMMMMMM
MMMNkc,. ;dkXMMMMMMMMMMMMMMMMMMMMMM
MMXc :XMMMMMMMMMMMMMMMMMMMMMMMM
MNl ,OWMMMMMMMMMMMMMMMMMMMMMM
MO. .dNMMMMMMMMMMMMMMMMMMMMM
Nc .lXMMMMMMMMMMMMMMMMMMMM
O' l0XMMMMMMMMMMMMMMMMMM
d. .lNMMMMMMMMMMMMMMMMM
l .oNMMMMMMMMMMMMMMMM
c .lXMMMMMMMMMMMMMMM
c cXMMMMMMMMMMMMMM
d. .;,. cXMMMMMMMMMMMMM
Wx. ,0NOc,'. ;0MMMMMMMMMMMM
MK; .. oNMWWNXkc''lKMMMMMMMMMMM
MN: ,o' .OMMMMMMWNXkokNMMMMMMMMM
MX; ;0o lWMMMMMMMMMXxoOWMMMMMMM
Mk. lNO. :XMMMMMMMMMMW0ddKWMMMMM
K; 'OMO. ;XMMMMMMMMMMMMNOoxXMMWW
l .dWMk. :XMMMMMMMMMMMMMMXxll:;c
; .dXNo oWMMMMMMMMMMMMMMMWKdclx
' .dx. :kXNWMMMMMMMMMMMMMMMMMM
occllllod0x. .;xWMMMMMMMMMMMMMMMMM
MMMMMMMMMWx........,:xWMMMMMMMMMMMMMMMMM
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./Base64.sol";
contract MuniGolfClub is ERC721Enumerable, ReentrancyGuard, Ownable {
using Counters for Counters.Counter;
uint256 public constant MAX_SUPPLY = 5400;
uint256 public constant MAX_PUBLIC_MINT = 9;
uint256 public constant MAX_RESERVE_COUNT = 180;
uint256 private TOTAL_RESERVED = 0;
uint256 public PRICE_PER_TOKEN = 0.05 ether;
string private DESCRIPTION = "Randomly generated, fully on-chain golf balls.";
function getDescription() public view returns (string memory) {
return DESCRIPTION;
}
function setDescription( string memory description ) public onlyOwner {
DESCRIPTION = description;
}
address private _owner;
string private _seed;
bool public mintingActive = false;
bool public contractLocked = false;
string private _contractURI;
struct MuniLayerData {
string name;
string svgData;
}
struct MuniColorData {
string name;
string color;
}
MuniLayerData private groundBall;
MuniLayerData private inHoleBall;
MuniLayerData private distanceBall;
MuniLayerData private inHoleHole;
MuniLayerData private ground;
MuniColorData[] private ballColors;
MuniColorData[] private groundColors;
MuniLayerData[] private skies;
MuniLayerData[] private backgrounds;
MuniLayerData[] private ballLogos;
MuniLayerData[] private holes;
MuniLayerData[] private foregrounds;
MuniLayerData[] private creatures;
modifier whenContractNotLocked() {
require(!contractLocked, 'Contract is locked');
_;
}
constructor() ERC721( "Municipal", "MUNI" ) Ownable() {
_owner = msg.sender;
_seed = string(abi.encodePacked(block.timestamp));
loadData();
}
function loadData() internal {
groundBall.name = "Ball on Ground";
groundBall.svgData = '<circle cx="250.5" cy="250.5" r="137.5" fill="';
inHoleBall.name = "Ball in Hole";
inHoleBall.svgData = '<path d="M364 494C330 498 291 500 250 500C209 500 171 498 137 494C162 458 202 434 250 434C298 434 339 458 364 494Z" fill="';
distanceBall.name = "Ball in the Distance";
distanceBall.svgData = '<circle cx="346" cy="310" r="78" fill="';
ground.name = "Ground";
ground.svgData = '<rect y="388" width="500" height="112" fill="';
inHoleHole.name = "Hole";
inHoleHole.svgData = '<ellipse cx="250" cy="444" rx="250" ry="56" fill="#141B19" fill-opacity="0.75"/>';
}
function toggleMinting() public onlyOwner {
mintingActive = !mintingActive;
}
function _baseURI() override internal view virtual returns ( string memory ) {
return _contractURI;
}
function contractURI() public view returns ( string memory ) {
return _contractURI;
}
function setContractURI( string memory prefix ) public onlyOwner {
_contractURI = prefix;
}
function setPrice( uint256 newPrice ) public onlyOwner {
PRICE_PER_TOKEN = newPrice;
}
function lockContract() public onlyOwner {
contractLocked = true; // Cannot be unlocked
}
function mint(uint numberOfTokens) public payable {
uint256 ts = totalSupply();
require(mintingActive, "Sale must be active to mint tokens.");
require(numberOfTokens <= MAX_PUBLIC_MINT, "Exceeded max token purchase.");
require(numberOfTokens > 0, "Cannot mint less than 1 token.");
require(ts + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens.");
require(PRICE_PER_TOKEN * numberOfTokens <= msg.value, "Ether value sent is not correct.");
for (uint256 i = 0; i < numberOfTokens; i++) {
_safeMint(msg.sender, ts + i + 1); // Add 1 so we get Ball #1 instead of Ball #0
}
}
function reserve( uint256 numberOfTokens ) public onlyOwner {
uint256 supply = totalSupply();
require(supply + numberOfTokens <= MAX_SUPPLY, "Reserve would exceed max tokens");
require(TOTAL_RESERVED + numberOfTokens <= MAX_RESERVE_COUNT, "Cannot exceed max team reserve allotment");
for (uint256 i = 0; i < numberOfTokens; i++) {
_safeMint(msg.sender, supply + i + 1); // Add 1 so we get Ball #1 instead of Ball #0
}
TOTAL_RESERVED += numberOfTokens;
}
function tokensOfOwner(address _ballowner) external view returns( uint256[] memory ) {
uint256 tokenCount = balanceOf(_ballowner);
if (tokenCount == 0) {
// Return an empty array
return new uint256[](0);
} else {
uint256[] memory result = new uint256[](tokenCount);
uint256 index;
for (index = 0; index < tokenCount; index++) {
result[index] = tokenOfOwnerByIndex(_ballowner, index);
}
return result;
}
}
function random(string memory input) internal pure returns ( uint256 ) {
return uint256(keccak256(abi.encodePacked(input)));
}
function withdrawAll() public payable onlyOwner {
require(payable(msg.sender).send(address(this).balance));
}
// Check length functions
function getNumberOfSkies() public view returns ( uint256 ) {
return skies.length;
}
function getNumberOfBackgrounds() public view returns ( uint256 ) {
return backgrounds.length;
}
function getNumberOfForegrounds() public view returns ( uint256 ) {
return foregrounds.length;
}
function getNumberOfCreatures() public view returns ( uint256 ) {
return creatures.length;
}
function getNumberOfHoles() public view returns ( uint256 ) {
return holes.length;
}
function getNumberOfBallLogos() public view returns ( uint256 ) {
return ballLogos.length;
}
function getNumberOfGroundColors() public view returns ( uint256 ) {
return groundColors.length;
}
function getNumberOfBallColors() public view returns ( uint256 ) {
return ballColors.length;
}
// Register functions
function registerSkyData( MuniLayerData calldata dataEntry ) public onlyOwner whenContractNotLocked {
skies.push(dataEntry);
}
function registerHoleData( MuniLayerData calldata dataEntry ) public onlyOwner whenContractNotLocked {
holes.push(dataEntry);
}
function registerGroundColor( MuniColorData calldata dataEntry ) public onlyOwner whenContractNotLocked {
groundColors.push(dataEntry);
}
function registerBallColor( MuniColorData calldata dataEntry ) public onlyOwner whenContractNotLocked {
ballColors.push(dataEntry);
}
function registerBackgroundData(MuniLayerData calldata dataEntry ) public onlyOwner whenContractNotLocked {
backgrounds.push(dataEntry);
}
function registerForegroundData(MuniLayerData calldata dataEntry ) public onlyOwner whenContractNotLocked {
foregrounds.push(dataEntry);
}
function registerCreatureData(MuniLayerData calldata dataEntry ) public onlyOwner whenContractNotLocked {
creatures.push(dataEntry);
}
function registerBallLogoData(MuniLayerData calldata dataEntry ) public onlyOwner whenContractNotLocked {
ballLogos.push(dataEntry);
}
// Multiple register functions
function registerMultipleSkyData(MuniLayerData[] calldata dataEntries) public onlyOwner whenContractNotLocked {
for (uint256 i = 0; i < dataEntries.length; i++) {
skies.push(dataEntries[i]);
}
}
function registerMultipleBallColor(MuniColorData[] calldata dataEntries) public onlyOwner whenContractNotLocked {
for (uint256 i = 0; i < dataEntries.length; i++) {
ballColors.push(dataEntries[i]);
}
}
function registerMultipleGroundColor(MuniColorData[] calldata dataEntries) public onlyOwner whenContractNotLocked {
for (uint256 i = 0; i < dataEntries.length; i++) {
groundColors.push(dataEntries[i]);
}
}
function registerMultipleBackgroundData( MuniLayerData[] calldata dataEntries ) public onlyOwner whenContractNotLocked {
for (uint256 i = 0; i < dataEntries.length; i++) {
backgrounds.push(dataEntries[i]);
}
}
function registerHoleBackgroundData( MuniLayerData[] calldata dataEntries ) public onlyOwner whenContractNotLocked {
for (uint256 i = 0; i < dataEntries.length; i++) {
holes.push(dataEntries[i]);
}
}
function registerMultipleForegroundData( MuniLayerData[] calldata dataEntries ) public onlyOwner whenContractNotLocked {
for (uint256 i = 0; i < dataEntries.length; i++) {
foregrounds.push(dataEntries[i]);
}
}
function registerMultipleCreatureData( MuniLayerData[] calldata dataEntries ) public onlyOwner whenContractNotLocked {
for (uint256 i = 0; i < dataEntries.length; i++) {
creatures.push(dataEntries[i]);
}
}
function registerMultipleBallLogoData( MuniLayerData[] calldata dataEntries ) public onlyOwner whenContractNotLocked {
for (uint256 i = 0; i < dataEntries.length; i++) {
ballLogos.push(dataEntries[i]);
}
}
// Token Rendering
function tokenURI( uint256 tokenId ) public view override returns (string memory) {
require(tokenId <= totalSupply(), "Ball doesn't exist.");
require(tokenId > 0, "Ball doesn't exist.");
string memory output;
string memory attributes;
string[23] memory parts;
parts[0] = '<svg width="500" height="500" viewBox="0 0 500 500" fill="none" xmlns="http://www.w3.org/2000/svg">';
parts[1] = getSky(tokenId).svgData;
parts[2] = getBackground(tokenId).svgData;
parts[3] = ground.svgData;
parts[4] = getGround(tokenId).color;
parts[5] = '"/>';
parts[6] = getHole(tokenId).svgData;
parts[7] = getBall(tokenId).svgData;
parts[8] = getBallColor(tokenId).color;
parts[9] = '"/>';
parts[10] = getLogo(tokenId).svgData;
parts[11] = getCreature(tokenId).svgData;
parts[12] = getForeground(tokenId).svgData;
parts[13] = '</svg>';
output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7]));
output = string(abi.encodePacked(output, parts[8], parts[9], parts[10], parts[11], parts[12], parts[13]));
parts[0] = '"attributes" : [{ "trait_type" : "Score", "value" : "';
parts[1] = getScore(tokenId);
parts[2] = '" }, { "trait_type" : "Yardage", "value" : "';
parts[3] = getYardage(tokenId);
parts[4] = '" }, { "trait_type" : "Sky", "value" : "';
parts[5] = getSky(tokenId).name;
parts[6] = '" }, { "trait_type" : "Background", "value" : "';
parts[7] = getBackground(tokenId).name;
parts[8] = '" }, { "trait_type" : "Ground", "value" : "';
parts[9] = getGround(tokenId).name;
parts[10] = '" }, { "trait_type" : "Ball", "value" : "';
parts[11] = getBallAttribute(tokenId);
parts[12] = '" }, { "trait_type" : "Ball Color", "value" : "';
parts[13] = getBallColor(tokenId).name;
parts[14] = '" }, { "trait_type" : "Ball Brand", "value" : "';
parts[15] = getLogo(tokenId).name;
parts[16] = '" }, { "trait_type" : "Creature", "value" : "';
parts[17] = getCreature(tokenId).name;
parts[18] = '" }, { "trait_type" : "Foreground", "value" : "';
parts[19] = getForeground(tokenId).name;
parts[20] = '" }, { "trait_type" : "Landed", "value" : "';
parts[21] = getHole(tokenId).name;
parts[22] = '"} ]';
attributes = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8]));
attributes = string(abi.encodePacked(attributes, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14]));
attributes = string(abi.encodePacked(attributes, parts[15], parts[16], parts[17], parts[18], parts[19], parts[20], parts[21], parts[22]));
output = Base64.encode(bytes(string(abi.encodePacked('{"name":"Ball #', toString(tokenId), '", "description" : "', DESCRIPTION, '", "image" : "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '", ', attributes, '}'))));
output = string(abi.encodePacked("data:application/json;base64,", output));
return output;
}
function getYardageInRange(uint256 tokenId, uint256 low, uint256 high) internal view returns ( uint256 ) {
uint256 rand = random(string(abi.encodePacked("YardageInRange", toString(tokenId), _seed)));
uint256 gap = high - low;
uint256 greatness = rand % gap;
return greatness + low;
}
function getYardage(uint256 tokenId) internal view returns (string memory) {
uint256 rand = random(string(abi.encodePacked("Yardage", toString(tokenId), _seed)));
uint256 greatness = rand % 1000;
string memory output;
output = toString(getYardageInRange(tokenId, 2, 25));
if (greatness > 100) {
output = toString(getYardageInRange(tokenId, 25, 50));
}
if ( greatness > 200) {
output = toString(getYardageInRange(tokenId, 50, 75));
}
if ( greatness > 400) {
output = toString(getYardageInRange(tokenId, 75, 150));
}
if ( greatness > 850) {
output = toString(getYardageInRange(tokenId, 150, 225));
}
if ( greatness > 900) {
output = toString(getYardageInRange(tokenId, 225, 275));
}
if ( greatness > 990) {
output = toString(getYardageInRange(tokenId, 275, 350));
}
if ( greatness > 998) {
output = toString(getYardageInRange(tokenId, 350, 475));
}
return output;
}
function getScore(uint256 tokenId) internal view returns ( string memory) {
uint256 rand = random(string(abi.encodePacked("Ball", toString(tokenId), _seed)));
uint256 greatness = rand % 1000;
string memory output;
output = "Snowman";
if (greatness > 100) {
output = "Double Bogey";
}
if ( greatness > 200) {
output = "Bogey";
}
if ( greatness > 400) {
output = "Par";
}
if ( greatness > 700) {
output = "Birdie";
}
if ( greatness > 800) {
output = "Eagle";
}
if ( greatness > 900) {
output = "Double Eagle";
}
if ( greatness > 990) {
output = "Ace";
}
return output;
}
// Layer 0 - Sky (flat colour only)
function getSky(uint256 tokenId) internal view returns (MuniLayerData memory) {
uint256 rand = random(string(abi.encodePacked("Sky", toString(tokenId), _seed)));
uint256 greatness = rand % 1000;
if (greatness > 400) {
return skies[rand % skies.length];
}
return skies[0];
}
// Layer 1 - Background
function getBackground(uint256 tokenId) internal view returns (MuniLayerData memory) {
return pluck(tokenId, "Backgrounds", backgrounds, 50);
}
// Layer 2 - Ground
function getGround(uint256 tokenId) internal view returns (MuniColorData memory) {
uint256 rand = random(string(abi.encodePacked("Ground", toString(tokenId), _seed)));
return groundColors[rand % groundColors.length];
}
// Layer 3 - Hole
function getHole(uint256 tokenId) internal view returns ( MuniLayerData memory ) {
uint256 rand = random(string(abi.encodePacked("Ball", toString(tokenId), _seed)));
uint256 greatness = rand % 1000;
if (greatness > 990) {
return inHoleHole;
}
return holes[rand % holes.length];
}
// Layer 4 - Ball
function getBallColor(uint256 tokenId) internal view returns (MuniColorData memory) {
uint256 rand = random(string(abi.encodePacked("Ball", toString(tokenId), _seed)));
uint256 greatness = rand % 1000;
if (greatness > 400) {
return ballColors[rand % ballColors.length];
}
return ballColors[0];
}
function getBall(uint256 tokenId) internal view returns (MuniLayerData memory) {
uint256 rand = random(string(abi.encodePacked("Ball", toString(tokenId), _seed)));
uint256 greatness = rand % 1000;
if (greatness < 100) {
return distanceBall;
}
if (greatness > 990) {
return inHoleBall;
}
return groundBall;
}
function getBallAttribute(uint256 tokenId) internal view returns (string memory) {
uint256 rand = random(string(abi.encodePacked("Ball", toString(tokenId), _seed)));
uint256 greatness = rand % 1000;
if (greatness < 100) {
return "Long Ball";
}
if (greatness > 990) {
return "In Hole";
}
return "Standard";
}
// Layer 5 - Logo
function getLogo(uint256 tokenId) internal view returns (MuniLayerData memory) {
MuniLayerData memory output;
uint256 rand = random(string(abi.encodePacked("Ball", toString(tokenId), _seed)));
uint256 greatness = rand % 1000;
output.name = "None";
output.svgData = '';
if (greatness >= 100 ) {
output = pluck(tokenId, "Logos", ballLogos, 80);
}
if ( greatness > 990 ) {
output.svgData = '';
}
return output;
}
// Layer 6 - Creature
function getCreature(uint256 tokenId) internal view returns (MuniLayerData memory) {
return pluck(tokenId, "Creature", creatures, 90);
}
// Layer 7 - Foreground
function getForeground(uint256 tokenId) internal view returns (MuniLayerData memory) {
return pluck(tokenId, "Foregrounds", foregrounds, 70);
}
function pluck(uint256 tokenId, string memory key, MuniLayerData[] memory sourceArray, uint256 threshold) internal view returns (MuniLayerData memory) {
MuniLayerData memory output;
if ( sourceArray.length == 0 ) {
output.name = "None";
output.svgData = "";
return output;
}
uint256 rand = random(string(abi.encodePacked(key, toString(tokenId), _seed)));
output = sourceArray[rand % sourceArray.length];
uint256 greatness = rand % 100;
if (greatness > threshold) {
return output;
}
output.name = "None";
output.svgData = "";
return output;
}
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT license
// 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);
}
}
This file has been truncated, but you can view the full file.
{
"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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_123": {
"entryPoint": null,
"id": 123,
"parameterSlots": 0,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_3009": {
"entryPoint": null,
"id": 3009,
"parameterSlots": 0,
"returnSlots": 0
},
"@_856": {
"entryPoint": null,
"id": 856,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_2463": {
"entryPoint": null,
"id": 2463,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 285,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@loadData_3073": {
"entryPoint": 367,
"id": 3073,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_uint256__to_t_uint256__nonPadded_inplace_fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1055,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:583:19",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:19",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "133:63:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "150:3:19"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "155:6:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "143:6:19"
},
"nodeType": "YulFunctionCall",
"src": "143:19:19"
},
"nodeType": "YulExpressionStatement",
"src": "143:19:19"
},
{
"nodeType": "YulAssignment",
"src": "171:19:19",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "182:3:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "187:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "178:3:19"
},
"nodeType": "YulFunctionCall",
"src": "178:12:19"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "171:3:19"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_uint256__to_t_uint256__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "109:3:19",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "114:6:19",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "125:3:19",
"type": ""
}
],
"src": "14:182:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "256:325:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "266:22:19",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "280:1:19",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "283:4:19"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "276:3:19"
},
"nodeType": "YulFunctionCall",
"src": "276:12:19"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:19"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "297:38:19",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "327:4:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "333:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "323:3:19"
},
"nodeType": "YulFunctionCall",
"src": "323:12:19"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "301:18:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "374:31:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "376:27:19",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "390:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "398:4:19",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "386:3:19"
},
"nodeType": "YulFunctionCall",
"src": "386:17:19"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "376:6:19"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "354:18:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "347:6:19"
},
"nodeType": "YulFunctionCall",
"src": "347:26:19"
},
"nodeType": "YulIf",
"src": "344:61:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "464:111:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "485:1:19",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "492:3:19",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "497:10:19",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "488:3:19"
},
"nodeType": "YulFunctionCall",
"src": "488:20:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "478:6:19"
},
"nodeType": "YulFunctionCall",
"src": "478:31:19"
},
"nodeType": "YulExpressionStatement",
"src": "478:31:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "529:1:19",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "532:4:19",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "522:6:19"
},
"nodeType": "YulFunctionCall",
"src": "522:15:19"
},
"nodeType": "YulExpressionStatement",
"src": "522:15:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "557:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "560:4:19",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "550:6:19"
},
"nodeType": "YulFunctionCall",
"src": "550:15:19"
},
"nodeType": "YulExpressionStatement",
"src": "550:15:19"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "420:18:19"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "443:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "451:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "440:2:19"
},
"nodeType": "YulFunctionCall",
"src": "440:14:19"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "417:2:19"
},
"nodeType": "YulFunctionCall",
"src": "417:38:19"
},
"nodeType": "YulIf",
"src": "414:161:19"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "236:4:19",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "245:6:19",
"type": ""
}
],
"src": "201:380:19"
}
]
},
"contents": "{\n { }\n function abi_encode_tuple_packed_t_uint256__to_t_uint256__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n {\n mstore(pos, value0)\n end := add(pos, 32)\n }\n function extract_byte_array_length(data) -> length\n {\n length := shr(1, data)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n}",
"id": 19,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "6000600c5566b1a2bc2ec50000600d5560e0604052602e60808181529062005ab960a03980516200003991600e9160209091019062000379565b506011805461ffff191690553480156200005257600080fd5b506040805180820182526009815268135d5b9a58da5c185b60ba1b6020808301918252835180850190945260048452634d554e4960e01b908401528151919291620000a09160009162000379565b508051620000b690600190602084019062000379565b50506001600a5550620000c9336200011d565b600f80546001600160a01b031916331790556040805142602082015201604051602081830303815290604052601090805190602001906200010c92919062000379565b50620001176200016f565b6200045c565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051808201909152600e8082526d10985b1b081bdb8811dc9bdd5b9960921b6020909201918252620001a69160139162000379565b506040518060600160405280602e815260200162005a3b602e91398051620001d79160149160209091019062000379565b5060408051808201909152600c8082526b42616c6c20696e20486f6c6560a01b60209092019182526200020d9160159162000379565b506040518060a00160405280607a815260200162005b3b607a913980516200023e9160169160209091019062000379565b506040805180820190915260148082527f42616c6c20696e207468652044697374616e63650000000000000000000000006020909201918252620002859160179162000379565b5060405180606001604052806027815260200162005b14602791398051620002b69160189160209091019062000379565b506040805180820190915260068082526511dc9bdd5b9960d21b6020909201918252620002e691601b9162000379565b506040518060600160405280602d815260200162005ae7602d913980516200031791601c9160209091019062000379565b5060408051808201909152600480825263486f6c6560e01b6020909201918252620003459160199162000379565b5060405180608001604052806050815260200162005a696050913980516200037691601a9160209091019062000379565b50565b82805462000387906200041f565b90600052602060002090601f016020900481019282620003ab5760008555620003f6565b82601f10620003c657805160ff1916838001178555620003f6565b82800160010185558215620003f6579182015b82811115620003f6578251825591602001919060010190620003d9565b506200040492915062000408565b5090565b5b8082111562000404576000815560010162000409565b600181811c908216806200043457607f821691505b602082108114156200045657634e487b7160e01b600052602260045260246000fd5b50919050565b6155cf806200046c6000396000f3fe6080604052600436106103975760003560e01c8063819b25ba116101dc578063b88d4fde11610102578063e8a3d485116100a0578063efa3708b1161006f578063efa3708b14610a10578063f2fde38b14610a30578063f5d99d3514610a50578063f8812af214610a7057600080fd5b8063e8a3d48514610972578063e985e9c514610987578063eecd82d9146109d0578063ef7cf1b6146109f057600080fd5b8063c87b56dd116100dc578063c87b56dd146108fd578063cb8c3d9e1461091d578063d51033b114610932578063d8affe211461095257600080fd5b8063b88d4fde1461089d578063b8bb4eeb146108bd578063bf7aaf66146108dd57600080fd5b8063938e3d7b1161017a578063a0712d6811610149578063a0712d6814610835578063a22cb46514610848578063ade690de14610868578063b323893c1461087d57600080fd5b8063938e3d7b146107c057806395d89b41146107e05780639ab43da4146107f55780639b5fa4191461081557600080fd5b8063853828b6116101b6578063853828b61461075a5780638da5cb5b1461076257806390c3f38f1461078057806391b7f5ed146107a057600080fd5b8063819b25ba146106f7578063833b9499146107175780638462151c1461072d57600080fd5b806342842e0e116102c15780636352211e1161025f578063715018a61161022e578063715018a6146106a3578063753868e3146106b857806376500c17146106cd5780637d55094d146106e257600080fd5b80636352211e1461063957806365f1309714610659578063696575731461066e57806370a082311461068357600080fd5b80635b01c6a71161029b5780635b01c6a7146105cf5780635b2064d8146105e45780635f0329651461060457806362a0f93c1461062457600080fd5b806342842e0e1461057a578063485be3ed1461059a5780634f6ccce7146105af57600080fd5b80631a0925411161033957806331f9c9191161030857806331f9c9191461050b578063324cb3cb1461052557806332cb6b0c146105445780633d973bda1461055a57600080fd5b80631a092541146104965780631b822268146104ab57806323b872dd146104cb5780632f745c59146104eb57600080fd5b8063095ea7b311610375578063095ea7b31461042b5780630ef589061461044d578063103f397c1461046c57806318160ddd1461048157600080fd5b806301ffc9a71461039c57806306fdde03146103d1578063081812fc146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b7366004614542565b610a90565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103e6610abb565b6040516103c891906145be565b3480156103ff57600080fd5b5061041361040e3660046145d1565b610b4d565b6040516001600160a01b0390911681526020016103c8565b34801561043757600080fd5b5061044b610446366004614606565b610be7565b005b34801561045957600080fd5b50601d545b6040519081526020016103c8565b34801561047857600080fd5b5060215461045e565b34801561048d57600080fd5b5060085461045e565b3480156104a257600080fd5b506103e6610cfd565b3480156104b757600080fd5b5061044b6104c6366004614642565b610d0c565b3480156104d757600080fd5b5061044b6104e6366004614677565b610d9f565b3480156104f757600080fd5b5061045e610506366004614606565b610dd0565b34801561051757600080fd5b506011546103bc9060ff1681565b34801561053157600080fd5b506011546103bc90610100900460ff1681565b34801561055057600080fd5b5061045e61151881565b34801561056657600080fd5b5061044b6105753660046146ff565b610e66565b34801561058657600080fd5b5061044b610595366004614677565b610f20565b3480156105a657600080fd5b5060225461045e565b3480156105bb57600080fd5b5061045e6105ca3660046145d1565b610f3b565b3480156105db57600080fd5b5060235461045e565b3480156105f057600080fd5b5061044b6105ff3660046146ff565b610fce565b34801561061057600080fd5b5061044b61061f366004614642565b611088565b34801561063057600080fd5b50601f5461045e565b34801561064557600080fd5b506104136106543660046145d1565b61111b565b34801561066557600080fd5b5061045e600981565b34801561067a57600080fd5b5060205461045e565b34801561068f57600080fd5b5061045e61069e366004614741565b611192565b3480156106af57600080fd5b5061044b611219565b3480156106c457600080fd5b5061044b61124f565b3480156106d957600080fd5b5061045e60b481565b3480156106ee57600080fd5b5061044b61128a565b34801561070357600080fd5b5061044b6107123660046145d1565b6112c8565b34801561072357600080fd5b5061045e600d5481565b34801561073957600080fd5b5061074d610748366004614741565b611420565b6040516103c8919061475c565b61044b6114df565b34801561076e57600080fd5b50600b546001600160a01b0316610413565b34801561078c57600080fd5b5061044b61079b36600461482c565b61152d565b3480156107ac57600080fd5b5061044b6107bb3660046145d1565b61156e565b3480156107cc57600080fd5b5061044b6107db36600461482c565b61159d565b3480156107ec57600080fd5b506103e66115da565b34801561080157600080fd5b5061044b6108103660046146ff565b6115e9565b34801561082157600080fd5b5061044b6108303660046146ff565b6116a3565b61044b6108433660046145d1565b61175d565b34801561085457600080fd5b5061044b610863366004614875565b611957565b34801561087457600080fd5b5060245461045e565b34801561088957600080fd5b5061044b610898366004614642565b611962565b3480156108a957600080fd5b5061044b6108b83660046148b1565b6119f5565b3480156108c957600080fd5b5061044b6108d8366004614642565b611a2d565b3480156108e957600080fd5b5061044b6108f8366004614642565b611ac0565b34801561090957600080fd5b506103e66109183660046145d1565b611b53565b34801561092957600080fd5b50601e5461045e565b34801561093e57600080fd5b5061044b61094d366004614642565b6121cf565b34801561095e57600080fd5b5061044b61096d366004614642565b612262565b34801561097e57600080fd5b506103e66122f5565b34801561099357600080fd5b506103bc6109a236600461492d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109dc57600080fd5b5061044b6109eb366004614642565b612304565b3480156109fc57600080fd5b5061044b610a0b3660046146ff565b612397565b348015610a1c57600080fd5b5061044b610a2b3660046146ff565b612451565b348015610a3c57600080fd5b5061044b610a4b366004614741565b61250b565b348015610a5c57600080fd5b5061044b610a6b3660046146ff565b6125a6565b348015610a7c57600080fd5b5061044b610a8b3660046146ff565b612660565b60006001600160e01b0319821663780e9d6360e01b1480610ab55750610ab58261271a565b92915050565b606060008054610aca90614960565b80601f0160208091040260200160405190810160405280929190818152602001828054610af690614960565b8015610b435780601f10610b1857610100808354040283529160200191610b43565b820191906000526020600020905b815481529060010190602001808311610b2657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bcb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610bf28261111b565b9050806001600160a01b0316836001600160a01b03161415610c605760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bc2565b336001600160a01b0382161480610c7c5750610c7c81336109a2565b610cee5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bc2565b610cf8838361276a565b505050565b6060600e8054610aca90614960565b600b546001600160a01b03163314610d365760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff1615610d5e5760405162461bcd60e51b8152600401610bc2906149ca565b6023805460018101825560009190915281906002027fd57b2b5166478fd4318d2acc6cc2c704584312bdd8781b32d5d06abda57f423001610cf88282614c2f565b610da933826127d8565b610dc55760405162461bcd60e51b8152600401610bc290614c39565b610cf88383836128cf565b6000610ddb83611192565b8210610e3d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bc2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610e905760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff1615610eb85760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf8576021838383818110610ed757610ed7614c8a565b9050602002810190610ee99190614ca0565b815460018101835560009283526020909220909160020201610f0b8282614c2f565b50508080610f1890614cd6565b915050610ebb565b610cf8838383604051806020016040528060008152506119f5565b6000610f4660085490565b8210610fa95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bc2565b60088281548110610fbc57610fbc614c8a565b90600052602060002001549050919050565b600b546001600160a01b03163314610ff85760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156110205760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf857602083838381811061103f5761103f614c8a565b90506020028101906110519190614ca0565b8154600181018355600092835260209092209091600202016110738282614c2f565b5050808061108090614cd6565b915050611023565b600b546001600160a01b031633146110b25760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156110da5760405162461bcd60e51b8152600401610bc2906149ca565b601f805460018101825560009190915281906002027fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d80701610cf88282614c2f565b6000818152600260205260408120546001600160a01b031680610ab55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bc2565b60006001600160a01b0382166111fd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bc2565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146112435760405162461bcd60e51b8152600401610bc290614995565b61124d6000612a7a565b565b600b546001600160a01b031633146112795760405162461bcd60e51b8152600401610bc290614995565b6011805461ff001916610100179055565b600b546001600160a01b031633146112b45760405162461bcd60e51b8152600401610bc290614995565b6011805460ff19811660ff90911615179055565b600b546001600160a01b031633146112f25760405162461bcd60e51b8152600401610bc290614995565b60006112fd60085490565b905061151861130c8383614cf1565b111561135a5760405162461bcd60e51b815260206004820152601f60248201527f5265736572766520776f756c6420657863656564206d617820746f6b656e73006044820152606401610bc2565b60b482600c5461136a9190614cf1565b11156113c95760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420657863656564206d6178207465616d207265736572766520616044820152671b1b1bdd1b595b9d60c21b6064820152608401610bc2565b60005b82811015611404576113f2336113e28385614cf1565b6113ed906001614cf1565b612acc565b806113fc81614cd6565b9150506113cc565b5081600c60008282546114179190614cf1565b90915550505050565b6060600061142d83611192565b90508061144e5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611469576114696147a0565b604051908082528060200260200182016040528015611492578160200160208202803683370190505b50905060005b82811015611446576114aa8582610dd0565b8282815181106114bc576114bc614c8a565b6020908102919091010152806114d181614cd6565b915050611498565b50919050565b600b546001600160a01b031633146115095760405162461bcd60e51b8152600401610bc290614995565b60405133904780156108fc02916000818181858888f1935050505061124d57600080fd5b600b546001600160a01b031633146115575760405162461bcd60e51b8152600401610bc290614995565b805161156a90600e90602084019061446b565b5050565b600b546001600160a01b031633146115985760405162461bcd60e51b8152600401610bc290614995565b600d55565b600b546001600160a01b031633146115c75760405162461bcd60e51b8152600401610bc290614995565b805161156a90601290602084019061446b565b606060018054610aca90614960565b600b546001600160a01b031633146116135760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff161561163b5760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf857601d83838381811061165a5761165a614c8a565b905060200281019061166c9190614ca0565b81546001810183556000928352602090922090916002020161168e8282614c2f565b5050808061169b90614cd6565b91505061163e565b600b546001600160a01b031633146116cd5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156116f55760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf857601f83838381811061171457611714614c8a565b90506020028101906117269190614ca0565b8154600181018355600092835260209092209091600202016117488282614c2f565b5050808061175590614cd6565b9150506116f8565b600061176860085490565b60115490915060ff166117c95760405162461bcd60e51b815260206004820152602360248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560448201526237399760e91b6064820152608401610bc2565b600982111561181a5760405162461bcd60e51b815260206004820152601c60248201527f4578636565646564206d617820746f6b656e2070757263686173652e000000006044820152606401610bc2565b6000821161186a5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f74206d696e74206c657373207468616e203120746f6b656e2e00006044820152606401610bc2565b6115186118778383614cf1565b11156118cf5760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152601760f91b6064820152608401610bc2565b3482600d546118de9190614d09565b111561192c5760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e6044820152606401610bc2565b60005b82811015610cf857611945336113e28385614cf1565b8061194f81614cd6565b91505061192f565b61156a338383612ae6565b600b546001600160a01b0316331461198c5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156119b45760405162461bcd60e51b8152600401610bc2906149ca565b6022805460018101825560009190915281906002027f61035b26e3e9eee00e0d72fd1ee8ddca6894550dca6916ea2ac6baa90d11e51001610cf88282614c2f565b6119ff33836127d8565b611a1b5760405162461bcd60e51b8152600401610bc290614c39565b611a2784848484612bb5565b50505050565b600b546001600160a01b03163314611a575760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff1615611a7f5760405162461bcd60e51b8152600401610bc2906149ca565b6021805460018101825560009190915281906002027f3a6357012c1a3ae0a17d304c9920310382d968ebcc4b1771f41c6b304205b57001610cf88282614c2f565b600b546001600160a01b03163314611aea5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff1615611b125760405162461bcd60e51b8152600401610bc2906149ca565b6020805460018101825560009190915281906002027fc97bfaf2f8ee708c303a06d134f5ecd8389ae0432af62dc132a24118292866bb01610cf88282614c2f565b6060611b5e60085490565b821115611ba35760405162461bcd60e51b81526020600482015260136024820152722130b636103237b2b9b713ba1032bc34b9ba1760691b6044820152606401610bc2565b60008211611be95760405162461bcd60e51b81526020600482015260136024820152722130b636103237b2b9b713ba1032bc34b9ba1760691b6044820152606401610bc2565b606080611bf46144ef565b6040518060a001604052806063815260200161535e606391398152611c1885612be8565b602001518160016020020152611c2d85612dc5565b602001516040820152601c8054611c4390614960565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6f90614960565b8015611cbc5780601f10611c9157610100808354040283529160200191611cbc565b820191906000526020600020905b815481529060010190602001808311611c9f57829003601f168201915b505050505081600360178110611cd457611cd4614c8a565b6020020152611ce285612f84565b602090810151608083015260408051808201909152600381526211179f60e91b9181019190915260a0820152611d1785613120565b6020015160c0820152611d298561319c565b6020015160e0820152611d3b8561323a565b60209081015161010083015260408051808201909152600381526211179f60e91b91810191909152610120820152611d728561329a565b60200151610140820152611d85856134ea565b60200151610160820152611d98856136a6565b60209081015161018083015260408051808201825260068152651e17b9bb339f60d11b818401526101a0840152825183830151828501516060860151608087015160a088015160c089015160e08a01519751611e039997989697959694959394929391929101614d28565b60408051808303601f19018152908290526101008301516101208401516101408501516101608601516101808701516101a0880151959950611e4a968a9690602001614dcd565b60408051601f1981840301815260608301909152603580835290945061553a60208301398152611e7985613865565b81600160200201819052506040518060600160405280602c81526020016154b2602c91396040820152611eab856139ce565b60608083019190915260408051918201905260288082526153c160208301396080820152611ed885612be8565b5160a08201526040805160608101909152602f80825261550b602083013960c0820152611f0485612dc5565b5160e08201526040805160608101909152602b80825261556f6020830139610100820152611f3185612f84565b51610120820152604080516060810190915260298082526153066020830139610140820152611f5f85613af0565b6101608201526040805160608101909152602f80825261532f6020830139610180820152611f8c8561323a565b516101a08201526040805160608101909152602f80825261541860208301396101c0820152611fba8561329a565b516101e08201526040805160608101909152602d8082526154de6020830139610200820152611fe8856134ea565b516102208201526040805160608101909152602f8082526153e96020830139610240820152612016856136a6565b516102608201526040805160608101909152602b808252615487602083013961028082015261204485613120565b516102a0820152604080518082019091526004815263227d205d60e01b6020820152816016602090810291909101919091528151828201516040808501516060860151608087015160a088015160c089015160e08a01516101008b015196516120b99a96979596949593949293919201614e5f565b60408051808303601f19018152908290526101208301516101408401516101608501516101808601516101a08701516101c088015195985061210096899690602001614dcd565b60408051808303601f19018152908290526101e08301516102008401516102208501516102408601516102608701516102808801516102a08901516102c08a0151979a50612153988b9890602001614e5f565b60405160208183030381529060405291506121a361217086613b9a565b600e61217b86613c98565b8560405160200161218f9493929190614f8f565b604051602081830303815290604052613c98565b9250826040516020016121b69190615071565b60408051601f1981840301815291905295945050505050565b600b546001600160a01b031633146121f95760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156122215760405162461bcd60e51b8152600401610bc2906149ca565b601e805460018101825560009190915281906002027f50bb669a95c7b50b7e8a6f09454034b2b14cf2b85c730dca9a539ca82cb6e35001610cf88282614c2f565b600b546001600160a01b0316331461228c5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156122b45760405162461bcd60e51b8152600401610bc2906149ca565b6024805460018101825560009190915281906002027f7cd332d19b93bcabe3cce7ca0c18a052f57e5fd03b4758a09f30f5ddc4b22ec401610cf88282614c2f565b606060128054610aca90614960565b600b546001600160a01b0316331461232e5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156123565760405162461bcd60e51b8152600401610bc2906149ca565b601d805460018101825560009190915281906002027f6d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146134f01610cf88282614c2f565b600b546001600160a01b031633146123c15760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156123e95760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf857601e83838381811061240857612408614c8a565b905060200281019061241a9190614ca0565b81546001810183556000928352602090922090916002020161243c8282614c2f565b5050808061244990614cd6565b9150506123ec565b600b546001600160a01b0316331461247b5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156124a35760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf85760248383838181106124c2576124c2614c8a565b90506020028101906124d49190614ca0565b8154600181018355600092835260209092209091600202016124f68282614c2f565b5050808061250390614cd6565b9150506124a6565b600b546001600160a01b031633146125355760405162461bcd60e51b8152600401610bc290614995565b6001600160a01b03811661259a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc2565b6125a381612a7a565b50565b600b546001600160a01b031633146125d05760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156125f85760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf857602283838381811061261757612617614c8a565b90506020028101906126299190614ca0565b81546001810183556000928352602090922090916002020161264b8282614c2f565b5050808061265890614cd6565b9150506125fb565b600b546001600160a01b0316331461268a5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156126b25760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf85760238383838181106126d1576126d1614c8a565b90506020028101906126e39190614ca0565b8154600181018355600092835260209092209091600202016127058282614c2f565b5050808061271290614cd6565b9150506126b5565b60006001600160e01b031982166380ac58cd60e01b148061274b57506001600160e01b03198216635b5e139f60e01b145b80610ab557506301ffc9a760e01b6001600160e01b0319831614610ab5565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061279f8261111b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166128515760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bc2565b600061285c8361111b565b9050806001600160a01b0316846001600160a01b031614806128975750836001600160a01b031661288c84610b4d565b6001600160a01b0316145b806128c757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166128e28261111b565b6001600160a01b03161461294a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bc2565b6001600160a01b0382166129ac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bc2565b6129b7838383613dfe565b6129c260008261276a565b6001600160a01b03831660009081526003602052604081208054600192906129eb9084906150b6565b90915550506001600160a01b0382166000908152600360205260408120805460019290612a19908490614cf1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61156a828260405180602001604052806000815250613eb6565b816001600160a01b0316836001600160a01b03161415612b485760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bc2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612bc08484846128cf565b612bcc84848484613ee9565b611a275760405162461bcd60e51b8152600401610bc2906150cd565b60408051808201909152606080825260208201526000612c31612c0a84613b9a565b6010604051602001612c1d92919061511f565b604051602081830303815290604052613ff6565b90506000612c416103e883615162565b9050610190811115612db157601f8054612c5b9084615162565b81548110612c6b57612c6b614c8a565b9060005260206000209060020201604051806040016040529081600082018054612c9490614960565b80601f0160208091040260200160405190810160405280929190818152602001828054612cc090614960565b8015612d0d5780601f10612ce257610100808354040283529160200191612d0d565b820191906000526020600020905b815481529060010190602001808311612cf057829003601f168201915b50505050508152602001600182018054612d2690614960565b80601f0160208091040260200160405190810160405280929190818152602001828054612d5290614960565b8015612d9f5780601f10612d7457610100808354040283529160200191612d9f565b820191906000526020600020905b815481529060010190602001808311612d8257829003601f168201915b50505050508152505092505050919050565b601f600081548110612c6b57612c6b614c8a565b6040805180820190915260608082526020820152610ab5826040518060400160405280600b81526020016a4261636b67726f756e647360a81b8152506020805480602002602001604051908101604052809291908181526020016000905b82821015612f795783829060005260206000209060020201604051806040016040529081600082018054612e5690614960565b80601f0160208091040260200160405190810160405280929190818152602001828054612e8290614960565b8015612ecf5780601f10612ea457610100808354040283529160200191612ecf565b820191906000526020600020905b815481529060010190602001808311612eb257829003601f168201915b50505050508152602001600182018054612ee890614960565b80601f0160208091040260200160405190810160405280929190818152602001828054612f1490614960565b8015612f615780601f10612f3657610100808354040283529160200191612f61565b820191906000526020600020905b815481529060010190602001808311612f4457829003601f168201915b50505050508152505081526020019060010190612e23565b505050506032614027565b60408051808201909152606080825260208201526000612fb9612fa684613b9a565b6010604051602001612c1d929190615176565b601e805491925090612fcb9083615162565b81548110612fdb57612fdb614c8a565b906000526020600020906002020160405180604001604052908160008201805461300490614960565b80601f016020809104026020016040519081016040528092919081815260200182805461303090614960565b801561307d5780601f106130525761010080835404028352916020019161307d565b820191906000526020600020905b81548152906001019060200180831161306057829003601f168201915b5050505050815260200160018201805461309690614960565b80601f01602080910402602001604051908101604052809291908181526020018280546130c290614960565b801561310f5780601f106130e45761010080835404028352916020019161310f565b820191906000526020600020905b8154815290600101906020018083116130f257829003601f168201915b505050505081525050915050919050565b6040805180820190915260608082526020820152600061315561314284613b9a565b6010604051602001612c1d9291906151a6565b905060006131656103e883615162565b90506103de81111561318e576019604051806040016040529081600082018054612c9490614960565b60228054612c5b9084615162565b604080518082019091526060808252602082015260006131be61314284613b9a565b905060006131ce6103e883615162565b905060648110156131f6576017604051806040016040529081600082018054612c9490614960565b6103de81111561321d576015604051806040016040529081600082018054612c9490614960565b6013604051806040016040529081600082018054612c9490614960565b6040805180820190915260608082526020820152600061325c61314284613b9a565b9050600061326c6103e883615162565b905061019081111561328657601d8054612c5b9084615162565b601d600081548110612c6b57612c6b614c8a565b6040805180820190915260608082526020820152604080518082019091526060808252602082015260006132d061314285613b9a565b905060006132e06103e883615162565b60408051808201825260048152634e6f6e6560e01b6020808301919091529086528151808201909252600082528501529050606481106134c2576134bf85604051806040016040528060058152602001644c6f676f7360d81b8152506021805480602002602001604051908101604052809291908181526020016000905b828210156134b4578382906000526020600020906002020160405180604001604052908160008201805461339190614960565b80601f01602080910402602001604051908101604052809291908181526020018280546133bd90614960565b801561340a5780601f106133df5761010080835404028352916020019161340a565b820191906000526020600020905b8154815290600101906020018083116133ed57829003601f168201915b5050505050815260200160018201805461342390614960565b80601f016020809104026020016040519081016040528092919081815260200182805461344f90614960565b801561349c5780601f106134715761010080835404028352916020019161349c565b820191906000526020600020905b81548152906001019060200180831161347f57829003601f168201915b5050505050815250508152602001906001019061335e565b505050506050614027565b92505b6103de8111156134e15760408051602080820190925260008152908401525b50909392505050565b6040805180820190915260608082526020820152610ab58260405180604001604052806008815260200167437265617475726560c01b8152506024805480602002602001604051908101604052809291908181526020016000905b8282101561369b578382906000526020600020906002020160405180604001604052908160008201805461357890614960565b80601f01602080910402602001604051908101604052809291908181526020018280546135a490614960565b80156135f15780601f106135c6576101008083540402835291602001916135f1565b820191906000526020600020905b8154815290600101906020018083116135d457829003601f168201915b5050505050815260200160018201805461360a90614960565b80601f016020809104026020016040519081016040528092919081815260200182805461363690614960565b80156136835780601f1061365857610100808354040283529160200191613683565b820191906000526020600020905b81548152906001019060200180831161366657829003601f168201915b50505050508152505081526020019060010190613545565b50505050605a614027565b6040805180820190915260608082526020820152610ab5826040518060400160405280600b81526020016a466f726567726f756e647360a81b8152506023805480602002602001604051908101604052809291908181526020016000905b8282101561385a578382906000526020600020906002020160405180604001604052908160008201805461373790614960565b80601f016020809104026020016040519081016040528092919081815260200182805461376390614960565b80156137b05780601f10613785576101008083540402835291602001916137b0565b820191906000526020600020905b81548152906001019060200180831161379357829003601f168201915b505050505081526020016001820180546137c990614960565b80601f01602080910402602001604051908101604052809291908181526020018280546137f590614960565b80156138425780601f1061381757610100808354040283529160200191613842565b820191906000526020600020905b81548152906001019060200180831161382557829003601f168201915b50505050508152505081526020019060010190613704565b505050506046614027565b6060600061387561314284613b9a565b905060006138856103e883615162565b60408051808201909152600781526629b737bbb6b0b760c91b602082015290915060648211156138d4575060408051808201909152600c81526b446f75626c6520426f67657960a01b60208201525b60c88211156138fb5750604080518082019091526005815264426f67657960d81b60208201525b61019082111561392157506040805180820190915260038152622830b960e91b60208201525b6102bc82111561394a575060408051808201909152600681526542697264696560d01b60208201525b61032082111561397257506040805180820190915260058152644561676c6560d81b60208201525b6103848211156139a1575060408051808201909152600c81526b446f75626c65204561676c6560a01b60208201525b6103de8211156128c7575060408051808201909152600381526241636560e81b6020820152949350505050565b606060006139f16139de84613b9a565b6010604051602001612c1d9291906151d4565b90506000613a016103e883615162565b90506060613a1a613a158660026019614138565b613b9a565b90506064821115613a3857613a35613a158660196032614138565b90505b60c8821115613a5457613a51613a15866032604b614138565b90505b610190821115613a7157613a6e613a1586604b6096614138565b90505b610352821115613a8e57613a8b613a1586609660e1614138565b90505b610384821115613aac57613aa9613a158660e1610113614138565b90505b6103de821115613acb57613ac8613a158661011361015e614138565b90505b6103e68211156128c757613ae7613a158661015e6101db614138565b95945050505050565b60606000613b0061314284613b9a565b90506000613b106103e883615162565b90506064811015613b43575050604080518082019091526009815268131bdb99c810985b1b60ba1b602082015292915050565b6103de811115613b73575050604080518082019091526007815266496e20486f6c6560c81b602082015292915050565b505060408051808201909152600881526714dd185b99185c9960c21b602082015292915050565b606081613bbe5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613be85780613bd281614cd6565b9150613be19050600a83615205565b9150613bc2565b60008167ffffffffffffffff811115613c0357613c036147a0565b6040519080825280601f01601f191660200182016040528015613c2d576020820181803683370190505b5090505b84156128c757613c426001836150b6565b9150613c4f600a86615162565b613c5a906030614cf1565b60f81b818381518110613c6f57613c6f614c8a565b60200101906001600160f81b031916908160001a905350613c91600a86615205565b9450613c31565b805160609080613cb8575050604080516020810190915260008152919050565b60006003613cc7836002614cf1565b613cd19190615205565b613cdc906004614d09565b90506000613ceb826020614cf1565b67ffffffffffffffff811115613d0357613d036147a0565b6040519080825280601f01601f191660200182016040528015613d2d576020820181803683370190505b5090506000604051806060016040528060408152602001615447604091399050600181016020830160005b86811015613db9576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101613d58565b506003860660018114613dd35760028114613de457613df0565b613d3d60f01b600119830152613df0565b603d60f81b6000198301525b505050918152949350505050565b6001600160a01b038316613e5957613e5481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613e7c565b816001600160a01b0316836001600160a01b031614613e7c57613e7c838261418d565b6001600160a01b038216613e9357610cf88161422a565b826001600160a01b0316826001600160a01b031614610cf857610cf882826142d9565b613ec0838361431d565b613ecd6000848484613ee9565b610cf85760405162461bcd60e51b8152600401610bc2906150cd565b60006001600160a01b0384163b15613feb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613f2d903390899088908890600401615219565b602060405180830381600087803b158015613f4757600080fd5b505af1925050508015613f77575060408051601f3d908101601f19168201909252613f7491810190615256565b60015b613fd1573d808015613fa5576040519150601f19603f3d011682016040523d82523d6000602084013e613faa565b606091505b508051613fc95760405162461bcd60e51b8152600401610bc2906150cd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506128c7565b506001949350505050565b6000816040516020016140099190615273565b60408051601f19818403018152919052805160209091012092915050565b60408051808201909152606080825260208201526040805180820190915260608082526020820152835161408c5760408051808201825260048152634e6f6e6560e01b60208083019190915290835281518082019092526000825282015290506128c7565b60006140af8661409b89613b9a565b6010604051602001612c1d93929190615285565b9050848551826140bf9190615162565b815181106140cf576140cf614c8a565b6020026020010151915060006064826140e89190615162565b9050848111156140fd578293505050506128c7565b505060408051808201825260048152634e6f6e6560e01b60208083019190915290835281518082019092526000825282015295945050505050565b60008061415a61414786613b9a565b6010604051602001612c1d9291906152b7565b9050600061416885856150b6565b905060006141768284615162565b90506141828682614cf1565b979650505050505050565b6000600161419a84611192565b6141a491906150b6565b6000838152600760205260409020549091508082146141f7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061423c906001906150b6565b6000838152600960205260408120546008805493945090928490811061426457614264614c8a565b90600052602060002001549050806008838154811061428557614285614c8a565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806142bd576142bd6152ef565b6001900381819060005260206000200160009055905550505050565b60006142e483611192565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166143735760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bc2565b6000818152600260205260409020546001600160a01b0316156143d85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bc2565b6143e460008383613dfe565b6001600160a01b038216600090815260036020526040812080546001929061440d908490614cf1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461447790614960565b90600052602060002090601f01602090048101928261449957600085556144df565b82601f106144b257805160ff19168380011785556144df565b828001600101855582156144df579182015b828111156144df5782518255916020019190600101906144c4565b506144eb929150614517565b5090565b604051806102e001604052806017905b60608152602001906001900390816144ff5790505090565b5b808211156144eb5760008155600101614518565b6001600160e01b0319811681146125a357600080fd5b60006020828403121561455457600080fd5b813561455f8161452c565b9392505050565b60005b83811015614581578181015183820152602001614569565b83811115611a275750506000910152565b600081518084526145aa816020860160208601614566565b601f01601f19169290920160200192915050565b60208152600061455f6020830184614592565b6000602082840312156145e357600080fd5b5035919050565b80356001600160a01b038116811461460157600080fd5b919050565b6000806040838503121561461957600080fd5b614622836145ea565b946020939093013593505050565b6000604082840312156114d957600080fd5b60006020828403121561465457600080fd5b813567ffffffffffffffff81111561466b57600080fd5b6128c784828501614630565b60008060006060848603121561468c57600080fd5b614695846145ea565b92506146a3602085016145ea565b9150604084013590509250925092565b60008083601f8401126146c557600080fd5b50813567ffffffffffffffff8111156146dd57600080fd5b6020830191508360208260051b85010111156146f857600080fd5b9250929050565b6000806020838503121561471257600080fd5b823567ffffffffffffffff81111561472957600080fd5b614735858286016146b3565b90969095509350505050565b60006020828403121561475357600080fd5b61455f826145ea565b6020808252825182820181905260009190848201906040850190845b8181101561479457835183529284019291840191600101614778565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156147d1576147d16147a0565b604051601f8501601f19908116603f011681019082821181831017156147f9576147f96147a0565b8160405280935085815286868601111561481257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561483e57600080fd5b813567ffffffffffffffff81111561485557600080fd5b8201601f8101841361486657600080fd5b6128c7848235602084016147b6565b6000806040838503121561488857600080fd5b614891836145ea565b9150602083013580151581146148a657600080fd5b809150509250929050565b600080600080608085870312156148c757600080fd5b6148d0856145ea565b93506148de602086016145ea565b925060408501359150606085013567ffffffffffffffff81111561490157600080fd5b8501601f8101871361491257600080fd5b614921878235602084016147b6565b91505092959194509250565b6000806040838503121561494057600080fd5b614949836145ea565b9150614957602084016145ea565b90509250929050565b600181811c9082168061497457607f821691505b602082108114156114d957634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81b1bd8dad95960721b604082015260600190565b6000808335601e19843603018112614a0d57600080fd5b83018035915067ffffffffffffffff821115614a2857600080fd5b6020019150368190038213156146f857600080fd5b601f821115610cf857600081815260208120601f850160051c81016020861015614a645750805b601f850160051c820191505b81811015614a8357828155600101614a70565b505050505050565b67ffffffffffffffff831115614aa357614aa36147a0565b614ab783614ab18354614960565b83614a3d565b6000601f841160018114614aeb5760008515614ad35750838201355b600019600387901b1c1916600186901b178355614b45565b600083815260209020601f19861690835b82811015614b1c5786850135825560209485019460019092019101614afc565b5086821015614b395760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b614b5682836149f6565b67ffffffffffffffff811115614b6e57614b6e6147a0565b614b8281614b7c8554614960565b85614a3d565b6000601f821160018114614bb65760008315614b9e5750838201355b600019600385901b1c1916600184901b178555614c10565b600085815260209020601f19841690835b82811015614be75786850135825560209485019460019092019101614bc7565b5084821015614c045760001960f88660031b161c19848701351681555b505060018360011b0185555b50505050614c2160208301836149f6565b611a27818360018601614a8b565b61156a8282614b4c565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60008235603e19833603018112614cb657600080fd5b9190910192915050565b634e487b7160e01b600052601160045260246000fd5b6000600019821415614cea57614cea614cc0565b5060010190565b60008219821115614d0457614d04614cc0565b500190565b6000816000190483118215151615614d2357614d23614cc0565b500290565b600089516020614d3b8285838f01614566565b8a5191840191614d4e8184848f01614566565b8a51920191614d608184848e01614566565b8951920191614d728184848d01614566565b8851920191614d848184848c01614566565b8751920191614d968184848b01614566565b8651920191614da88184848a01614566565b8551920191614dba8184848901614566565b919091019b9a5050505050505050505050565b600088516020614de08285838e01614566565b895191840191614df38184848e01614566565b8951920191614e058184848d01614566565b8851920191614e178184848c01614566565b8751920191614e298184848b01614566565b8651920191614e3b8184848a01614566565b8551920191614e4d8184848901614566565b919091019a9950505050505050505050565b60008a51614e71818460208f01614566565b8a51614e838183860160208f01614566565b8a519184010190614e98818360208e01614566565b8951614eaa8183850160208e01614566565b8951929091010190614ec0818360208c01614566565b8751614ed28183850160208c01614566565b8751929091010190614ee8818360208a01614566565b8551614efa8183850160208a01614566565b8551929091010190614f10818360208801614566565b019b9a5050505050505050505050565b60008154614f2d81614960565b60018281168015614f455760018114614f5657614f85565b60ff19841687528287019450614f85565b8560005260208060002060005b85811015614f7c5781548a820152908401908201614f63565b50505082870194505b5050505092915050565b6e7b226e616d65223a2242616c6c202360881b81528451600090614fba81600f850160208a01614566565b73111610113232b9b1b934b83a34b7b711101d101160611b600f91840191820152614fe86023820187614f20565b90507f222c2022696d61676522203a2022646174613a696d6167652f7376672b786d6c8152670ed8985cd94d8d0b60c21b60208201528451615031816028840160208901614566565b6201116160ed1b60289290910191820152835161505581602b840160208801614566565b607d60f81b602b9290910191820152602c019695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516150a981601d850160208701614566565b91909101601d0192915050565b6000828210156150c8576150c8614cc0565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b62536b7960e81b81526000835161513d816003850160208801614566565b613ae760038285010185614f20565b634e487b7160e01b600052601260045260246000fd5b6000826151715761517161514c565b500690565b6511dc9bdd5b9960d21b815260008351615197816006850160208801614566565b613ae760068285010185614f20565b6310985b1b60e21b8152600083516151c5816004850160208801614566565b613ae760048285010185614f20565b665961726461676560c81b8152600083516151f6816007850160208801614566565b613ae760078285010185614f20565b6000826152145761521461514c565b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061524c90830184614592565b9695505050505050565b60006020828403121561526857600080fd5b815161455f8161452c565b60008251614cb6818460208701614566565b60008451615297818460208901614566565b8451908301906152ab818360208901614566565b61418281830186614f20565b6d59617264616765496e52616e676560901b8152600083516152e081600e850160208801614566565b613ae7600e8285010185614f20565b634e487b7160e01b600052603160045260246000fdfe22207d2c207b202274726169745f7479706522203a202242616c6c222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a202242616c6c20436f6c6f72222c202276616c756522203a20223c7376672077696474683d2235303022206865696768743d22353030222076696577426f783d223020302035303020353030222066696c6c3d226e6f6e652220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e22207d2c207b202274726169745f7479706522203a2022536b79222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a2022466f726567726f756e64222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a202242616c6c204272616e64222c202276616c756522203a20224142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f22207d2c207b202274726169745f7479706522203a20224c616e646564222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a202259617264616765222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a20224372656174757265222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a20224261636b67726f756e64222c202276616c756522203a2022226174747269627574657322203a205b7b202274726169745f7479706522203a202253636f7265222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a202247726f756e64222c202276616c756522203a2022a2646970667358221220890e79e718c479c4157819e84202060ebcd22a0f1e60971542274cf223bb28a464736f6c634300080800333c636972636c652063783d223235302e35222063793d223235302e352220723d223133372e35222066696c6c3d223c656c6c697073652063783d22323530222063793d22343434222072783d22323530222072793d223536222066696c6c3d2223313431423139222066696c6c2d6f7061636974793d22302e3735222f3e52616e646f6d6c792067656e6572617465642c2066756c6c79206f6e2d636861696e20676f6c662062616c6c732e3c7265637420793d22333838222077696474683d2235303022206865696768743d22313132222066696c6c3d223c636972636c652063783d22333436222063793d223331302220723d223738222066696c6c3d223c7061746820643d224d333634203439344333333020343938203239312035303020323530203530304332303920353030203137312034393820313337203439344331363220343538203230322034333420323530203433344332393820343334203333392034353820333634203439345a222066696c6c3d22",
"opcodes": "PUSH1 0x0 PUSH1 0xC SSTORE PUSH7 0xB1A2BC2EC50000 PUSH1 0xD SSTORE PUSH1 0xE0 PUSH1 0x40 MSTORE PUSH1 0x2E PUSH1 0x80 DUP2 DUP2 MSTORE SWAP1 PUSH3 0x5AB9 PUSH1 0xA0 CODECOPY DUP1 MLOAD PUSH3 0x39 SWAP2 PUSH1 0xE SWAP2 PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH3 0x379 JUMP JUMPDEST POP PUSH1 0x11 DUP1 SLOAD PUSH2 0xFFFF NOT AND SWAP1 SSTORE CALLVALUE DUP1 ISZERO PUSH3 0x52 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH1 0x9 DUP2 MSTORE PUSH9 0x135D5B9A58DA5C185B PUSH1 0xBA SHL PUSH1 0x20 DUP1 DUP4 ADD SWAP2 DUP3 MSTORE DUP4 MLOAD DUP1 DUP6 ADD SWAP1 SWAP5 MSTORE PUSH1 0x4 DUP5 MSTORE PUSH4 0x4D554E49 PUSH1 0xE0 SHL SWAP1 DUP5 ADD MSTORE DUP2 MLOAD SWAP2 SWAP3 SWAP2 PUSH3 0xA0 SWAP2 PUSH1 0x0 SWAP2 PUSH3 0x379 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0xB6 SWAP1 PUSH1 0x1 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x379 JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0xA SSTORE POP PUSH3 0xC9 CALLER PUSH3 0x11D JUMP JUMPDEST PUSH1 0xF DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND CALLER OR SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD TIMESTAMP PUSH1 0x20 DUP3 ADD MSTORE ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x10 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x10C SWAP3 SWAP2 SWAP1 PUSH3 0x379 JUMP JUMPDEST POP PUSH3 0x117 PUSH3 0x16F JUMP JUMPDEST PUSH3 0x45C JUMP JUMPDEST PUSH1 0xB DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0xE DUP1 DUP3 MSTORE PUSH14 0x10985B1B081BDB8811DC9BDD5B99 PUSH1 0x92 SHL PUSH1 0x20 SWAP1 SWAP3 ADD SWAP2 DUP3 MSTORE PUSH3 0x1A6 SWAP2 PUSH1 0x13 SWAP2 PUSH3 0x379 JUMP JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2E DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x5A3B PUSH1 0x2E SWAP2 CODECOPY DUP1 MLOAD PUSH3 0x1D7 SWAP2 PUSH1 0x14 SWAP2 PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH3 0x379 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0xC DUP1 DUP3 MSTORE PUSH12 0x42616C6C20696E20486F6C65 PUSH1 0xA0 SHL PUSH1 0x20 SWAP1 SWAP3 ADD SWAP2 DUP3 MSTORE PUSH3 0x20D SWAP2 PUSH1 0x15 SWAP2 PUSH3 0x379 JUMP JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x7A DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x5B3B PUSH1 0x7A SWAP2 CODECOPY DUP1 MLOAD PUSH3 0x23E SWAP2 PUSH1 0x16 SWAP2 PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH3 0x379 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x14 DUP1 DUP3 MSTORE PUSH32 0x42616C6C20696E207468652044697374616E6365000000000000000000000000 PUSH1 0x20 SWAP1 SWAP3 ADD SWAP2 DUP3 MSTORE PUSH3 0x285 SWAP2 PUSH1 0x17 SWAP2 PUSH3 0x379 JUMP JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x5B14 PUSH1 0x27 SWAP2 CODECOPY DUP1 MLOAD PUSH3 0x2B6 SWAP2 PUSH1 0x18 SWAP2 PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH3 0x379 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP1 DUP3 MSTORE PUSH6 0x11DC9BDD5B99 PUSH1 0xD2 SHL PUSH1 0x20 SWAP1 SWAP3 ADD SWAP2 DUP3 MSTORE PUSH3 0x2E6 SWAP2 PUSH1 0x1B SWAP2 PUSH3 0x379 JUMP JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2D DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x5AE7 PUSH1 0x2D SWAP2 CODECOPY DUP1 MLOAD PUSH3 0x317 SWAP2 PUSH1 0x1C SWAP2 PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH3 0x379 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x4 DUP1 DUP3 MSTORE PUSH4 0x486F6C65 PUSH1 0xE0 SHL PUSH1 0x20 SWAP1 SWAP3 ADD SWAP2 DUP3 MSTORE PUSH3 0x345 SWAP2 PUSH1 0x19 SWAP2 PUSH3 0x379 JUMP JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x50 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x5A69 PUSH1 0x50 SWAP2 CODECOPY DUP1 MLOAD PUSH3 0x376 SWAP2 PUSH1 0x1A SWAP2 PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH3 0x379 JUMP JUMPDEST POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x387 SWAP1 PUSH3 0x41F JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x3AB JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x3F6 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x3C6 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x3F6 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x3F6 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x3F6 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x3D9 JUMP JUMPDEST POP PUSH3 0x404 SWAP3 SWAP2 POP PUSH3 0x408 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x404 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x409 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x434 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x456 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x55CF DUP1 PUSH3 0x46C PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x397 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x819B25BA GT PUSH2 0x1DC JUMPI DUP1 PUSH4 0xB88D4FDE GT PUSH2 0x102 JUMPI DUP1 PUSH4 0xE8A3D485 GT PUSH2 0xA0 JUMPI DUP1 PUSH4 0xEFA3708B GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xEFA3708B EQ PUSH2 0xA10 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0xA30 JUMPI DUP1 PUSH4 0xF5D99D35 EQ PUSH2 0xA50 JUMPI DUP1 PUSH4 0xF8812AF2 EQ PUSH2 0xA70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xE8A3D485 EQ PUSH2 0x972 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x987 JUMPI DUP1 PUSH4 0xEECD82D9 EQ PUSH2 0x9D0 JUMPI DUP1 PUSH4 0xEF7CF1B6 EQ PUSH2 0x9F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC87B56DD GT PUSH2 0xDC JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x8FD JUMPI DUP1 PUSH4 0xCB8C3D9E EQ PUSH2 0x91D JUMPI DUP1 PUSH4 0xD51033B1 EQ PUSH2 0x932 JUMPI DUP1 PUSH4 0xD8AFFE21 EQ PUSH2 0x952 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x89D JUMPI DUP1 PUSH4 0xB8BB4EEB EQ PUSH2 0x8BD JUMPI DUP1 PUSH4 0xBF7AAF66 EQ PUSH2 0x8DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x938E3D7B GT PUSH2 0x17A JUMPI DUP1 PUSH4 0xA0712D68 GT PUSH2 0x149 JUMPI DUP1 PUSH4 0xA0712D68 EQ PUSH2 0x835 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x848 JUMPI DUP1 PUSH4 0xADE690DE EQ PUSH2 0x868 JUMPI DUP1 PUSH4 0xB323893C EQ PUSH2 0x87D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x938E3D7B EQ PUSH2 0x7C0 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x7E0 JUMPI DUP1 PUSH4 0x9AB43DA4 EQ PUSH2 0x7F5 JUMPI DUP1 PUSH4 0x9B5FA419 EQ PUSH2 0x815 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x853828B6 GT PUSH2 0x1B6 JUMPI DUP1 PUSH4 0x853828B6 EQ PUSH2 0x75A JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x762 JUMPI DUP1 PUSH4 0x90C3F38F EQ PUSH2 0x780 JUMPI DUP1 PUSH4 0x91B7F5ED EQ PUSH2 0x7A0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x819B25BA EQ PUSH2 0x6F7 JUMPI DUP1 PUSH4 0x833B9499 EQ PUSH2 0x717 JUMPI DUP1 PUSH4 0x8462151C EQ PUSH2 0x72D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x42842E0E GT PUSH2 0x2C1 JUMPI DUP1 PUSH4 0x6352211E GT PUSH2 0x25F JUMPI DUP1 PUSH4 0x715018A6 GT PUSH2 0x22E JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x6A3 JUMPI DUP1 PUSH4 0x753868E3 EQ PUSH2 0x6B8 JUMPI DUP1 PUSH4 0x76500C17 EQ PUSH2 0x6CD JUMPI DUP1 PUSH4 0x7D55094D EQ PUSH2 0x6E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x639 JUMPI DUP1 PUSH4 0x65F13097 EQ PUSH2 0x659 JUMPI DUP1 PUSH4 0x69657573 EQ PUSH2 0x66E JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x683 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x5B01C6A7 GT PUSH2 0x29B JUMPI DUP1 PUSH4 0x5B01C6A7 EQ PUSH2 0x5CF JUMPI DUP1 PUSH4 0x5B2064D8 EQ PUSH2 0x5E4 JUMPI DUP1 PUSH4 0x5F032965 EQ PUSH2 0x604 JUMPI DUP1 PUSH4 0x62A0F93C EQ PUSH2 0x624 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x42842E0E EQ PUSH2 0x57A JUMPI DUP1 PUSH4 0x485BE3ED EQ PUSH2 0x59A JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x5AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1A092541 GT PUSH2 0x339 JUMPI DUP1 PUSH4 0x31F9C919 GT PUSH2 0x308 JUMPI DUP1 PUSH4 0x31F9C919 EQ PUSH2 0x50B JUMPI DUP1 PUSH4 0x324CB3CB EQ PUSH2 0x525 JUMPI DUP1 PUSH4 0x32CB6B0C EQ PUSH2 0x544 JUMPI DUP1 PUSH4 0x3D973BDA EQ PUSH2 0x55A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1A092541 EQ PUSH2 0x496 JUMPI DUP1 PUSH4 0x1B822268 EQ PUSH2 0x4AB JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x4CB JUMPI DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x4EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x375 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x42B JUMPI DUP1 PUSH4 0xEF58906 EQ PUSH2 0x44D JUMPI DUP1 PUSH4 0x103F397C EQ PUSH2 0x46C JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x481 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x39C JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x3D1 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x3F3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3BC PUSH2 0x3B7 CALLDATASIZE PUSH1 0x4 PUSH2 0x4542 JUMP JUMPDEST PUSH2 0xA90 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3E6 PUSH2 0xABB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3C8 SWAP2 SWAP1 PUSH2 0x45BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x413 PUSH2 0x40E CALLDATASIZE PUSH1 0x4 PUSH2 0x45D1 JUMP JUMPDEST PUSH2 0xB4D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3C8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x437 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x446 CALLDATASIZE PUSH1 0x4 PUSH2 0x4606 JUMP JUMPDEST PUSH2 0xBE7 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x459 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x1D SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3C8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x478 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x21 SLOAD PUSH2 0x45E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x48D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x8 SLOAD PUSH2 0x45E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3E6 PUSH2 0xCFD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x4C6 CALLDATASIZE PUSH1 0x4 PUSH2 0x4642 JUMP JUMPDEST PUSH2 0xD0C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4D7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x4E6 CALLDATASIZE PUSH1 0x4 PUSH2 0x4677 JUMP JUMPDEST PUSH2 0xD9F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x45E PUSH2 0x506 CALLDATASIZE PUSH1 0x4 PUSH2 0x4606 JUMP JUMPDEST PUSH2 0xDD0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x517 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x11 SLOAD PUSH2 0x3BC SWAP1 PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x531 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x11 SLOAD PUSH2 0x3BC SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x550 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x45E PUSH2 0x1518 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x566 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x575 CALLDATASIZE PUSH1 0x4 PUSH2 0x46FF JUMP JUMPDEST PUSH2 0xE66 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x586 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x595 CALLDATASIZE PUSH1 0x4 PUSH2 0x4677 JUMP JUMPDEST PUSH2 0xF20 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x22 SLOAD PUSH2 0x45E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x45E PUSH2 0x5CA CALLDATASIZE PUSH1 0x4 PUSH2 0x45D1 JUMP JUMPDEST PUSH2 0xF3B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x23 SLOAD PUSH2 0x45E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x5FF CALLDATASIZE PUSH1 0x4 PUSH2 0x46FF JUMP JUMPDEST PUSH2 0xFCE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x610 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x61F CALLDATASIZE PUSH1 0x4 PUSH2 0x4642 JUMP JUMPDEST PUSH2 0x1088 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x630 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x1F SLOAD PUSH2 0x45E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x645 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x413 PUSH2 0x654 CALLDATASIZE PUSH1 0x4 PUSH2 0x45D1 JUMP JUMPDEST PUSH2 0x111B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x665 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x45E PUSH1 0x9 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x67A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x20 SLOAD PUSH2 0x45E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x68F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x45E PUSH2 0x69E CALLDATASIZE PUSH1 0x4 PUSH2 0x4741 JUMP JUMPDEST PUSH2 0x1192 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x1219 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x124F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6D9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x45E PUSH1 0xB4 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x128A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x703 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x712 CALLDATASIZE PUSH1 0x4 PUSH2 0x45D1 JUMP JUMPDEST PUSH2 0x12C8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x723 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x45E PUSH1 0xD SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x739 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x74D PUSH2 0x748 CALLDATASIZE PUSH1 0x4 PUSH2 0x4741 JUMP JUMPDEST PUSH2 0x1420 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3C8 SWAP2 SWAP1 PUSH2 0x475C JUMP JUMPDEST PUSH2 0x44B PUSH2 0x14DF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x76E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x413 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x78C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x79B CALLDATASIZE PUSH1 0x4 PUSH2 0x482C JUMP JUMPDEST PUSH2 0x152D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x7BB CALLDATASIZE PUSH1 0x4 PUSH2 0x45D1 JUMP JUMPDEST PUSH2 0x156E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x7DB CALLDATASIZE PUSH1 0x4 PUSH2 0x482C JUMP JUMPDEST PUSH2 0x159D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3E6 PUSH2 0x15DA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x801 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x810 CALLDATASIZE PUSH1 0x4 PUSH2 0x46FF JUMP JUMPDEST PUSH2 0x15E9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x821 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x830 CALLDATASIZE PUSH1 0x4 PUSH2 0x46FF JUMP JUMPDEST PUSH2 0x16A3 JUMP JUMPDEST PUSH2 0x44B PUSH2 0x843 CALLDATASIZE PUSH1 0x4 PUSH2 0x45D1 JUMP JUMPDEST PUSH2 0x175D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x854 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x863 CALLDATASIZE PUSH1 0x4 PUSH2 0x4875 JUMP JUMPDEST PUSH2 0x1957 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x874 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x24 SLOAD PUSH2 0x45E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x889 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x898 CALLDATASIZE PUSH1 0x4 PUSH2 0x4642 JUMP JUMPDEST PUSH2 0x1962 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x8B8 CALLDATASIZE PUSH1 0x4 PUSH2 0x48B1 JUMP JUMPDEST PUSH2 0x19F5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x8D8 CALLDATASIZE PUSH1 0x4 PUSH2 0x4642 JUMP JUMPDEST PUSH2 0x1A2D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x8F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x4642 JUMP JUMPDEST PUSH2 0x1AC0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x909 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3E6 PUSH2 0x918 CALLDATASIZE PUSH1 0x4 PUSH2 0x45D1 JUMP JUMPDEST PUSH2 0x1B53 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x929 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x1E SLOAD PUSH2 0x45E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x93E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x94D CALLDATASIZE PUSH1 0x4 PUSH2 0x4642 JUMP JUMPDEST PUSH2 0x21CF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x95E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x96D CALLDATASIZE PUSH1 0x4 PUSH2 0x4642 JUMP JUMPDEST PUSH2 0x2262 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x97E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3E6 PUSH2 0x22F5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x993 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3BC PUSH2 0x9A2 CALLDATASIZE PUSH1 0x4 PUSH2 0x492D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0x9EB CALLDATASIZE PUSH1 0x4 PUSH2 0x4642 JUMP JUMPDEST PUSH2 0x2304 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0xA0B CALLDATASIZE PUSH1 0x4 PUSH2 0x46FF JUMP JUMPDEST PUSH2 0x2397 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA1C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0xA2B CALLDATASIZE PUSH1 0x4 PUSH2 0x46FF JUMP JUMPDEST PUSH2 0x2451 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA3C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0xA4B CALLDATASIZE PUSH1 0x4 PUSH2 0x4741 JUMP JUMPDEST PUSH2 0x250B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0xA6B CALLDATASIZE PUSH1 0x4 PUSH2 0x46FF JUMP JUMPDEST PUSH2 0x25A6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA7C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44B PUSH2 0xA8B CALLDATASIZE PUSH1 0x4 PUSH2 0x46FF JUMP JUMPDEST PUSH2 0x2660 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x780E9D63 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0xAB5 JUMPI POP PUSH2 0xAB5 DUP3 PUSH2 0x271A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0xACA SWAP1 PUSH2 0x4960 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 0xAF6 SWAP1 PUSH2 0x4960 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xB43 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xB18 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xB43 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 0xB26 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xBCB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBF2 DUP3 PUSH2 0x111B JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0xC60 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x39 PUSH1 0xF9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBC2 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0xC7C JUMPI POP PUSH2 0xC7C DUP2 CALLER PUSH2 0x9A2 JUMP JUMPDEST PUSH2 0xCEE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x38 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH2 0xCF8 DUP4 DUP4 PUSH2 0x276A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xE DUP1 SLOAD PUSH2 0xACA SWAP1 PUSH2 0x4960 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xD36 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xD5E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x49CA JUMP JUMPDEST PUSH1 0x23 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP2 SWAP1 PUSH1 0x2 MUL PUSH32 0xD57B2B5166478FD4318D2ACC6CC2C704584312BDD8781B32D5D06ABDA57F4230 ADD PUSH2 0xCF8 DUP3 DUP3 PUSH2 0x4C2F JUMP JUMPDEST PUSH2 0xDA9 CALLER DUP3 PUSH2 0x27D8 JUMP JUMPDEST PUSH2 0xDC5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4C39 JUMP JUMPDEST PUSH2 0xCF8 DUP4 DUP4 DUP4 PUSH2 0x28CF JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDDB DUP4 PUSH2 0x1192 JUMP JUMPDEST DUP3 LT PUSH2 0xE3D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243373231456E756D657261626C653A206F776E657220696E646578206F75 PUSH1 0x44 DUP3 ADD MSTORE PUSH11 0x74206F6620626F756E6473 PUSH1 0xA8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBC2 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE90 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xEB8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x49CA JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xCF8 JUMPI PUSH1 0x21 DUP4 DUP4 DUP4 DUP2 DUP2 LT PUSH2 0xED7 JUMPI PUSH2 0xED7 PUSH2 0x4C8A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xEE9 SWAP2 SWAP1 PUSH2 0x4CA0 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 DUP2 ADD DUP4 SSTORE PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x20 SWAP1 SWAP3 KECCAK256 SWAP1 SWAP2 PUSH1 0x2 MUL ADD PUSH2 0xF0B DUP3 DUP3 PUSH2 0x4C2F JUMP JUMPDEST POP POP DUP1 DUP1 PUSH2 0xF18 SWAP1 PUSH2 0x4CD6 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xEBB JUMP JUMPDEST PUSH2 0xCF8 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x19F5 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF46 PUSH1 0x8 SLOAD SWAP1 JUMP JUMPDEST DUP3 LT PUSH2 0xFA9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243373231456E756D657261626C653A20676C6F62616C20696E646578206F PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x7574206F6620626F756E6473 PUSH1 0xA0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH1 0x8 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xFBC JUMPI PUSH2 0xFBC PUSH2 0x4C8A JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xFF8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1020 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x49CA JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xCF8 JUMPI PUSH1 0x20 DUP4 DUP4 DUP4 DUP2 DUP2 LT PUSH2 0x103F JUMPI PUSH2 0x103F PUSH2 0x4C8A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x1051 SWAP2 SWAP1 PUSH2 0x4CA0 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 DUP2 ADD DUP4 SSTORE PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x20 SWAP1 SWAP3 KECCAK256 SWAP1 SWAP2 PUSH1 0x2 MUL ADD PUSH2 0x1073 DUP3 DUP3 PUSH2 0x4C2F JUMP JUMPDEST POP POP DUP1 DUP1 PUSH2 0x1080 SWAP1 PUSH2 0x4CD6 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1023 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x10B2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x10DA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x49CA JUMP JUMPDEST PUSH1 0x1F DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP2 SWAP1 PUSH1 0x2 MUL PUSH32 0xA03837A25210EE280C2113FF4B77CA23440B19D4866CCA721C801278FD08D807 ADD PUSH2 0xCF8 DUP3 DUP3 PUSH2 0x4C2F JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0xAB5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x32B73A103A37B5B2B7 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x11FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x726F2061646472657373 PUSH1 0xB0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBC2 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1243 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH2 0x124D PUSH1 0x0 PUSH2 0x2A7A JUMP JUMPDEST JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1279 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 DUP1 SLOAD PUSH2 0xFF00 NOT AND PUSH2 0x100 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x12B4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 DUP1 SLOAD PUSH1 0xFF NOT DUP2 AND PUSH1 0xFF SWAP1 SWAP2 AND ISZERO OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x12F2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12FD PUSH1 0x8 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP PUSH2 0x1518 PUSH2 0x130C DUP4 DUP4 PUSH2 0x4CF1 JUMP JUMPDEST GT ISZERO PUSH2 0x135A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265736572766520776F756C6420657863656564206D617820746F6B656E7300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH1 0xB4 DUP3 PUSH1 0xC SLOAD PUSH2 0x136A SWAP2 SWAP1 PUSH2 0x4CF1 JUMP JUMPDEST GT ISZERO PUSH2 0x13C9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x43616E6E6F7420657863656564206D6178207465616D20726573657276652061 PUSH1 0x44 DUP3 ADD MSTORE PUSH8 0x1B1B1BDD1B595B9D PUSH1 0xC2 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1404 JUMPI PUSH2 0x13F2 CALLER PUSH2 0x13E2 DUP4 DUP6 PUSH2 0x4CF1 JUMP JUMPDEST PUSH2 0x13ED SWAP1 PUSH1 0x1 PUSH2 0x4CF1 JUMP JUMPDEST PUSH2 0x2ACC JUMP JUMPDEST DUP1 PUSH2 0x13FC DUP2 PUSH2 0x4CD6 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x13CC JUMP JUMPDEST POP DUP2 PUSH1 0xC PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1417 SWAP2 SWAP1 PUSH2 0x4CF1 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x142D DUP4 PUSH2 0x1192 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x144E JUMPI PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 SWAP3 MSTORE SWAP1 JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1469 JUMPI PUSH2 0x1469 PUSH2 0x47A0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1492 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1446 JUMPI PUSH2 0x14AA DUP6 DUP3 PUSH2 0xDD0 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x14BC JUMPI PUSH2 0x14BC PUSH2 0x4C8A JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x14D1 DUP2 PUSH2 0x4CD6 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1498 JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1509 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x40 MLOAD CALLER SWAP1 SELFBALANCE DUP1 ISZERO PUSH2 0x8FC MUL SWAP2 PUSH1 0x0 DUP2 DUP2 DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP PUSH2 0x124D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1557 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x156A SWAP1 PUSH1 0xE SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH2 0x446B JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1598 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0xD SSTORE JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x15C7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x156A SWAP1 PUSH1 0x12 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH2 0x446B JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0xACA SWAP1 PUSH2 0x4960 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1613 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x163B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x49CA JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xCF8 JUMPI PUSH1 0x1D DUP4 DUP4 DUP4 DUP2 DUP2 LT PUSH2 0x165A JUMPI PUSH2 0x165A PUSH2 0x4C8A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x166C SWAP2 SWAP1 PUSH2 0x4CA0 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 DUP2 ADD DUP4 SSTORE PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x20 SWAP1 SWAP3 KECCAK256 SWAP1 SWAP2 PUSH1 0x2 MUL ADD PUSH2 0x168E DUP3 DUP3 PUSH2 0x4C2F JUMP JUMPDEST POP POP DUP1 DUP1 PUSH2 0x169B SWAP1 PUSH2 0x4CD6 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x163E JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x16CD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x16F5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x49CA JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xCF8 JUMPI PUSH1 0x1F DUP4 DUP4 DUP4 DUP2 DUP2 LT PUSH2 0x1714 JUMPI PUSH2 0x1714 PUSH2 0x4C8A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x1726 SWAP2 SWAP1 PUSH2 0x4CA0 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 DUP2 ADD DUP4 SSTORE PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x20 SWAP1 SWAP3 KECCAK256 SWAP1 SWAP2 PUSH1 0x2 MUL ADD PUSH2 0x1748 DUP3 DUP3 PUSH2 0x4C2F JUMP JUMPDEST POP POP DUP1 DUP1 PUSH2 0x1755 SWAP1 PUSH2 0x4CD6 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x16F8 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1768 PUSH1 0x8 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x11 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF AND PUSH2 0x17C9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616C65206D7573742062652061637469766520746F206D696E7420746F6B65 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x373997 PUSH1 0xE9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH1 0x9 DUP3 GT ISZERO PUSH2 0x181A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4578636565646564206D617820746F6B656E2070757263686173652E00000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0x186A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x43616E6E6F74206D696E74206C657373207468616E203120746F6B656E2E0000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH2 0x1518 PUSH2 0x1877 DUP4 DUP4 PUSH2 0x4CF1 JUMP JUMPDEST GT ISZERO PUSH2 0x18CF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x507572636861736520776F756C6420657863656564206D617820746F6B656E73 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0xF9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBC2 JUMP JUMPDEST CALLVALUE DUP3 PUSH1 0xD SLOAD PUSH2 0x18DE SWAP2 SWAP1 PUSH2 0x4D09 JUMP JUMPDEST GT ISZERO PUSH2 0x192C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45746865722076616C75652073656E74206973206E6F7420636F72726563742E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xCF8 JUMPI PUSH2 0x1945 CALLER PUSH2 0x13E2 DUP4 DUP6 PUSH2 0x4CF1 JUMP JUMPDEST DUP1 PUSH2 0x194F DUP2 PUSH2 0x4CD6 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x192F JUMP JUMPDEST PUSH2 0x156A CALLER DUP4 DUP4 PUSH2 0x2AE6 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x198C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x19B4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x49CA JUMP JUMPDEST PUSH1 0x22 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP2 SWAP1 PUSH1 0x2 MUL PUSH32 0x61035B26E3E9EEE00E0D72FD1EE8DDCA6894550DCA6916EA2AC6BAA90D11E510 ADD PUSH2 0xCF8 DUP3 DUP3 PUSH2 0x4C2F JUMP JUMPDEST PUSH2 0x19FF CALLER DUP4 PUSH2 0x27D8 JUMP JUMPDEST PUSH2 0x1A1B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4C39 JUMP JUMPDEST PUSH2 0x1A27 DUP5 DUP5 DUP5 DUP5 PUSH2 0x2BB5 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1A57 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1A7F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x49CA JUMP JUMPDEST PUSH1 0x21 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP2 SWAP1 PUSH1 0x2 MUL PUSH32 0x3A6357012C1A3AE0A17D304C9920310382D968EBCC4B1771F41C6B304205B570 ADD PUSH2 0xCF8 DUP3 DUP3 PUSH2 0x4C2F JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1AEA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1B12 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x49CA JUMP JUMPDEST PUSH1 0x20 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP2 SWAP1 PUSH1 0x2 MUL PUSH32 0xC97BFAF2F8EE708C303A06D134F5ECD8389AE0432AF62DC132A24118292866BB ADD PUSH2 0xCF8 DUP3 DUP3 PUSH2 0x4C2F JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1B5E PUSH1 0x8 SLOAD SWAP1 JUMP JUMPDEST DUP3 GT ISZERO PUSH2 0x1BA3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x2130B636103237B2B9B713BA1032BC34B9BA17 PUSH1 0x69 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0x1BE9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x2130B636103237B2B9B713BA1032BC34B9BA17 PUSH1 0x69 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH2 0x1BF4 PUSH2 0x44EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x63 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x535E PUSH1 0x63 SWAP2 CODECOPY DUP2 MSTORE PUSH2 0x1C18 DUP6 PUSH2 0x2BE8 JUMP JUMPDEST PUSH1 0x20 ADD MLOAD DUP2 PUSH1 0x1 PUSH1 0x20 MUL ADD MSTORE PUSH2 0x1C2D DUP6 PUSH2 0x2DC5 JUMP JUMPDEST PUSH1 0x20 ADD MLOAD PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x1C DUP1 SLOAD PUSH2 0x1C43 SWAP1 PUSH2 0x4960 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 0x1C6F SWAP1 PUSH2 0x4960 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1CBC JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1C91 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1CBC 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 0x1C9F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 PUSH1 0x3 PUSH1 0x17 DUP2 LT PUSH2 0x1CD4 JUMPI PUSH2 0x1CD4 PUSH2 0x4C8A JUMP JUMPDEST PUSH1 0x20 MUL ADD MSTORE PUSH2 0x1CE2 DUP6 PUSH2 0x2F84 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x3 DUP2 MSTORE PUSH3 0x11179F PUSH1 0xE9 SHL SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH2 0x1D17 DUP6 PUSH2 0x3120 JUMP JUMPDEST PUSH1 0x20 ADD MLOAD PUSH1 0xC0 DUP3 ADD MSTORE PUSH2 0x1D29 DUP6 PUSH2 0x319C JUMP JUMPDEST PUSH1 0x20 ADD MLOAD PUSH1 0xE0 DUP3 ADD MSTORE PUSH2 0x1D3B DUP6 PUSH2 0x323A JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x3 DUP2 MSTORE PUSH3 0x11179F PUSH1 0xE9 SHL SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x120 DUP3 ADD MSTORE PUSH2 0x1D72 DUP6 PUSH2 0x329A JUMP JUMPDEST PUSH1 0x20 ADD MLOAD PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x1D85 DUP6 PUSH2 0x34EA JUMP JUMPDEST PUSH1 0x20 ADD MLOAD PUSH2 0x160 DUP3 ADD MSTORE PUSH2 0x1D98 DUP6 PUSH2 0x36A6 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH2 0x180 DUP4 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x1E17B9BB339F PUSH1 0xD1 SHL DUP2 DUP5 ADD MSTORE PUSH2 0x1A0 DUP5 ADD MSTORE DUP3 MLOAD DUP4 DUP4 ADD MLOAD DUP3 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH1 0x80 DUP8 ADD MLOAD PUSH1 0xA0 DUP9 ADD MLOAD PUSH1 0xC0 DUP10 ADD MLOAD PUSH1 0xE0 DUP11 ADD MLOAD SWAP8 MLOAD PUSH2 0x1E03 SWAP10 SWAP8 SWAP9 SWAP7 SWAP8 SWAP6 SWAP7 SWAP5 SWAP6 SWAP4 SWAP5 SWAP3 SWAP4 SWAP2 SWAP3 SWAP2 ADD PUSH2 0x4D28 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB PUSH1 0x1F NOT ADD DUP2 MSTORE SWAP1 DUP3 SWAP1 MSTORE PUSH2 0x100 DUP4 ADD MLOAD PUSH2 0x120 DUP5 ADD MLOAD PUSH2 0x140 DUP6 ADD MLOAD PUSH2 0x160 DUP7 ADD MLOAD PUSH2 0x180 DUP8 ADD MLOAD PUSH2 0x1A0 DUP9 ADD MLOAD SWAP6 SWAP10 POP PUSH2 0x1E4A SWAP7 DUP11 SWAP7 SWAP1 PUSH1 0x20 ADD PUSH2 0x4DCD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE PUSH1 0x60 DUP4 ADD SWAP1 SWAP2 MSTORE PUSH1 0x35 DUP1 DUP4 MSTORE SWAP1 SWAP5 POP PUSH2 0x553A PUSH1 0x20 DUP4 ADD CODECOPY DUP2 MSTORE PUSH2 0x1E79 DUP6 PUSH2 0x3865 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x20 MUL ADD DUP2 SWAP1 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2C DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x54B2 PUSH1 0x2C SWAP2 CODECOPY PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x1EAB DUP6 PUSH2 0x39CE JUMP JUMPDEST PUSH1 0x60 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 ADD SWAP1 MSTORE PUSH1 0x28 DUP1 DUP3 MSTORE PUSH2 0x53C1 PUSH1 0x20 DUP4 ADD CODECOPY PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x1ED8 DUP6 PUSH2 0x2BE8 JUMP JUMPDEST MLOAD PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x2F DUP1 DUP3 MSTORE PUSH2 0x550B PUSH1 0x20 DUP4 ADD CODECOPY PUSH1 0xC0 DUP3 ADD MSTORE PUSH2 0x1F04 DUP6 PUSH2 0x2DC5 JUMP JUMPDEST MLOAD PUSH1 0xE0 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x2B DUP1 DUP3 MSTORE PUSH2 0x556F PUSH1 0x20 DUP4 ADD CODECOPY PUSH2 0x100 DUP3 ADD MSTORE PUSH2 0x1F31 DUP6 PUSH2 0x2F84 JUMP JUMPDEST MLOAD PUSH2 0x120 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x29 DUP1 DUP3 MSTORE PUSH2 0x5306 PUSH1 0x20 DUP4 ADD CODECOPY PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x1F5F DUP6 PUSH2 0x3AF0 JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x2F DUP1 DUP3 MSTORE PUSH2 0x532F PUSH1 0x20 DUP4 ADD CODECOPY PUSH2 0x180 DUP3 ADD MSTORE PUSH2 0x1F8C DUP6 PUSH2 0x323A JUMP JUMPDEST MLOAD PUSH2 0x1A0 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x2F DUP1 DUP3 MSTORE PUSH2 0x5418 PUSH1 0x20 DUP4 ADD CODECOPY PUSH2 0x1C0 DUP3 ADD MSTORE PUSH2 0x1FBA DUP6 PUSH2 0x329A JUMP JUMPDEST MLOAD PUSH2 0x1E0 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x2D DUP1 DUP3 MSTORE PUSH2 0x54DE PUSH1 0x20 DUP4 ADD CODECOPY PUSH2 0x200 DUP3 ADD MSTORE PUSH2 0x1FE8 DUP6 PUSH2 0x34EA JUMP JUMPDEST MLOAD PUSH2 0x220 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x2F DUP1 DUP3 MSTORE PUSH2 0x53E9 PUSH1 0x20 DUP4 ADD CODECOPY PUSH2 0x240 DUP3 ADD MSTORE PUSH2 0x2016 DUP6 PUSH2 0x36A6 JUMP JUMPDEST MLOAD PUSH2 0x260 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x2B DUP1 DUP3 MSTORE PUSH2 0x5487 PUSH1 0x20 DUP4 ADD CODECOPY PUSH2 0x280 DUP3 ADD MSTORE PUSH2 0x2044 DUP6 PUSH2 0x3120 JUMP JUMPDEST MLOAD PUSH2 0x2A0 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x4 DUP2 MSTORE PUSH4 0x227D205D PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD MSTORE DUP2 PUSH1 0x16 PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD DUP3 DUP3 ADD MLOAD PUSH1 0x40 DUP1 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH1 0x80 DUP8 ADD MLOAD PUSH1 0xA0 DUP9 ADD MLOAD PUSH1 0xC0 DUP10 ADD MLOAD PUSH1 0xE0 DUP11 ADD MLOAD PUSH2 0x100 DUP12 ADD MLOAD SWAP7 MLOAD PUSH2 0x20B9 SWAP11 SWAP7 SWAP8 SWAP6 SWAP7 SWAP5 SWAP6 SWAP4 SWAP5 SWAP3 SWAP4 SWAP2 SWAP3 ADD PUSH2 0x4E5F JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB PUSH1 0x1F NOT ADD DUP2 MSTORE SWAP1 DUP3 SWAP1 MSTORE PUSH2 0x120 DUP4 ADD MLOAD PUSH2 0x140 DUP5 ADD MLOAD PUSH2 0x160 DUP6 ADD MLOAD PUSH2 0x180 DUP7 ADD MLOAD PUSH2 0x1A0 DUP8 ADD MLOAD PUSH2 0x1C0 DUP9 ADD MLOAD SWAP6 SWAP9 POP PUSH2 0x2100 SWAP7 DUP10 SWAP7 SWAP1 PUSH1 0x20 ADD PUSH2 0x4DCD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB PUSH1 0x1F NOT ADD DUP2 MSTORE SWAP1 DUP3 SWAP1 MSTORE PUSH2 0x1E0 DUP4 ADD MLOAD PUSH2 0x200 DUP5 ADD MLOAD PUSH2 0x220 DUP6 ADD MLOAD PUSH2 0x240 DUP7 ADD MLOAD PUSH2 0x260 DUP8 ADD MLOAD PUSH2 0x280 DUP9 ADD MLOAD PUSH2 0x2A0 DUP10 ADD MLOAD PUSH2 0x2C0 DUP11 ADD MLOAD SWAP8 SWAP11 POP PUSH2 0x2153 SWAP9 DUP12 SWAP9 SWAP1 PUSH1 0x20 ADD PUSH2 0x4E5F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH2 0x21A3 PUSH2 0x2170 DUP7 PUSH2 0x3B9A JUMP JUMPDEST PUSH1 0xE PUSH2 0x217B DUP7 PUSH2 0x3C98 JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x218F SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4F8F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x3C98 JUMP JUMPDEST SWAP3 POP DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x21B6 SWAP2 SWAP1 PUSH2 0x5071 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x21F9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x2221 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x49CA JUMP JUMPDEST PUSH1 0x1E DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP2 SWAP1 PUSH1 0x2 MUL PUSH32 0x50BB669A95C7B50B7E8A6F09454034B2B14CF2B85C730DCA9A539CA82CB6E350 ADD PUSH2 0xCF8 DUP3 DUP3 PUSH2 0x4C2F JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x228C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x22B4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x49CA JUMP JUMPDEST PUSH1 0x24 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP2 SWAP1 PUSH1 0x2 MUL PUSH32 0x7CD332D19B93BCABE3CCE7CA0C18A052F57E5FD03B4758A09F30F5DDC4B22EC4 ADD PUSH2 0xCF8 DUP3 DUP3 PUSH2 0x4C2F JUMP JUMPDEST PUSH1 0x60 PUSH1 0x12 DUP1 SLOAD PUSH2 0xACA SWAP1 PUSH2 0x4960 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x232E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x2356 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x49CA JUMP JUMPDEST PUSH1 0x1D DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP2 SWAP1 PUSH1 0x2 MUL PUSH32 0x6D4407E7BE21F808E6509AA9FA9143369579DD7D760FE20A2C09680FC146134F ADD PUSH2 0xCF8 DUP3 DUP3 PUSH2 0x4C2F JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x23C1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x23E9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x49CA JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xCF8 JUMPI PUSH1 0x1E DUP4 DUP4 DUP4 DUP2 DUP2 LT PUSH2 0x2408 JUMPI PUSH2 0x2408 PUSH2 0x4C8A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x241A SWAP2 SWAP1 PUSH2 0x4CA0 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 DUP2 ADD DUP4 SSTORE PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x20 SWAP1 SWAP3 KECCAK256 SWAP1 SWAP2 PUSH1 0x2 MUL ADD PUSH2 0x243C DUP3 DUP3 PUSH2 0x4C2F JUMP JUMPDEST POP POP DUP1 DUP1 PUSH2 0x2449 SWAP1 PUSH2 0x4CD6 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x23EC JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x247B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x24A3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x49CA JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xCF8 JUMPI PUSH1 0x24 DUP4 DUP4 DUP4 DUP2 DUP2 LT PUSH2 0x24C2 JUMPI PUSH2 0x24C2 PUSH2 0x4C8A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x24D4 SWAP2 SWAP1 PUSH2 0x4CA0 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 DUP2 ADD DUP4 SSTORE PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x20 SWAP1 SWAP3 KECCAK256 SWAP1 SWAP2 PUSH1 0x2 MUL ADD PUSH2 0x24F6 DUP3 DUP3 PUSH2 0x4C2F JUMP JUMPDEST POP POP DUP1 DUP1 PUSH2 0x2503 SWAP1 PUSH2 0x4CD6 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x24A6 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x2535 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x259A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH2 0x25A3 DUP2 PUSH2 0x2A7A JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x25D0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x25F8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x49CA JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xCF8 JUMPI PUSH1 0x22 DUP4 DUP4 DUP4 DUP2 DUP2 LT PUSH2 0x2617 JUMPI PUSH2 0x2617 PUSH2 0x4C8A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x2629 SWAP2 SWAP1 PUSH2 0x4CA0 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 DUP2 ADD DUP4 SSTORE PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x20 SWAP1 SWAP3 KECCAK256 SWAP1 SWAP2 PUSH1 0x2 MUL ADD PUSH2 0x264B DUP3 DUP3 PUSH2 0x4C2F JUMP JUMPDEST POP POP DUP1 DUP1 PUSH2 0x2658 SWAP1 PUSH2 0x4CD6 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x25FB JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x268A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x4995 JUMP JUMPDEST PUSH1 0x11 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x26B2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x49CA JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xCF8 JUMPI PUSH1 0x23 DUP4 DUP4 DUP4 DUP2 DUP2 LT PUSH2 0x26D1 JUMPI PUSH2 0x26D1 PUSH2 0x4C8A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x26E3 SWAP2 SWAP1 PUSH2 0x4CA0 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 DUP2 ADD DUP4 SSTORE PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x20 SWAP1 SWAP3 KECCAK256 SWAP1 SWAP2 PUSH1 0x2 MUL ADD PUSH2 0x2705 DUP3 DUP3 PUSH2 0x4C2F JUMP JUMPDEST POP POP DUP1 DUP1 PUSH2 0x2712 SWAP1 PUSH2 0x4CD6 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x26B5 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x274B JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xAB5 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0xAB5 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0x279F DUP3 PUSH2 0x111B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2851 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x285C DUP4 PUSH2 0x111B JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2897 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x288C DUP5 PUSH2 0xB4D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0x28C7 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x28E2 DUP3 PUSH2 0x111B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x294A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x39903737BA1037BBB7 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x29AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH2 0x29B7 DUP4 DUP4 DUP4 PUSH2 0x3DFE JUMP JUMPDEST PUSH2 0x29C2 PUSH1 0x0 DUP3 PUSH2 0x276A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x29EB SWAP1 DUP5 SWAP1 PUSH2 0x50B6 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x2A19 SWAP1 DUP5 SWAP1 PUSH2 0x4CF1 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP5 SWAP4 SWAP2 DUP8 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0xB DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x156A DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x3EB6 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x2B48 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD SWAP2 DUP3 MSTORE PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x2BC0 DUP5 DUP5 DUP5 PUSH2 0x28CF JUMP JUMPDEST PUSH2 0x2BCC DUP5 DUP5 DUP5 DUP5 PUSH2 0x3EE9 JUMP JUMPDEST PUSH2 0x1A27 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x50CD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x2C31 PUSH2 0x2C0A DUP5 PUSH2 0x3B9A JUMP JUMPDEST PUSH1 0x10 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2C1D SWAP3 SWAP2 SWAP1 PUSH2 0x511F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x3FF6 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2C41 PUSH2 0x3E8 DUP4 PUSH2 0x5162 JUMP JUMPDEST SWAP1 POP PUSH2 0x190 DUP2 GT ISZERO PUSH2 0x2DB1 JUMPI PUSH1 0x1F DUP1 SLOAD PUSH2 0x2C5B SWAP1 DUP5 PUSH2 0x5162 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x2C6B JUMPI PUSH2 0x2C6B PUSH2 0x4C8A JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD DUP1 SLOAD PUSH2 0x2C94 SWAP1 PUSH2 0x4960 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 0x2CC0 SWAP1 PUSH2 0x4960 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2D0D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2CE2 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2D0D 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 0x2CF0 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x2D26 SWAP1 PUSH2 0x4960 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 0x2D52 SWAP1 PUSH2 0x4960 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2D9F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D74 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2D9F 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 0x2D82 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE POP POP SWAP3 POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1F PUSH1 0x0 DUP2 SLOAD DUP2 LT PUSH2 0x2C6B JUMPI PUSH2 0x2C6B PUSH2 0x4C8A JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xAB5 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xB DUP2 MSTORE PUSH1 0x20 ADD PUSH11 0x4261636B67726F756E6473 PUSH1 0xA8 SHL DUP2 MSTORE POP PUSH1 0x20 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x2F79 JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD DUP1 SLOAD PUSH2 0x2E56 SWAP1 PUSH2 0x4960 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 0x2E82 SWAP1 PUSH2 0x4960 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2ECF JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2EA4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2ECF 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 0x2EB2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x2EE8 SWAP1 PUSH2 0x4960 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 0x2F14 SWAP1 PUSH2 0x4960 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2F61 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2F36 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2F61 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 0x2F44 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2E23 JUMP JUMPDEST POP POP POP POP PUSH1 0x32 PUSH2 0x4027 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x2FB9 PUSH2 0x2FA6 DUP5 PUSH2 0x3B9A JUMP JUMPDEST PUSH1 0x10 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2C1D SWAP3 SWAP2 SWAP1 PUSH2 0x5176 JUMP JUMPDEST PUSH1 0x1E DUP1 SLOAD SWAP2 SWAP3 POP SWAP1 PUSH2 0x2FCB SWAP1 DUP4 PUSH2 0x5162 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x2FDB JUMPI PUSH2 0x2FDB PUSH2 0x4C8A JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD DUP1 SLOAD PUSH2 0x3004 SWAP1 PUSH2 0x4960 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 0x3030 SWAP1 PUSH2 0x4960 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x307D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3052 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x307D 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 0x3060 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x3096 SWAP1 PUSH2 0x4960 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 0x30C2 SWAP1 PUSH2 0x4960 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x310F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x30E4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x310F 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 0x30F2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE POP POP SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x3155 PUSH2 0x3142 DUP5 PUSH2 0x3B9A JUMP JUMPDEST PUSH1 0x10 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2C1D SWAP3 SWAP2 SWAP1 PUSH2 0x51A6 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x3165 PUSH2 0x3E8 DUP4 PUSH2 0x5162 JUMP JUMPDEST SWAP1 POP PUSH2 0x3DE DUP2 GT ISZERO PUSH2 0x318E JUMPI PUSH1 0x19 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD DUP1 SLOAD PUSH2 0x2C94 SWAP1 PUSH2 0x4960 JUMP JUMPDEST PUSH1 0x22 DUP1 SLOAD PUSH2 0x2C5B SWAP1 DUP5 PUSH2 0x5162 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x31BE PUSH2 0x3142 DUP5 PUSH2 0x3B9A JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x31CE PUSH2 0x3E8 DUP4 PUSH2 0x5162 JUMP JUMPDEST SWAP1 POP PUSH1 0x64 DUP2 LT ISZERO PUSH2 0x31F6 JUMPI PUSH1 0x17 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD DUP1 SLOAD PUSH2 0x2C94 SWAP1 PUSH2 0x4960 JUMP JUMPDEST PUSH2 0x3DE DUP2 GT ISZERO PUSH2 0x321D JUMPI PUSH1 0x15 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD DUP1 SLOAD PUSH2 0x2C94 SWAP1 PUSH2 0x4960 JUMP JUMPDEST PUSH1 0x13 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD DUP1 SLOAD PUSH2 0x2C94 SWAP1 PUSH2 0x4960 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x325C PUSH2 0x3142 DUP5 PUSH2 0x3B9A JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x326C PUSH2 0x3E8 DUP4 PUSH2 0x5162 JUMP JUMPDEST SWAP1 POP PUSH2 0x190 DUP2 GT ISZERO PUSH2 0x3286 JUMPI PUSH1 0x1D DUP1 SLOAD PUSH2 0x2C5B SWAP1 DUP5 PUSH2 0x5162 JUMP JUMPDEST PUSH1 0x1D PUSH1 0x0 DUP2 SLOAD DUP2 LT PUSH2 0x2C6B JUMPI PUSH2 0x2C6B PUSH2 0x4C8A JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x32D0 PUSH2 0x3142 DUP6 PUSH2 0x3B9A JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x32E0 PUSH2 0x3E8 DUP4 PUSH2 0x5162 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH1 0x4 DUP2 MSTORE PUSH4 0x4E6F6E65 PUSH1 0xE0 SHL PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 DUP7 MSTORE DUP2 MLOAD DUP1 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 DUP3 MSTORE DUP6 ADD MSTORE SWAP1 POP PUSH1 0x64 DUP2 LT PUSH2 0x34C2 JUMPI PUSH2 0x34BF DUP6 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x4C6F676F73 PUSH1 0xD8 SHL DUP2 MSTORE POP PUSH1 0x21 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x34B4 JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD DUP1 SLOAD PUSH2 0x3391 SWAP1 PUSH2 0x4960 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 0x33BD SWAP1 PUSH2 0x4960 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x340A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x33DF JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x340A 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 0x33ED JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x3423 SWAP1 PUSH2 0x4960 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 0x344F SWAP1 PUSH2 0x4960 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x349C JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3471 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x349C 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 0x347F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x335E JUMP JUMPDEST POP POP POP POP PUSH1 0x50 PUSH2 0x4027 JUMP JUMPDEST SWAP3 POP JUMPDEST PUSH2 0x3DE DUP2 GT ISZERO PUSH2 0x34E1 JUMPI PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP1 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 DUP2 MSTORE SWAP1 DUP5 ADD MSTORE JUMPDEST POP SWAP1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xAB5 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x8 DUP2 MSTORE PUSH1 0x20 ADD PUSH8 0x4372656174757265 PUSH1 0xC0 SHL DUP2 MSTORE POP PUSH1 0x24 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x369B JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD DUP1 SLOAD PUSH2 0x3578 SWAP1 PUSH2 0x4960 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 0x35A4 SWAP1 PUSH2 0x4960 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x35F1 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x35C6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x35F1 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 0x35D4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x360A SWAP1 PUSH2 0x4960 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 0x3636 SWAP1 PUSH2 0x4960 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3683 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3658 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3683 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 0x3666 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x3545 JUMP JUMPDEST POP POP POP POP PUSH1 0x5A PUSH2 0x4027 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xAB5 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xB DUP2 MSTORE PUSH1 0x20 ADD PUSH11 0x466F726567726F756E6473 PUSH1 0xA8 SHL DUP2 MSTORE POP PUSH1 0x23 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x385A JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD DUP1 SLOAD PUSH2 0x3737 SWAP1 PUSH2 0x4960 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 0x3763 SWAP1 PUSH2 0x4960 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x37B0 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3785 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x37B0 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 0x3793 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x37C9 SWAP1 PUSH2 0x4960 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 0x37F5 SWAP1 PUSH2 0x4960 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3842 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3817 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3842 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 0x3825 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x3704 JUMP JUMPDEST POP POP POP POP PUSH1 0x46 PUSH2 0x4027 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x3875 PUSH2 0x3142 DUP5 PUSH2 0x3B9A JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x3885 PUSH2 0x3E8 DUP4 PUSH2 0x5162 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x7 DUP2 MSTORE PUSH7 0x29B737BBB6B0B7 PUSH1 0xC9 SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x64 DUP3 GT ISZERO PUSH2 0x38D4 JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0xC DUP2 MSTORE PUSH12 0x446F75626C6520426F676579 PUSH1 0xA0 SHL PUSH1 0x20 DUP3 ADD MSTORE JUMPDEST PUSH1 0xC8 DUP3 GT ISZERO PUSH2 0x38FB JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x5 DUP2 MSTORE PUSH5 0x426F676579 PUSH1 0xD8 SHL PUSH1 0x20 DUP3 ADD MSTORE JUMPDEST PUSH2 0x190 DUP3 GT ISZERO PUSH2 0x3921 JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x3 DUP2 MSTORE PUSH3 0x2830B9 PUSH1 0xE9 SHL PUSH1 0x20 DUP3 ADD MSTORE JUMPDEST PUSH2 0x2BC DUP3 GT ISZERO PUSH2 0x394A JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x426972646965 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE JUMPDEST PUSH2 0x320 DUP3 GT ISZERO PUSH2 0x3972 JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x5 DUP2 MSTORE PUSH5 0x4561676C65 PUSH1 0xD8 SHL PUSH1 0x20 DUP3 ADD MSTORE JUMPDEST PUSH2 0x384 DUP3 GT ISZERO PUSH2 0x39A1 JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0xC DUP2 MSTORE PUSH12 0x446F75626C65204561676C65 PUSH1 0xA0 SHL PUSH1 0x20 DUP3 ADD MSTORE JUMPDEST PUSH2 0x3DE DUP3 GT ISZERO PUSH2 0x28C7 JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x3 DUP2 MSTORE PUSH3 0x416365 PUSH1 0xE8 SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x39F1 PUSH2 0x39DE DUP5 PUSH2 0x3B9A JUMP JUMPDEST PUSH1 0x10 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2C1D SWAP3 SWAP2 SWAP1 PUSH2 0x51D4 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x3A01 PUSH2 0x3E8 DUP4 PUSH2 0x5162 JUMP JUMPDEST SWAP1 POP PUSH1 0x60 PUSH2 0x3A1A PUSH2 0x3A15 DUP7 PUSH1 0x2 PUSH1 0x19 PUSH2 0x4138 JUMP JUMPDEST PUSH2 0x3B9A JUMP JUMPDEST SWAP1 POP PUSH1 0x64 DUP3 GT ISZERO PUSH2 0x3A38 JUMPI PUSH2 0x3A35 PUSH2 0x3A15 DUP7 PUSH1 0x19 PUSH1 0x32 PUSH2 0x4138 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0xC8 DUP3 GT ISZERO PUSH2 0x3A54 JUMPI PUSH2 0x3A51 PUSH2 0x3A15 DUP7 PUSH1 0x32 PUSH1 0x4B PUSH2 0x4138 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH2 0x190 DUP3 GT ISZERO PUSH2 0x3A71 JUMPI PUSH2 0x3A6E PUSH2 0x3A15 DUP7 PUSH1 0x4B PUSH1 0x96 PUSH2 0x4138 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH2 0x352 DUP3 GT ISZERO PUSH2 0x3A8E JUMPI PUSH2 0x3A8B PUSH2 0x3A15 DUP7 PUSH1 0x96 PUSH1 0xE1 PUSH2 0x4138 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH2 0x384 DUP3 GT ISZERO PUSH2 0x3AAC JUMPI PUSH2 0x3AA9 PUSH2 0x3A15 DUP7 PUSH1 0xE1 PUSH2 0x113 PUSH2 0x4138 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH2 0x3DE DUP3 GT ISZERO PUSH2 0x3ACB JUMPI PUSH2 0x3AC8 PUSH2 0x3A15 DUP7 PUSH2 0x113 PUSH2 0x15E PUSH2 0x4138 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH2 0x3E6 DUP3 GT ISZERO PUSH2 0x28C7 JUMPI PUSH2 0x3AE7 PUSH2 0x3A15 DUP7 PUSH2 0x15E PUSH2 0x1DB PUSH2 0x4138 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x3B00 PUSH2 0x3142 DUP5 PUSH2 0x3B9A JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x3B10 PUSH2 0x3E8 DUP4 PUSH2 0x5162 JUMP JUMPDEST SWAP1 POP PUSH1 0x64 DUP2 LT ISZERO PUSH2 0x3B43 JUMPI POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x9 DUP2 MSTORE PUSH9 0x131BDB99C810985B1B PUSH1 0xBA SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3DE DUP2 GT ISZERO PUSH2 0x3B73 JUMPI POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x7 DUP2 MSTORE PUSH7 0x496E20486F6C65 PUSH1 0xC8 SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x8 DUP2 MSTORE PUSH8 0x14DD185B99185C99 PUSH1 0xC2 SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH2 0x3BBE JUMPI POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH1 0x3 PUSH1 0xFC SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x0 JUMPDEST DUP2 ISZERO PUSH2 0x3BE8 JUMPI DUP1 PUSH2 0x3BD2 DUP2 PUSH2 0x4CD6 JUMP JUMPDEST SWAP2 POP PUSH2 0x3BE1 SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x5205 JUMP JUMPDEST SWAP2 POP PUSH2 0x3BC2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3C03 JUMPI PUSH2 0x3C03 PUSH2 0x47A0 JUMP 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 0x3C2D JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0x28C7 JUMPI PUSH2 0x3C42 PUSH1 0x1 DUP4 PUSH2 0x50B6 JUMP JUMPDEST SWAP2 POP PUSH2 0x3C4F PUSH1 0xA DUP7 PUSH2 0x5162 JUMP JUMPDEST PUSH2 0x3C5A SWAP1 PUSH1 0x30 PUSH2 0x4CF1 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x3C6F JUMPI PUSH2 0x3C6F PUSH2 0x4C8A JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0x3C91 PUSH1 0xA DUP7 PUSH2 0x5205 JUMP JUMPDEST SWAP5 POP PUSH2 0x3C31 JUMP JUMPDEST DUP1 MLOAD PUSH1 0x60 SWAP1 DUP1 PUSH2 0x3CB8 JUMPI POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH2 0x3CC7 DUP4 PUSH1 0x2 PUSH2 0x4CF1 JUMP JUMPDEST PUSH2 0x3CD1 SWAP2 SWAP1 PUSH2 0x5205 JUMP JUMPDEST PUSH2 0x3CDC SWAP1 PUSH1 0x4 PUSH2 0x4D09 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x3CEB DUP3 PUSH1 0x20 PUSH2 0x4CF1 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3D03 JUMPI PUSH2 0x3D03 PUSH2 0x47A0 JUMP 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 0x3D2D JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x40 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x5447 PUSH1 0x40 SWAP2 CODECOPY SWAP1 POP PUSH1 0x1 DUP2 ADD PUSH1 0x20 DUP4 ADD PUSH1 0x0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x3DB9 JUMPI PUSH1 0x3 DUP2 DUP11 ADD DUP2 ADD MLOAD PUSH1 0x3F PUSH1 0x12 DUP3 SWAP1 SHR DUP2 AND DUP7 ADD MLOAD PUSH1 0xC DUP4 SWAP1 SHR DUP3 AND DUP8 ADD MLOAD PUSH1 0x6 DUP5 SWAP1 SHR DUP4 AND DUP9 ADD MLOAD SWAP3 SWAP1 SWAP4 AND DUP8 ADD MLOAD PUSH1 0x8 SWAP2 DUP3 SHL PUSH1 0xFF SWAP5 DUP6 AND ADD DUP3 SHL SWAP3 DUP5 AND SWAP3 SWAP1 SWAP3 ADD SWAP1 SHL SWAP2 AND ADD PUSH1 0xE0 SHL DUP4 MSTORE PUSH1 0x4 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x3D58 JUMP JUMPDEST POP PUSH1 0x3 DUP7 MOD PUSH1 0x1 DUP2 EQ PUSH2 0x3DD3 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x3DE4 JUMPI PUSH2 0x3DF0 JUMP JUMPDEST PUSH2 0x3D3D PUSH1 0xF0 SHL PUSH1 0x1 NOT DUP4 ADD MSTORE PUSH2 0x3DF0 JUMP JUMPDEST PUSH1 0x3D PUSH1 0xF8 SHL PUSH1 0x0 NOT DUP4 ADD MSTORE JUMPDEST POP POP POP SWAP2 DUP2 MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3E59 JUMPI PUSH2 0x3E54 DUP2 PUSH1 0x8 DUP1 SLOAD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP3 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD DUP4 SSTORE SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0xF3F7A9FE364FAAB93B216DA50A3214154F22A0A2B415B23A84C8169E8B636EE3 ADD SSTORE JUMP JUMPDEST PUSH2 0x3E7C JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x3E7C JUMPI PUSH2 0x3E7C DUP4 DUP3 PUSH2 0x418D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3E93 JUMPI PUSH2 0xCF8 DUP2 PUSH2 0x422A JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xCF8 JUMPI PUSH2 0xCF8 DUP3 DUP3 PUSH2 0x42D9 JUMP JUMPDEST PUSH2 0x3EC0 DUP4 DUP4 PUSH2 0x431D JUMP JUMPDEST PUSH2 0x3ECD PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x3EE9 JUMP JUMPDEST PUSH2 0xCF8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x50CD JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x3FEB JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x3F2D SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x5219 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x3F47 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x3F77 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x3F74 SWAP2 DUP2 ADD SWAP1 PUSH2 0x5256 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x3FD1 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x3FA5 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 0x3FAA JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH2 0x3FC9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBC2 SWAP1 PUSH2 0x50CD JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ SWAP1 POP PUSH2 0x28C7 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x4009 SWAP2 SWAP1 PUSH2 0x5273 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP4 MLOAD PUSH2 0x408C JUMPI PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH1 0x4 DUP2 MSTORE PUSH4 0x4E6F6E65 PUSH1 0xE0 SHL PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 DUP4 MSTORE DUP2 MLOAD DUP1 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 DUP3 MSTORE DUP3 ADD MSTORE SWAP1 POP PUSH2 0x28C7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x40AF DUP7 PUSH2 0x409B DUP10 PUSH2 0x3B9A JUMP JUMPDEST PUSH1 0x10 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2C1D SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x5285 JUMP JUMPDEST SWAP1 POP DUP5 DUP6 MLOAD DUP3 PUSH2 0x40BF SWAP2 SWAP1 PUSH2 0x5162 JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x40CF JUMPI PUSH2 0x40CF PUSH2 0x4C8A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP2 POP PUSH1 0x0 PUSH1 0x64 DUP3 PUSH2 0x40E8 SWAP2 SWAP1 PUSH2 0x5162 JUMP JUMPDEST SWAP1 POP DUP5 DUP2 GT ISZERO PUSH2 0x40FD JUMPI DUP3 SWAP4 POP POP POP POP PUSH2 0x28C7 JUMP JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH1 0x4 DUP2 MSTORE PUSH4 0x4E6F6E65 PUSH1 0xE0 SHL PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 DUP4 MSTORE DUP2 MLOAD DUP1 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 DUP3 MSTORE DUP3 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x415A PUSH2 0x4147 DUP7 PUSH2 0x3B9A JUMP JUMPDEST PUSH1 0x10 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2C1D SWAP3 SWAP2 SWAP1 PUSH2 0x52B7 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x4168 DUP6 DUP6 PUSH2 0x50B6 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x4176 DUP3 DUP5 PUSH2 0x5162 JUMP JUMPDEST SWAP1 POP PUSH2 0x4182 DUP7 DUP3 PUSH2 0x4CF1 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x419A DUP5 PUSH2 0x1192 JUMP JUMPDEST PUSH2 0x41A4 SWAP2 SWAP1 PUSH2 0x50B6 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 SWAP2 POP DUP1 DUP3 EQ PUSH2 0x41F7 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP6 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 SLOAD DUP5 DUP5 MSTORE DUP2 DUP5 KECCAK256 DUP2 SWAP1 SSTORE DUP4 MSTORE PUSH1 0x7 SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP2 SWAP1 SSTORE JUMPDEST POP PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x7 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP5 SWAP1 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP5 AND DUP4 MSTORE PUSH1 0x6 DUP2 MSTORE DUP4 DUP4 KECCAK256 SWAP2 DUP4 MSTORE MSTORE SWAP1 DUP2 KECCAK256 SSTORE JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x423C SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x50B6 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x8 DUP1 SLOAD SWAP4 SWAP5 POP SWAP1 SWAP3 DUP5 SWAP1 DUP2 LT PUSH2 0x4264 JUMPI PUSH2 0x4264 PUSH2 0x4C8A JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x4285 JUMPI PUSH2 0x4285 PUSH2 0x4C8A JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD SWAP3 SWAP1 SWAP3 SSTORE DUP3 DUP2 MSTORE PUSH1 0x9 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP5 SWAP1 SSTORE DUP6 DUP3 MSTORE DUP2 KECCAK256 SSTORE PUSH1 0x8 DUP1 SLOAD DUP1 PUSH2 0x42BD JUMPI PUSH2 0x42BD PUSH2 0x52EF JUMP JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42E4 DUP4 PUSH2 0x1192 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP7 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 DUP6 SWAP1 SSTORE SWAP4 DUP3 MSTORE PUSH1 0x7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4373 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x43D8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBC2 JUMP JUMPDEST PUSH2 0x43E4 PUSH1 0x0 DUP4 DUP4 PUSH2 0x3DFE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x440D SWAP1 DUP5 SWAP1 PUSH2 0x4CF1 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP4 SWAP3 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP3 SWAP1 LOG4 POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x4477 SWAP1 PUSH2 0x4960 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x4499 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x44DF JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x44B2 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x44DF JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x44DF JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x44DF JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x44C4 JUMP JUMPDEST POP PUSH2 0x44EB SWAP3 SWAP2 POP PUSH2 0x4517 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x2E0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x17 SWAP1 JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x44FF JUMPI SWAP1 POP POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x44EB JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x4518 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x25A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4554 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x455F DUP2 PUSH2 0x452C JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x4581 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x4569 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1A27 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x45AA DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x4566 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x455F PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4592 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x45E3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x4601 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4619 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4622 DUP4 PUSH2 0x45EA JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14D9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4654 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x466B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x28C7 DUP5 DUP3 DUP6 ADD PUSH2 0x4630 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x468C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4695 DUP5 PUSH2 0x45EA JUMP JUMPDEST SWAP3 POP PUSH2 0x46A3 PUSH1 0x20 DUP6 ADD PUSH2 0x45EA JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x46C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x46DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x46F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4712 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4729 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4735 DUP6 DUP3 DUP7 ADD PUSH2 0x46B3 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4753 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x455F DUP3 PUSH2 0x45EA JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x4794 JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x4778 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP5 GT ISZERO PUSH2 0x47D1 JUMPI PUSH2 0x47D1 PUSH2 0x47A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP6 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x47F9 JUMPI PUSH2 0x47F9 PUSH2 0x47A0 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP1 SWAP4 POP DUP6 DUP2 MSTORE DUP7 DUP7 DUP7 ADD GT ISZERO PUSH2 0x4812 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 DUP6 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP8 DUP4 ADD ADD MSTORE POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x483E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4855 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP5 SGT PUSH2 0x4866 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x28C7 DUP5 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x47B6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4888 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4891 DUP4 PUSH2 0x45EA JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x48A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x48C7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x48D0 DUP6 PUSH2 0x45EA JUMP JUMPDEST SWAP4 POP PUSH2 0x48DE PUSH1 0x20 DUP7 ADD PUSH2 0x45EA JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4901 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x4912 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4921 DUP8 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x47B6 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 0x4940 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4949 DUP4 PUSH2 0x45EA JUMP JUMPDEST SWAP2 POP PUSH2 0x4957 PUSH1 0x20 DUP5 ADD PUSH2 0x45EA JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4974 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x14D9 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x12 SWAP1 DUP3 ADD MSTORE PUSH18 0x10DBDB9D1C9858DD081A5CC81B1BD8DAD959 PUSH1 0x72 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x4A0D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x4A28 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x46F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0xCF8 JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP7 LT ISZERO PUSH2 0x4A64 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x4A83 JUMPI DUP3 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x4A70 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP4 GT ISZERO PUSH2 0x4AA3 JUMPI PUSH2 0x4AA3 PUSH2 0x47A0 JUMP JUMPDEST PUSH2 0x4AB7 DUP4 PUSH2 0x4AB1 DUP4 SLOAD PUSH2 0x4960 JUMP JUMPDEST DUP4 PUSH2 0x4A3D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F DUP5 GT PUSH1 0x1 DUP2 EQ PUSH2 0x4AEB JUMPI PUSH1 0x0 DUP6 ISZERO PUSH2 0x4AD3 JUMPI POP DUP4 DUP3 ADD CALLDATALOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP8 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP7 SWAP1 SHL OR DUP4 SSTORE PUSH2 0x4B45 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 SWAP1 KECCAK256 PUSH1 0x1F NOT DUP7 AND SWAP1 DUP4 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4B1C JUMPI DUP7 DUP6 ADD CALLDATALOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x4AFC JUMP JUMPDEST POP DUP7 DUP3 LT ISZERO PUSH2 0x4B39 JUMPI PUSH1 0x0 NOT PUSH1 0xF8 DUP9 PUSH1 0x3 SHL AND SHR NOT DUP5 DUP8 ADD CALLDATALOAD AND DUP2 SSTORE JUMPDEST POP POP PUSH1 0x1 DUP6 PUSH1 0x1 SHL ADD DUP4 SSTORE JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0x4B56 DUP3 DUP4 PUSH2 0x49F6 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4B6E JUMPI PUSH2 0x4B6E PUSH2 0x47A0 JUMP JUMPDEST PUSH2 0x4B82 DUP2 PUSH2 0x4B7C DUP6 SLOAD PUSH2 0x4960 JUMP JUMPDEST DUP6 PUSH2 0x4A3D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x4BB6 JUMPI PUSH1 0x0 DUP4 ISZERO PUSH2 0x4B9E JUMPI POP DUP4 DUP3 ADD CALLDATALOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP6 SSTORE PUSH2 0x4C10 JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 SWAP1 KECCAK256 PUSH1 0x1F NOT DUP5 AND SWAP1 DUP4 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4BE7 JUMPI DUP7 DUP6 ADD CALLDATALOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x4BC7 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x4C04 JUMPI PUSH1 0x0 NOT PUSH1 0xF8 DUP7 PUSH1 0x3 SHL AND SHR NOT DUP5 DUP8 ADD CALLDATALOAD AND DUP2 SSTORE JUMPDEST POP POP PUSH1 0x1 DUP4 PUSH1 0x1 SHL ADD DUP6 SSTORE JUMPDEST POP POP POP POP PUSH2 0x4C21 PUSH1 0x20 DUP4 ADD DUP4 PUSH2 0x49F6 JUMP JUMPDEST PUSH2 0x1A27 DUP2 DUP4 PUSH1 0x1 DUP7 ADD PUSH2 0x4A8B JUMP JUMPDEST PUSH2 0x156A DUP3 DUP3 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x31 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x40 DUP3 ADD MSTORE PUSH17 0x1DDB995C881B9BDC88185C1C1C9BDD9959 PUSH1 0x7A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP3 CALLDATALOAD PUSH1 0x3E NOT DUP4 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x4CB6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x4CEA JUMPI PUSH2 0x4CEA PUSH2 0x4CC0 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x4D04 JUMPI PUSH2 0x4D04 PUSH2 0x4CC0 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x4D23 JUMPI PUSH2 0x4D23 PUSH2 0x4CC0 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP10 MLOAD PUSH1 0x20 PUSH2 0x4D3B DUP3 DUP6 DUP4 DUP16 ADD PUSH2 0x4566 JUMP JUMPDEST DUP11 MLOAD SWAP2 DUP5 ADD SWAP2 PUSH2 0x4D4E DUP2 DUP5 DUP5 DUP16 ADD PUSH2 0x4566 JUMP JUMPDEST DUP11 MLOAD SWAP3 ADD SWAP2 PUSH2 0x4D60 DUP2 DUP5 DUP5 DUP15 ADD PUSH2 0x4566 JUMP JUMPDEST DUP10 MLOAD SWAP3 ADD SWAP2 PUSH2 0x4D72 DUP2 DUP5 DUP5 DUP14 ADD PUSH2 0x4566 JUMP JUMPDEST DUP9 MLOAD SWAP3 ADD SWAP2 PUSH2 0x4D84 DUP2 DUP5 DUP5 DUP13 ADD PUSH2 0x4566 JUMP JUMPDEST DUP8 MLOAD SWAP3 ADD SWAP2 PUSH2 0x4D96 DUP2 DUP5 DUP5 DUP12 ADD PUSH2 0x4566 JUMP JUMPDEST DUP7 MLOAD SWAP3 ADD SWAP2 PUSH2 0x4DA8 DUP2 DUP5 DUP5 DUP11 ADD PUSH2 0x4566 JUMP JUMPDEST DUP6 MLOAD SWAP3 ADD SWAP2 PUSH2 0x4DBA DUP2 DUP5 DUP5 DUP10 ADD PUSH2 0x4566 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP9 MLOAD PUSH1 0x20 PUSH2 0x4DE0 DUP3 DUP6 DUP4 DUP15 ADD PUSH2 0x4566 JUMP JUMPDEST DUP10 MLOAD SWAP2 DUP5 ADD SWAP2 PUSH2 0x4DF3 DUP2 DUP5 DUP5 DUP15 ADD PUSH2 0x4566 JUMP JUMPDEST DUP10 MLOAD SWAP3 ADD SWAP2 PUSH2 0x4E05 DUP2 DUP5 DUP5 DUP14 ADD PUSH2 0x4566 JUMP JUMPDEST DUP9 MLOAD SWAP3 ADD SWAP2 PUSH2 0x4E17 DUP2 DUP5 DUP5 DUP13 ADD PUSH2 0x4566 JUMP JUMPDEST DUP8 MLOAD SWAP3 ADD SWAP2 PUSH2 0x4E29 DUP2 DUP5 DUP5 DUP12 ADD PUSH2 0x4566 JUMP JUMPDEST DUP7 MLOAD SWAP3 ADD SWAP2 PUSH2 0x4E3B DUP2 DUP5 DUP5 DUP11 ADD PUSH2 0x4566 JUMP JUMPDEST DUP6 MLOAD SWAP3 ADD SWAP2 PUSH2 0x4E4D DUP2 DUP5 DUP5 DUP10 ADD PUSH2 0x4566 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP11 SWAP10 POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP11 MLOAD PUSH2 0x4E71 DUP2 DUP5 PUSH1 0x20 DUP16 ADD PUSH2 0x4566 JUMP JUMPDEST DUP11 MLOAD PUSH2 0x4E83 DUP2 DUP4 DUP7 ADD PUSH1 0x20 DUP16 ADD PUSH2 0x4566 JUMP JUMPDEST DUP11 MLOAD SWAP2 DUP5 ADD ADD SWAP1 PUSH2 0x4E98 DUP2 DUP4 PUSH1 0x20 DUP15 ADD PUSH2 0x4566 JUMP JUMPDEST DUP10 MLOAD PUSH2 0x4EAA DUP2 DUP4 DUP6 ADD PUSH1 0x20 DUP15 ADD PUSH2 0x4566 JUMP JUMPDEST DUP10 MLOAD SWAP3 SWAP1 SWAP2 ADD ADD SWAP1 PUSH2 0x4EC0 DUP2 DUP4 PUSH1 0x20 DUP13 ADD PUSH2 0x4566 JUMP JUMPDEST DUP8 MLOAD PUSH2 0x4ED2 DUP2 DUP4 DUP6 ADD PUSH1 0x20 DUP13 ADD PUSH2 0x4566 JUMP JUMPDEST DUP8 MLOAD SWAP3 SWAP1 SWAP2 ADD ADD SWAP1 PUSH2 0x4EE8 DUP2 DUP4 PUSH1 0x20 DUP11 ADD PUSH2 0x4566 JUMP JUMPDEST DUP6 MLOAD PUSH2 0x4EFA DUP2 DUP4 DUP6 ADD PUSH1 0x20 DUP11 ADD PUSH2 0x4566 JUMP JUMPDEST DUP6 MLOAD SWAP3 SWAP1 SWAP2 ADD ADD SWAP1 PUSH2 0x4F10 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x4566 JUMP JUMPDEST ADD SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SLOAD PUSH2 0x4F2D DUP2 PUSH2 0x4960 JUMP JUMPDEST PUSH1 0x1 DUP3 DUP2 AND DUP1 ISZERO PUSH2 0x4F45 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x4F56 JUMPI PUSH2 0x4F85 JUMP JUMPDEST PUSH1 0xFF NOT DUP5 AND DUP8 MSTORE DUP3 DUP8 ADD SWAP5 POP PUSH2 0x4F85 JUMP JUMPDEST DUP6 PUSH1 0x0 MSTORE PUSH1 0x20 DUP1 PUSH1 0x0 KECCAK256 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x4F7C JUMPI DUP2 SLOAD DUP11 DUP3 ADD MSTORE SWAP1 DUP5 ADD SWAP1 DUP3 ADD PUSH2 0x4F63 JUMP JUMPDEST POP POP POP DUP3 DUP8 ADD SWAP5 POP JUMPDEST POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH15 0x7B226E616D65223A2242616C6C2023 PUSH1 0x88 SHL DUP2 MSTORE DUP5 MLOAD PUSH1 0x0 SWAP1 PUSH2 0x4FBA DUP2 PUSH1 0xF DUP6 ADD PUSH1 0x20 DUP11 ADD PUSH2 0x4566 JUMP JUMPDEST PUSH20 0x111610113232B9B1B934B83A34B7B711101D1011 PUSH1 0x61 SHL PUSH1 0xF SWAP2 DUP5 ADD SWAP2 DUP3 ADD MSTORE PUSH2 0x4FE8 PUSH1 0x23 DUP3 ADD DUP8 PUSH2 0x4F20 JUMP JUMPDEST SWAP1 POP PUSH32 0x222C2022696D61676522203A2022646174613A696D6167652F7376672B786D6C DUP2 MSTORE PUSH8 0xED8985CD94D8D0B PUSH1 0xC2 SHL PUSH1 0x20 DUP3 ADD MSTORE DUP5 MLOAD PUSH2 0x5031 DUP2 PUSH1 0x28 DUP5 ADD PUSH1 0x20 DUP10 ADD PUSH2 0x4566 JUMP JUMPDEST PUSH3 0x11161 PUSH1 0xED SHL PUSH1 0x28 SWAP3 SWAP1 SWAP2 ADD SWAP2 DUP3 ADD MSTORE DUP4 MLOAD PUSH2 0x5055 DUP2 PUSH1 0x2B DUP5 ADD PUSH1 0x20 DUP9 ADD PUSH2 0x4566 JUMP JUMPDEST PUSH1 0x7D PUSH1 0xF8 SHL PUSH1 0x2B SWAP3 SWAP1 SWAP2 ADD SWAP2 DUP3 ADD MSTORE PUSH1 0x2C ADD SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x646174613A6170706C69636174696F6E2F6A736F6E3B6261736536342C000000 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD PUSH2 0x50A9 DUP2 PUSH1 0x1D DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x4566 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD PUSH1 0x1D ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x50C8 JUMPI PUSH2 0x50C8 PUSH2 0x4CC0 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x32 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x40 DUP3 ADD MSTORE PUSH18 0x31B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x71 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH3 0x536B79 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x0 DUP4 MLOAD PUSH2 0x513D DUP2 PUSH1 0x3 DUP6 ADD PUSH1 0x20 DUP9 ADD PUSH2 0x4566 JUMP JUMPDEST PUSH2 0x3AE7 PUSH1 0x3 DUP3 DUP6 ADD ADD DUP6 PUSH2 0x4F20 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x5171 JUMPI PUSH2 0x5171 PUSH2 0x514C JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH6 0x11DC9BDD5B99 PUSH1 0xD2 SHL DUP2 MSTORE PUSH1 0x0 DUP4 MLOAD PUSH2 0x5197 DUP2 PUSH1 0x6 DUP6 ADD PUSH1 0x20 DUP9 ADD PUSH2 0x4566 JUMP JUMPDEST PUSH2 0x3AE7 PUSH1 0x6 DUP3 DUP6 ADD ADD DUP6 PUSH2 0x4F20 JUMP JUMPDEST PUSH4 0x10985B1B PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x0 DUP4 MLOAD PUSH2 0x51C5 DUP2 PUSH1 0x4 DUP6 ADD PUSH1 0x20 DUP9 ADD PUSH2 0x4566 JUMP JUMPDEST PUSH2 0x3AE7 PUSH1 0x4 DUP3 DUP6 ADD ADD DUP6 PUSH2 0x4F20 JUMP JUMPDEST PUSH7 0x59617264616765 PUSH1 0xC8 SHL DUP2 MSTORE PUSH1 0x0 DUP4 MLOAD PUSH2 0x51F6 DUP2 PUSH1 0x7 DUP6 ADD PUSH1 0x20 DUP9 ADD PUSH2 0x4566 JUMP JUMPDEST PUSH2 0x3AE7 PUSH1 0x7 DUP3 DUP6 ADD ADD DUP6 PUSH2 0x4F20 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x5214 JUMPI PUSH2 0x5214 PUSH2 0x514C JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x524C SWAP1 DUP4 ADD DUP5 PUSH2 0x4592 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5268 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x455F DUP2 PUSH2 0x452C JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x4CB6 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x4566 JUMP JUMPDEST PUSH1 0x0 DUP5 MLOAD PUSH2 0x5297 DUP2 DUP5 PUSH1 0x20 DUP10 ADD PUSH2 0x4566 JUMP JUMPDEST DUP5 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x52AB DUP2 DUP4 PUSH1 0x20 DUP10 ADD PUSH2 0x4566 JUMP JUMPDEST PUSH2 0x4182 DUP2 DUP4 ADD DUP7 PUSH2 0x4F20 JUMP JUMPDEST PUSH14 0x59617264616765496E52616E6765 PUSH1 0x90 SHL DUP2 MSTORE PUSH1 0x0 DUP4 MLOAD PUSH2 0x52E0 DUP2 PUSH1 0xE DUP6 ADD PUSH1 0x20 DUP9 ADD PUSH2 0x4566 JUMP JUMPDEST PUSH2 0x3AE7 PUSH1 0xE DUP3 DUP6 ADD ADD DUP6 PUSH2 0x4F20 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID 0x22 KECCAK256 PUSH30 0x2C207B202274726169745F7479706522203A202242616C6C222C20227661 PUSH13 0x756522203A202222207D2C207B KECCAK256 0x22 PUSH21 0x726169745F7479706522203A202242616C6C20436F PUSH13 0x6F72222C202276616C75652220 GASPRICE KECCAK256 0x22 EXTCODECOPY PUSH20 0x76672077696474683D2235303022206865696768 PUSH21 0x3D22353030222076696577426F783D223020302035 ADDRESS ADDRESS KECCAK256 CALLDATALOAD ADDRESS ADDRESS 0x22 KECCAK256 PUSH7 0x696C6C3D226E6F PUSH15 0x652220786D6C6E733D22687474703A 0x2F 0x2F PUSH24 0x77772E77332E6F72672F323030302F737667223E22207D2C KECCAK256 PUSH28 0x202274726169745F7479706522203A2022536B79222C202276616C75 PUSH6 0x22203A202222 KECCAK256 PUSH30 0x2C207B202274726169745F7479706522203A2022466F726567726F756E64 0x22 0x2C KECCAK256 0x22 PUSH23 0x616C756522203A202222207D2C207B202274726169745F PUSH21 0x79706522203A202242616C6C204272616E64222C20 0x22 PUSH23 0x616C756522203A20224142434445464748494A4B4C4D4E 0x4F POP MLOAD MSTORE MSTORE8 SLOAD SSTORE JUMP JUMPI PC MSIZE GAS PUSH2 0x6263 PUSH5 0x6566676869 PUSH11 0x6B6C6D6E6F707172737475 PUSH23 0x7778797A303132333435363738392B2F22207D2C207B20 0x22 PUSH21 0x726169745F7479706522203A20224C616E64656422 0x2C KECCAK256 0x22 PUSH23 0x616C756522203A202222207D2C207B202274726169745F PUSH21 0x79706522203A202259617264616765222C20227661 PUSH13 0x756522203A202222207D2C207B KECCAK256 0x22 PUSH21 0x726169745F7479706522203A202243726561747572 PUSH6 0x222C20227661 PUSH13 0x756522203A202222207D2C207B KECCAK256 0x22 PUSH21 0x726169745F7479706522203A20224261636B67726F PUSH22 0x6E64222C202276616C756522203A2022226174747269 PUSH3 0x757465 PUSH20 0x22203A205B7B202274726169745F747970652220 GASPRICE KECCAK256 0x22 MSTORE8 PUSH4 0x6F726522 0x2C KECCAK256 0x22 PUSH23 0x616C756522203A202222207D2C207B202274726169745F PUSH21 0x79706522203A202247726F756E64222C202276616C PUSH22 0x6522203A2022A2646970667358221220890E79E718C4 PUSH26 0xC4157819E84202060EBCD22A0F1E60971542274CF223BB28A464 PUSH20 0x6F6C634300080800333C636972636C652063783D 0x22 ORIGIN CALLDATALOAD ADDRESS 0x2E CALLDATALOAD 0x22 KECCAK256 PUSH4 0x793D2232 CALLDATALOAD ADDRESS 0x2E CALLDATALOAD 0x22 KECCAK256 PUSH19 0x3D223133372E35222066696C6C3D223C656C6C PUSH10 0x7073652063783D223235 ADDRESS 0x22 KECCAK256 PUSH4 0x793D2234 CALLVALUE CALLVALUE 0x22 KECCAK256 PUSH19 0x783D22323530222072793D223536222066696C PUSH13 0x3D222331343142313922206669 PUSH13 0x6C2D6F7061636974793D22302E CALLDATACOPY CALLDATALOAD 0x22 0x2F RETURNDATACOPY MSTORE PUSH2 0x6E64 PUSH16 0x6D6C792067656E6572617465642C2066 PUSH22 0x6C6C79206F6E2D636861696E20676F6C662062616C6C PUSH20 0x2E3C7265637420793D2233383822207769647468 RETURNDATASIZE 0x22 CALLDATALOAD ADDRESS ADDRESS 0x22 KECCAK256 PUSH9 0x65696768743D223131 ORIGIN 0x22 KECCAK256 PUSH7 0x696C6C3D223C63 PUSH10 0x72636C652063783D2233 CALLVALUE CALLDATASIZE 0x22 KECCAK256 PUSH4 0x793D2233 BALANCE ADDRESS 0x22 KECCAK256 PUSH19 0x3D223738222066696C6C3D223C706174682064 RETURNDATASIZE 0x22 0x4D CALLER CALLDATASIZE CALLVALUE KECCAK256 CALLVALUE CODECOPY CALLVALUE NUMBER CALLER CALLER ADDRESS KECCAK256 CALLVALUE CODECOPY CODESIZE KECCAK256 ORIGIN CODECOPY BALANCE KECCAK256 CALLDATALOAD ADDRESS ADDRESS KECCAK256 ORIGIN CALLDATALOAD ADDRESS KECCAK256 CALLDATALOAD ADDRESS ADDRESS NUMBER ORIGIN ADDRESS CODECOPY KECCAK256 CALLDATALOAD ADDRESS ADDRESS KECCAK256 BALANCE CALLDATACOPY BALANCE KECCAK256 CALLVALUE CODECOPY CODESIZE KECCAK256 BALANCE CALLER CALLDATACOPY KECCAK256 CALLVALUE CODECOPY CALLVALUE NUMBER BALANCE CALLDATASIZE ORIGIN KECCAK256 CALLVALUE CALLDATALOAD CODESIZE KECCAK256 ORIGIN ADDRESS ORIGIN KECCAK256 CALLVALUE CALLER CALLVALUE KECCAK256 ORIGIN CALLDATALOAD ADDRESS KECCAK256 CALLVALUE CALLER CALLVALUE NUMBER ORIGIN CODECOPY CODESIZE KECCAK256 CALLVALUE CALLER CALLVALUE KECCAK256 CALLER CALLER CODECOPY KECCAK256 CALLVALUE CALLDATALOAD CODESIZE KECCAK256 CALLER CALLDATASIZE CALLVALUE KECCAK256 CALLVALUE CODECOPY CALLVALUE GAS 0x22 KECCAK256 PUSH7 0x696C6C3D220000 ",
"sourceMap": "1896:1:18:-:0;1863:34;;1941:10;1908:43;;1958:77;1598:19562;1958:77;;1598:19562;1958:77;;;1598:19562;1958:77;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2318:33:18;;;-1:-1:-1;;2357:34:18;;;3209:171;;;;;;;;;-1:-1:-1;1375:113:5;;;;;;;;;;;-1:-1:-1;;;1375:113:5;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1375:113:5;;;;1441:13;;1375:113;;;1441:13;;-1:-1:-1;;1441:13:5;:::i;:::-;-1:-1:-1;1464:17:5;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;;1701:1:1;1806:7;:22;-1:-1:-1;921:32:0;719:10:12;921:18:0;:32::i;:::-;3273:6:18::2;:19:::0;;-1:-1:-1;;;;;;3273:19:18::2;3282:10;3273:19;::::0;;3318:33:::2;::::0;;3335:15:::2;3318:33;::::0;::::2;143:19:19::0;178:12;3318:33:18::2;;;;;;;;;;;;3303:5;:49;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;3363:10:18::2;:8;:10::i;:::-;1598:19562:::0;;2270:187:0;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;3386:741:18:-;3426:34;;;;;;;;;;;;;-1:-1:-1;;;3426:34:18;;;;;;;;;:10;;:34;:::i;:::-;;3470:69;;;;;;;;;;;;;;;;;;;;;:18;;:69;;;;;;:::i;:::-;-1:-1:-1;3550:32:18;;;;;;;;;;;;;-1:-1:-1;;;3550:32:18;;;;;;;;;:10;;:32;:::i;:::-;;3592:145;;;;;;;;;;;;;;;;;;;;;:18;;:145;;;;;;:::i;:::-;-1:-1:-1;3748:42:18;;;;;;;;;;;;;;;;;;;;;;;:12;;:42;:::i;:::-;;3800:64;;;;;;;;;;;;;;;;;;;;;:20;;:64;;;;;;:::i;:::-;-1:-1:-1;3875:22:18;;;;;;;;;;;;;-1:-1:-1;;;3875:22:18;;;;;;;;;:6;;:22;:::i;:::-;;3907:64;;;;;;;;;;;;;;;;;;;;;:14;;:64;;;;;;:::i;:::-;-1:-1:-1;3982:24:18;;;;;;;;;;;;;-1:-1:-1;;;3982:24:18;;;;;;;;;:10;;:24;:::i;:::-;;4016:103;;;;;;;;;;;;;;;;;;;;;:18;;:103;;;;;;:::i;:::-;;3386:741::o;1598:19562::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1598:19562:18;;;-1:-1:-1;1598:19562:18;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;201:380:19;280:1;276:12;;;;323;;;344:61;;398:4;390:6;386:17;376:27;;344:61;451:2;443:6;440:14;420:18;417:38;414:161;;;497:10;492:3;488:20;485:1;478:31;532:4;529:1;522:15;560:4;557:1;550:15;414:161;;201:380;;;:::o;:::-;1598:19562:18;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@MAX_PUBLIC_MINT_2869": {
"entryPoint": null,
"id": 2869,
"parameterSlots": 0,
"returnSlots": 0
},
"@MAX_RESERVE_COUNT_2872": {
"entryPoint": null,
"id": 2872,
"parameterSlots": 0,
"returnSlots": 0
},
"@MAX_SUPPLY_2866": {
"entryPoint": null,
"id": 2866,
"parameterSlots": 0,
"returnSlots": 0
},
"@PRICE_PER_TOKEN_2878": {
"entryPoint": null,
"id": 2878,
"parameterSlots": 0,
"returnSlots": 0
},
"@_addTokenToAllTokensEnumeration_1984": {
"entryPoint": null,
"id": 1984,
"parameterSlots": 1,
"returnSlots": 0
},
"@_addTokenToOwnerEnumeration_1964": {
"entryPoint": 17113,
"id": 1964,
"parameterSlots": 2,
"returnSlots": 0
},
"@_approve_1518": {
"entryPoint": 10090,
"id": 1518,
"parameterSlots": 2,
"returnSlots": 0
},
"@_beforeTokenTransfer_1623": {
"entryPoint": null,
"id": 1623,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_1934": {
"entryPoint": 15870,
"id": 1934,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_1612": {
"entryPoint": 16105,
"id": 1612,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_1232": {
"entryPoint": null,
"id": 1232,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_1273": {
"entryPoint": 10200,
"id": 1273,
"parameterSlots": 2,
"returnSlots": 1
},
"@_mint_1374": {
"entryPoint": 17181,
"id": 1374,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_2463": {
"entryPoint": null,
"id": 2463,
"parameterSlots": 0,
"returnSlots": 1
},
"@_removeTokenFromAllTokensEnumeration_2095": {
"entryPoint": 16938,
"id": 2095,
"parameterSlots": 1,
"returnSlots": 0
},
"@_removeTokenFromOwnerEnumeration_2047": {
"entryPoint": 16781,
"id": 2047,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_1288": {
"entryPoint": 10956,
"id": 1288,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_1317": {
"entryPoint": 16054,
"id": 1317,
"parameterSlots": 3,
"returnSlots": 0
},
"@_safeTransfer_1214": {
"entryPoint": 11189,
"id": 1214,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_1550": {
"entryPoint": 10982,
"id": 1550,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transferOwnership_103": {
"entryPoint": 10874,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_1494": {
"entryPoint": 10447,
"id": 1494,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_1053": {
"entryPoint": 3047,
"id": 1053,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_911": {
"entryPoint": 4498,
"id": 911,
"parameterSlots": 1,
"returnSlots": 1
},
"@contractLocked_2911": {
"entryPoint": null,
"id": 2911,
"parameterSlots": 0,
"returnSlots": 0
},
"@contractURI_3101": {
"entryPoint": 8949,
"id": 3101,
"parameterSlots": 0,
"returnSlots": 1
},
"@encode_2843": {
"entryPoint": 15512,
"id": 2843,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_1074": {
"entryPoint": 2893,
"id": 1074,
"parameterSlots": 1,
"returnSlots": 1
},
"@getBackground_4718": {
"entryPoint": 11717,
"id": 4718,
"parameterSlots": 1,
"returnSlots": 1
},
"@getBallAttribute_4935": {
"entryPoint": 15088,
"id": 4935,
"parameterSlots": 1,
"returnSlots": 1
},
"@getBallColor_4842": {
"entryPoint": 12858,
"id": 4842,
"parameterSlots": 1,
"returnSlots": 1
},
"@getBall_4889": {
"entryPoint": 12700,
"id": 4889,
"parameterSlots": 1,
"returnSlots": 1
},
"@getCreature_5025": {
"entryPoint": 13546,
"id": 5025,
"parameterSlots": 1,
"returnSlots": 1
},
"@getDescription_2889": {
"entryPoint": 3325,
"id": 2889,
"parameterSlots": 0,
"returnSlots": 1
},
"@getForeground_5041": {
"entryPoint": 13990,
"id": 5041,
"parameterSlots": 1,
"returnSlots": 1
},
"@getGround_4750": {
"entryPoint": 12164,
"id": 4750,
"parameterSlots": 1,
"returnSlots": 1
},
"@getHole_4795": {
"entryPoint": 12576,
"id": 4795,
"parameterSlots": 1,
"returnSlots": 1
},
"@getLogo_5009": {
"entryPoint": 12954,
"id": 5009,
"parameterSlots": 1,
"returnSlots": 1
},
"@getNumberOfBackgrounds_3384": {
"entryPoint": null,
"id": 3384,
"parameterSlots": 0,
"returnSlots": 1
},
"@getNumberOfBallColors_3438": {
"entryPoint": null,
"id": 3438,
"parameterSlots": 0,
"returnSlots": 1
},
"@getNumberOfBallLogos_3420": {
"entryPoint": null,
"id": 3420,
"parameterSlots": 0,
"returnSlots": 1
},
"@getNumberOfCreatures_3402": {
"entryPoint": null,
"id": 3402,
"parameterSlots": 0,
"returnSlots": 1
},
"@getNumberOfForegrounds_3393": {
"entryPoint": null,
"id": 3393,
"parameterSlots": 0,
"returnSlots": 1
},
"@getNumberOfGroundColors_3429": {
"entryPoint": null,
"id": 3429,
"parameterSlots": 0,
"returnSlots": 1
},
"@getNumberOfHoles_3411": {
"entryPoint": null,
"id": 3411,
"parameterSlots": 0,
"returnSlots": 1
},
"@getNumberOfSkies_3375": {
"entryPoint": null,
"id": 3375,
"parameterSlots": 0,
"returnSlots": 1
},
"@getScore_4655": {
"entryPoint": 14437,
"id": 4655,
"parameterSlots": 1,
"returnSlots": 1
},
"@getSky_4702": {
"entryPoint": 11240,
"id": 4702,
"parameterSlots": 1,
"returnSlots": 1
},
"@getYardageInRange_4403": {
"entryPoint": 16696,
"id": 4403,
"parameterSlots": 3,
"returnSlots": 1
},
"@getYardage_4553": {
"entryPoint": 14798,
"id": 4553,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_1109": {
"entryPoint": null,
"id": 1109,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_2174": {
"entryPoint": null,
"id": 2174,
"parameterSlots": 1,
"returnSlots": 1
},
"@lockContract_3135": {
"entryPoint": 4687,
"id": 3135,
"parameterSlots": 0,
"returnSlots": 0
},
"@mint_3206": {
"entryPoint": 5981,
"id": 3206,
"parameterSlots": 1,
"returnSlots": 0
},
"@mintingActive_2908": {
"entryPoint": null,
"id": 2908,
"parameterSlots": 0,
"returnSlots": 0
},
"@name_949": {
"entryPoint": 2747,
"id": 949,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_939": {
"entryPoint": 4379,
"id": 939,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_32": {
"entryPoint": null,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@pluck_5134": {
"entryPoint": 16423,
"id": 5134,
"parameterSlots": 4,
"returnSlots": 1
},
"@random_3345": {
"entryPoint": 16374,
"id": 3345,
"parameterSlots": 1,
"returnSlots": 1
},
"@registerBackgroundData_3523": {
"entryPoint": 6848,
"id": 3523,
"parameterSlots": 1,
"returnSlots": 0
},
"@registerBallColor_3506": {
"entryPoint": 8964,
"id": 3506,
"parameterSlots": 1,
"returnSlots": 0
},
"@registerBallLogoData_3574": {
"entryPoint": 6701,
"id": 3574,
"parameterSlots": 1,
"returnSlots": 0
},
"@registerCreatureData_3557": {
"entryPoint": 8802,
"id": 3557,
"parameterSlots": 1,
"returnSlots": 0
},
"@registerForegroundData_3540": {
"entryPoint": 3340,
"id": 3540,
"parameterSlots": 1,
"returnSlots": 0
},
"@registerGroundColor_3489": {
"entryPoint": 8655,
"id": 3489,
"parameterSlots": 1,
"returnSlots": 0
},
"@registerHoleBackgroundData_3739": {
"entryPoint": 9638,
"id": 3739,
"parameterSlots": 2,
"returnSlots": 0
},
"@registerHoleData_3472": {
"entryPoint": 6498,
"id": 3472,
"parameterSlots": 1,
"returnSlots": 0
},
"@registerMultipleBackgroundData_3706": {
"entryPoint": 4046,
"id": 3706,
"parameterSlots": 2,
"returnSlots": 0
},
"@registerMultipleBallColor_3640": {
"entryPoint": 5609,
"id": 3640,
"parameterSlots": 2,
"returnSlots": 0
},
"@registerMultipleBallLogoData_3838": {
"entryPoint": 3686,
"id": 3838,
"parameterSlots": 2,
"returnSlots": 0
},
"@registerMultipleCreatureData_3805": {
"entryPoint": 9297,
"id": 3805,
"parameterSlots": 2,
"returnSlots": 0
},
"@registerMultipleForegroundData_3772": {
"entryPoint": 9824,
"id": 3772,
"parameterSlots": 2,
"returnSlots": 0
},
"@registerMultipleGroundColor_3673": {
"entryPoint": 9111,
"id": 3673,
"parameterSlots": 2,
"returnSlots": 0
},
"@registerMultipleSkyData_3607": {
"entryPoint": 5795,
"id": 3607,
"parameterSlots": 2,
"returnSlots": 0
},
"@registerSkyData_3455": {
"entryPoint": 4232,
"id": 3455,
"parameterSlots": 1,
"returnSlots": 0
},
"@renounceOwnership_60": {
"entryPoint": 4633,
"id": 60,
"parameterSlots": 0,
"returnSlots": 0
},
"@reserve_3263": {
"entryPoint": 4808,
"id": 3263,
"parameterSlots": 1,
"returnSlots": 0
},
"@safeTransferFrom_1155": {
"entryPoint": 3872,
"id": 1155,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_1185": {
"entryPoint": 6645,
"id": 1185,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_1091": {
"entryPoint": 6487,
"id": 1091,
"parameterSlots": 2,
"returnSlots": 0
},
"@setContractURI_3113": {
"entryPoint": 5533,
"id": 3113,
"parameterSlots": 1,
"returnSlots": 0
},
"@setDescription_2901": {
"entryPoint": 5421,
"id": 2901,
"parameterSlots": 1,
"returnSlots": 0
},
"@setPrice_3125": {
"entryPoint": 5486,
"id": 3125,
"parameterSlots": 1,
"returnSlots": 0
},
"@supportsInterface_1808": {
"entryPoint": 2704,
"id": 1808,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_2773": {
"entryPoint": null,
"id": 2773,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_887": {
"entryPoint": 10010,
"id": 887,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_959": {
"entryPoint": 5594,
"id": 959,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_5212": {
"entryPoint": 15258,
"id": 5212,
"parameterSlots": 1,
"returnSlots": 1
},
"@toggleMinting_3084": {
"entryPoint": 4746,
"id": 3084,
"parameterSlots": 0,
"returnSlots": 0
},
"@tokenByIndex_1870": {
"entryPoint": 3899,
"id": 1870,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenOfOwnerByIndex_1836": {
"entryPoint": 3536,
"id": 1836,
"parameterSlots": 2,
"returnSlots": 1
},
"@tokenURI_4359": {
"entryPoint": 6995,
"id": 4359,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokensOfOwner_3327": {
"entryPoint": 5152,
"id": 3327,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_1847": {
"entryPoint": null,
"id": 1847,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_1136": {
"entryPoint": 3487,
"id": 1136,
"parameterSlots": 3,
"returnSlots": 0
},
"@transferOwnership_83": {
"entryPoint": 9483,
"id": 83,
"parameterSlots": 1,
"returnSlots": 0
},
"@withdrawAll_3366": {
"entryPoint": 5343,
"id": 3366,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_address": {
"entryPoint": 17898,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_array_struct_MuniLayerData_calldata_dyn_calldata": {
"entryPoint": 18099,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_available_length_string": {
"entryPoint": 18358,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_struct_MuniLayerData_calldata": {
"entryPoint": 17968,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 18241,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 18733,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 18039,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 18609,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 18549,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 17926,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_array$_t_struct$_MuniColorData_$2923_calldata_ptr_$dyn_calldata_ptr": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_array$_t_struct$_MuniLayerData_$2918_calldata_ptr_$dyn_calldata_ptr": {
"entryPoint": 18175,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 17730,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 21078,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 18476,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_struct$_MuniColorData_$2923_calldata_ptr": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_struct$_MuniLayerData_$2918_calldata_ptr": {
"entryPoint": 17986,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 17873,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_string": {
"entryPoint": 17810,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_string_storage": {
"entryPoint": 20256,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 21107,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 19917,
"id": null,
"parameterSlots": 8,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 19752,
"id": null,
"parameterSlots": 9,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 20063,
"id": null,
"parameterSlots": 10,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 21125,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_263f7a96314f246730c11571dde6c4e90d30091ac980a60e7d6f0f5511c0cd25_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 20767,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_32ea6d46cbb64e67d5c755018aaec3c15673c35b561d24df0e9b5b1b782c59a8_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 20854,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_52b2c2e5cc83e59abe14c2168238feeae08c1e4979f790a3a6bd61d3605f81ef_t_string_memory_ptr_t_stringliteral_3543838f308471b14aab7a79185fb3e2346e9fcae9577c5b01c61a3008d3a89f_t_string_storage_t_stringliteral_278fee699eda0eebe02769cc1fcbc2e94f1b2f13572875f2f832dc27960d70a1_t_string_memory_ptr_t_stringliteral_d31db5fa4cccdf0b2a7c8fa1b54fac1497461aa344c190614087e30f1494e3a3_t_string_memory_ptr_t_stringliteral_8e2ffa389f3a6ded42d759b3377ac0d928e6a268d143bcc9517093d10c843bff__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 20367,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_82bad2b9d448a47ee2930b73af2043894d7013f0284684a9f73af49e1096c5bf_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 20948,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_bccab2d885f86fda81bfd84dd4248d31f8073b473d187111d36536db073076fa_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 20593,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_e6dcbd992611641f374f6bf09f782fd5e29d7db53ea1918d58cc4e0735412241_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 21175,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_fbe0cf5b532c85d12f44c70ec43055b59619279fcf5655790f684b3460cf7a93_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 20902,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed": {
"entryPoint": 21017,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
"entryPoint": 18268,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 17854,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1163a37359650e0a1061c390501746c7b9c986f8f2c7f23fd46784eb342bfa6f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_19fe38635be9aeb10f768d5690b4deb3179506dea66a22f6375a398ea4511eed__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 20685,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2046c7ddfd3f2d6a571801373ea168eb0a472758c18d97a9a4c8d5e398116f40__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3f10f349ccf9313bbb94d427d2e5d9fed4202d631a8b49b0743c6d7b11e54eae__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 18837,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b6735f0844bb7df3b3c576e58b772ea854f1d91eae2ff40f4076cc493a2dbb95__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_ba5602115f4a7b1ca1e73a5c8de30026fe06caa19aaf5e8df107c03e011af84f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 19513,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d017ccea1ed22f256cfbab52eb94b8efa6bab5c87801174c8122eaf9f19a3723__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d27acebf6f180ee7398431c6f1d778b461898940dcc55d2eb4f0671c86693519__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_e9e110ada839c515ee0de3512fedbde995afbcedf85ef0d9d69e33c5639c2706__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 18890,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"access_calldata_tail_string_calldata": {
"entryPoint": 18934,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"access_calldata_tail_t_struct$_MuniColorData_$2923_calldata_ptr": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"access_calldata_tail_t_struct$_MuniLayerData_$2918_calldata_ptr": {
"entryPoint": 19616,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_dataslot_string_storage": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 19697,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 20997,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 19721,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 20662,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_string_storage": {
"entryPoint": 19005,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_byte_array_to_storage_from_string_calldata_to_string": {
"entryPoint": 19083,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 17766,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_struct_to_storage_from_struct_MuniLayerData_calldata_to_struct_MuniLayerData": {
"entryPoint": 19276,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 18784,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 19670,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 20834,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 19648,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 20812,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x31": {
"entryPoint": 21231,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 19594,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 18336,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"update_storage_value_offset_0t_struct$_MuniColorData_$2923_calldata_ptr_to_t_struct$_MuniColorData_$2923_storage": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_storage_value_offset_0t_struct$_MuniLayerData_$2918_calldata_ptr_to_t_struct$_MuniLayerData_$2918_storage": {
"entryPoint": 19503,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"validator_revert_bytes4": {
"entryPoint": 17708,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:37408:19",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:19",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "58:87:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "123:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "132:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "135:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "125:6:19"
},
"nodeType": "YulFunctionCall",
"src": "125:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "125:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "81:5:19"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "92:5:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "103:3:19",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "108:10:19",
"type": "",
"value": "0xffffffff"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "99:3:19"
},
"nodeType": "YulFunctionCall",
"src": "99:20:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "88:3:19"
},
"nodeType": "YulFunctionCall",
"src": "88:32:19"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "78:2:19"
},
"nodeType": "YulFunctionCall",
"src": "78:43:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "71:6:19"
},
"nodeType": "YulFunctionCall",
"src": "71:51:19"
},
"nodeType": "YulIf",
"src": "68:71:19"
}
]
},
"name": "validator_revert_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "47:5:19",
"type": ""
}
],
"src": "14:131:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "219:176:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "265:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "277:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "267:6:19"
},
"nodeType": "YulFunctionCall",
"src": "267:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "267:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "240:7:19"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "249:9:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "236:3:19"
},
"nodeType": "YulFunctionCall",
"src": "236:23:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "261:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "232:3:19"
},
"nodeType": "YulFunctionCall",
"src": "232:32:19"
},
"nodeType": "YulIf",
"src": "229:52:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "290:36:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "316:9:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "303:12:19"
},
"nodeType": "YulFunctionCall",
"src": "303:23:19"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "294:5:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "359:5:19"
}
],
"functionName": {
"name": "validator_revert_bytes4",
"nodeType": "YulIdentifier",
"src": "335:23:19"
},
"nodeType": "YulFunctionCall",
"src": "335:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "335:30:19"
},
{
"nodeType": "YulAssignment",
"src": "374:15:19",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "384:5:19"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "374:6:19"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "185:9:19",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "196:7:19",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "208:6:19",
"type": ""
}
],
"src": "150:245:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "495:92:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "505:26:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "517:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "528:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "513:3:19"
},
"nodeType": "YulFunctionCall",
"src": "513:18:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "505:4:19"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "547:9:19"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "572:6:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "565:6:19"
},
"nodeType": "YulFunctionCall",
"src": "565:14:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "558:6:19"
},
"nodeType": "YulFunctionCall",
"src": "558:22:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "540:6:19"
},
"nodeType": "YulFunctionCall",
"src": "540:41:19"
},
"nodeType": "YulExpressionStatement",
"src": "540:41:19"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "464:9:19",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "475:6:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "486:4:19",
"type": ""
}
],
"src": "400:187:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "645:205:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "655:10:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "664:1:19",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "659:1:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "724:63:19",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "749:3:19"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "754:1:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "745:3:19"
},
"nodeType": "YulFunctionCall",
"src": "745:11:19"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "768:3:19"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "773:1:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "764:3:19"
},
"nodeType": "YulFunctionCall",
"src": "764:11:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "758:5:19"
},
"nodeType": "YulFunctionCall",
"src": "758:18:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "738:6:19"
},
"nodeType": "YulFunctionCall",
"src": "738:39:19"
},
"nodeType": "YulExpressionStatement",
"src": "738:39:19"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "685:1:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "688:6:19"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "682:2:19"
},
"nodeType": "YulFunctionCall",
"src": "682:13:19"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "696:19:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "698:15:19",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "707:1:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "710:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "703:3:19"
},
"nodeType": "YulFunctionCall",
"src": "703:10:19"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "698:1:19"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "678:3:19",
"statements": []
},
"src": "674:113:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "813:31:19",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "826:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "831:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "822:3:19"
},
"nodeType": "YulFunctionCall",
"src": "822:16:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "840:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "815:6:19"
},
"nodeType": "YulFunctionCall",
"src": "815:27:19"
},
"nodeType": "YulExpressionStatement",
"src": "815:27:19"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "802:1:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "805:6:19"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "799:2:19"
},
"nodeType": "YulFunctionCall",
"src": "799:13:19"
},
"nodeType": "YulIf",
"src": "796:48:19"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "623:3:19",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "628:3:19",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "633:6:19",
"type": ""
}
],
"src": "592:258:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "905:208:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "915:26:19",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "935:5:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "929:5:19"
},
"nodeType": "YulFunctionCall",
"src": "929:12:19"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "919:6:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "957:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "962:6:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "950:6:19"
},
"nodeType": "YulFunctionCall",
"src": "950:19:19"
},
"nodeType": "YulExpressionStatement",
"src": "950:19:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1004:5:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1011:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1000:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1000:16:19"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1022:3:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1027:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1018:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1018:14:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1034:6:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "978:21:19"
},
"nodeType": "YulFunctionCall",
"src": "978:63:19"
},
"nodeType": "YulExpressionStatement",
"src": "978:63:19"
},
{
"nodeType": "YulAssignment",
"src": "1050:57:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1065:3:19"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1078:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1086:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1074:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1074:15:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1095:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1091:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1091:7:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1070:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1070:29:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1061:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1061:39:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1102:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1057:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1057:50:19"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1050:3:19"
}
]
}
]
},
"name": "abi_encode_string",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "882:5:19",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "889:3:19",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "897:3:19",
"type": ""
}
],
"src": "855:258:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1239:99:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1256:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1267:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1249:6:19"
},
"nodeType": "YulFunctionCall",
"src": "1249:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "1249:21:19"
},
{
"nodeType": "YulAssignment",
"src": "1279:53:19",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1305:6:19"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1317:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1328:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1313:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1313:18:19"
}
],
"functionName": {
"name": "abi_encode_string",
"nodeType": "YulIdentifier",
"src": "1287:17:19"
},
"nodeType": "YulFunctionCall",
"src": "1287:45:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1279:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1208:9:19",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1219:6:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1230:4:19",
"type": ""
}
],
"src": "1118:220:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1413:110:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1459:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1468:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1471:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1461:6:19"
},
"nodeType": "YulFunctionCall",
"src": "1461:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "1461:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1434:7:19"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1443:9:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1430:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1430:23:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1455:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1426:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1426:32:19"
},
"nodeType": "YulIf",
"src": "1423:52:19"
},
{
"nodeType": "YulAssignment",
"src": "1484:33:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1507:9:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1494:12:19"
},
"nodeType": "YulFunctionCall",
"src": "1494:23:19"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1484:6:19"
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1379:9:19",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1390:7:19",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1402:6:19",
"type": ""
}
],
"src": "1343:180:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1629:102:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1639:26:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1651:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1662:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1647:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1647:18:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1639:4:19"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1681:9:19"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1696:6:19"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1712:3:19",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1717:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1708:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1708:11:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1721:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1704:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1704:19:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1692:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1692:32:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1674:6:19"
},
"nodeType": "YulFunctionCall",
"src": "1674:51:19"
},
"nodeType": "YulExpressionStatement",
"src": "1674:51:19"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1598:9:19",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1609:6:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1620:4:19",
"type": ""
}
],
"src": "1528:203:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1785:124:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1795:29:19",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1817:6:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1804:12:19"
},
"nodeType": "YulFunctionCall",
"src": "1804:20:19"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1795:5:19"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1887:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1896:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1899:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1889:6:19"
},
"nodeType": "YulFunctionCall",
"src": "1889:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "1889:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1846:5:19"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1857:5:19"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1872:3:19",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1877:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1868:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1868:11:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1881:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1864:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1864:19:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1853:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1853:31:19"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1843:2:19"
},
"nodeType": "YulFunctionCall",
"src": "1843:42:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1836:6:19"
},
"nodeType": "YulFunctionCall",
"src": "1836:50:19"
},
"nodeType": "YulIf",
"src": "1833:70:19"
}
]
},
"name": "abi_decode_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1764:6:19",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1775:5:19",
"type": ""
}
],
"src": "1736:173:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2001:167:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2047:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2056:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2059:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2049:6:19"
},
"nodeType": "YulFunctionCall",
"src": "2049:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "2049:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2022:7:19"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2031:9:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2018:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2018:23:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2043:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2014:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2014:32:19"
},
"nodeType": "YulIf",
"src": "2011:52:19"
},
{
"nodeType": "YulAssignment",
"src": "2072:39:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2101:9:19"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2082:18:19"
},
"nodeType": "YulFunctionCall",
"src": "2082:29:19"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2072:6:19"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2120:42:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2147:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2158:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2143:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2143:18:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2130:12:19"
},
"nodeType": "YulFunctionCall",
"src": "2130:32:19"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2120:6:19"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1959:9:19",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1970:7:19",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1982:6:19",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1990:6:19",
"type": ""
}
],
"src": "1914:254:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2274:76:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2284:26:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2296:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2307:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2292:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2292:18:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2284:4:19"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2326:9:19"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2337:6:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2319:6:19"
},
"nodeType": "YulFunctionCall",
"src": "2319:25:19"
},
"nodeType": "YulExpressionStatement",
"src": "2319:25:19"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2243:9:19",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2254:6:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2265:4:19",
"type": ""
}
],
"src": "2173:177:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2431:85:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2470:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2479:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2482:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2472:6:19"
},
"nodeType": "YulFunctionCall",
"src": "2472:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "2472:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2452:3:19"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2457:6:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2448:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2448:16:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2466:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2444:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2444:25:19"
},
"nodeType": "YulIf",
"src": "2441:45:19"
},
{
"nodeType": "YulAssignment",
"src": "2495:15:19",
"value": {
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2504:6:19"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2495:5:19"
}
]
}
]
},
"name": "abi_decode_struct_MuniLayerData_calldata",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2405:6:19",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2413:3:19",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2421:5:19",
"type": ""
}
],
"src": "2355:161:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2624:265:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2670:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2679:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2682:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2672:6:19"
},
"nodeType": "YulFunctionCall",
"src": "2672:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "2672:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2645:7:19"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2654:9:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2641:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2641:23:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2666:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2637:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2637:32:19"
},
"nodeType": "YulIf",
"src": "2634:52:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2695:37:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2722:9:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2709:12:19"
},
"nodeType": "YulFunctionCall",
"src": "2709:23:19"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2699:6:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2775:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2784:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2787:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2777:6:19"
},
"nodeType": "YulFunctionCall",
"src": "2777:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "2777:12:19"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2747:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2755:18:19",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2744:2:19"
},
"nodeType": "YulFunctionCall",
"src": "2744:30:19"
},
"nodeType": "YulIf",
"src": "2741:50:19"
},
{
"nodeType": "YulAssignment",
"src": "2800:83:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2855:9:19"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2866:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2851:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2851:22:19"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2875:7:19"
}
],
"functionName": {
"name": "abi_decode_struct_MuniLayerData_calldata",
"nodeType": "YulIdentifier",
"src": "2810:40:19"
},
"nodeType": "YulFunctionCall",
"src": "2810:73:19"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2800:6:19"
}
]
}
]
},
"name": "abi_decode_tuple_t_struct$_MuniLayerData_$2918_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2590:9:19",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2601:7:19",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2613:6:19",
"type": ""
}
],
"src": "2521:368:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2998:224:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3044:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3053:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3056:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3046:6:19"
},
"nodeType": "YulFunctionCall",
"src": "3046:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "3046:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3019:7:19"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3028:9:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3015:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3015:23:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3040:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3011:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3011:32:19"
},
"nodeType": "YulIf",
"src": "3008:52:19"
},
{
"nodeType": "YulAssignment",
"src": "3069:39:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3098:9:19"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "3079:18:19"
},
"nodeType": "YulFunctionCall",
"src": "3079:29:19"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3069:6:19"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3117:48:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3150:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3161:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3146:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3146:18:19"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "3127:18:19"
},
"nodeType": "YulFunctionCall",
"src": "3127:38:19"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3117:6:19"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3174:42:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3201:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3212:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3197:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3197:18:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3184:12:19"
},
"nodeType": "YulFunctionCall",
"src": "3184:32:19"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3174:6:19"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2948:9:19",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2959:7:19",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2971:6:19",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2979:6:19",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2987:6:19",
"type": ""
}
],
"src": "2894:328:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3333:283:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3382:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3391:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3394:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3384:6:19"
},
"nodeType": "YulFunctionCall",
"src": "3384:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "3384:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3361:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3369:4:19",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3357:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3357:17:19"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3376:3:19"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3353:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3353:27:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3346:6:19"
},
"nodeType": "YulFunctionCall",
"src": "3346:35:19"
},
"nodeType": "YulIf",
"src": "3343:55:19"
},
{
"nodeType": "YulAssignment",
"src": "3407:30:19",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3430:6:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3417:12:19"
},
"nodeType": "YulFunctionCall",
"src": "3417:20:19"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3407:6:19"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3480:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3489:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3492:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3482:6:19"
},
"nodeType": "YulFunctionCall",
"src": "3482:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "3482:12:19"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3452:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3460:18:19",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3449:2:19"
},
"nodeType": "YulFunctionCall",
"src": "3449:30:19"
},
"nodeType": "YulIf",
"src": "3446:50:19"
},
{
"nodeType": "YulAssignment",
"src": "3505:29:19",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3521:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3529:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3517:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3517:17:19"
},
"variableNames": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "3505:8:19"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3594:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3603:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3606:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3596:6:19"
},
"nodeType": "YulFunctionCall",
"src": "3596:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "3596:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3557:6:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3569:1:19",
"type": "",
"value": "5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3572:6:19"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "3565:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3565:14:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3553:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3553:27:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3582:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3549:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3549:38:19"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3589:3:19"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3546:2:19"
},
"nodeType": "YulFunctionCall",
"src": "3546:47:19"
},
"nodeType": "YulIf",
"src": "3543:67:19"
}
]
},
"name": "abi_decode_array_struct_MuniLayerData_calldata_dyn_calldata",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3296:6:19",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3304:3:19",
"type": ""
}
],
"returnVariables": [
{
"name": "arrayPos",
"nodeType": "YulTypedName",
"src": "3312:8:19",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3322:6:19",
"type": ""
}
],
"src": "3227:389:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3759:354:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3805:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3814:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3817:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3807:6:19"
},
"nodeType": "YulFunctionCall",
"src": "3807:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "3807:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3780:7:19"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3789:9:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3776:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3776:23:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3801:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3772:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3772:32:19"
},
"nodeType": "YulIf",
"src": "3769:52:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3830:37:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3857:9:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3844:12:19"
},
"nodeType": "YulFunctionCall",
"src": "3844:23:19"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3834:6:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3910:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3919:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3922:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3912:6:19"
},
"nodeType": "YulFunctionCall",
"src": "3912:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "3912:12:19"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3882:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3890:18:19",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3879:2:19"
},
"nodeType": "YulFunctionCall",
"src": "3879:30:19"
},
"nodeType": "YulIf",
"src": "3876:50:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3935:118:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4025:9:19"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4036:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4021:3:19"
},
"nodeType": "YulFunctionCall",
"src": "4021:22:19"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4045:7:19"
}
],
"functionName": {
"name": "abi_decode_array_struct_MuniLayerData_calldata_dyn_calldata",
"nodeType": "YulIdentifier",
"src": "3961:59:19"
},
"nodeType": "YulFunctionCall",
"src": "3961:92:19"
},
"variables": [
{
"name": "value0_1",
"nodeType": "YulTypedName",
"src": "3939:8:19",
"type": ""
},
{
"name": "value1_1",
"nodeType": "YulTypedName",
"src": "3949:8:19",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4062:18:19",
"value": {
"name": "value0_1",
"nodeType": "YulIdentifier",
"src": "4072:8:19"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4062:6:19"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4089:18:19",
"value": {
"name": "value1_1",
"nodeType": "YulIdentifier",
"src": "4099:8:19"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4089:6:19"
}
]
}
]
},
"name": "abi_decode_tuple_t_array$_t_struct$_MuniLayerData_$2918_calldata_ptr_$dyn_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3717:9:19",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3728:7:19",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3740:6:19",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3748:6:19",
"type": ""
}
],
"src": "3621:492:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4188:116:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4234:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4243:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4246:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4236:6:19"
},
"nodeType": "YulFunctionCall",
"src": "4236:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "4236:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4209:7:19"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4218:9:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4205:3:19"
},
"nodeType": "YulFunctionCall",
"src": "4205:23:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4230:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4201:3:19"
},
"nodeType": "YulFunctionCall",
"src": "4201:32:19"
},
"nodeType": "YulIf",
"src": "4198:52:19"
},
{
"nodeType": "YulAssignment",
"src": "4259:39:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4288:9:19"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "4269:18:19"
},
"nodeType": "YulFunctionCall",
"src": "4269:29:19"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4259:6:19"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4154:9:19",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4165:7:19",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4177:6:19",
"type": ""
}
],
"src": "4118:186:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4460:481:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4470:12:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4480:2:19",
"type": "",
"value": "32"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "4474:2:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4491:32:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4509:9:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4520:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4505:3:19"
},
"nodeType": "YulFunctionCall",
"src": "4505:18:19"
},
"variables": [
{
"name": "tail_1",
"nodeType": "YulTypedName",
"src": "4495:6:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4539:9:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4550:2:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4532:6:19"
},
"nodeType": "YulFunctionCall",
"src": "4532:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "4532:21:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4562:17:19",
"value": {
"name": "tail_1",
"nodeType": "YulIdentifier",
"src": "4573:6:19"
},
"variables": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4566:3:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4588:27:19",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4608:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4602:5:19"
},
"nodeType": "YulFunctionCall",
"src": "4602:13:19"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4592:6:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "tail_1",
"nodeType": "YulIdentifier",
"src": "4631:6:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4639:6:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4624:6:19"
},
"nodeType": "YulFunctionCall",
"src": "4624:22:19"
},
"nodeType": "YulExpressionStatement",
"src": "4624:22:19"
},
{
"nodeType": "YulAssignment",
"src": "4655:25:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4666:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4677:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4662:3:19"
},
"nodeType": "YulFunctionCall",
"src": "4662:18:19"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4655:3:19"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4689:29:19",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4707:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4715:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4703:3:19"
},
"nodeType": "YulFunctionCall",
"src": "4703:15:19"
},
"variables": [
{
"name": "srcPtr",
"nodeType": "YulTypedName",
"src": "4693:6:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4727:10:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4736:1:19",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4731:1:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4795:120:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4816:3:19"
},
{
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "4827:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4821:5:19"
},
"nodeType": "YulFunctionCall",
"src": "4821:13:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4809:6:19"
},
"nodeType": "YulFunctionCall",
"src": "4809:26:19"
},
"nodeType": "YulExpressionStatement",
"src": "4809:26:19"
},
{
"nodeType": "YulAssignment",
"src": "4848:19:19",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4859:3:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4864:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4855:3:19"
},
"nodeType": "YulFunctionCall",
"src": "4855:12:19"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4848:3:19"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4880:25:19",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "4894:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4902:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4890:3:19"
},
"nodeType": "YulFunctionCall",
"src": "4890:15:19"
},
"variableNames": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "4880:6:19"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4757:1:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4760:6:19"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4754:2:19"
},
"nodeType": "YulFunctionCall",
"src": "4754:13:19"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4768:18:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4770:14:19",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4779:1:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4782:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4775:3:19"
},
"nodeType": "YulFunctionCall",
"src": "4775:9:19"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4770:1:19"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4750:3:19",
"statements": []
},
"src": "4746:169:19"
},
{
"nodeType": "YulAssignment",
"src": "4924:11:19",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4932:3:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4924:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4429:9:19",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4440:6:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4451:4:19",
"type": ""
}
],
"src": "4309:632:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4978:95:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4995:1:19",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5002:3:19",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5007:10:19",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4998:3:19"
},
"nodeType": "YulFunctionCall",
"src": "4998:20:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4988:6:19"
},
"nodeType": "YulFunctionCall",
"src": "4988:31:19"
},
"nodeType": "YulExpressionStatement",
"src": "4988:31:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5035:1:19",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5038:4:19",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5028:6:19"
},
"nodeType": "YulFunctionCall",
"src": "5028:15:19"
},
"nodeType": "YulExpressionStatement",
"src": "5028:15:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5059:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5062:4:19",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5052:6:19"
},
"nodeType": "YulFunctionCall",
"src": "5052:15:19"
},
"nodeType": "YulExpressionStatement",
"src": "5052:15:19"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "4946:127:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5153:557:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5163:28:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5173:18:19",
"type": "",
"value": "0xffffffffffffffff"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "5167:2:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5218:22:19",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "5220:16:19"
},
"nodeType": "YulFunctionCall",
"src": "5220:18:19"
},
"nodeType": "YulExpressionStatement",
"src": "5220:18:19"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5206:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "5214:2:19"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5203:2:19"
},
"nodeType": "YulFunctionCall",
"src": "5203:14:19"
},
"nodeType": "YulIf",
"src": "5200:40:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "5249:17:19",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5263:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "5259:3:19"
},
"nodeType": "YulFunctionCall",
"src": "5259:7:19"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "5253:2:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5275:23:19",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5295:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5289:5:19"
},
"nodeType": "YulFunctionCall",
"src": "5289:9:19"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "5279:6:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5307:73:19",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5329:6:19"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5353:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5361:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5349:3:19"
},
"nodeType": "YulFunctionCall",
"src": "5349:15:19"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "5366:2:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5345:3:19"
},
"nodeType": "YulFunctionCall",
"src": "5345:24:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5371:2:19",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5341:3:19"
},
"nodeType": "YulFunctionCall",
"src": "5341:33:19"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "5376:2:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5337:3:19"
},
"nodeType": "YulFunctionCall",
"src": "5337:42:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5325:3:19"
},
"nodeType": "YulFunctionCall",
"src": "5325:55:19"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "5311:10:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5439:22:19",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "5441:16:19"
},
"nodeType": "YulFunctionCall",
"src": "5441:18:19"
},
"nodeType": "YulExpressionStatement",
"src": "5441:18:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "5398:10:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "5410:2:19"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5395:2:19"
},
"nodeType": "YulFunctionCall",
"src": "5395:18:19"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "5418:10:19"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5430:6:19"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5415:2:19"
},
"nodeType": "YulFunctionCall",
"src": "5415:22:19"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "5392:2:19"
},
"nodeType": "YulFunctionCall",
"src": "5392:46:19"
},
"nodeType": "YulIf",
"src": "5389:72:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5477:2:19",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "5481:10:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5470:6:19"
},
"nodeType": "YulFunctionCall",
"src": "5470:22:19"
},
"nodeType": "YulExpressionStatement",
"src": "5470:22:19"
},
{
"nodeType": "YulAssignment",
"src": "5501:15:19",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5510:6:19"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "5501:5:19"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5532:6:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5540:6:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5525:6:19"
},
"nodeType": "YulFunctionCall",
"src": "5525:22:19"
},
"nodeType": "YulExpressionStatement",
"src": "5525:22:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5585:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5594:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5597:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5587:6:19"
},
"nodeType": "YulFunctionCall",
"src": "5587:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "5587:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5566:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5571:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5562:3:19"
},
"nodeType": "YulFunctionCall",
"src": "5562:16:19"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5580:3:19"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5559:2:19"
},
"nodeType": "YulFunctionCall",
"src": "5559:25:19"
},
"nodeType": "YulIf",
"src": "5556:45:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5627:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5635:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5623:3:19"
},
"nodeType": "YulFunctionCall",
"src": "5623:17:19"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5642:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5647:6:19"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "5610:12:19"
},
"nodeType": "YulFunctionCall",
"src": "5610:44:19"
},
"nodeType": "YulExpressionStatement",
"src": "5610:44:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5678:6:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5686:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5674:3:19"
},
"nodeType": "YulFunctionCall",
"src": "5674:19:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5695:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5670:3:19"
},
"nodeType": "YulFunctionCall",
"src": "5670:30:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5702:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5663:6:19"
},
"nodeType": "YulFunctionCall",
"src": "5663:41:19"
},
"nodeType": "YulExpressionStatement",
"src": "5663:41:19"
}
]
},
"name": "abi_decode_available_length_string",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5122:3:19",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5127:6:19",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5135:3:19",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "5143:5:19",
"type": ""
}
],
"src": "5078:632:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5795:371:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5841:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5850:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5853:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5843:6:19"
},
"nodeType": "YulFunctionCall",
"src": "5843:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "5843:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5816:7:19"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5825:9:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5812:3:19"
},
"nodeType": "YulFunctionCall",
"src": "5812:23:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5837:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5808:3:19"
},
"nodeType": "YulFunctionCall",
"src": "5808:32:19"
},
"nodeType": "YulIf",
"src": "5805:52:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "5866:37:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5893:9:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5880:12:19"
},
"nodeType": "YulFunctionCall",
"src": "5880:23:19"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5870:6:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5946:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5955:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5958:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5948:6:19"
},
"nodeType": "YulFunctionCall",
"src": "5948:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "5948:12:19"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5918:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5926:18:19",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5915:2:19"
},
"nodeType": "YulFunctionCall",
"src": "5915:30:19"
},
"nodeType": "YulIf",
"src": "5912:50:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "5971:32:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5985:9:19"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5996:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5981:3:19"
},
"nodeType": "YulFunctionCall",
"src": "5981:22:19"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "5975:2:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6051:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6060:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6063:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6053:6:19"
},
"nodeType": "YulFunctionCall",
"src": "6053:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "6053:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6030:2:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6034:4:19",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6026:3:19"
},
"nodeType": "YulFunctionCall",
"src": "6026:13:19"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6041:7:19"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6022:3:19"
},
"nodeType": "YulFunctionCall",
"src": "6022:27:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6015:6:19"
},
"nodeType": "YulFunctionCall",
"src": "6015:35:19"
},
"nodeType": "YulIf",
"src": "6012:55:19"
},
{
"nodeType": "YulAssignment",
"src": "6076:84:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6125:2:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6129:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6121:3:19"
},
"nodeType": "YulFunctionCall",
"src": "6121:11:19"
},
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6147:2:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6134:12:19"
},
"nodeType": "YulFunctionCall",
"src": "6134:16:19"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6152:7:19"
}
],
"functionName": {
"name": "abi_decode_available_length_string",
"nodeType": "YulIdentifier",
"src": "6086:34:19"
},
"nodeType": "YulFunctionCall",
"src": "6086:74:19"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6076:6:19"
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5761:9:19",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5772:7:19",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5784:6:19",
"type": ""
}
],
"src": "5715:451:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6309:354:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6355:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6364:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6367:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6357:6:19"
},
"nodeType": "YulFunctionCall",
"src": "6357:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "6357:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6330:7:19"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6339:9:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6326:3:19"
},
"nodeType": "YulFunctionCall",
"src": "6326:23:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6351:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6322:3:19"
},
"nodeType": "YulFunctionCall",
"src": "6322:32:19"
},
"nodeType": "YulIf",
"src": "6319:52:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "6380:37:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6407:9:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6394:12:19"
},
"nodeType": "YulFunctionCall",
"src": "6394:23:19"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6384:6:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6460:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6469:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6472:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6462:6:19"
},
"nodeType": "YulFunctionCall",
"src": "6462:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "6462:12:19"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6432:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6440:18:19",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6429:2:19"
},
"nodeType": "YulFunctionCall",
"src": "6429:30:19"
},
"nodeType": "YulIf",
"src": "6426:50:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "6485:118:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6575:9:19"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6586:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6571:3:19"
},
"nodeType": "YulFunctionCall",
"src": "6571:22:19"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6595:7:19"
}
],
"functionName": {
"name": "abi_decode_array_struct_MuniLayerData_calldata_dyn_calldata",
"nodeType": "YulIdentifier",
"src": "6511:59:19"
},
"nodeType": "YulFunctionCall",
"src": "6511:92:19"
},
"variables": [
{
"name": "value0_1",
"nodeType": "YulTypedName",
"src": "6489:8:19",
"type": ""
},
{
"name": "value1_1",
"nodeType": "YulTypedName",
"src": "6499:8:19",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6612:18:19",
"value": {
"name": "value0_1",
"nodeType": "YulIdentifier",
"src": "6622:8:19"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6612:6:19"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6639:18:19",
"value": {
"name": "value1_1",
"nodeType": "YulIdentifier",
"src": "6649:8:19"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6639:6:19"
}
]
}
]
},
"name": "abi_decode_tuple_t_array$_t_struct$_MuniColorData_$2923_calldata_ptr_$dyn_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6267:9:19",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6278:7:19",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6290:6:19",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6298:6:19",
"type": ""
}
],
"src": "6171:492:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6752:263:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6798:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6807:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6810:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6800:6:19"
},
"nodeType": "YulFunctionCall",
"src": "6800:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "6800:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6773:7:19"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6782:9:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6769:3:19"
},
"nodeType": "YulFunctionCall",
"src": "6769:23:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6794:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6765:3:19"
},
"nodeType": "YulFunctionCall",
"src": "6765:32:19"
},
"nodeType": "YulIf",
"src": "6762:52:19"
},
{
"nodeType": "YulAssignment",
"src": "6823:39:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6852:9:19"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "6833:18:19"
},
"nodeType": "YulFunctionCall",
"src": "6833:29:19"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6823:6:19"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6871:45:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6901:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6912:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6897:3:19"
},
"nodeType": "YulFunctionCall",
"src": "6897:18:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6884:12:19"
},
"nodeType": "YulFunctionCall",
"src": "6884:32:19"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6875:5:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6969:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6978:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6981:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6971:6:19"
},
"nodeType": "YulFunctionCall",
"src": "6971:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "6971:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6938:5:19"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6959:5:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6952:6:19"
},
"nodeType": "YulFunctionCall",
"src": "6952:13:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6945:6:19"
},
"nodeType": "YulFunctionCall",
"src": "6945:21:19"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6935:2:19"
},
"nodeType": "YulFunctionCall",
"src": "6935:32:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6928:6:19"
},
"nodeType": "YulFunctionCall",
"src": "6928:40:19"
},
"nodeType": "YulIf",
"src": "6925:60:19"
},
{
"nodeType": "YulAssignment",
"src": "6994:15:19",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "7004:5:19"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6994:6:19"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6710:9:19",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6721:7:19",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6733:6:19",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6741:6:19",
"type": ""
}
],
"src": "6668:347:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7150:537:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7197:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7206:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7209:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7199:6:19"
},
"nodeType": "YulFunctionCall",
"src": "7199:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "7199:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7171:7:19"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7180:9:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7167:3:19"
},
"nodeType": "YulFunctionCall",
"src": "7167:23:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7192:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7163:3:19"
},
"nodeType": "YulFunctionCall",
"src": "7163:33:19"
},
"nodeType": "YulIf",
"src": "7160:53:19"
},
{
"nodeType": "YulAssignment",
"src": "7222:39:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7251:9:19"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "7232:18:19"
},
"nodeType": "YulFunctionCall",
"src": "7232:29:19"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7222:6:19"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7270:48:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7303:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7314:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7299:3:19"
},
"nodeType": "YulFunctionCall",
"src": "7299:18:19"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "7280:18:19"
},
"nodeType": "YulFunctionCall",
"src": "7280:38:19"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "7270:6:19"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7327:42:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7354:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7365:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7350:3:19"
},
"nodeType": "YulFunctionCall",
"src": "7350:18:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7337:12:19"
},
"nodeType": "YulFunctionCall",
"src": "7337:32:19"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "7327:6:19"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7378:46:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7409:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7420:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7405:3:19"
},
"nodeType": "YulFunctionCall",
"src": "7405:18:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7392:12:19"
},
"nodeType": "YulFunctionCall",
"src": "7392:32:19"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7382:6:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7467:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7476:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7479:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7469:6:19"
},
"nodeType": "YulFunctionCall",
"src": "7469:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "7469:12:19"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7439:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7447:18:19",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7436:2:19"
},
"nodeType": "YulFunctionCall",
"src": "7436:30:19"
},
"nodeType": "YulIf",
"src": "7433:50:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "7492:32:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7506:9:19"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7517:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7502:3:19"
},
"nodeType": "YulFunctionCall",
"src": "7502:22:19"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "7496:2:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7572:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7581:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7584:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7574:6:19"
},
"nodeType": "YulFunctionCall",
"src": "7574:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "7574:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "7551:2:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7555:4:19",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7547:3:19"
},
"nodeType": "YulFunctionCall",
"src": "7547:13:19"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7562:7:19"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7543:3:19"
},
"nodeType": "YulFunctionCall",
"src": "7543:27:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7536:6:19"
},
"nodeType": "YulFunctionCall",
"src": "7536:35:19"
},
"nodeType": "YulIf",
"src": "7533:55:19"
},
{
"nodeType": "YulAssignment",
"src": "7597:84:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "7646:2:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7650:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7642:3:19"
},
"nodeType": "YulFunctionCall",
"src": "7642:11:19"
},
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "7668:2:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7655:12:19"
},
"nodeType": "YulFunctionCall",
"src": "7655:16:19"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7673:7:19"
}
],
"functionName": {
"name": "abi_decode_available_length_string",
"nodeType": "YulIdentifier",
"src": "7607:34:19"
},
"nodeType": "YulFunctionCall",
"src": "7607:74:19"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "7597:6:19"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7092:9:19",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7103:7:19",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7115:6:19",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7123:6:19",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "7131:6:19",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "7139:6:19",
"type": ""
}
],
"src": "7020:667:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7795:265:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7841:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7850:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7853:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7843:6:19"
},
"nodeType": "YulFunctionCall",
"src": "7843:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "7843:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7816:7:19"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7825:9:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7812:3:19"
},
"nodeType": "YulFunctionCall",
"src": "7812:23:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7837:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7808:3:19"
},
"nodeType": "YulFunctionCall",
"src": "7808:32:19"
},
"nodeType": "YulIf",
"src": "7805:52:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "7866:37:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7893:9:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7880:12:19"
},
"nodeType": "YulFunctionCall",
"src": "7880:23:19"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7870:6:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7946:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7955:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7958:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7948:6:19"
},
"nodeType": "YulFunctionCall",
"src": "7948:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "7948:12:19"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7918:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7926:18:19",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7915:2:19"
},
"nodeType": "YulFunctionCall",
"src": "7915:30:19"
},
"nodeType": "YulIf",
"src": "7912:50:19"
},
{
"nodeType": "YulAssignment",
"src": "7971:83:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8026:9:19"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8037:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8022:3:19"
},
"nodeType": "YulFunctionCall",
"src": "8022:22:19"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8046:7:19"
}
],
"functionName": {
"name": "abi_decode_struct_MuniLayerData_calldata",
"nodeType": "YulIdentifier",
"src": "7981:40:19"
},
"nodeType": "YulFunctionCall",
"src": "7981:73:19"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7971:6:19"
}
]
}
]
},
"name": "abi_decode_tuple_t_struct$_MuniColorData_$2923_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7761:9:19",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7772:7:19",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7784:6:19",
"type": ""
}
],
"src": "7692:368:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8152:173:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8198:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8207:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8210:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8200:6:19"
},
"nodeType": "YulFunctionCall",
"src": "8200:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "8200:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8173:7:19"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8182:9:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8169:3:19"
},
"nodeType": "YulFunctionCall",
"src": "8169:23:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8194:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8165:3:19"
},
"nodeType": "YulFunctionCall",
"src": "8165:32:19"
},
"nodeType": "YulIf",
"src": "8162:52:19"
},
{
"nodeType": "YulAssignment",
"src": "8223:39:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8252:9:19"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "8233:18:19"
},
"nodeType": "YulFunctionCall",
"src": "8233:29:19"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8223:6:19"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8271:48:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8304:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8315:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8300:3:19"
},
"nodeType": "YulFunctionCall",
"src": "8300:18:19"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "8281:18:19"
},
"nodeType": "YulFunctionCall",
"src": "8281:38:19"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "8271:6:19"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8110:9:19",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8121:7:19",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8133:6:19",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "8141:6:19",
"type": ""
}
],
"src": "8065:260:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8385:325:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8395:22:19",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8409:1:19",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "8412:4:19"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "8405:3:19"
},
"nodeType": "YulFunctionCall",
"src": "8405:12:19"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8395:6:19"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8426:38:19",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "8456:4:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8462:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "8452:3:19"
},
"nodeType": "YulFunctionCall",
"src": "8452:12:19"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "8430:18:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8503:31:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8505:27:19",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8519:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8527:4:19",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "8515:3:19"
},
"nodeType": "YulFunctionCall",
"src": "8515:17:19"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8505:6:19"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "8483:18:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8476:6:19"
},
"nodeType": "YulFunctionCall",
"src": "8476:26:19"
},
"nodeType": "YulIf",
"src": "8473:61:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8593:111:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8614:1:19",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8621:3:19",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8626:10:19",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "8617:3:19"
},
"nodeType": "YulFunctionCall",
"src": "8617:20:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8607:6:19"
},
"nodeType": "YulFunctionCall",
"src": "8607:31:19"
},
"nodeType": "YulExpressionStatement",
"src": "8607:31:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8658:1:19",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8661:4:19",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8651:6:19"
},
"nodeType": "YulFunctionCall",
"src": "8651:15:19"
},
"nodeType": "YulExpressionStatement",
"src": "8651:15:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8686:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8689:4:19",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8679:6:19"
},
"nodeType": "YulFunctionCall",
"src": "8679:15:19"
},
"nodeType": "YulExpressionStatement",
"src": "8679:15:19"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "8549:18:19"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8572:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8580:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8569:2:19"
},
"nodeType": "YulFunctionCall",
"src": "8569:14:19"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "8546:2:19"
},
"nodeType": "YulFunctionCall",
"src": "8546:38:19"
},
"nodeType": "YulIf",
"src": "8543:161:19"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "8365:4:19",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8374:6:19",
"type": ""
}
],
"src": "8330:380:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8889:234:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8906:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8917:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8899:6:19"
},
"nodeType": "YulFunctionCall",
"src": "8899:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "8899:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8940:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8951:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8936:3:19"
},
"nodeType": "YulFunctionCall",
"src": "8936:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8956:2:19",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8929:6:19"
},
"nodeType": "YulFunctionCall",
"src": "8929:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "8929:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8979:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8990:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8975:3:19"
},
"nodeType": "YulFunctionCall",
"src": "8975:18:19"
},
{
"hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8995:34:19",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8968:6:19"
},
"nodeType": "YulFunctionCall",
"src": "8968:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "8968:62:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9050:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9061:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9046:3:19"
},
"nodeType": "YulFunctionCall",
"src": "9046:18:19"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9066:14:19",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9039:6:19"
},
"nodeType": "YulFunctionCall",
"src": "9039:42:19"
},
"nodeType": "YulExpressionStatement",
"src": "9039:42:19"
},
{
"nodeType": "YulAssignment",
"src": "9090:27:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9102:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9113:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9098:3:19"
},
"nodeType": "YulFunctionCall",
"src": "9098:19:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9090:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8866:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8880:4:19",
"type": ""
}
],
"src": "8715:408:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9302:223:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9319:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9330:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9312:6:19"
},
"nodeType": "YulFunctionCall",
"src": "9312:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "9312:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9353:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9364:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9349:3:19"
},
"nodeType": "YulFunctionCall",
"src": "9349:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9369:2:19",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9342:6:19"
},
"nodeType": "YulFunctionCall",
"src": "9342:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "9342:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9392:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9403:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9388:3:19"
},
"nodeType": "YulFunctionCall",
"src": "9388:18:19"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9408:34:19",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9381:6:19"
},
"nodeType": "YulFunctionCall",
"src": "9381:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "9381:62:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9463:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9474:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9459:3:19"
},
"nodeType": "YulFunctionCall",
"src": "9459:18:19"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9479:3:19",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9452:6:19"
},
"nodeType": "YulFunctionCall",
"src": "9452:31:19"
},
"nodeType": "YulExpressionStatement",
"src": "9452:31:19"
},
{
"nodeType": "YulAssignment",
"src": "9492:27:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9504:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9515:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9500:3:19"
},
"nodeType": "YulFunctionCall",
"src": "9500:19:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9492:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9279:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9293:4:19",
"type": ""
}
],
"src": "9128:397:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9704:246:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9721:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9732:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9714:6:19"
},
"nodeType": "YulFunctionCall",
"src": "9714:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "9714:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9755:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9766:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9751:3:19"
},
"nodeType": "YulFunctionCall",
"src": "9751:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9771:2:19",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9744:6:19"
},
"nodeType": "YulFunctionCall",
"src": "9744:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "9744:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9794:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9805:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9790:3:19"
},
"nodeType": "YulFunctionCall",
"src": "9790:18:19"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9810:34:19",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9783:6:19"
},
"nodeType": "YulFunctionCall",
"src": "9783:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "9783:62:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9865:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9876:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9861:3:19"
},
"nodeType": "YulFunctionCall",
"src": "9861:18:19"
},
{
"hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9881:26:19",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9854:6:19"
},
"nodeType": "YulFunctionCall",
"src": "9854:54:19"
},
"nodeType": "YulExpressionStatement",
"src": "9854:54:19"
},
{
"nodeType": "YulAssignment",
"src": "9917:27:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9929:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9940:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9925:3:19"
},
"nodeType": "YulFunctionCall",
"src": "9925:19:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9917:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9681:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9695:4:19",
"type": ""
}
],
"src": "9530:420:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10129:182:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10146:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10157:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10139:6:19"
},
"nodeType": "YulFunctionCall",
"src": "10139:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "10139:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10180:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10191:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10176:3:19"
},
"nodeType": "YulFunctionCall",
"src": "10176:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10196:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10169:6:19"
},
"nodeType": "YulFunctionCall",
"src": "10169:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "10169:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10219:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10230:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10215:3:19"
},
"nodeType": "YulFunctionCall",
"src": "10215:18:19"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10235:34:19",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10208:6:19"
},
"nodeType": "YulFunctionCall",
"src": "10208:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "10208:62:19"
},
{
"nodeType": "YulAssignment",
"src": "10279:26:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10291:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10302:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10287:3:19"
},
"nodeType": "YulFunctionCall",
"src": "10287:18:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10279:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10106:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10120:4:19",
"type": ""
}
],
"src": "9955:356:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10490:168:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10507:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10518:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10500:6:19"
},
"nodeType": "YulFunctionCall",
"src": "10500:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "10500:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10541:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10552:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10537:3:19"
},
"nodeType": "YulFunctionCall",
"src": "10537:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10557:2:19",
"type": "",
"value": "18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10530:6:19"
},
"nodeType": "YulFunctionCall",
"src": "10530:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "10530:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10580:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10591:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10576:3:19"
},
"nodeType": "YulFunctionCall",
"src": "10576:18:19"
},
{
"hexValue": "436f6e7472616374206973206c6f636b6564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10596:20:19",
"type": "",
"value": "Contract is locked"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10569:6:19"
},
"nodeType": "YulFunctionCall",
"src": "10569:48:19"
},
"nodeType": "YulExpressionStatement",
"src": "10569:48:19"
},
{
"nodeType": "YulAssignment",
"src": "10626:26:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10638:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10649:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10634:3:19"
},
"nodeType": "YulFunctionCall",
"src": "10634:18:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10626:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e9e110ada839c515ee0de3512fedbde995afbcedf85ef0d9d69e33c5639c2706__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10467:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10481:4:19",
"type": ""
}
],
"src": "10316:342:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10752:427:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10762:51:19",
"value": {
"arguments": [
{
"name": "ptr_to_tail",
"nodeType": "YulIdentifier",
"src": "10801:11:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "10788:12:19"
},
"nodeType": "YulFunctionCall",
"src": "10788:25:19"
},
"variables": [
{
"name": "rel_offset_of_tail",
"nodeType": "YulTypedName",
"src": "10766:18:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10902:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10911:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10914:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10904:6:19"
},
"nodeType": "YulFunctionCall",
"src": "10904:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "10904:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "rel_offset_of_tail",
"nodeType": "YulIdentifier",
"src": "10836:18:19"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [],
"functionName": {
"name": "calldatasize",
"nodeType": "YulIdentifier",
"src": "10864:12:19"
},
"nodeType": "YulFunctionCall",
"src": "10864:14:19"
},
{
"name": "base_ref",
"nodeType": "YulIdentifier",
"src": "10880:8:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10860:3:19"
},
"nodeType": "YulFunctionCall",
"src": "10860:29:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10895:2:19",
"type": "",
"value": "30"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "10891:3:19"
},
"nodeType": "YulFunctionCall",
"src": "10891:7:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10856:3:19"
},
"nodeType": "YulFunctionCall",
"src": "10856:43:19"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "10832:3:19"
},
"nodeType": "YulFunctionCall",
"src": "10832:68:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10825:6:19"
},
"nodeType": "YulFunctionCall",
"src": "10825:76:19"
},
"nodeType": "YulIf",
"src": "10822:96:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10927:47:19",
"value": {
"arguments": [
{
"name": "base_ref",
"nodeType": "YulIdentifier",
"src": "10945:8:19"
},
{
"name": "rel_offset_of_tail",
"nodeType": "YulIdentifier",
"src": "10955:18:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10941:3:19"
},
"nodeType": "YulFunctionCall",
"src": "10941:33:19"
},
"variables": [
{
"name": "addr_1",
"nodeType": "YulTypedName",
"src": "10931:6:19",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10983:30:19",
"value": {
"arguments": [
{
"name": "addr_1",
"nodeType": "YulIdentifier",
"src": "11006:6:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "10993:12:19"
},
"nodeType": "YulFunctionCall",
"src": "10993:20:19"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10983:6:19"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11056:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11065:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11068:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11058:6:19"
},
"nodeType": "YulFunctionCall",
"src": "11058:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "11058:12:19"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11028:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11036:18:19",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "11025:2:19"
},
"nodeType": "YulFunctionCall",
"src": "11025:30:19"
},
"nodeType": "YulIf",
"src": "11022:50:19"
},
{
"nodeType": "YulAssignment",
"src": "11081:25:19",
"value": {
"arguments": [
{
"name": "addr_1",
"nodeType": "YulIdentifier",
"src": "11093:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11101:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11089:3:19"
},
"nodeType": "YulFunctionCall",
"src": "11089:17:19"
},
"variableNames": [
{
"name": "addr",
"nodeType": "YulIdentifier",
"src": "11081:4:19"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11157:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11166:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11169:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11159:6:19"
},
"nodeType": "YulFunctionCall",
"src": "11159:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "11159:12:19"
}
]
},
"condition": {
"arguments": [
{
"name": "addr",
"nodeType": "YulIdentifier",
"src": "11122:4:19"
},
{
"arguments": [
{
"arguments": [],
"functionName": {
"name": "calldatasize",
"nodeType": "YulIdentifier",
"src": "11132:12:19"
},
"nodeType": "YulFunctionCall",
"src": "11132:14:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11148:6:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11128:3:19"
},
"nodeType": "YulFunctionCall",
"src": "11128:27:19"
}
],
"functionName": {
"name": "sgt",
"nodeType": "YulIdentifier",
"src": "11118:3:19"
},
"nodeType": "YulFunctionCall",
"src": "11118:38:19"
},
"nodeType": "YulIf",
"src": "11115:58:19"
}
]
},
"name": "access_calldata_tail_string_calldata",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base_ref",
"nodeType": "YulTypedName",
"src": "10709:8:19",
"type": ""
},
{
"name": "ptr_to_tail",
"nodeType": "YulTypedName",
"src": "10719:11:19",
"type": ""
}
],
"returnVariables": [
{
"name": "addr",
"nodeType": "YulTypedName",
"src": "10735:4:19",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10741:6:19",
"type": ""
}
],
"src": "10663:516:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11240:65:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11257:1:19",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "11260:3:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11250:6:19"
},
"nodeType": "YulFunctionCall",
"src": "11250:14:19"
},
"nodeType": "YulExpressionStatement",
"src": "11250:14:19"
},
{
"nodeType": "YulAssignment",
"src": "11273:26:19",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11291:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11294:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "11281:9:19"
},
"nodeType": "YulFunctionCall",
"src": "11281:18:19"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "11273:4:19"
}
]
}
]
},
"name": "array_dataslot_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "11223:3:19",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "11231:4:19",
"type": ""
}
],
"src": "11184:121:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11391:464:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11424:425:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11438:11:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "11448:1:19",
"type": "",
"value": "0"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "11442:2:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "11469:2:19"
},
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "11473:5:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11462:6:19"
},
"nodeType": "YulFunctionCall",
"src": "11462:17:19"
},
"nodeType": "YulExpressionStatement",
"src": "11462:17:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "11492:31:19",
"value": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "11514:2:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11518:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "11504:9:19"
},
"nodeType": "YulFunctionCall",
"src": "11504:19:19"
},
"variables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "11496:4:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "11536:57:19",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "11559:4:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11569:1:19",
"type": "",
"value": "5"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "11576:10:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11588:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11572:3:19"
},
"nodeType": "YulFunctionCall",
"src": "11572:19:19"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "11565:3:19"
},
"nodeType": "YulFunctionCall",
"src": "11565:27:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11555:3:19"
},
"nodeType": "YulFunctionCall",
"src": "11555:38:19"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "11540:11:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11630:23:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11632:19:19",
"value": {
"name": "data",
"nodeType": "YulIdentifier",
"src": "11647:4:19"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "11632:11:19"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "11612:10:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11624:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "11609:2:19"
},
"nodeType": "YulFunctionCall",
"src": "11609:20:19"
},
"nodeType": "YulIf",
"src": "11606:47:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "11666:41:19",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "11680:4:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11690:1:19",
"type": "",
"value": "5"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "11697:3:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11702:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11693:3:19"
},
"nodeType": "YulFunctionCall",
"src": "11693:12:19"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "11686:3:19"
},
"nodeType": "YulFunctionCall",
"src": "11686:20:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11676:3:19"
},
"nodeType": "YulFunctionCall",
"src": "11676:31:19"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "11670:2:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "11720:24:19",
"value": {
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "11733:11:19"
},
"variables": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "11724:5:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11818:21:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "11827:5:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "11834:2:19"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "11820:6:19"
},
"nodeType": "YulFunctionCall",
"src": "11820:17:19"
},
"nodeType": "YulExpressionStatement",
"src": "11820:17:19"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "11768:5:19"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "11775:2:19"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "11765:2:19"
},
"nodeType": "YulFunctionCall",
"src": "11765:13:19"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "11779:26:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11781:22:19",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "11794:5:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11801:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11790:3:19"
},
"nodeType": "YulFunctionCall",
"src": "11790:13:19"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "11781:5:19"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "11761:3:19",
"statements": []
},
"src": "11757:82:19"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "11407:3:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11412:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "11404:2:19"
},
"nodeType": "YulFunctionCall",
"src": "11404:11:19"
},
"nodeType": "YulIf",
"src": "11401:448:19"
}
]
},
"name": "clean_up_bytearray_end_slots_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "11363:5:19",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "11370:3:19",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "11375:10:19",
"type": ""
}
],
"src": "11310:545:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11945:81:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11955:65:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "11970:4:19"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11988:1:19",
"type": "",
"value": "3"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "11991:3:19"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "11984:3:19"
},
"nodeType": "YulFunctionCall",
"src": "11984:11:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12001:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "11997:3:19"
},
"nodeType": "YulFunctionCall",
"src": "11997:6:19"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "11980:3:19"
},
"nodeType": "YulFunctionCall",
"src": "11980:24:19"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "11976:3:19"
},
"nodeType": "YulFunctionCall",
"src": "11976:29:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11966:3:19"
},
"nodeType": "YulFunctionCall",
"src": "11966:40:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12012:1:19",
"type": "",
"value": "1"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "12015:3:19"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "12008:3:19"
},
"nodeType": "YulFunctionCall",
"src": "12008:11:19"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "11963:2:19"
},
"nodeType": "YulFunctionCall",
"src": "11963:57:19"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "11955:4:19"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "11922:4:19",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "11928:3:19",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "11936:4:19",
"type": ""
}
],
"src": "11860:166:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12118:1103:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "12159:22:19",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "12161:16:19"
},
"nodeType": "YulFunctionCall",
"src": "12161:18:19"
},
"nodeType": "YulExpressionStatement",
"src": "12161:18:19"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "12134:3:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12139:18:19",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "12131:2:19"
},
"nodeType": "YulFunctionCall",
"src": "12131:27:19"
},
"nodeType": "YulIf",
"src": "12128:53:19"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "12234:4:19"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "12272:4:19"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "12266:5:19"
},
"nodeType": "YulFunctionCall",
"src": "12266:11:19"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "12240:25:19"
},
"nodeType": "YulFunctionCall",
"src": "12240:38:19"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "12280:3:19"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_string_storage",
"nodeType": "YulIdentifier",
"src": "12190:43:19"
},
"nodeType": "YulFunctionCall",
"src": "12190:94:19"
},
"nodeType": "YulExpressionStatement",
"src": "12190:94:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "12293:18:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "12310:1:19",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "12297:9:19",
"type": ""
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "12354:609:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "12368:32:19",
"value": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "12387:3:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12396:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "12392:3:19"
},
"nodeType": "YulFunctionCall",
"src": "12392:7:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12383:3:19"
},
"nodeType": "YulFunctionCall",
"src": "12383:17:19"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "12372:7:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "12413:49:19",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "12457:4:19"
}
],
"functionName": {
"name": "array_dataslot_string_storage",
"nodeType": "YulIdentifier",
"src": "12427:29:19"
},
"nodeType": "YulFunctionCall",
"src": "12427:35:19"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "12417:6:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "12475:18:19",
"value": {
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "12484:9:19"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "12479:1:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12563:172:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "12588:6:19"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "12613:3:19"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "12618:9:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12609:3:19"
},
"nodeType": "YulFunctionCall",
"src": "12609:19:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "12596:12:19"
},
"nodeType": "YulFunctionCall",
"src": "12596:33:19"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "12581:6:19"
},
"nodeType": "YulFunctionCall",
"src": "12581:49:19"
},
"nodeType": "YulExpressionStatement",
"src": "12581:49:19"
},
{
"nodeType": "YulAssignment",
"src": "12647:24:19",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "12661:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12669:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12657:3:19"
},
"nodeType": "YulFunctionCall",
"src": "12657:14:19"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "12647:6:19"
}
]
},
{
"nodeType": "YulAssignment",
"src": "12688:33:19",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "12705:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12716:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12701:3:19"
},
"nodeType": "YulFunctionCall",
"src": "12701:20:19"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "12688:9:19"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "12517:1:19"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "12520:7:19"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "12514:2:19"
},
"nodeType": "YulFunctionCall",
"src": "12514:14:19"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "12529:21:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12531:17:19",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "12540:1:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12543:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12536:3:19"
},
"nodeType": "YulFunctionCall",
"src": "12536:12:19"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "12531:1:19"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "12510:3:19",
"statements": []
},
"src": "12506:229:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12780:127:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "12805:6:19"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "12834:3:19"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "12839:9:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12830:3:19"
},
"nodeType": "YulFunctionCall",
"src": "12830:19:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "12817:12:19"
},
"nodeType": "YulFunctionCall",
"src": "12817:33:19"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12868:1:19",
"type": "",
"value": "3"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "12871:3:19"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "12864:3:19"
},
"nodeType": "YulFunctionCall",
"src": "12864:11:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12877:3:19",
"type": "",
"value": "248"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12860:3:19"
},
"nodeType": "YulFunctionCall",
"src": "12860:21:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12887:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "12883:3:19"
},
"nodeType": "YulFunctionCall",
"src": "12883:6:19"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "12856:3:19"
},
"nodeType": "YulFunctionCall",
"src": "12856:34:19"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "12852:3:19"
},
"nodeType": "YulFunctionCall",
"src": "12852:39:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12813:3:19"
},
"nodeType": "YulFunctionCall",
"src": "12813:79:19"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "12798:6:19"
},
"nodeType": "YulFunctionCall",
"src": "12798:95:19"
},
"nodeType": "YulExpressionStatement",
"src": "12798:95:19"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "12754:7:19"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "12763:3:19"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "12751:2:19"
},
"nodeType": "YulFunctionCall",
"src": "12751:16:19"
},
"nodeType": "YulIf",
"src": "12748:159:19"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "12927:4:19"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12941:1:19",
"type": "",
"value": "1"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "12944:3:19"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "12937:3:19"
},
"nodeType": "YulFunctionCall",
"src": "12937:11:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12950:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12933:3:19"
},
"nodeType": "YulFunctionCall",
"src": "12933:19:19"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "12920:6:19"
},
"nodeType": "YulFunctionCall",
"src": "12920:33:19"
},
"nodeType": "YulExpressionStatement",
"src": "12920:33:19"
}
]
},
"nodeType": "YulCase",
"src": "12347:616:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "12352:1:19",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "12980:235:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "12994:14:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "13007:1:19",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12998:5:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "13040:74:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13058:42:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "13084:3:19"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "13089:9:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13080:3:19"
},
"nodeType": "YulFunctionCall",
"src": "13080:19:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "13067:12:19"
},
"nodeType": "YulFunctionCall",
"src": "13067:33:19"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13058:5:19"
}
]
}
]
},
"condition": {
"name": "len",
"nodeType": "YulIdentifier",
"src": "13024:3:19"
},
"nodeType": "YulIf",
"src": "13021:93:19"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "13134:4:19"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13193:5:19"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "13200:3:19"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "13140:52:19"
},
"nodeType": "YulFunctionCall",
"src": "13140:64:19"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "13127:6:19"
},
"nodeType": "YulFunctionCall",
"src": "13127:78:19"
},
"nodeType": "YulExpressionStatement",
"src": "13127:78:19"
}
]
},
"nodeType": "YulCase",
"src": "12972:243:19",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "12330:3:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12335:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "12327:2:19"
},
"nodeType": "YulFunctionCall",
"src": "12327:11:19"
},
"nodeType": "YulSwitch",
"src": "12320:895:19"
}
]
},
"name": "copy_byte_array_to_storage_from_string_calldata_to_string",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "12098:4:19",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "12104:3:19",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "12109:3:19",
"type": ""
}
],
"src": "12031:1190:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13334:1530:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "13344:84:19",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13415:5:19"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13422:5:19"
}
],
"functionName": {
"name": "access_calldata_tail_string_calldata",
"nodeType": "YulIdentifier",
"src": "13378:36:19"
},
"nodeType": "YulFunctionCall",
"src": "13378:50:19"
},
"variables": [
{
"name": "memberValue",
"nodeType": "YulTypedName",
"src": "13348:11:19",
"type": ""
},
{
"name": "memberValue_1",
"nodeType": "YulTypedName",
"src": "13361:13:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "13478:22:19",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "13480:16:19"
},
"nodeType": "YulFunctionCall",
"src": "13480:18:19"
},
"nodeType": "YulExpressionStatement",
"src": "13480:18:19"
}
]
},
"condition": {
"arguments": [
{
"name": "memberValue_1",
"nodeType": "YulIdentifier",
"src": "13443:13:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13458:18:19",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "13440:2:19"
},
"nodeType": "YulFunctionCall",
"src": "13440:37:19"
},
"nodeType": "YulIf",
"src": "13437:63:19"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "13553:4:19"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "13591:4:19"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "13585:5:19"
},
"nodeType": "YulFunctionCall",
"src": "13585:11:19"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "13559:25:19"
},
"nodeType": "YulFunctionCall",
"src": "13559:38:19"
},
{
"name": "memberValue_1",
"nodeType": "YulIdentifier",
"src": "13599:13:19"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_string_storage",
"nodeType": "YulIdentifier",
"src": "13509:43:19"
},
"nodeType": "YulFunctionCall",
"src": "13509:104:19"
},
"nodeType": "YulExpressionStatement",
"src": "13509:104:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "13622:18:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "13639:1:19",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "13626:9:19",
"type": ""
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "13693:665:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "13707:42:19",
"value": {
"arguments": [
{
"name": "memberValue_1",
"nodeType": "YulIdentifier",
"src": "13726:13:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13745:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "13741:3:19"
},
"nodeType": "YulFunctionCall",
"src": "13741:7:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "13722:3:19"
},
"nodeType": "YulFunctionCall",
"src": "13722:27:19"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "13711:7:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "13762:49:19",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "13806:4:19"
}
],
"functionName": {
"name": "array_dataslot_string_storage",
"nodeType": "YulIdentifier",
"src": "13776:29:19"
},
"nodeType": "YulFunctionCall",
"src": "13776:35:19"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "13766:6:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "13824:18:19",
"value": {
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "13833:9:19"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "13828:1:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "13912:180:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "13937:6:19"
},
{
"arguments": [
{
"arguments": [
{
"name": "memberValue",
"nodeType": "YulIdentifier",
"src": "13962:11:19"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "13975:9:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13958:3:19"
},
"nodeType": "YulFunctionCall",
"src": "13958:27:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "13945:12:19"
},
"nodeType": "YulFunctionCall",
"src": "13945:41:19"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "13930:6:19"
},
"nodeType": "YulFunctionCall",
"src": "13930:57:19"
},
"nodeType": "YulExpressionStatement",
"src": "13930:57:19"
},
{
"nodeType": "YulAssignment",
"src": "14004:24:19",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "14018:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14026:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14014:3:19"
},
"nodeType": "YulFunctionCall",
"src": "14014:14:19"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "14004:6:19"
}
]
},
{
"nodeType": "YulAssignment",
"src": "14045:33:19",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "14062:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14073:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14058:3:19"
},
"nodeType": "YulFunctionCall",
"src": "14058:20:19"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "14045:9:19"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "13866:1:19"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "13869:7:19"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "13863:2:19"
},
"nodeType": "YulFunctionCall",
"src": "13863:14:19"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "13878:21:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13880:17:19",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "13889:1:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13892:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13885:3:19"
},
"nodeType": "YulFunctionCall",
"src": "13885:12:19"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "13880:1:19"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "13859:3:19",
"statements": []
},
"src": "13855:237:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14147:145:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "14172:6:19"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memberValue",
"nodeType": "YulIdentifier",
"src": "14201:11:19"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "14214:9:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14197:3:19"
},
"nodeType": "YulFunctionCall",
"src": "14197:27:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "14184:12:19"
},
"nodeType": "YulFunctionCall",
"src": "14184:41:19"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14243:1:19",
"type": "",
"value": "3"
},
{
"name": "memberValue_1",
"nodeType": "YulIdentifier",
"src": "14246:13:19"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "14239:3:19"
},
"nodeType": "YulFunctionCall",
"src": "14239:21:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14262:3:19",
"type": "",
"value": "248"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "14235:3:19"
},
"nodeType": "YulFunctionCall",
"src": "14235:31:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14272:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "14268:3:19"
},
"nodeType": "YulFunctionCall",
"src": "14268:6:19"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "14231:3:19"
},
"nodeType": "YulFunctionCall",
"src": "14231:44:19"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "14227:3:19"
},
"nodeType": "YulFunctionCall",
"src": "14227:49:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "14180:3:19"
},
"nodeType": "YulFunctionCall",
"src": "14180:97:19"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "14165:6:19"
},
"nodeType": "YulFunctionCall",
"src": "14165:113:19"
},
"nodeType": "YulExpressionStatement",
"src": "14165:113:19"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "14111:7:19"
},
{
"name": "memberValue_1",
"nodeType": "YulIdentifier",
"src": "14120:13:19"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "14108:2:19"
},
"nodeType": "YulFunctionCall",
"src": "14108:26:19"
},
"nodeType": "YulIf",
"src": "14105:187:19"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "14312:4:19"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14326:1:19",
"type": "",
"value": "1"
},
{
"name": "memberValue_1",
"nodeType": "YulIdentifier",
"src": "14329:13:19"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "14322:3:19"
},
"nodeType": "YulFunctionCall",
"src": "14322:21:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14345:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14318:3:19"
},
"nodeType": "YulFunctionCall",
"src": "14318:29:19"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "14305:6:19"
},
"nodeType": "YulFunctionCall",
"src": "14305:43:19"
},
"nodeType": "YulExpressionStatement",
"src": "14305:43:19"
}
]
},
"nodeType": "YulCase",
"src": "13686:672:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "13691:1:19",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "14375:269:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "14389:16:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "14404:1:19",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value_1",
"nodeType": "YulTypedName",
"src": "14393:7:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14447:84:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14465:52:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "memberValue",
"nodeType": "YulIdentifier",
"src": "14493:11:19"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "14506:9:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14489:3:19"
},
"nodeType": "YulFunctionCall",
"src": "14489:27:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "14476:12:19"
},
"nodeType": "YulFunctionCall",
"src": "14476:41:19"
},
"variableNames": [
{
"name": "value_1",
"nodeType": "YulIdentifier",
"src": "14465:7:19"
}
]
}
]
},
"condition": {
"name": "memberValue_1",
"nodeType": "YulIdentifier",
"src": "14421:13:19"
},
"nodeType": "YulIf",
"src": "14418:113:19"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "14551:4:19"
},
{
"arguments": [
{
"name": "value_1",
"nodeType": "YulIdentifier",
"src": "14610:7:19"
},
{
"name": "memberValue_1",
"nodeType": "YulIdentifier",
"src": "14619:13:19"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "14557:52:19"
},
"nodeType": "YulFunctionCall",
"src": "14557:76:19"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "14544:6:19"
},
"nodeType": "YulFunctionCall",
"src": "14544:90:19"
},
"nodeType": "YulExpressionStatement",
"src": "14544:90:19"
}
]
},
"nodeType": "YulCase",
"src": "14367:277:19",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "memberValue_1",
"nodeType": "YulIdentifier",
"src": "13659:13:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13674:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "13656:2:19"
},
"nodeType": "YulFunctionCall",
"src": "13656:21:19"
},
"nodeType": "YulSwitch",
"src": "13649:995:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "14653:95:19",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14726:5:19"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14737:5:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14744:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14733:3:19"
},
"nodeType": "YulFunctionCall",
"src": "14733:14:19"
}
],
"functionName": {
"name": "access_calldata_tail_string_calldata",
"nodeType": "YulIdentifier",
"src": "14689:36:19"
},
"nodeType": "YulFunctionCall",
"src": "14689:59:19"
},
"variables": [
{
"name": "memberValue_2",
"nodeType": "YulTypedName",
"src": "14657:13:19",
"type": ""
},
{
"name": "memberValue_3",
"nodeType": "YulTypedName",
"src": "14672:13:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "14819:4:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14825:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14815:3:19"
},
"nodeType": "YulFunctionCall",
"src": "14815:12:19"
},
{
"name": "memberValue_2",
"nodeType": "YulIdentifier",
"src": "14829:13:19"
},
{
"name": "memberValue_3",
"nodeType": "YulIdentifier",
"src": "14844:13:19"
}
],
"functionName": {
"name": "copy_byte_array_to_storage_from_string_calldata_to_string",
"nodeType": "YulIdentifier",
"src": "14757:57:19"
},
"nodeType": "YulFunctionCall",
"src": "14757:101:19"
},
"nodeType": "YulExpressionStatement",
"src": "14757:101:19"
}
]
},
"name": "copy_struct_to_storage_from_struct_MuniLayerData_calldata_to_struct_MuniLayerData",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "13317:4:19",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13323:5:19",
"type": ""
}
],
"src": "13226:1638:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15008:110:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "15100:4:19"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15106:5:19"
}
],
"functionName": {
"name": "copy_struct_to_storage_from_struct_MuniLayerData_calldata_to_struct_MuniLayerData",
"nodeType": "YulIdentifier",
"src": "15018:81:19"
},
"nodeType": "YulFunctionCall",
"src": "15018:94:19"
},
"nodeType": "YulExpressionStatement",
"src": "15018:94:19"
}
]
},
"name": "update_storage_value_offset_0t_struct$_MuniLayerData_$2918_calldata_ptr_to_t_struct$_MuniLayerData_$2918_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "14991:4:19",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14997:5:19",
"type": ""
}
],
"src": "14869:249:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15297:239:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15314:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15325:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15307:6:19"
},
"nodeType": "YulFunctionCall",
"src": "15307:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "15307:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15348:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15359:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15344:3:19"
},
"nodeType": "YulFunctionCall",
"src": "15344:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15364:2:19",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15337:6:19"
},
"nodeType": "YulFunctionCall",
"src": "15337:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "15337:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15387:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15398:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15383:3:19"
},
"nodeType": "YulFunctionCall",
"src": "15383:18:19"
},
{
"hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15403:34:19",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15376:6:19"
},
"nodeType": "YulFunctionCall",
"src": "15376:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "15376:62:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15458:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15469:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15454:3:19"
},
"nodeType": "YulFunctionCall",
"src": "15454:18:19"
},
{
"hexValue": "776e6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15474:19:19",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15447:6:19"
},
"nodeType": "YulFunctionCall",
"src": "15447:47:19"
},
"nodeType": "YulExpressionStatement",
"src": "15447:47:19"
},
{
"nodeType": "YulAssignment",
"src": "15503:27:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15515:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15526:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15511:3:19"
},
"nodeType": "YulFunctionCall",
"src": "15511:19:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15503:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15274:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15288:4:19",
"type": ""
}
],
"src": "15123:413:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15715:233:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15732:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15743:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15725:6:19"
},
"nodeType": "YulFunctionCall",
"src": "15725:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "15725:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15766:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15777:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15762:3:19"
},
"nodeType": "YulFunctionCall",
"src": "15762:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15782:2:19",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15755:6:19"
},
"nodeType": "YulFunctionCall",
"src": "15755:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "15755:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15805:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15816:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15801:3:19"
},
"nodeType": "YulFunctionCall",
"src": "15801:18:19"
},
{
"hexValue": "455243373231456e756d657261626c653a206f776e657220696e646578206f75",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15821:34:19",
"type": "",
"value": "ERC721Enumerable: owner index ou"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15794:6:19"
},
"nodeType": "YulFunctionCall",
"src": "15794:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "15794:62:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15876:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15887:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15872:3:19"
},
"nodeType": "YulFunctionCall",
"src": "15872:18:19"
},
{
"hexValue": "74206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15892:13:19",
"type": "",
"value": "t of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15865:6:19"
},
"nodeType": "YulFunctionCall",
"src": "15865:41:19"
},
"nodeType": "YulExpressionStatement",
"src": "15865:41:19"
},
{
"nodeType": "YulAssignment",
"src": "15915:27:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15927:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15938:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15923:3:19"
},
"nodeType": "YulFunctionCall",
"src": "15923:19:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15915:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15692:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15706:4:19",
"type": ""
}
],
"src": "15541:407:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15985:95:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16002:1:19",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16009:3:19",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16014:10:19",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "16005:3:19"
},
"nodeType": "YulFunctionCall",
"src": "16005:20:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15995:6:19"
},
"nodeType": "YulFunctionCall",
"src": "15995:31:19"
},
"nodeType": "YulExpressionStatement",
"src": "15995:31:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16042:1:19",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16045:4:19",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16035:6:19"
},
"nodeType": "YulFunctionCall",
"src": "16035:15:19"
},
"nodeType": "YulExpressionStatement",
"src": "16035:15:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16066:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16069:4:19",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "16059:6:19"
},
"nodeType": "YulFunctionCall",
"src": "16059:15:19"
},
"nodeType": "YulExpressionStatement",
"src": "16059:15:19"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "15953:127:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16193:222:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "16203:51:19",
"value": {
"arguments": [
{
"name": "ptr_to_tail",
"nodeType": "YulIdentifier",
"src": "16242:11:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "16229:12:19"
},
"nodeType": "YulFunctionCall",
"src": "16229:25:19"
},
"variables": [
{
"name": "rel_offset_of_tail",
"nodeType": "YulTypedName",
"src": "16207:18:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "16343:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16352:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16355:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "16345:6:19"
},
"nodeType": "YulFunctionCall",
"src": "16345:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "16345:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "rel_offset_of_tail",
"nodeType": "YulIdentifier",
"src": "16277:18:19"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [],
"functionName": {
"name": "calldatasize",
"nodeType": "YulIdentifier",
"src": "16305:12:19"
},
"nodeType": "YulFunctionCall",
"src": "16305:14:19"
},
{
"name": "base_ref",
"nodeType": "YulIdentifier",
"src": "16321:8:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16301:3:19"
},
"nodeType": "YulFunctionCall",
"src": "16301:29:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16336:2:19",
"type": "",
"value": "62"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "16332:3:19"
},
"nodeType": "YulFunctionCall",
"src": "16332:7:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16297:3:19"
},
"nodeType": "YulFunctionCall",
"src": "16297:43:19"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "16273:3:19"
},
"nodeType": "YulFunctionCall",
"src": "16273:68:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16266:6:19"
},
"nodeType": "YulFunctionCall",
"src": "16266:76:19"
},
"nodeType": "YulIf",
"src": "16263:96:19"
},
{
"nodeType": "YulAssignment",
"src": "16368:41:19",
"value": {
"arguments": [
{
"name": "base_ref",
"nodeType": "YulIdentifier",
"src": "16380:8:19"
},
{
"name": "rel_offset_of_tail",
"nodeType": "YulIdentifier",
"src": "16390:18:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16376:3:19"
},
"nodeType": "YulFunctionCall",
"src": "16376:33:19"
},
"variableNames": [
{
"name": "addr",
"nodeType": "YulIdentifier",
"src": "16368:4:19"
}
]
}
]
},
"name": "access_calldata_tail_t_struct$_MuniLayerData_$2918_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base_ref",
"nodeType": "YulTypedName",
"src": "16158:8:19",
"type": ""
},
{
"name": "ptr_to_tail",
"nodeType": "YulTypedName",
"src": "16168:11:19",
"type": ""
}
],
"returnVariables": [
{
"name": "addr",
"nodeType": "YulTypedName",
"src": "16184:4:19",
"type": ""
}
],
"src": "16085:330:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16452:95:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16469:1:19",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16476:3:19",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16481:10:19",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "16472:3:19"
},
"nodeType": "YulFunctionCall",
"src": "16472:20:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16462:6:19"
},
"nodeType": "YulFunctionCall",
"src": "16462:31:19"
},
"nodeType": "YulExpressionStatement",
"src": "16462:31:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16509:1:19",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16512:4:19",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16502:6:19"
},
"nodeType": "YulFunctionCall",
"src": "16502:15:19"
},
"nodeType": "YulExpressionStatement",
"src": "16502:15:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16533:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16536:4:19",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "16526:6:19"
},
"nodeType": "YulFunctionCall",
"src": "16526:15:19"
},
"nodeType": "YulExpressionStatement",
"src": "16526:15:19"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "16420:127:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16599:88:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "16630:22:19",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "16632:16:19"
},
"nodeType": "YulFunctionCall",
"src": "16632:18:19"
},
"nodeType": "YulExpressionStatement",
"src": "16632:18:19"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16615:5:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16626:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "16622:3:19"
},
"nodeType": "YulFunctionCall",
"src": "16622:6:19"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "16612:2:19"
},
"nodeType": "YulFunctionCall",
"src": "16612:17:19"
},
"nodeType": "YulIf",
"src": "16609:43:19"
},
{
"nodeType": "YulAssignment",
"src": "16661:20:19",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16672:5:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16679:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16668:3:19"
},
"nodeType": "YulFunctionCall",
"src": "16668:13:19"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "16661:3:19"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16581:5:19",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "16591:3:19",
"type": ""
}
],
"src": "16552:135:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16866:234:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16883:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16894:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16876:6:19"
},
"nodeType": "YulFunctionCall",
"src": "16876:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "16876:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16917:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16928:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16913:3:19"
},
"nodeType": "YulFunctionCall",
"src": "16913:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16933:2:19",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16906:6:19"
},
"nodeType": "YulFunctionCall",
"src": "16906:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "16906:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16956:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16967:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16952:3:19"
},
"nodeType": "YulFunctionCall",
"src": "16952:18:19"
},
{
"hexValue": "455243373231456e756d657261626c653a20676c6f62616c20696e646578206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16972:34:19",
"type": "",
"value": "ERC721Enumerable: global index o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16945:6:19"
},
"nodeType": "YulFunctionCall",
"src": "16945:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "16945:62:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17027:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17038:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17023:3:19"
},
"nodeType": "YulFunctionCall",
"src": "17023:18:19"
},
{
"hexValue": "7574206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17043:14:19",
"type": "",
"value": "ut of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17016:6:19"
},
"nodeType": "YulFunctionCall",
"src": "17016:42:19"
},
"nodeType": "YulExpressionStatement",
"src": "17016:42:19"
},
{
"nodeType": "YulAssignment",
"src": "17067:27:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17079:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17090:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17075:3:19"
},
"nodeType": "YulFunctionCall",
"src": "17075:19:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17067:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16843:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16857:4:19",
"type": ""
}
],
"src": "16692:408:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17279:231:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17296:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17307:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17289:6:19"
},
"nodeType": "YulFunctionCall",
"src": "17289:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "17289:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17330:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17341:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17326:3:19"
},
"nodeType": "YulFunctionCall",
"src": "17326:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17346:2:19",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17319:6:19"
},
"nodeType": "YulFunctionCall",
"src": "17319:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "17319:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17369:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17380:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17365:3:19"
},
"nodeType": "YulFunctionCall",
"src": "17365:18:19"
},
{
"hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17385:34:19",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17358:6:19"
},
"nodeType": "YulFunctionCall",
"src": "17358:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "17358:62:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17440:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17451:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17436:3:19"
},
"nodeType": "YulFunctionCall",
"src": "17436:18:19"
},
{
"hexValue": "656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17456:11:19",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17429:6:19"
},
"nodeType": "YulFunctionCall",
"src": "17429:39:19"
},
"nodeType": "YulExpressionStatement",
"src": "17429:39:19"
},
{
"nodeType": "YulAssignment",
"src": "17477:27:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17489:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17500:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17485:3:19"
},
"nodeType": "YulFunctionCall",
"src": "17485:19:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17477:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17256:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17270:4:19",
"type": ""
}
],
"src": "17105:405:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17689:232:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17706:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17717:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17699:6:19"
},
"nodeType": "YulFunctionCall",
"src": "17699:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "17699:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17740:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17751:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17736:3:19"
},
"nodeType": "YulFunctionCall",
"src": "17736:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17756:2:19",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17729:6:19"
},
"nodeType": "YulFunctionCall",
"src": "17729:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "17729:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17779:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17790:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17775:3:19"
},
"nodeType": "YulFunctionCall",
"src": "17775:18:19"
},
{
"hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17795:34:19",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17768:6:19"
},
"nodeType": "YulFunctionCall",
"src": "17768:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "17768:62:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17850:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17861:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17846:3:19"
},
"nodeType": "YulFunctionCall",
"src": "17846:18:19"
},
{
"hexValue": "726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17866:12:19",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17839:6:19"
},
"nodeType": "YulFunctionCall",
"src": "17839:40:19"
},
"nodeType": "YulExpressionStatement",
"src": "17839:40:19"
},
{
"nodeType": "YulAssignment",
"src": "17888:27:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17900:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17911:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17896:3:19"
},
"nodeType": "YulFunctionCall",
"src": "17896:19:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17888:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17666:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17680:4:19",
"type": ""
}
],
"src": "17515:406:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17974:80:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "18001:22:19",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "18003:16:19"
},
"nodeType": "YulFunctionCall",
"src": "18003:18:19"
},
"nodeType": "YulExpressionStatement",
"src": "18003:18:19"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "17990:1:19"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17997:1:19"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "17993:3:19"
},
"nodeType": "YulFunctionCall",
"src": "17993:6:19"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "17987:2:19"
},
"nodeType": "YulFunctionCall",
"src": "17987:13:19"
},
"nodeType": "YulIf",
"src": "17984:39:19"
},
{
"nodeType": "YulAssignment",
"src": "18032:16:19",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "18043:1:19"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "18046:1:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18039:3:19"
},
"nodeType": "YulFunctionCall",
"src": "18039:9:19"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "18032:3:19"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "17957:1:19",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "17960:1:19",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "17966:3:19",
"type": ""
}
],
"src": "17926:128:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18233:181:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18250:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18261:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18243:6:19"
},
"nodeType": "YulFunctionCall",
"src": "18243:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "18243:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18284:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18295:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18280:3:19"
},
"nodeType": "YulFunctionCall",
"src": "18280:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18300:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18273:6:19"
},
"nodeType": "YulFunctionCall",
"src": "18273:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "18273:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18323:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18334:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18319:3:19"
},
"nodeType": "YulFunctionCall",
"src": "18319:18:19"
},
{
"hexValue": "5265736572766520776f756c6420657863656564206d617820746f6b656e73",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18339:33:19",
"type": "",
"value": "Reserve would exceed max tokens"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18312:6:19"
},
"nodeType": "YulFunctionCall",
"src": "18312:61:19"
},
"nodeType": "YulExpressionStatement",
"src": "18312:61:19"
},
{
"nodeType": "YulAssignment",
"src": "18382:26:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18394:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18405:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18390:3:19"
},
"nodeType": "YulFunctionCall",
"src": "18390:18:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18382:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_ba5602115f4a7b1ca1e73a5c8de30026fe06caa19aaf5e8df107c03e011af84f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18210:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18224:4:19",
"type": ""
}
],
"src": "18059:355:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18593:230:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18610:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18621:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18603:6:19"
},
"nodeType": "YulFunctionCall",
"src": "18603:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "18603:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18644:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18655:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18640:3:19"
},
"nodeType": "YulFunctionCall",
"src": "18640:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18660:2:19",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18633:6:19"
},
"nodeType": "YulFunctionCall",
"src": "18633:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "18633:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18683:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18694:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18679:3:19"
},
"nodeType": "YulFunctionCall",
"src": "18679:18:19"
},
{
"hexValue": "43616e6e6f7420657863656564206d6178207465616d20726573657276652061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18699:34:19",
"type": "",
"value": "Cannot exceed max team reserve a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18672:6:19"
},
"nodeType": "YulFunctionCall",
"src": "18672:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "18672:62:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18754:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18765:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18750:3:19"
},
"nodeType": "YulFunctionCall",
"src": "18750:18:19"
},
{
"hexValue": "6c6c6f746d656e74",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18770:10:19",
"type": "",
"value": "llotment"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18743:6:19"
},
"nodeType": "YulFunctionCall",
"src": "18743:38:19"
},
"nodeType": "YulExpressionStatement",
"src": "18743:38:19"
},
{
"nodeType": "YulAssignment",
"src": "18790:27:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18802:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18813:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18798:3:19"
},
"nodeType": "YulFunctionCall",
"src": "18798:19:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18790:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2046c7ddfd3f2d6a571801373ea168eb0a472758c18d97a9a4c8d5e398116f40__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18570:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18584:4:19",
"type": ""
}
],
"src": "18419:404:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18936:222:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "18946:51:19",
"value": {
"arguments": [
{
"name": "ptr_to_tail",
"nodeType": "YulIdentifier",
"src": "18985:11:19"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "18972:12:19"
},
"nodeType": "YulFunctionCall",
"src": "18972:25:19"
},
"variables": [
{
"name": "rel_offset_of_tail",
"nodeType": "YulTypedName",
"src": "18950:18:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "19086:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19095:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19098:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "19088:6:19"
},
"nodeType": "YulFunctionCall",
"src": "19088:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "19088:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "rel_offset_of_tail",
"nodeType": "YulIdentifier",
"src": "19020:18:19"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [],
"functionName": {
"name": "calldatasize",
"nodeType": "YulIdentifier",
"src": "19048:12:19"
},
"nodeType": "YulFunctionCall",
"src": "19048:14:19"
},
{
"name": "base_ref",
"nodeType": "YulIdentifier",
"src": "19064:8:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19044:3:19"
},
"nodeType": "YulFunctionCall",
"src": "19044:29:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19079:2:19",
"type": "",
"value": "62"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "19075:3:19"
},
"nodeType": "YulFunctionCall",
"src": "19075:7:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19040:3:19"
},
"nodeType": "YulFunctionCall",
"src": "19040:43:19"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "19016:3:19"
},
"nodeType": "YulFunctionCall",
"src": "19016:68:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "19009:6:19"
},
"nodeType": "YulFunctionCall",
"src": "19009:76:19"
},
"nodeType": "YulIf",
"src": "19006:96:19"
},
{
"nodeType": "YulAssignment",
"src": "19111:41:19",
"value": {
"arguments": [
{
"name": "base_ref",
"nodeType": "YulIdentifier",
"src": "19123:8:19"
},
{
"name": "rel_offset_of_tail",
"nodeType": "YulIdentifier",
"src": "19133:18:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19119:3:19"
},
"nodeType": "YulFunctionCall",
"src": "19119:33:19"
},
"variableNames": [
{
"name": "addr",
"nodeType": "YulIdentifier",
"src": "19111:4:19"
}
]
}
]
},
"name": "access_calldata_tail_t_struct$_MuniColorData_$2923_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base_ref",
"nodeType": "YulTypedName",
"src": "18901:8:19",
"type": ""
},
{
"name": "ptr_to_tail",
"nodeType": "YulTypedName",
"src": "18911:11:19",
"type": ""
}
],
"returnVariables": [
{
"name": "addr",
"nodeType": "YulTypedName",
"src": "18927:4:19",
"type": ""
}
],
"src": "18828:330:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19302:110:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "19394:4:19"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "19400:5:19"
}
],
"functionName": {
"name": "copy_struct_to_storage_from_struct_MuniLayerData_calldata_to_struct_MuniLayerData",
"nodeType": "YulIdentifier",
"src": "19312:81:19"
},
"nodeType": "YulFunctionCall",
"src": "19312:94:19"
},
"nodeType": "YulExpressionStatement",
"src": "19312:94:19"
}
]
},
"name": "update_storage_value_offset_0t_struct$_MuniColorData_$2923_calldata_ptr_to_t_struct$_MuniColorData_$2923_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "19285:4:19",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "19291:5:19",
"type": ""
}
],
"src": "19163:249:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19591:225:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19608:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19619:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19601:6:19"
},
"nodeType": "YulFunctionCall",
"src": "19601:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "19601:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19642:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19653:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19638:3:19"
},
"nodeType": "YulFunctionCall",
"src": "19638:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19658:2:19",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19631:6:19"
},
"nodeType": "YulFunctionCall",
"src": "19631:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "19631:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19681:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19692:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19677:3:19"
},
"nodeType": "YulFunctionCall",
"src": "19677:18:19"
},
{
"hexValue": "53616c65206d7573742062652061637469766520746f206d696e7420746f6b65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19697:34:19",
"type": "",
"value": "Sale must be active to mint toke"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19670:6:19"
},
"nodeType": "YulFunctionCall",
"src": "19670:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "19670:62:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19752:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19763:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19748:3:19"
},
"nodeType": "YulFunctionCall",
"src": "19748:18:19"
},
{
"hexValue": "6e732e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19768:5:19",
"type": "",
"value": "ns."
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19741:6:19"
},
"nodeType": "YulFunctionCall",
"src": "19741:33:19"
},
"nodeType": "YulExpressionStatement",
"src": "19741:33:19"
},
{
"nodeType": "YulAssignment",
"src": "19783:27:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19795:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19806:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19791:3:19"
},
"nodeType": "YulFunctionCall",
"src": "19791:19:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19783:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d27acebf6f180ee7398431c6f1d778b461898940dcc55d2eb4f0671c86693519__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19568:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19582:4:19",
"type": ""
}
],
"src": "19417:399:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19995:178:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20012:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20023:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20005:6:19"
},
"nodeType": "YulFunctionCall",
"src": "20005:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "20005:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20046:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20057:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20042:3:19"
},
"nodeType": "YulFunctionCall",
"src": "20042:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20062:2:19",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20035:6:19"
},
"nodeType": "YulFunctionCall",
"src": "20035:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "20035:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20085:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20096:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20081:3:19"
},
"nodeType": "YulFunctionCall",
"src": "20081:18:19"
},
{
"hexValue": "4578636565646564206d617820746f6b656e2070757263686173652e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20101:30:19",
"type": "",
"value": "Exceeded max token purchase."
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20074:6:19"
},
"nodeType": "YulFunctionCall",
"src": "20074:58:19"
},
"nodeType": "YulExpressionStatement",
"src": "20074:58:19"
},
{
"nodeType": "YulAssignment",
"src": "20141:26:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20153:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20164:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20149:3:19"
},
"nodeType": "YulFunctionCall",
"src": "20149:18:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20141:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3f10f349ccf9313bbb94d427d2e5d9fed4202d631a8b49b0743c6d7b11e54eae__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19972:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19986:4:19",
"type": ""
}
],
"src": "19821:352:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20352:180:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20369:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20380:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20362:6:19"
},
"nodeType": "YulFunctionCall",
"src": "20362:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "20362:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20403:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20414:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20399:3:19"
},
"nodeType": "YulFunctionCall",
"src": "20399:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20419:2:19",
"type": "",
"value": "30"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20392:6:19"
},
"nodeType": "YulFunctionCall",
"src": "20392:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "20392:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20442:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20453:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20438:3:19"
},
"nodeType": "YulFunctionCall",
"src": "20438:18:19"
},
{
"hexValue": "43616e6e6f74206d696e74206c657373207468616e203120746f6b656e2e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20458:32:19",
"type": "",
"value": "Cannot mint less than 1 token."
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20431:6:19"
},
"nodeType": "YulFunctionCall",
"src": "20431:60:19"
},
"nodeType": "YulExpressionStatement",
"src": "20431:60:19"
},
{
"nodeType": "YulAssignment",
"src": "20500:26:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20512:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20523:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20508:3:19"
},
"nodeType": "YulFunctionCall",
"src": "20508:18:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20500:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1163a37359650e0a1061c390501746c7b9c986f8f2c7f23fd46784eb342bfa6f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20329:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20343:4:19",
"type": ""
}
],
"src": "20178:354:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20711:223:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20728:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20739:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20721:6:19"
},
"nodeType": "YulFunctionCall",
"src": "20721:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "20721:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20762:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20773:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20758:3:19"
},
"nodeType": "YulFunctionCall",
"src": "20758:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20778:2:19",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20751:6:19"
},
"nodeType": "YulFunctionCall",
"src": "20751:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "20751:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20801:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20812:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20797:3:19"
},
"nodeType": "YulFunctionCall",
"src": "20797:18:19"
},
{
"hexValue": "507572636861736520776f756c6420657863656564206d617820746f6b656e73",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20817:34:19",
"type": "",
"value": "Purchase would exceed max tokens"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20790:6:19"
},
"nodeType": "YulFunctionCall",
"src": "20790:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "20790:62:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20872:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20883:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20868:3:19"
},
"nodeType": "YulFunctionCall",
"src": "20868:18:19"
},
{
"hexValue": "2e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20888:3:19",
"type": "",
"value": "."
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20861:6:19"
},
"nodeType": "YulFunctionCall",
"src": "20861:31:19"
},
"nodeType": "YulExpressionStatement",
"src": "20861:31:19"
},
{
"nodeType": "YulAssignment",
"src": "20901:27:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20913:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20924:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20909:3:19"
},
"nodeType": "YulFunctionCall",
"src": "20909:19:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20901:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d017ccea1ed22f256cfbab52eb94b8efa6bab5c87801174c8122eaf9f19a3723__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20688:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20702:4:19",
"type": ""
}
],
"src": "20537:397:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20991:116:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "21050:22:19",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "21052:16:19"
},
"nodeType": "YulFunctionCall",
"src": "21052:18:19"
},
"nodeType": "YulExpressionStatement",
"src": "21052:18:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21022:1:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21015:6:19"
},
"nodeType": "YulFunctionCall",
"src": "21015:9:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21008:6:19"
},
"nodeType": "YulFunctionCall",
"src": "21008:17:19"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21030:1:19"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21041:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "21037:3:19"
},
"nodeType": "YulFunctionCall",
"src": "21037:6:19"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21045:1:19"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "21033:3:19"
},
"nodeType": "YulFunctionCall",
"src": "21033:14:19"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "21027:2:19"
},
"nodeType": "YulFunctionCall",
"src": "21027:21:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "21004:3:19"
},
"nodeType": "YulFunctionCall",
"src": "21004:45:19"
},
"nodeType": "YulIf",
"src": "21001:71:19"
},
{
"nodeType": "YulAssignment",
"src": "21081:20:19",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21096:1:19"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21099:1:19"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "21092:3:19"
},
"nodeType": "YulFunctionCall",
"src": "21092:9:19"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "21081:7:19"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "20970:1:19",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "20973:1:19",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "20979:7:19",
"type": ""
}
],
"src": "20939:168:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21286:182:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21303:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21314:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21296:6:19"
},
"nodeType": "YulFunctionCall",
"src": "21296:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "21296:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21337:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21348:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21333:3:19"
},
"nodeType": "YulFunctionCall",
"src": "21333:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21353:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21326:6:19"
},
"nodeType": "YulFunctionCall",
"src": "21326:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "21326:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21376:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21387:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21372:3:19"
},
"nodeType": "YulFunctionCall",
"src": "21372:18:19"
},
{
"hexValue": "45746865722076616c75652073656e74206973206e6f7420636f72726563742e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "21392:34:19",
"type": "",
"value": "Ether value sent is not correct."
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21365:6:19"
},
"nodeType": "YulFunctionCall",
"src": "21365:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "21365:62:19"
},
{
"nodeType": "YulAssignment",
"src": "21436:26:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21448:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21459:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21444:3:19"
},
"nodeType": "YulFunctionCall",
"src": "21444:18:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21436:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_19fe38635be9aeb10f768d5690b4deb3179506dea66a22f6375a398ea4511eed__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21263:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21277:4:19",
"type": ""
}
],
"src": "21112:356:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21647:169:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21664:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21675:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21657:6:19"
},
"nodeType": "YulFunctionCall",
"src": "21657:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "21657:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21698:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21709:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21694:3:19"
},
"nodeType": "YulFunctionCall",
"src": "21694:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21714:2:19",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21687:6:19"
},
"nodeType": "YulFunctionCall",
"src": "21687:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "21687:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21737:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21748:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21733:3:19"
},
"nodeType": "YulFunctionCall",
"src": "21733:18:19"
},
{
"hexValue": "42616c6c20646f65736e27742065786973742e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "21753:21:19",
"type": "",
"value": "Ball doesn't exist."
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21726:6:19"
},
"nodeType": "YulFunctionCall",
"src": "21726:49:19"
},
"nodeType": "YulExpressionStatement",
"src": "21726:49:19"
},
{
"nodeType": "YulAssignment",
"src": "21784:26:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21796:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21807:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21792:3:19"
},
"nodeType": "YulFunctionCall",
"src": "21792:18:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21784:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b6735f0844bb7df3b3c576e58b772ea854f1d91eae2ff40f4076cc493a2dbb95__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21624:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21638:4:19",
"type": ""
}
],
"src": "21473:343:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22296:1166:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "22306:27:19",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "22326:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "22320:5:19"
},
"nodeType": "YulFunctionCall",
"src": "22320:13:19"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "22310:6:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "22342:14:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "22352:4:19",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "22346:2:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "22391:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "22399:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22387:3:19"
},
"nodeType": "YulFunctionCall",
"src": "22387:15:19"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22404:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22409:6:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "22365:21:19"
},
"nodeType": "YulFunctionCall",
"src": "22365:51:19"
},
"nodeType": "YulExpressionStatement",
"src": "22365:51:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "22425:29:19",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22442:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22447:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22438:3:19"
},
"nodeType": "YulFunctionCall",
"src": "22438:16:19"
},
"variables": [
{
"name": "end_1",
"nodeType": "YulTypedName",
"src": "22429:5:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "22463:29:19",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "22485:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "22479:5:19"
},
"nodeType": "YulFunctionCall",
"src": "22479:13:19"
},
"variables": [
{
"name": "length_1",
"nodeType": "YulTypedName",
"src": "22467:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "22527:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "22535:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22523:3:19"
},
"nodeType": "YulFunctionCall",
"src": "22523:15:19"
},
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "22540:5:19"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "22547:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "22501:21:19"
},
"nodeType": "YulFunctionCall",
"src": "22501:55:19"
},
"nodeType": "YulExpressionStatement",
"src": "22501:55:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "22565:33:19",
"value": {
"arguments": [
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "22582:5:19"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "22589:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22578:3:19"
},
"nodeType": "YulFunctionCall",
"src": "22578:20:19"
},
"variables": [
{
"name": "end_2",
"nodeType": "YulTypedName",
"src": "22569:5:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "22607:29:19",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "22629:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "22623:5:19"
},
"nodeType": "YulFunctionCall",
"src": "22623:13:19"
},
"variables": [
{
"name": "length_2",
"nodeType": "YulTypedName",
"src": "22611:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "22671:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "22679:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22667:3:19"
},
"nodeType": "YulFunctionCall",
"src": "22667:15:19"
},
{
"name": "end_2",
"nodeType": "YulIdentifier",
"src": "22684:5:19"
},
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "22691:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "22645:21:19"
},
"nodeType": "YulFunctionCall",
"src": "22645:55:19"
},
"nodeType": "YulExpressionStatement",
"src": "22645:55:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "22709:33:19",
"value": {
"arguments": [
{
"name": "end_2",
"nodeType": "YulIdentifier",
"src": "22726:5:19"
},
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "22733:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22722:3:19"
},
"nodeType": "YulFunctionCall",
"src": "22722:20:19"
},
"variables": [
{
"name": "end_3",
"nodeType": "YulTypedName",
"src": "22713:5:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "22751:29:19",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "22773:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "22767:5:19"
},
"nodeType": "YulFunctionCall",
"src": "22767:13:19"
},
"variables": [
{
"name": "length_3",
"nodeType": "YulTypedName",
"src": "22755:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "22815:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "22823:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22811:3:19"
},
"nodeType": "YulFunctionCall",
"src": "22811:15:19"
},
{
"name": "end_3",
"nodeType": "YulIdentifier",
"src": "22828:5:19"
},
{
"name": "length_3",
"nodeType": "YulIdentifier",
"src": "22835:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "22789:21:19"
},
"nodeType": "YulFunctionCall",
"src": "22789:55:19"
},
"nodeType": "YulExpressionStatement",
"src": "22789:55:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "22853:33:19",
"value": {
"arguments": [
{
"name": "end_3",
"nodeType": "YulIdentifier",
"src": "22870:5:19"
},
{
"name": "length_3",
"nodeType": "YulIdentifier",
"src": "22877:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22866:3:19"
},
"nodeType": "YulFunctionCall",
"src": "22866:20:19"
},
"variables": [
{
"name": "end_4",
"nodeType": "YulTypedName",
"src": "22857:5:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "22895:29:19",
"value": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "22917:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "22911:5:19"
},
"nodeType": "YulFunctionCall",
"src": "22911:13:19"
},
"variables": [
{
"name": "length_4",
"nodeType": "YulTypedName",
"src": "22899:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "22959:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "22967:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22955:3:19"
},
"nodeType": "YulFunctionCall",
"src": "22955:15:19"
},
{
"name": "end_4",
"nodeType": "YulIdentifier",
"src": "22972:5:19"
},
{
"name": "length_4",
"nodeType": "YulIdentifier",
"src": "22979:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "22933:21:19"
},
"nodeType": "YulFunctionCall",
"src": "22933:55:19"
},
"nodeType": "YulExpressionStatement",
"src": "22933:55:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "22997:33:19",
"value": {
"arguments": [
{
"name": "end_4",
"nodeType": "YulIdentifier",
"src": "23014:5:19"
},
{
"name": "length_4",
"nodeType": "YulIdentifier",
"src": "23021:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23010:3:19"
},
"nodeType": "YulFunctionCall",
"src": "23010:20:19"
},
"variables": [
{
"name": "end_5",
"nodeType": "YulTypedName",
"src": "23001:5:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "23039:29:19",
"value": {
"arguments": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "23061:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "23055:5:19"
},
"nodeType": "YulFunctionCall",
"src": "23055:13:19"
},
"variables": [
{
"name": "length_5",
"nodeType": "YulTypedName",
"src": "23043:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "23103:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "23111:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23099:3:19"
},
"nodeType": "YulFunctionCall",
"src": "23099:15:19"
},
{
"name": "end_5",
"nodeType": "YulIdentifier",
"src": "23116:5:19"
},
{
"name": "length_5",
"nodeType": "YulIdentifier",
"src": "23123:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "23077:21:19"
},
"nodeType": "YulFunctionCall",
"src": "23077:55:19"
},
"nodeType": "YulExpressionStatement",
"src": "23077:55:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "23141:33:19",
"value": {
"arguments": [
{
"name": "end_5",
"nodeType": "YulIdentifier",
"src": "23158:5:19"
},
{
"name": "length_5",
"nodeType": "YulIdentifier",
"src": "23165:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23154:3:19"
},
"nodeType": "YulFunctionCall",
"src": "23154:20:19"
},
"variables": [
{
"name": "end_6",
"nodeType": "YulTypedName",
"src": "23145:5:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "23183:29:19",
"value": {
"arguments": [
{
"name": "value6",
"nodeType": "YulIdentifier",
"src": "23205:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "23199:5:19"
},
"nodeType": "YulFunctionCall",
"src": "23199:13:19"
},
"variables": [
{
"name": "length_6",
"nodeType": "YulTypedName",
"src": "23187:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value6",
"nodeType": "YulIdentifier",
"src": "23247:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "23255:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23243:3:19"
},
"nodeType": "YulFunctionCall",
"src": "23243:15:19"
},
{
"name": "end_6",
"nodeType": "YulIdentifier",
"src": "23260:5:19"
},
{
"name": "length_6",
"nodeType": "YulIdentifier",
"src": "23267:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "23221:21:19"
},
"nodeType": "YulFunctionCall",
"src": "23221:55:19"
},
"nodeType": "YulExpressionStatement",
"src": "23221:55:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "23285:33:19",
"value": {
"arguments": [
{
"name": "end_6",
"nodeType": "YulIdentifier",
"src": "23302:5:19"
},
{
"name": "length_6",
"nodeType": "YulIdentifier",
"src": "23309:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23298:3:19"
},
"nodeType": "YulFunctionCall",
"src": "23298:20:19"
},
"variables": [
{
"name": "end_7",
"nodeType": "YulTypedName",
"src": "23289:5:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "23327:29:19",
"value": {
"arguments": [
{
"name": "value7",
"nodeType": "YulIdentifier",
"src": "23349:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "23343:5:19"
},
"nodeType": "YulFunctionCall",
"src": "23343:13:19"
},
"variables": [
{
"name": "length_7",
"nodeType": "YulTypedName",
"src": "23331:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value7",
"nodeType": "YulIdentifier",
"src": "23391:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "23399:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23387:3:19"
},
"nodeType": "YulFunctionCall",
"src": "23387:15:19"
},
{
"name": "end_7",
"nodeType": "YulIdentifier",
"src": "23404:5:19"
},
{
"name": "length_7",
"nodeType": "YulIdentifier",
"src": "23411:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "23365:21:19"
},
"nodeType": "YulFunctionCall",
"src": "23365:55:19"
},
"nodeType": "YulExpressionStatement",
"src": "23365:55:19"
},
{
"nodeType": "YulAssignment",
"src": "23429:27:19",
"value": {
"arguments": [
{
"name": "end_7",
"nodeType": "YulIdentifier",
"src": "23440:5:19"
},
{
"name": "length_7",
"nodeType": "YulIdentifier",
"src": "23447:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23436:3:19"
},
"nodeType": "YulFunctionCall",
"src": "23436:20:19"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "23429:3:19"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "22216:3:19",
"type": ""
},
{
"name": "value7",
"nodeType": "YulTypedName",
"src": "22221:6:19",
"type": ""
},
{
"name": "value6",
"nodeType": "YulTypedName",
"src": "22229:6:19",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "22237:6:19",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "22245:6:19",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "22253:6:19",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "22261:6:19",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "22269:6:19",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "22277:6:19",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "22288:3:19",
"type": ""
}
],
"src": "21821:1641:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23894:1022:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "23904:27:19",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "23924:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "23918:5:19"
},
"nodeType": "YulFunctionCall",
"src": "23918:13:19"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "23908:6:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "23940:14:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "23950:4:19",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "23944:2:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "23989:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "23997:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23985:3:19"
},
"nodeType": "YulFunctionCall",
"src": "23985:15:19"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24002:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24007:6:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "23963:21:19"
},
"nodeType": "YulFunctionCall",
"src": "23963:51:19"
},
"nodeType": "YulExpressionStatement",
"src": "23963:51:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "24023:29:19",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24040:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24045:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24036:3:19"
},
"nodeType": "YulFunctionCall",
"src": "24036:16:19"
},
"variables": [
{
"name": "end_1",
"nodeType": "YulTypedName",
"src": "24027:5:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "24061:29:19",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "24083:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "24077:5:19"
},
"nodeType": "YulFunctionCall",
"src": "24077:13:19"
},
"variables": [
{
"name": "length_1",
"nodeType": "YulTypedName",
"src": "24065:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "24125:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "24133:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24121:3:19"
},
"nodeType": "YulFunctionCall",
"src": "24121:15:19"
},
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "24138:5:19"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "24145:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "24099:21:19"
},
"nodeType": "YulFunctionCall",
"src": "24099:55:19"
},
"nodeType": "YulExpressionStatement",
"src": "24099:55:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "24163:33:19",
"value": {
"arguments": [
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "24180:5:19"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "24187:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24176:3:19"
},
"nodeType": "YulFunctionCall",
"src": "24176:20:19"
},
"variables": [
{
"name": "end_2",
"nodeType": "YulTypedName",
"src": "24167:5:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "24205:29:19",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "24227:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "24221:5:19"
},
"nodeType": "YulFunctionCall",
"src": "24221:13:19"
},
"variables": [
{
"name": "length_2",
"nodeType": "YulTypedName",
"src": "24209:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "24269:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "24277:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24265:3:19"
},
"nodeType": "YulFunctionCall",
"src": "24265:15:19"
},
{
"name": "end_2",
"nodeType": "YulIdentifier",
"src": "24282:5:19"
},
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "24289:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "24243:21:19"
},
"nodeType": "YulFunctionCall",
"src": "24243:55:19"
},
"nodeType": "YulExpressionStatement",
"src": "24243:55:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "24307:33:19",
"value": {
"arguments": [
{
"name": "end_2",
"nodeType": "YulIdentifier",
"src": "24324:5:19"
},
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "24331:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24320:3:19"
},
"nodeType": "YulFunctionCall",
"src": "24320:20:19"
},
"variables": [
{
"name": "end_3",
"nodeType": "YulTypedName",
"src": "24311:5:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "24349:29:19",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "24371:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "24365:5:19"
},
"nodeType": "YulFunctionCall",
"src": "24365:13:19"
},
"variables": [
{
"name": "length_3",
"nodeType": "YulTypedName",
"src": "24353:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "24413:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "24421:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24409:3:19"
},
"nodeType": "YulFunctionCall",
"src": "24409:15:19"
},
{
"name": "end_3",
"nodeType": "YulIdentifier",
"src": "24426:5:19"
},
{
"name": "length_3",
"nodeType": "YulIdentifier",
"src": "24433:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "24387:21:19"
},
"nodeType": "YulFunctionCall",
"src": "24387:55:19"
},
"nodeType": "YulExpressionStatement",
"src": "24387:55:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "24451:33:19",
"value": {
"arguments": [
{
"name": "end_3",
"nodeType": "YulIdentifier",
"src": "24468:5:19"
},
{
"name": "length_3",
"nodeType": "YulIdentifier",
"src": "24475:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24464:3:19"
},
"nodeType": "YulFunctionCall",
"src": "24464:20:19"
},
"variables": [
{
"name": "end_4",
"nodeType": "YulTypedName",
"src": "24455:5:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "24493:29:19",
"value": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "24515:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "24509:5:19"
},
"nodeType": "YulFunctionCall",
"src": "24509:13:19"
},
"variables": [
{
"name": "length_4",
"nodeType": "YulTypedName",
"src": "24497:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "24557:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "24565:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24553:3:19"
},
"nodeType": "YulFunctionCall",
"src": "24553:15:19"
},
{
"name": "end_4",
"nodeType": "YulIdentifier",
"src": "24570:5:19"
},
{
"name": "length_4",
"nodeType": "YulIdentifier",
"src": "24577:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "24531:21:19"
},
"nodeType": "YulFunctionCall",
"src": "24531:55:19"
},
"nodeType": "YulExpressionStatement",
"src": "24531:55:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "24595:33:19",
"value": {
"arguments": [
{
"name": "end_4",
"nodeType": "YulIdentifier",
"src": "24612:5:19"
},
{
"name": "length_4",
"nodeType": "YulIdentifier",
"src": "24619:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24608:3:19"
},
"nodeType": "YulFunctionCall",
"src": "24608:20:19"
},
"variables": [
{
"name": "end_5",
"nodeType": "YulTypedName",
"src": "24599:5:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "24637:29:19",
"value": {
"arguments": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "24659:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "24653:5:19"
},
"nodeType": "YulFunctionCall",
"src": "24653:13:19"
},
"variables": [
{
"name": "length_5",
"nodeType": "YulTypedName",
"src": "24641:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "24701:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "24709:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24697:3:19"
},
"nodeType": "YulFunctionCall",
"src": "24697:15:19"
},
{
"name": "end_5",
"nodeType": "YulIdentifier",
"src": "24714:5:19"
},
{
"name": "length_5",
"nodeType": "YulIdentifier",
"src": "24721:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "24675:21:19"
},
"nodeType": "YulFunctionCall",
"src": "24675:55:19"
},
"nodeType": "YulExpressionStatement",
"src": "24675:55:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "24739:33:19",
"value": {
"arguments": [
{
"name": "end_5",
"nodeType": "YulIdentifier",
"src": "24756:5:19"
},
{
"name": "length_5",
"nodeType": "YulIdentifier",
"src": "24763:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24752:3:19"
},
"nodeType": "YulFunctionCall",
"src": "24752:20:19"
},
"variables": [
{
"name": "end_6",
"nodeType": "YulTypedName",
"src": "24743:5:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "24781:29:19",
"value": {
"arguments": [
{
"name": "value6",
"nodeType": "YulIdentifier",
"src": "24803:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "24797:5:19"
},
"nodeType": "YulFunctionCall",
"src": "24797:13:19"
},
"variables": [
{
"name": "length_6",
"nodeType": "YulTypedName",
"src": "24785:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value6",
"nodeType": "YulIdentifier",
"src": "24845:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "24853:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24841:3:19"
},
"nodeType": "YulFunctionCall",
"src": "24841:15:19"
},
{
"name": "end_6",
"nodeType": "YulIdentifier",
"src": "24858:5:19"
},
{
"name": "length_6",
"nodeType": "YulIdentifier",
"src": "24865:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "24819:21:19"
},
"nodeType": "YulFunctionCall",
"src": "24819:55:19"
},
"nodeType": "YulExpressionStatement",
"src": "24819:55:19"
},
{
"nodeType": "YulAssignment",
"src": "24883:27:19",
"value": {
"arguments": [
{
"name": "end_6",
"nodeType": "YulIdentifier",
"src": "24894:5:19"
},
{
"name": "length_6",
"nodeType": "YulIdentifier",
"src": "24901:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24890:3:19"
},
"nodeType": "YulFunctionCall",
"src": "24890:20:19"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "24883:3:19"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "23822:3:19",
"type": ""
},
{
"name": "value6",
"nodeType": "YulTypedName",
"src": "23827:6:19",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "23835:6:19",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "23843:6:19",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "23851:6:19",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "23859:6:19",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "23867:6:19",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "23875:6:19",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "23886:3:19",
"type": ""
}
],
"src": "23467:1449:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25444:1244:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "25454:27:19",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "25474:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "25468:5:19"
},
"nodeType": "YulFunctionCall",
"src": "25468:13:19"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "25458:6:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "25516:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25524:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25512:3:19"
},
"nodeType": "YulFunctionCall",
"src": "25512:17:19"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25531:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25536:6:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "25490:21:19"
},
"nodeType": "YulFunctionCall",
"src": "25490:53:19"
},
"nodeType": "YulExpressionStatement",
"src": "25490:53:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "25552:29:19",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "25574:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "25568:5:19"
},
"nodeType": "YulFunctionCall",
"src": "25568:13:19"
},
"variables": [
{
"name": "length_1",
"nodeType": "YulTypedName",
"src": "25556:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "25616:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25624:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25612:3:19"
},
"nodeType": "YulFunctionCall",
"src": "25612:17:19"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25635:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25640:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25631:3:19"
},
"nodeType": "YulFunctionCall",
"src": "25631:16:19"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "25649:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "25590:21:19"
},
"nodeType": "YulFunctionCall",
"src": "25590:68:19"
},
"nodeType": "YulExpressionStatement",
"src": "25590:68:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "25667:44:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25688:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25693:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25684:3:19"
},
"nodeType": "YulFunctionCall",
"src": "25684:16:19"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "25702:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25680:3:19"
},
"nodeType": "YulFunctionCall",
"src": "25680:31:19"
},
"variables": [
{
"name": "end_1",
"nodeType": "YulTypedName",
"src": "25671:5:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "25720:29:19",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "25742:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "25736:5:19"
},
"nodeType": "YulFunctionCall",
"src": "25736:13:19"
},
"variables": [
{
"name": "length_2",
"nodeType": "YulTypedName",
"src": "25724:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "25784:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25792:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25780:3:19"
},
"nodeType": "YulFunctionCall",
"src": "25780:17:19"
},
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "25799:5:19"
},
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "25806:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "25758:21:19"
},
"nodeType": "YulFunctionCall",
"src": "25758:57:19"
},
"nodeType": "YulExpressionStatement",
"src": "25758:57:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "25824:29:19",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "25846:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "25840:5:19"
},
"nodeType": "YulFunctionCall",
"src": "25840:13:19"
},
"variables": [
{
"name": "length_3",
"nodeType": "YulTypedName",
"src": "25828:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "25888:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25896:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25884:3:19"
},
"nodeType": "YulFunctionCall",
"src": "25884:17:19"
},
{
"arguments": [
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "25907:5:19"
},
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "25914:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25903:3:19"
},
"nodeType": "YulFunctionCall",
"src": "25903:20:19"
},
{
"name": "length_3",
"nodeType": "YulIdentifier",
"src": "25925:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "25862:21:19"
},
"nodeType": "YulFunctionCall",
"src": "25862:72:19"
},
"nodeType": "YulExpressionStatement",
"src": "25862:72:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "25943:48:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "25964:5:19"
},
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "25971:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25960:3:19"
},
"nodeType": "YulFunctionCall",
"src": "25960:20:19"
},
{
"name": "length_3",
"nodeType": "YulIdentifier",
"src": "25982:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25956:3:19"
},
"nodeType": "YulFunctionCall",
"src": "25956:35:19"
},
"variables": [
{
"name": "end_2",
"nodeType": "YulTypedName",
"src": "25947:5:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "26000:29:19",
"value": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "26022:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "26016:5:19"
},
"nodeType": "YulFunctionCall",
"src": "26016:13:19"
},
"variables": [
{
"name": "length_4",
"nodeType": "YulTypedName",
"src": "26004:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "26064:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26072:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26060:3:19"
},
"nodeType": "YulFunctionCall",
"src": "26060:17:19"
},
{
"name": "end_2",
"nodeType": "YulIdentifier",
"src": "26079:5:19"
},
{
"name": "length_4",
"nodeType": "YulIdentifier",
"src": "26086:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "26038:21:19"
},
"nodeType": "YulFunctionCall",
"src": "26038:57:19"
},
"nodeType": "YulExpressionStatement",
"src": "26038:57:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "26104:29:19",
"value": {
"arguments": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "26126:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "26120:5:19"
},
"nodeType": "YulFunctionCall",
"src": "26120:13:19"
},
"variables": [
{
"name": "length_5",
"nodeType": "YulTypedName",
"src": "26108:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "26168:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26176:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26164:3:19"
},
"nodeType": "YulFunctionCall",
"src": "26164:17:19"
},
{
"arguments": [
{
"name": "end_2",
"nodeType": "YulIdentifier",
"src": "26187:5:19"
},
{
"name": "length_4",
"nodeType": "YulIdentifier",
"src": "26194:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26183:3:19"
},
"nodeType": "YulFunctionCall",
"src": "26183:20:19"
},
{
"name": "length_5",
"nodeType": "YulIdentifier",
"src": "26205:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "26142:21:19"
},
"nodeType": "YulFunctionCall",
"src": "26142:72:19"
},
"nodeType": "YulExpressionStatement",
"src": "26142:72:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "26223:48:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "end_2",
"nodeType": "YulIdentifier",
"src": "26244:5:19"
},
{
"name": "length_4",
"nodeType": "YulIdentifier",
"src": "26251:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26240:3:19"
},
"nodeType": "YulFunctionCall",
"src": "26240:20:19"
},
{
"name": "length_5",
"nodeType": "YulIdentifier",
"src": "26262:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26236:3:19"
},
"nodeType": "YulFunctionCall",
"src": "26236:35:19"
},
"variables": [
{
"name": "end_3",
"nodeType": "YulTypedName",
"src": "26227:5:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "26280:29:19",
"value": {
"arguments": [
{
"name": "value6",
"nodeType": "YulIdentifier",
"src": "26302:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "26296:5:19"
},
"nodeType": "YulFunctionCall",
"src": "26296:13:19"
},
"variables": [
{
"name": "length_6",
"nodeType": "YulTypedName",
"src": "26284:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value6",
"nodeType": "YulIdentifier",
"src": "26344:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26352:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26340:3:19"
},
"nodeType": "YulFunctionCall",
"src": "26340:17:19"
},
{
"name": "end_3",
"nodeType": "YulIdentifier",
"src": "26359:5:19"
},
{
"name": "length_6",
"nodeType": "YulIdentifier",
"src": "26366:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "26318:21:19"
},
"nodeType": "YulFunctionCall",
"src": "26318:57:19"
},
"nodeType": "YulExpressionStatement",
"src": "26318:57:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "26384:29:19",
"value": {
"arguments": [
{
"name": "value7",
"nodeType": "YulIdentifier",
"src": "26406:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "26400:5:19"
},
"nodeType": "YulFunctionCall",
"src": "26400:13:19"
},
"variables": [
{
"name": "length_7",
"nodeType": "YulTypedName",
"src": "26388:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value7",
"nodeType": "YulIdentifier",
"src": "26448:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26456:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26444:3:19"
},
"nodeType": "YulFunctionCall",
"src": "26444:17:19"
},
{
"arguments": [
{
"name": "end_3",
"nodeType": "YulIdentifier",
"src": "26467:5:19"
},
{
"name": "length_6",
"nodeType": "YulIdentifier",
"src": "26474:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26463:3:19"
},
"nodeType": "YulFunctionCall",
"src": "26463:20:19"
},
{
"name": "length_7",
"nodeType": "YulIdentifier",
"src": "26485:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "26422:21:19"
},
"nodeType": "YulFunctionCall",
"src": "26422:72:19"
},
"nodeType": "YulExpressionStatement",
"src": "26422:72:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "26503:45:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "end_3",
"nodeType": "YulIdentifier",
"src": "26521:5:19"
},
{
"name": "length_6",
"nodeType": "YulIdentifier",
"src": "26528:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26517:3:19"
},
"nodeType": "YulFunctionCall",
"src": "26517:20:19"
},
{
"name": "length_7",
"nodeType": "YulIdentifier",
"src": "26539:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26513:3:19"
},
"nodeType": "YulFunctionCall",
"src": "26513:35:19"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "26507:2:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "26557:29:19",
"value": {
"arguments": [
{
"name": "value8",
"nodeType": "YulIdentifier",
"src": "26579:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "26573:5:19"
},
"nodeType": "YulFunctionCall",
"src": "26573:13:19"
},
"variables": [
{
"name": "length_8",
"nodeType": "YulTypedName",
"src": "26561:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value8",
"nodeType": "YulIdentifier",
"src": "26621:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26629:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26617:3:19"
},
"nodeType": "YulFunctionCall",
"src": "26617:17:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "26636:2:19"
},
{
"name": "length_8",
"nodeType": "YulIdentifier",
"src": "26640:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "26595:21:19"
},
"nodeType": "YulFunctionCall",
"src": "26595:54:19"
},
"nodeType": "YulExpressionStatement",
"src": "26595:54:19"
},
{
"nodeType": "YulAssignment",
"src": "26658:24:19",
"value": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "26669:2:19"
},
{
"name": "length_8",
"nodeType": "YulIdentifier",
"src": "26673:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26665:3:19"
},
"nodeType": "YulFunctionCall",
"src": "26665:17:19"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "26658:3:19"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25356:3:19",
"type": ""
},
{
"name": "value8",
"nodeType": "YulTypedName",
"src": "25361:6:19",
"type": ""
},
{
"name": "value7",
"nodeType": "YulTypedName",
"src": "25369:6:19",
"type": ""
},
{
"name": "value6",
"nodeType": "YulTypedName",
"src": "25377:6:19",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "25385:6:19",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "25393:6:19",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "25401:6:19",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "25409:6:19",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "25417:6:19",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "25425:6:19",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "25436:3:19",
"type": ""
}
],
"src": "24921:1767:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26751:635:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "26761:29:19",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26784:5:19"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "26778:5:19"
},
"nodeType": "YulFunctionCall",
"src": "26778:12:19"
},
"variables": [
{
"name": "slotValue",
"nodeType": "YulTypedName",
"src": "26765:9:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "26799:50:19",
"value": {
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "26839:9:19"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "26813:25:19"
},
"nodeType": "YulFunctionCall",
"src": "26813:36:19"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "26803:6:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "26858:11:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "26868:1:19",
"type": "",
"value": "1"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "26862:2:19",
"type": ""
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "26919:97:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26940:3:19"
},
{
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "26949:9:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26964:3:19",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "26960:3:19"
},
"nodeType": "YulFunctionCall",
"src": "26960:8:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "26945:3:19"
},
"nodeType": "YulFunctionCall",
"src": "26945:24:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26933:6:19"
},
"nodeType": "YulFunctionCall",
"src": "26933:37:19"
},
"nodeType": "YulExpressionStatement",
"src": "26933:37:19"
},
{
"nodeType": "YulAssignment",
"src": "26983:23:19",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26994:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26999:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26990:3:19"
},
"nodeType": "YulFunctionCall",
"src": "26990:16:19"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "26983:3:19"
}
]
}
]
},
"nodeType": "YulCase",
"src": "26912:104:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "26917:1:19",
"type": "",
"value": "0"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "27032:348:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27053:1:19",
"type": "",
"value": "0"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27056:5:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27046:6:19"
},
"nodeType": "YulFunctionCall",
"src": "27046:16:19"
},
"nodeType": "YulExpressionStatement",
"src": "27046:16:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "27075:14:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "27085:4:19",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "27079:2:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "27102:31:19",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27127:1:19",
"type": "",
"value": "0"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "27130:2:19"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "27117:9:19"
},
"nodeType": "YulFunctionCall",
"src": "27117:16:19"
},
"variables": [
{
"name": "dataPos",
"nodeType": "YulTypedName",
"src": "27106:7:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "27146:10:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "27155:1:19",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "27150:1:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27223:111:19",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27252:3:19"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27257:1:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27248:3:19"
},
"nodeType": "YulFunctionCall",
"src": "27248:11:19"
},
{
"arguments": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "27267:7:19"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "27261:5:19"
},
"nodeType": "YulFunctionCall",
"src": "27261:14:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27241:6:19"
},
"nodeType": "YulFunctionCall",
"src": "27241:35:19"
},
"nodeType": "YulExpressionStatement",
"src": "27241:35:19"
},
{
"nodeType": "YulAssignment",
"src": "27293:27:19",
"value": {
"arguments": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "27308:7:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "27317:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27304:3:19"
},
"nodeType": "YulFunctionCall",
"src": "27304:16:19"
},
"variableNames": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "27293:7:19"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27180:1:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27183:6:19"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "27177:2:19"
},
"nodeType": "YulFunctionCall",
"src": "27177:13:19"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "27191:19:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27193:15:19",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27202:1:19"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "27205:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27198:3:19"
},
"nodeType": "YulFunctionCall",
"src": "27198:10:19"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27193:1:19"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "27173:3:19",
"statements": []
},
"src": "27169:165:19"
},
{
"nodeType": "YulAssignment",
"src": "27347:23:19",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27358:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27363:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27354:3:19"
},
"nodeType": "YulFunctionCall",
"src": "27354:16:19"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "27347:3:19"
}
]
}
]
},
"nodeType": "YulCase",
"src": "27025:355:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "27030:1:19",
"type": "",
"value": "1"
}
}
],
"expression": {
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "26889:9:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "26900:2:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "26885:3:19"
},
"nodeType": "YulFunctionCall",
"src": "26885:18:19"
},
"nodeType": "YulSwitch",
"src": "26878:502:19"
}
]
},
"name": "abi_encode_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26728:5:19",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "26735:3:19",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "26743:3:19",
"type": ""
}
],
"src": "26693:693:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28176:885:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28193:3:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28202:3:19",
"type": "",
"value": "136"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28207:32:19",
"type": "",
"value": "0x7b226e616d65223a2242616c6c2023"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "28198:3:19"
},
"nodeType": "YulFunctionCall",
"src": "28198:42:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28186:6:19"
},
"nodeType": "YulFunctionCall",
"src": "28186:55:19"
},
"nodeType": "YulExpressionStatement",
"src": "28186:55:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "28250:27:19",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "28270:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "28264:5:19"
},
"nodeType": "YulFunctionCall",
"src": "28264:13:19"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "28254:6:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "28312:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28320:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28308:3:19"
},
"nodeType": "YulFunctionCall",
"src": "28308:17:19"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28331:3:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28336:2:19",
"type": "",
"value": "15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28327:3:19"
},
"nodeType": "YulFunctionCall",
"src": "28327:12:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "28341:6:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "28286:21:19"
},
"nodeType": "YulFunctionCall",
"src": "28286:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "28286:62:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "28357:26:19",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28371:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "28376:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28367:3:19"
},
"nodeType": "YulFunctionCall",
"src": "28367:16:19"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "28361:2:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "28403:2:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28407:2:19",
"type": "",
"value": "15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28399:3:19"
},
"nodeType": "YulFunctionCall",
"src": "28399:11:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28416:2:19",
"type": "",
"value": "97"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28420:42:19",
"type": "",
"value": "0x111610113232b9b1b934b83a34b7b711101d1011"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "28412:3:19"
},
"nodeType": "YulFunctionCall",
"src": "28412:51:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28392:6:19"
},
"nodeType": "YulFunctionCall",
"src": "28392:72:19"
},
"nodeType": "YulExpressionStatement",
"src": "28392:72:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "28473:56:19",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "28509:6:19"
},
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "28521:2:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28525:2:19",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28517:3:19"
},
"nodeType": "YulFunctionCall",
"src": "28517:11:19"
}
],
"functionName": {
"name": "abi_encode_string_storage",
"nodeType": "YulIdentifier",
"src": "28483:25:19"
},
"nodeType": "YulFunctionCall",
"src": "28483:46:19"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "28477:2:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "28545:2:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28549:66:19",
"type": "",
"value": "0x222c2022696d61676522203a2022646174613a696d6167652f7376672b786d6c"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28538:6:19"
},
"nodeType": "YulFunctionCall",
"src": "28538:78:19"
},
"nodeType": "YulExpressionStatement",
"src": "28538:78:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "28636:2:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28640:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28632:3:19"
},
"nodeType": "YulFunctionCall",
"src": "28632:13:19"
},
{
"hexValue": "3b6261736536342c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "28647:10:19",
"type": "",
"value": ";base64,"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28625:6:19"
},
"nodeType": "YulFunctionCall",
"src": "28625:33:19"
},
"nodeType": "YulExpressionStatement",
"src": "28625:33:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "28667:29:19",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "28689:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "28683:5:19"
},
"nodeType": "YulFunctionCall",
"src": "28683:13:19"
},
"variables": [
{
"name": "length_1",
"nodeType": "YulTypedName",
"src": "28671:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "28731:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28739:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28727:3:19"
},
"nodeType": "YulFunctionCall",
"src": "28727:17:19"
},
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "28750:2:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28754:2:19",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28746:3:19"
},
"nodeType": "YulFunctionCall",
"src": "28746:11:19"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "28759:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "28705:21:19"
},
"nodeType": "YulFunctionCall",
"src": "28705:63:19"
},
"nodeType": "YulExpressionStatement",
"src": "28705:63:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "28777:27:19",
"value": {
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "28791:2:19"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "28795:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28787:3:19"
},
"nodeType": "YulFunctionCall",
"src": "28787:17:19"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "28781:2:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "28824:2:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28828:2:19",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28820:3:19"
},
"nodeType": "YulFunctionCall",
"src": "28820:11:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28837:3:19",
"type": "",
"value": "237"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28842:5:19",
"type": "",
"value": "69985"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "28833:3:19"
},
"nodeType": "YulFunctionCall",
"src": "28833:15:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28813:6:19"
},
"nodeType": "YulFunctionCall",
"src": "28813:36:19"
},
"nodeType": "YulExpressionStatement",
"src": "28813:36:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "28858:29:19",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "28880:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "28874:5:19"
},
"nodeType": "YulFunctionCall",
"src": "28874:13:19"
},
"variables": [
{
"name": "length_2",
"nodeType": "YulTypedName",
"src": "28862:8:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "28922:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28930:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28918:3:19"
},
"nodeType": "YulFunctionCall",
"src": "28918:17:19"
},
{
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "28941:2:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28945:2:19",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28937:3:19"
},
"nodeType": "YulFunctionCall",
"src": "28937:11:19"
},
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "28950:8:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "28896:21:19"
},
"nodeType": "YulFunctionCall",
"src": "28896:63:19"
},
"nodeType": "YulExpressionStatement",
"src": "28896:63:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "28968:27:19",
"value": {
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "28982:2:19"
},
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "28986:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28978:3:19"
},
"nodeType": "YulFunctionCall",
"src": "28978:17:19"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "28972:2:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "29015:2:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29019:2:19",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29011:3:19"
},
"nodeType": "YulFunctionCall",
"src": "29011:11:19"
},
{
"hexValue": "7d",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29024:3:19",
"type": "",
"value": "}"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29004:6:19"
},
"nodeType": "YulFunctionCall",
"src": "29004:24:19"
},
"nodeType": "YulExpressionStatement",
"src": "29004:24:19"
},
{
"nodeType": "YulAssignment",
"src": "29037:18:19",
"value": {
"arguments": [
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "29048:2:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29052:2:19",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29044:3:19"
},
"nodeType": "YulFunctionCall",
"src": "29044:11:19"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "29037:3:19"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_52b2c2e5cc83e59abe14c2168238feeae08c1e4979f790a3a6bd61d3605f81ef_t_string_memory_ptr_t_stringliteral_3543838f308471b14aab7a79185fb3e2346e9fcae9577c5b01c61a3008d3a89f_t_string_storage_t_stringliteral_278fee699eda0eebe02769cc1fcbc2e94f1b2f13572875f2f832dc27960d70a1_t_string_memory_ptr_t_stringliteral_d31db5fa4cccdf0b2a7c8fa1b54fac1497461aa344c190614087e30f1494e3a3_t_string_memory_ptr_t_stringliteral_8e2ffa389f3a6ded42d759b3377ac0d928e6a268d143bcc9517093d10c843bff__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "28128:3:19",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "28133:6:19",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "28141:6:19",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "28149:6:19",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "28157:6:19",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "28168:3:19",
"type": ""
}
],
"src": "27391:1670:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29306:208:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29323:3:19"
},
{
"hexValue": "646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29328:31:19",
"type": "",
"value": "data:application/json;base64,"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29316:6:19"
},
"nodeType": "YulFunctionCall",
"src": "29316:44:19"
},
"nodeType": "YulExpressionStatement",
"src": "29316:44:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "29369:27:19",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "29389:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "29383:5:19"
},
"nodeType": "YulFunctionCall",
"src": "29383:13:19"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "29373:6:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "29431:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29439:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29427:3:19"
},
"nodeType": "YulFunctionCall",
"src": "29427:17:19"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29450:3:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29455:2:19",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29446:3:19"
},
"nodeType": "YulFunctionCall",
"src": "29446:12:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "29460:6:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "29405:21:19"
},
"nodeType": "YulFunctionCall",
"src": "29405:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "29405:62:19"
},
{
"nodeType": "YulAssignment",
"src": "29476:32:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29491:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "29496:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29487:3:19"
},
"nodeType": "YulFunctionCall",
"src": "29487:16:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29505:2:19",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29483:3:19"
},
"nodeType": "YulFunctionCall",
"src": "29483:25:19"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "29476:3:19"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_bccab2d885f86fda81bfd84dd4248d31f8073b473d187111d36536db073076fa_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": "29282:3:19",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "29287:6:19",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "29298:3:19",
"type": ""
}
],
"src": "29066:448:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29693:228:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29710:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29721:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29703:6:19"
},
"nodeType": "YulFunctionCall",
"src": "29703:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "29703:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29744:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29755:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29740:3:19"
},
"nodeType": "YulFunctionCall",
"src": "29740:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29760:2:19",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29733:6:19"
},
"nodeType": "YulFunctionCall",
"src": "29733:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "29733:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29783:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29794:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29779:3:19"
},
"nodeType": "YulFunctionCall",
"src": "29779:18:19"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29799:34:19",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29772:6:19"
},
"nodeType": "YulFunctionCall",
"src": "29772:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "29772:62:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29854:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29865:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29850:3:19"
},
"nodeType": "YulFunctionCall",
"src": "29850:18:19"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29870:8:19",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29843:6:19"
},
"nodeType": "YulFunctionCall",
"src": "29843:36:19"
},
"nodeType": "YulExpressionStatement",
"src": "29843:36:19"
},
{
"nodeType": "YulAssignment",
"src": "29888:27:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29900:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29911:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29896:3:19"
},
"nodeType": "YulFunctionCall",
"src": "29896:19:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29888:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29670:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "29684:4:19",
"type": ""
}
],
"src": "29519:402:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30100:234:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30117:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30128:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30110:6:19"
},
"nodeType": "YulFunctionCall",
"src": "30110:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "30110:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30151:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30162:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30147:3:19"
},
"nodeType": "YulFunctionCall",
"src": "30147:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30167:2:19",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30140:6:19"
},
"nodeType": "YulFunctionCall",
"src": "30140:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "30140:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30190:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30201:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30186:3:19"
},
"nodeType": "YulFunctionCall",
"src": "30186:18:19"
},
{
"hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30206:34:19",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30179:6:19"
},
"nodeType": "YulFunctionCall",
"src": "30179:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "30179:62:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30261:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30272:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30257:3:19"
},
"nodeType": "YulFunctionCall",
"src": "30257:18:19"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30277:14:19",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30250:6:19"
},
"nodeType": "YulFunctionCall",
"src": "30250:42:19"
},
"nodeType": "YulExpressionStatement",
"src": "30250:42:19"
},
{
"nodeType": "YulAssignment",
"src": "30301:27:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30313:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30324:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30309:3:19"
},
"nodeType": "YulFunctionCall",
"src": "30309:19:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30301:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "30077:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30091:4:19",
"type": ""
}
],
"src": "29926:408:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30513:231:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30530:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30541:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30523:6:19"
},
"nodeType": "YulFunctionCall",
"src": "30523:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "30523:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30564:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30575:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30560:3:19"
},
"nodeType": "YulFunctionCall",
"src": "30560:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30580:2:19",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30553:6:19"
},
"nodeType": "YulFunctionCall",
"src": "30553:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "30553:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30603:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30614:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30599:3:19"
},
"nodeType": "YulFunctionCall",
"src": "30599:18:19"
},
{
"hexValue": "4552433732313a207472616e73666572206f6620746f6b656e20746861742069",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30619:34:19",
"type": "",
"value": "ERC721: transfer of token that i"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30592:6:19"
},
"nodeType": "YulFunctionCall",
"src": "30592:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "30592:62:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30674:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30685:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30670:3:19"
},
"nodeType": "YulFunctionCall",
"src": "30670:18:19"
},
{
"hexValue": "73206e6f74206f776e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30690:11:19",
"type": "",
"value": "s not own"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30663:6:19"
},
"nodeType": "YulFunctionCall",
"src": "30663:39:19"
},
"nodeType": "YulExpressionStatement",
"src": "30663:39:19"
},
{
"nodeType": "YulAssignment",
"src": "30711:27:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30723:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30734:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30719:3:19"
},
"nodeType": "YulFunctionCall",
"src": "30719:19:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30711:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "30490:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30504:4:19",
"type": ""
}
],
"src": "30339:405:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30923:226:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30940:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30951:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30933:6:19"
},
"nodeType": "YulFunctionCall",
"src": "30933:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "30933:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30974:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30985:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30970:3:19"
},
"nodeType": "YulFunctionCall",
"src": "30970:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30990:2:19",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30963:6:19"
},
"nodeType": "YulFunctionCall",
"src": "30963:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "30963:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31013:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31024:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31009:3:19"
},
"nodeType": "YulFunctionCall",
"src": "31009:18:19"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31029:34:19",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31002:6:19"
},
"nodeType": "YulFunctionCall",
"src": "31002:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "31002:62:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31084:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31095:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31080:3:19"
},
"nodeType": "YulFunctionCall",
"src": "31080:18:19"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31100:6:19",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31073:6:19"
},
"nodeType": "YulFunctionCall",
"src": "31073:34:19"
},
"nodeType": "YulExpressionStatement",
"src": "31073:34:19"
},
{
"nodeType": "YulAssignment",
"src": "31116:27:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31128:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31139:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31124:3:19"
},
"nodeType": "YulFunctionCall",
"src": "31124:19:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31116:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "30900:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30914:4:19",
"type": ""
}
],
"src": "30749:400:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31203:76:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "31225:22:19",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "31227:16:19"
},
"nodeType": "YulFunctionCall",
"src": "31227:18:19"
},
"nodeType": "YulExpressionStatement",
"src": "31227:18:19"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "31219:1:19"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "31222:1:19"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "31216:2:19"
},
"nodeType": "YulFunctionCall",
"src": "31216:8:19"
},
"nodeType": "YulIf",
"src": "31213:34:19"
},
{
"nodeType": "YulAssignment",
"src": "31256:17:19",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "31268:1:19"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "31271:1:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "31264:3:19"
},
"nodeType": "YulFunctionCall",
"src": "31264:9:19"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "31256:4:19"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "31185:1:19",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "31188:1:19",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "31194:4:19",
"type": ""
}
],
"src": "31154:125:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31458:175:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31475:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31486:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31468:6:19"
},
"nodeType": "YulFunctionCall",
"src": "31468:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "31468:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31509:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31520:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31505:3:19"
},
"nodeType": "YulFunctionCall",
"src": "31505:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31525:2:19",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31498:6:19"
},
"nodeType": "YulFunctionCall",
"src": "31498:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "31498:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31548:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31559:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31544:3:19"
},
"nodeType": "YulFunctionCall",
"src": "31544:18:19"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31564:27:19",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31537:6:19"
},
"nodeType": "YulFunctionCall",
"src": "31537:55:19"
},
"nodeType": "YulExpressionStatement",
"src": "31537:55:19"
},
{
"nodeType": "YulAssignment",
"src": "31601:26:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31613:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31624:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31609:3:19"
},
"nodeType": "YulFunctionCall",
"src": "31609:18:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31601:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "31435:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "31449:4:19",
"type": ""
}
],
"src": "31284:349:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31812:240:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31829:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31840:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31822:6:19"
},
"nodeType": "YulFunctionCall",
"src": "31822:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "31822:21:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31863:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31874:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31859:3:19"
},
"nodeType": "YulFunctionCall",
"src": "31859:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31879:2:19",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31852:6:19"
},
"nodeType": "YulFunctionCall",
"src": "31852:30:19"
},
"nodeType": "YulExpressionStatement",
"src": "31852:30:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31902:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31913:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31898:3:19"
},
"nodeType": "YulFunctionCall",
"src": "31898:18:19"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31918:34:19",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31891:6:19"
},
"nodeType": "YulFunctionCall",
"src": "31891:62:19"
},
"nodeType": "YulExpressionStatement",
"src": "31891:62:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31973:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31984:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31969:3:19"
},
"nodeType": "YulFunctionCall",
"src": "31969:18:19"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31989:20:19",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31962:6:19"
},
"nodeType": "YulFunctionCall",
"src": "31962:48:19"
},
"nodeType": "YulExpressionStatement",
"src": "31962:48:19"
},
{
"nodeType": "YulAssignment",
"src": "32019:27:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32031:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32042:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32027:3:19"
},
"nodeType": "YulFunctionCall",
"src": "32027:19:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32019:4:19"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "31789:9:19",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "31803:4:19",
"type": ""
}
],
"src": "31638:414:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32342:215:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32359:3:19"
},
{
"hexValue": "536b79",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32364:5:19",
"type": "",
"value": "Sky"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32352:6:19"
},
"nodeType": "YulFunctionCall",
"src": "32352:18:19"
},
"nodeType": "YulExpressionStatement",
"src": "32352:18:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "32379:27:19",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "32399:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "32393:5:19"
},
"nodeType": "YulFunctionCall",
"src": "32393:13:19"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "32383:6:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "32441:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32449:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32437:3:19"
},
"nodeType": "YulFunctionCall",
"src": "32437:17:19"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32460:3:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32465:1:19",
"type": "",
"value": "3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32456:3:19"
},
"nodeType": "YulFunctionCall",
"src": "32456:11:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "32469:6:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "32415:21:19"
},
"nodeType": "YulFunctionCall",
"src": "32415:61:19"
},
"nodeType": "YulExpressionStatement",
"src": "32415:61:19"
},
{
"nodeType": "YulAssignment",
"src": "32485:66:19",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "32518:6:19"
},
{
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32534:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "32539:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32530:3:19"
},
"nodeType": "YulFunctionCall",
"src": "32530:16:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32548:1:19",
"type": "",
"value": "3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32526:3:19"
},
"nodeType": "YulFunctionCall",
"src": "32526:24:19"
}
],
"functionName": {
"name": "abi_encode_string_storage",
"nodeType": "YulIdentifier",
"src": "32492:25:19"
},
"nodeType": "YulFunctionCall",
"src": "32492:59:19"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "32485:3:19"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_263f7a96314f246730c11571dde6c4e90d30091ac980a60e7d6f0f5511c0cd25_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "32310:3:19",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "32315:6:19",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "32323:6:19",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "32334:3:19",
"type": ""
}
],
"src": "32057:500:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32594:95:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32611:1:19",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32618:3:19",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32623:10:19",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "32614:3:19"
},
"nodeType": "YulFunctionCall",
"src": "32614:20:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32604:6:19"
},
"nodeType": "YulFunctionCall",
"src": "32604:31:19"
},
"nodeType": "YulExpressionStatement",
"src": "32604:31:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32651:1:19",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32654:4:19",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32644:6:19"
},
"nodeType": "YulFunctionCall",
"src": "32644:15:19"
},
"nodeType": "YulExpressionStatement",
"src": "32644:15:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32675:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32678:4:19",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "32668:6:19"
},
"nodeType": "YulFunctionCall",
"src": "32668:15:19"
},
"nodeType": "YulExpressionStatement",
"src": "32668:15:19"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "32562:127:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32732:74:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "32755:22:19",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "32757:16:19"
},
"nodeType": "YulFunctionCall",
"src": "32757:18:19"
},
"nodeType": "YulExpressionStatement",
"src": "32757:18:19"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32752:1:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "32745:6:19"
},
"nodeType": "YulFunctionCall",
"src": "32745:9:19"
},
"nodeType": "YulIf",
"src": "32742:35:19"
},
{
"nodeType": "YulAssignment",
"src": "32786:14:19",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32795:1:19"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32798:1:19"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "32791:3:19"
},
"nodeType": "YulFunctionCall",
"src": "32791:9:19"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "32786:1:19"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "32717:1:19",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "32720:1:19",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "32726:1:19",
"type": ""
}
],
"src": "32694:112:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33096:218:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33113:3:19"
},
{
"hexValue": "47726f756e64",
"kind": "string",
"nodeType": "YulLiteral",
"src": "33118:8:19",
"type": "",
"value": "Ground"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33106:6:19"
},
"nodeType": "YulFunctionCall",
"src": "33106:21:19"
},
"nodeType": "YulExpressionStatement",
"src": "33106:21:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "33136:27:19",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "33156:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "33150:5:19"
},
"nodeType": "YulFunctionCall",
"src": "33150:13:19"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "33140:6:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "33198:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33206:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33194:3:19"
},
"nodeType": "YulFunctionCall",
"src": "33194:17:19"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33217:3:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33222:1:19",
"type": "",
"value": "6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33213:3:19"
},
"nodeType": "YulFunctionCall",
"src": "33213:11:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33226:6:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "33172:21:19"
},
"nodeType": "YulFunctionCall",
"src": "33172:61:19"
},
"nodeType": "YulExpressionStatement",
"src": "33172:61:19"
},
{
"nodeType": "YulAssignment",
"src": "33242:66:19",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "33275:6:19"
},
{
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33291:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33296:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33287:3:19"
},
"nodeType": "YulFunctionCall",
"src": "33287:16:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33305:1:19",
"type": "",
"value": "6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33283:3:19"
},
"nodeType": "YulFunctionCall",
"src": "33283:24:19"
}
],
"functionName": {
"name": "abi_encode_string_storage",
"nodeType": "YulIdentifier",
"src": "33249:25:19"
},
"nodeType": "YulFunctionCall",
"src": "33249:59:19"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "33242:3:19"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_32ea6d46cbb64e67d5c755018aaec3c15673c35b561d24df0e9b5b1b782c59a8_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "33064:3:19",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "33069:6:19",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "33077:6:19",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "33088:3:19",
"type": ""
}
],
"src": "32811:503:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33604:216:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33621:3:19"
},
{
"hexValue": "42616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "33626:6:19",
"type": "",
"value": "Ball"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33614:6:19"
},
"nodeType": "YulFunctionCall",
"src": "33614:19:19"
},
"nodeType": "YulExpressionStatement",
"src": "33614:19:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "33642:27:19",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "33662:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "33656:5:19"
},
"nodeType": "YulFunctionCall",
"src": "33656:13:19"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "33646:6:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "33704:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33712:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33700:3:19"
},
"nodeType": "YulFunctionCall",
"src": "33700:17:19"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33723:3:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33728:1:19",
"type": "",
"value": "4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33719:3:19"
},
"nodeType": "YulFunctionCall",
"src": "33719:11:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33732:6:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "33678:21:19"
},
"nodeType": "YulFunctionCall",
"src": "33678:61:19"
},
"nodeType": "YulExpressionStatement",
"src": "33678:61:19"
},
{
"nodeType": "YulAssignment",
"src": "33748:66:19",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "33781:6:19"
},
{
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33797:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33802:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33793:3:19"
},
"nodeType": "YulFunctionCall",
"src": "33793:16:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33811:1:19",
"type": "",
"value": "4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33789:3:19"
},
"nodeType": "YulFunctionCall",
"src": "33789:24:19"
}
],
"functionName": {
"name": "abi_encode_string_storage",
"nodeType": "YulIdentifier",
"src": "33755:25:19"
},
"nodeType": "YulFunctionCall",
"src": "33755:59:19"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "33748:3:19"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_fbe0cf5b532c85d12f44c70ec43055b59619279fcf5655790f684b3460cf7a93_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "33572:3:19",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "33577:6:19",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "33585:6:19",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "33596:3:19",
"type": ""
}
],
"src": "33319:501:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34110:219:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34127:3:19"
},
{
"hexValue": "59617264616765",
"kind": "string",
"nodeType": "YulLiteral",
"src": "34132:9:19",
"type": "",
"value": "Yardage"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34120:6:19"
},
"nodeType": "YulFunctionCall",
"src": "34120:22:19"
},
"nodeType": "YulExpressionStatement",
"src": "34120:22:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "34151:27:19",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "34171:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "34165:5:19"
},
"nodeType": "YulFunctionCall",
"src": "34165:13:19"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "34155:6:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "34213:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34221:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34209:3:19"
},
"nodeType": "YulFunctionCall",
"src": "34209:17:19"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34232:3:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34237:1:19",
"type": "",
"value": "7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34228:3:19"
},
"nodeType": "YulFunctionCall",
"src": "34228:11:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "34241:6:19"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "34187:21:19"
},
"nodeType": "YulFunctionCall",
"src": "34187:61:19"
},
"nodeType": "YulExpressionStatement",
"src": "34187:61:19"
},
{
"nodeType": "YulAssignment",
"src": "34257:66:19",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "34290:6:19"
},
{
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34306:3:19"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "34311:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34302:3:19"
},
"nodeType": "YulFunctionCall",
"src": "34302:16:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34320:1:19",
"type": "",
"value": "7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34298:3:19"
},
"nodeType": "YulFunctionCall",
"src": "34298:24:19"
}
],
"functionName": {
"name": "abi_encode_string_storage",
"nodeType": "YulIdentifier",
"src": "34264:25:19"
},
"nodeType": "YulFunctionCall",
"src": "34264:59:19"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "34257:3:19"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_82bad2b9d448a47ee2930b73af2043894d7013f0284684a9f73af49e1096c5bf_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "34078:3:19",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "34083:6:19",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "34091:6:19",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "34102:3:19",
"type": ""
}
],
"src": "33825:504:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34380:74:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "34403:22:19",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "34405:16:19"
},
"nodeType": "YulFunctionCall",
"src": "34405:18:19"
},
"nodeType": "YulExpressionStatement",
"src": "34405:18:19"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "34400:1:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "34393:6:19"
},
"nodeType": "YulFunctionCall",
"src": "34393:9:19"
},
"nodeType": "YulIf",
"src": "34390:35:19"
},
{
"nodeType": "YulAssignment",
"src": "34434:14:19",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "34443:1:19"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "34446:1:19"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "34439:3:19"
},
"nodeType": "YulFunctionCall",
"src": "34439:9:19"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "34434:1:19"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "34365:1:19",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "34368:1:19",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "34374:1:19",
"type": ""
}
],
"src": "34334:120:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34662:286:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "34672:29:19",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34690:3:19",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34695:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "34686:3:19"
},
"nodeType": "YulFunctionCall",
"src": "34686:11:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34699:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "34682:3:19"
},
"nodeType": "YulFunctionCall",
"src": "34682:19:19"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "34676:2:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34717:9:19"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "34732:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "34740:2:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "34728:3:19"
},
"nodeType": "YulFunctionCall",
"src": "34728:15:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34710:6:19"
},
"nodeType": "YulFunctionCall",
"src": "34710:34:19"
},
"nodeType": "YulExpressionStatement",
"src": "34710:34:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34764:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34775:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34760:3:19"
},
"nodeType": "YulFunctionCall",
"src": "34760:18:19"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "34784:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "34792:2:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "34780:3:19"
},
"nodeType": "YulFunctionCall",
"src": "34780:15:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34753:6:19"
},
"nodeType": "YulFunctionCall",
"src": "34753:43:19"
},
"nodeType": "YulExpressionStatement",
"src": "34753:43:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34816:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34827:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34812:3:19"
},
"nodeType": "YulFunctionCall",
"src": "34812:18:19"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "34832:6:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34805:6:19"
},
"nodeType": "YulFunctionCall",
"src": "34805:34:19"
},
"nodeType": "YulExpressionStatement",
"src": "34805:34:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34859:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34870:2:19",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34855:3:19"
},
"nodeType": "YulFunctionCall",
"src": "34855:18:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34875:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34848:6:19"
},
"nodeType": "YulFunctionCall",
"src": "34848:31:19"
},
"nodeType": "YulExpressionStatement",
"src": "34848:31:19"
},
{
"nodeType": "YulAssignment",
"src": "34888:54:19",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "34914:6:19"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34926:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34937:3:19",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34922:3:19"
},
"nodeType": "YulFunctionCall",
"src": "34922:19:19"
}
],
"functionName": {
"name": "abi_encode_string",
"nodeType": "YulIdentifier",
"src": "34896:17:19"
},
"nodeType": "YulFunctionCall",
"src": "34896:46:19"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34888:4:19"
}
]
}
]
},
"name": "abi_encode_tuple
View raw

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

View raw

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

View raw

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

View raw

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

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