Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mwilc0x/7f20d97035b1867623d35bfcc7abfe17 to your computer and use it in GitHub Desktop.
Save mwilc0x/7f20d97035b1867623d35bfcc7abfe17 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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.1 (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(paused(), "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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.1 (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.1 (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.1 (token/ERC721/extensions/ERC721Pausable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "../../../security/Pausable.sol";
/**
* @dev ERC721 token with pausable token transfers, minting and burning.
*
* Useful for scenarios such as preventing trades until the end of an evaluation
* period, or having an emergency switch for freezing all token transfers in the
* event of a large bug.
*/
abstract contract ERC721Pausable is ERC721, Pausable {
/**
* @dev See {ERC721-_beforeTokenTransfer}.
*
* Requirements:
*
* - the contract must not be paused.
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
require(!paused(), "ERC721Pausable: token transfer while paused");
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
address[15] memory accounts;
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2;
accounts[2] = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db;
accounts[3] = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB;
accounts[4] = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2;
accounts[5] = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372;
accounts[6] = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678;
accounts[7] = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7;
accounts[8] = 0x1aE0EA34a72D944a8C7603FfB3eC30a6669E454C;
accounts[9] = 0x0A098Eda01Ce92ff4A4CCb7A4fFFb5A43EBC70DC;
accounts[10] = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c;
accounts[11] = 0x14723A09ACff6D2A60DcdF7aA4AFf308FDDC160C;
accounts[12] = 0x4B0897b0513fdC7C541B6d9D7E929C4e5364D2dB;
accounts[13] = 0x583031D1113aD414F02576BD6afaBfb302140225;
accounts[14] = 0xdD870fA1b7C4700F2BD7f44238821C26f7392148;
return accounts[index];
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
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": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.",
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/LOOT/Context.sol": "Context"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/LOOT/Context.sol": {
"keccak256": "0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f",
"license": "MIT",
"urls": [
"bzz-raw://26e8b38a7ac8e7b4463af00cf7fff1bf48ae9875765bf4f7751e100124d0bc8c",
"dweb:/ipfs/QmWcsmkVr24xmmjfnBQZoemFniXjj3vwT78Cz6uqZW1Hux"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Interface of the ERC20 standard as defined in the EIP.",
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called."
},
"approve(address,uint256)": {
"details": "Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event."
},
"balanceOf(address)": {
"details": "Returns the amount of tokens owned by `account`."
},
"totalSupply()": {
"details": "Returns the amount of tokens in existence."
},
"transfer(address,uint256)": {
"details": "Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
},
"transferFrom(address,address,uint256)": {
"details": "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."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/LOOT/IERC20.sol": "IERC20"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/LOOT/IERC20.sol": {
"keccak256": "0x1a3fe05486ba5f5dbaa5fd9b8bdef2231a8675fb1fee2da87b01ac753837271f",
"license": "MIT",
"urls": [
"bzz-raw://b3c56f7b18c86053fe6a63a3c7936e3697e172b40ddb31be9273982f99bc6063",
"dweb:/ipfs/Qmep5wW9i9siCQMy1xEVBJprYwmaHU8DWXQFngazR1gsHy"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Interface for the optional metadata functions from the ERC20 standard. _Available since v4.1._",
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called."
},
"approve(address,uint256)": {
"details": "Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event."
},
"balanceOf(address)": {
"details": "Returns the amount of tokens owned by `account`."
},
"decimals()": {
"details": "Returns the decimals places of the token."
},
"name()": {
"details": "Returns the name of the token."
},
"symbol()": {
"details": "Returns the symbol of the token."
},
"totalSupply()": {
"details": "Returns the amount of tokens in existence."
},
"transfer(address,uint256)": {
"details": "Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
},
"transferFrom(address,address,uint256)": {
"details": "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."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/LOOT/IERC20Metadata.sol": "IERC20Metadata"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/LOOT/IERC20.sol": {
"keccak256": "0x1a3fe05486ba5f5dbaa5fd9b8bdef2231a8675fb1fee2da87b01ac753837271f",
"license": "MIT",
"urls": [
"bzz-raw://b3c56f7b18c86053fe6a63a3c7936e3697e172b40ddb31be9273982f99bc6063",
"dweb:/ipfs/Qmep5wW9i9siCQMy1xEVBJprYwmaHU8DWXQFngazR1gsHy"
]
},
"contracts/LOOT/IERC20Metadata.sol": {
"keccak256": "0xb63c77a8047f65f823e21c5963e2305ded0691eb80101cdf533c91e84acaafdb",
"license": "MIT",
"urls": [
"bzz-raw://283f5cf2881c751e200196e8c8d1d3bf91779e1231aee67191d04783fcb07c91",
"dweb:/ipfs/QmTvnjekrmwSzcV565AbMmRCMVQ1hgAE6bzX9iR6XhynVW"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_66": {
"entryPoint": null,
"id": 66,
"parameterSlots": 2,
"returnSlots": 0
},
"@_689": {
"entryPoint": null,
"id": 689,
"parameterSlots": 0,
"returnSlots": 0
},
"@_788": {
"entryPoint": null,
"id": 788,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_11": {
"entryPoint": 216,
"id": 11,
"parameterSlots": 0,
"returnSlots": 1
},
"@_setOwner_853": {
"entryPoint": 224,
"id": 853,
"parameterSlots": 1,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 598,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 652,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "58:269:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "68:22:6",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "82:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "88:1:6",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "78:3:6"
},
"nodeType": "YulFunctionCall",
"src": "78:12:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "68:6:6"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "99:38:6",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "129:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "135:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "125:3:6"
},
"nodeType": "YulFunctionCall",
"src": "125:12:6"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "103:18:6",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "176:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "190:27:6",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "204:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "212:4:6",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "200:3:6"
},
"nodeType": "YulFunctionCall",
"src": "200:17:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "190:6:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "156:18:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "149:6:6"
},
"nodeType": "YulFunctionCall",
"src": "149:26:6"
},
"nodeType": "YulIf",
"src": "146:81:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "279:42:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "293:16:6"
},
"nodeType": "YulFunctionCall",
"src": "293:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "293:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "243:18:6"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "263:2:6"
},
"nodeType": "YulFunctionCall",
"src": "263:14:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "240:2:6"
},
"nodeType": "YulFunctionCall",
"src": "240:38:6"
},
"nodeType": "YulIf",
"src": "237:84:6"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "42:4:6",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "51:6:6",
"type": ""
}
],
"src": "7:320:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "361:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "378:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "381:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "371:6:6"
},
"nodeType": "YulFunctionCall",
"src": "371:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "371:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "475:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "478:4:6",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "468:6:6"
},
"nodeType": "YulFunctionCall",
"src": "468:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "468:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "499:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "502:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "492:6:6"
},
"nodeType": "YulFunctionCall",
"src": "492:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "492:15:6"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "333:180:6"
}
]
},
"contents": "{\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n}\n",
"id": 6,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600481526020017f4c4f4f54000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c4f4f5400000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620001a6565b508060049080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61207b80620002cb6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80638da5cb5b116100a2578063a7fc7a0711610071578063a7fc7a07146102ce578063a9059cbb146102ea578063dd62ed3e1461031a578063f2fde38b1461034a578063f6a74ed7146103665761010b565b80638da5cb5b1461024657806395d89b41146102645780639dc29fac14610282578063a457c2d71461029e5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806340c10f19146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610382565b6040516101259190611871565b60405180910390f35b6101486004803603810190610143919061159c565b610414565b6040516101559190611856565b60405180910390f35b610166610432565b6040516101739190611a53565b60405180910390f35b61019660048036038101906101919190611549565b61043c565b6040516101a39190611856565b60405180910390f35b6101b4610534565b6040516101c19190611a6e565b60405180910390f35b6101e460048036038101906101df919061159c565b61053d565b6040516101f19190611856565b60405180910390f35b610214600480360381019061020f919061159c565b6105e9565b005b610230600480360381019061022b91906114dc565b610683565b60405161023d9190611a53565b60405180910390f35b61024e6106cb565b60405161025b919061183b565b60405180910390f35b61026c6106f5565b6040516102799190611871565b60405180910390f35b61029c6004803603810190610297919061159c565b610787565b005b6102b860048036038101906102b3919061159c565b610821565b6040516102c59190611856565b60405180910390f35b6102e860048036038101906102e391906114dc565b61090c565b005b61030460048036038101906102ff919061159c565b6109e3565b6040516103119190611856565b60405180910390f35b610334600480360381019061032f9190611509565b610a01565b6040516103419190611a53565b60405180910390f35b610364600480360381019061035f91906114dc565b610a88565b005b610380600480360381019061037b91906114dc565b610b80565b005b60606003805461039190611bb7565b80601f01602080910402602001604051908101604052809291908181526020018280546103bd90611bb7565b801561040a5780601f106103df5761010080835404028352916020019161040a565b820191906000526020600020905b8154815290600101906020018083116103ed57829003601f168201915b5050505050905090565b6000610428610421610c57565b8484610c5f565b6001905092915050565b6000600254905090565b6000610449848484610e2a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610494610c57565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050b90611973565b60405180910390fd5b61052885610520610c57565b858403610c5f565b60019150509392505050565b60006012905090565b60006105df61054a610c57565b848460016000610558610c57565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105da9190611aa5565b610c5f565b6001905092915050565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066c90611933565b60405180910390fd5b61067f82826110ab565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461070490611bb7565b80601f016020809104026020016040519081016040528092919081815260200182805461073090611bb7565b801561077d5780601f106107525761010080835404028352916020019161077d565b820191906000526020600020905b81548152906001019060200180831161076057829003601f168201915b5050505050905090565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a90611953565b60405180910390fd5b61081d828261120b565b5050565b60008060016000610830610c57565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e490611a13565b60405180910390fd5b6109016108f8610c57565b85858403610c5f565b600191505092915050565b610914610c57565b73ffffffffffffffffffffffffffffffffffffffff166109326106cb565b73ffffffffffffffffffffffffffffffffffffffff1614610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f90611993565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006109f76109f0610c57565b8484610e2a565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a90610c57565b73ffffffffffffffffffffffffffffffffffffffff16610aae6106cb565b73ffffffffffffffffffffffffffffffffffffffff1614610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb90611993565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b906118d3565b60405180910390fd5b610b7d816113e2565b50565b610b88610c57565b73ffffffffffffffffffffffffffffffffffffffff16610ba66106cb565b73ffffffffffffffffffffffffffffffffffffffff1614610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf390611993565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc6906119f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d36906118f3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e1d9190611a53565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e91906119d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0190611893565b60405180910390fd5b610f158383836114a8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9290611913565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461102e9190611aa5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110929190611a53565b60405180910390a36110a58484846114ad565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290611a33565b60405180910390fd5b611127600083836114a8565b80600260008282546111399190611aa5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461118e9190611aa5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111f39190611a53565b60405180910390a3611207600083836114ad565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611272906119b3565b60405180910390fd5b611287826000836114a8565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561130d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611304906118b3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113649190611afb565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113c99190611a53565b60405180910390a36113dd836000846114ad565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506114c181612017565b92915050565b6000813590506114d68161202e565b92915050565b6000602082840312156114f2576114f1611c47565b5b6000611500848285016114b2565b91505092915050565b600080604083850312156115205761151f611c47565b5b600061152e858286016114b2565b925050602061153f858286016114b2565b9150509250929050565b60008060006060848603121561156257611561611c47565b5b6000611570868287016114b2565b9350506020611581868287016114b2565b9250506040611592868287016114c7565b9150509250925092565b600080604083850312156115b3576115b2611c47565b5b60006115c1858286016114b2565b92505060206115d2858286016114c7565b9150509250929050565b6115e581611b2f565b82525050565b6115f481611b41565b82525050565b600061160582611a89565b61160f8185611a94565b935061161f818560208601611b84565b61162881611c4c565b840191505092915050565b6000611640602383611a94565b915061164b82611c5d565b604082019050919050565b6000611663602283611a94565b915061166e82611cac565b604082019050919050565b6000611686602683611a94565b915061169182611cfb565b604082019050919050565b60006116a9602283611a94565b91506116b482611d4a565b604082019050919050565b60006116cc602683611a94565b91506116d782611d99565b604082019050919050565b60006116ef601983611a94565b91506116fa82611de8565b602082019050919050565b6000611712601983611a94565b915061171d82611e11565b602082019050919050565b6000611735602883611a94565b915061174082611e3a565b604082019050919050565b6000611758602083611a94565b915061176382611e89565b602082019050919050565b600061177b602183611a94565b915061178682611eb2565b604082019050919050565b600061179e602583611a94565b91506117a982611f01565b604082019050919050565b60006117c1602483611a94565b91506117cc82611f50565b604082019050919050565b60006117e4602583611a94565b91506117ef82611f9f565b604082019050919050565b6000611807601f83611a94565b915061181282611fee565b602082019050919050565b61182681611b6d565b82525050565b61183581611b77565b82525050565b600060208201905061185060008301846115dc565b92915050565b600060208201905061186b60008301846115eb565b92915050565b6000602082019050818103600083015261188b81846115fa565b905092915050565b600060208201905081810360008301526118ac81611633565b9050919050565b600060208201905081810360008301526118cc81611656565b9050919050565b600060208201905081810360008301526118ec81611679565b9050919050565b6000602082019050818103600083015261190c8161169c565b9050919050565b6000602082019050818103600083015261192c816116bf565b9050919050565b6000602082019050818103600083015261194c816116e2565b9050919050565b6000602082019050818103600083015261196c81611705565b9050919050565b6000602082019050818103600083015261198c81611728565b9050919050565b600060208201905081810360008301526119ac8161174b565b9050919050565b600060208201905081810360008301526119cc8161176e565b9050919050565b600060208201905081810360008301526119ec81611791565b9050919050565b60006020820190508181036000830152611a0c816117b4565b9050919050565b60006020820190508181036000830152611a2c816117d7565b9050919050565b60006020820190508181036000830152611a4c816117fa565b9050919050565b6000602082019050611a68600083018461181d565b92915050565b6000602082019050611a83600083018461182c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ab082611b6d565b9150611abb83611b6d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611af057611aef611be9565b5b828201905092915050565b6000611b0682611b6d565b9150611b1183611b6d565b925082821015611b2457611b23611be9565b5b828203905092915050565b6000611b3a82611b4d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611ba2578082015181840152602081019050611b87565b83811115611bb1576000848401525b50505050565b60006002820490506001821680611bcf57607f821691505b60208210811415611be357611be2611c18565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206275726e00000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61202081611b2f565b811461202b57600080fd5b50565b61203781611b6d565b811461204257600080fd5b5056fea26469706673582212204bfcbd98aeeb26ff9a09f5b3a63a9827de03959784c2af65555f1bb753eb335164736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4C4F4F5400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4C4F4F5400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x96 SWAP3 SWAP2 SWAP1 PUSH3 0x1A6 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0x1A6 JUMP JUMPDEST POP POP POP PUSH3 0xD2 PUSH3 0xC6 PUSH3 0xD8 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xE0 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x2BB JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x1B4 SWAP1 PUSH3 0x256 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x1D8 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x224 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x1F3 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x224 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x224 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x223 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x206 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x233 SWAP2 SWAP1 PUSH3 0x237 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x252 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x238 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x26F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x286 JUMPI PUSH3 0x285 PUSH3 0x28C JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x207B DUP1 PUSH3 0x2CB PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x10B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xA7FC7A07 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xA7FC7A07 EQ PUSH2 0x2CE JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2EA JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x31A JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x34A JUMPI DUP1 PUSH4 0xF6A74ED7 EQ PUSH2 0x366 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x246 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x264 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x282 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x29E JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1AC JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x1FA JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x216 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x110 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x12E JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x17C JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x118 PUSH2 0x382 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x125 SWAP2 SWAP1 PUSH2 0x1871 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x148 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x143 SWAP2 SWAP1 PUSH2 0x159C JUMP JUMPDEST PUSH2 0x414 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x155 SWAP2 SWAP1 PUSH2 0x1856 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x166 PUSH2 0x432 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x173 SWAP2 SWAP1 PUSH2 0x1A53 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x196 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x191 SWAP2 SWAP1 PUSH2 0x1549 JUMP JUMPDEST PUSH2 0x43C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A3 SWAP2 SWAP1 PUSH2 0x1856 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B4 PUSH2 0x534 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C1 SWAP2 SWAP1 PUSH2 0x1A6E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1E4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DF SWAP2 SWAP1 PUSH2 0x159C JUMP JUMPDEST PUSH2 0x53D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F1 SWAP2 SWAP1 PUSH2 0x1856 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x214 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x20F SWAP2 SWAP1 PUSH2 0x159C JUMP JUMPDEST PUSH2 0x5E9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x230 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22B SWAP2 SWAP1 PUSH2 0x14DC JUMP JUMPDEST PUSH2 0x683 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0x1A53 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x24E PUSH2 0x6CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x25B SWAP2 SWAP1 PUSH2 0x183B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26C PUSH2 0x6F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x279 SWAP2 SWAP1 PUSH2 0x1871 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x29C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x297 SWAP2 SWAP1 PUSH2 0x159C JUMP JUMPDEST PUSH2 0x787 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2B8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2B3 SWAP2 SWAP1 PUSH2 0x159C JUMP JUMPDEST PUSH2 0x821 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C5 SWAP2 SWAP1 PUSH2 0x1856 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2E3 SWAP2 SWAP1 PUSH2 0x14DC JUMP JUMPDEST PUSH2 0x90C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x304 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2FF SWAP2 SWAP1 PUSH2 0x159C JUMP JUMPDEST PUSH2 0x9E3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x311 SWAP2 SWAP1 PUSH2 0x1856 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x334 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x32F SWAP2 SWAP1 PUSH2 0x1509 JUMP JUMPDEST PUSH2 0xA01 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x341 SWAP2 SWAP1 PUSH2 0x1A53 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x364 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x35F SWAP2 SWAP1 PUSH2 0x14DC JUMP JUMPDEST PUSH2 0xA88 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x380 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x37B SWAP2 SWAP1 PUSH2 0x14DC JUMP JUMPDEST PUSH2 0xB80 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x391 SWAP1 PUSH2 0x1BB7 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 0x3BD SWAP1 PUSH2 0x1BB7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x40A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3DF JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x40A 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 0x3ED JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x428 PUSH2 0x421 PUSH2 0xC57 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xC5F JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x449 DUP5 DUP5 DUP5 PUSH2 0xE2A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x494 PUSH2 0xC57 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x514 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x50B SWAP1 PUSH2 0x1973 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x528 DUP6 PUSH2 0x520 PUSH2 0xC57 JUMP JUMPDEST DUP6 DUP5 SUB PUSH2 0xC5F JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5DF PUSH2 0x54A PUSH2 0xC57 JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH1 0x0 PUSH2 0x558 PUSH2 0xC57 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x5DA SWAP2 SWAP1 PUSH2 0x1AA5 JUMP JUMPDEST PUSH2 0xC5F JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x675 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x66C SWAP1 PUSH2 0x1933 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x67F DUP3 DUP3 PUSH2 0x10AB JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x704 SWAP1 PUSH2 0x1BB7 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 0x730 SWAP1 PUSH2 0x1BB7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x77D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x752 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x77D 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 0x760 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x813 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x80A SWAP1 PUSH2 0x1953 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x81D DUP3 DUP3 PUSH2 0x120B JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x830 PUSH2 0xC57 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x8ED JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8E4 SWAP1 PUSH2 0x1A13 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x901 PUSH2 0x8F8 PUSH2 0xC57 JUMP JUMPDEST DUP6 DUP6 DUP5 SUB PUSH2 0xC5F JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x914 PUSH2 0xC57 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x932 PUSH2 0x6CB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x988 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x97F SWAP1 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x6 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F7 PUSH2 0x9F0 PUSH2 0xC57 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xE2A JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xA90 PUSH2 0xC57 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xAAE PUSH2 0x6CB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xB04 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP1 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xB74 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB6B SWAP1 PUSH2 0x18D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB7D DUP2 PUSH2 0x13E2 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0xB88 PUSH2 0xC57 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xBA6 PUSH2 0x6CB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xBFC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF3 SWAP1 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xCCF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCC6 SWAP1 PUSH2 0x19F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD3F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD36 SWAP1 PUSH2 0x18F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0xE1D SWAP2 SWAP1 PUSH2 0x1A53 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xE9A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE91 SWAP1 PUSH2 0x19D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF0A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF01 SWAP1 PUSH2 0x1893 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xF15 DUP4 DUP4 DUP4 PUSH2 0x14A8 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xF9B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF92 SWAP1 PUSH2 0x1913 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x102E SWAP2 SWAP1 PUSH2 0x1AA5 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1092 SWAP2 SWAP1 PUSH2 0x1A53 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x10A5 DUP5 DUP5 DUP5 PUSH2 0x14AD JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x111B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1112 SWAP1 PUSH2 0x1A33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1127 PUSH1 0x0 DUP4 DUP4 PUSH2 0x14A8 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1139 SWAP2 SWAP1 PUSH2 0x1AA5 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x118E SWAP2 SWAP1 PUSH2 0x1AA5 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x11F3 SWAP2 SWAP1 PUSH2 0x1A53 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x1207 PUSH1 0x0 DUP4 DUP4 PUSH2 0x14AD JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x127B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1272 SWAP1 PUSH2 0x19B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1287 DUP3 PUSH1 0x0 DUP4 PUSH2 0x14A8 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x130D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1304 SWAP1 PUSH2 0x18B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1364 SWAP2 SWAP1 PUSH2 0x1AFB JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x13C9 SWAP2 SWAP1 PUSH2 0x1A53 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x13DD DUP4 PUSH1 0x0 DUP5 PUSH2 0x14AD JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14C1 DUP2 PUSH2 0x2017 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14D6 DUP2 PUSH2 0x202E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14F2 JUMPI PUSH2 0x14F1 PUSH2 0x1C47 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1500 DUP5 DUP3 DUP6 ADD PUSH2 0x14B2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1520 JUMPI PUSH2 0x151F PUSH2 0x1C47 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x152E DUP6 DUP3 DUP7 ADD PUSH2 0x14B2 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x153F DUP6 DUP3 DUP7 ADD PUSH2 0x14B2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1562 JUMPI PUSH2 0x1561 PUSH2 0x1C47 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1570 DUP7 DUP3 DUP8 ADD PUSH2 0x14B2 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1581 DUP7 DUP3 DUP8 ADD PUSH2 0x14B2 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1592 DUP7 DUP3 DUP8 ADD PUSH2 0x14C7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x15B3 JUMPI PUSH2 0x15B2 PUSH2 0x1C47 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x15C1 DUP6 DUP3 DUP7 ADD PUSH2 0x14B2 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x15D2 DUP6 DUP3 DUP7 ADD PUSH2 0x14C7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x15E5 DUP2 PUSH2 0x1B2F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x15F4 DUP2 PUSH2 0x1B41 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1605 DUP3 PUSH2 0x1A89 JUMP JUMPDEST PUSH2 0x160F DUP2 DUP6 PUSH2 0x1A94 JUMP JUMPDEST SWAP4 POP PUSH2 0x161F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1B84 JUMP JUMPDEST PUSH2 0x1628 DUP2 PUSH2 0x1C4C JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1640 PUSH1 0x23 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x164B DUP3 PUSH2 0x1C5D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1663 PUSH1 0x22 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x166E DUP3 PUSH2 0x1CAC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1686 PUSH1 0x26 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x1691 DUP3 PUSH2 0x1CFB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16A9 PUSH1 0x22 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x16B4 DUP3 PUSH2 0x1D4A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16CC PUSH1 0x26 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x16D7 DUP3 PUSH2 0x1D99 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16EF PUSH1 0x19 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x16FA DUP3 PUSH2 0x1DE8 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1712 PUSH1 0x19 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x171D DUP3 PUSH2 0x1E11 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1735 PUSH1 0x28 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x1740 DUP3 PUSH2 0x1E3A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1758 PUSH1 0x20 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x1763 DUP3 PUSH2 0x1E89 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x177B PUSH1 0x21 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x1786 DUP3 PUSH2 0x1EB2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x179E PUSH1 0x25 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x17A9 DUP3 PUSH2 0x1F01 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17C1 PUSH1 0x24 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x17CC DUP3 PUSH2 0x1F50 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17E4 PUSH1 0x25 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x17EF DUP3 PUSH2 0x1F9F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1807 PUSH1 0x1F DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x1812 DUP3 PUSH2 0x1FEE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1826 DUP2 PUSH2 0x1B6D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1835 DUP2 PUSH2 0x1B77 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1850 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x15DC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x186B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x15EB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x188B DUP2 DUP5 PUSH2 0x15FA JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x18AC DUP2 PUSH2 0x1633 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x18CC DUP2 PUSH2 0x1656 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x18EC DUP2 PUSH2 0x1679 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x190C DUP2 PUSH2 0x169C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x192C DUP2 PUSH2 0x16BF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x194C DUP2 PUSH2 0x16E2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x196C DUP2 PUSH2 0x1705 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x198C DUP2 PUSH2 0x1728 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19AC DUP2 PUSH2 0x174B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19CC DUP2 PUSH2 0x176E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19EC DUP2 PUSH2 0x1791 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A0C DUP2 PUSH2 0x17B4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A2C DUP2 PUSH2 0x17D7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A4C DUP2 PUSH2 0x17FA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A68 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x181D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A83 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x182C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1AB0 DUP3 PUSH2 0x1B6D JUMP JUMPDEST SWAP2 POP PUSH2 0x1ABB DUP4 PUSH2 0x1B6D JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1AF0 JUMPI PUSH2 0x1AEF PUSH2 0x1BE9 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B06 DUP3 PUSH2 0x1B6D JUMP JUMPDEST SWAP2 POP PUSH2 0x1B11 DUP4 PUSH2 0x1B6D JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1B24 JUMPI PUSH2 0x1B23 PUSH2 0x1BE9 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B3A DUP3 PUSH2 0x1B4D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1BA2 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1B87 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1BB1 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1BCF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1BE3 JUMPI PUSH2 0x1BE2 PUSH2 0x1C18 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F6E6C7920636F6E74726F6C6C6572732063616E206D696E7400000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F6E6C7920636F6E74726F6C6C6572732063616E206275726E00000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x2020 DUP2 PUSH2 0x1B2F JUMP JUMPDEST DUP2 EQ PUSH2 0x202B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2037 DUP2 PUSH2 0x1B6D JUMP JUMPDEST DUP2 EQ PUSH2 0x2042 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4B 0xFC 0xBD SWAP9 0xAE 0xEB 0x26 SELFDESTRUCT SWAP11 MULMOD CREATE2 0xB3 0xA6 GASPRICE SWAP9 0x27 0xDE SUB SWAP6 SWAP8 DUP5 0xC2 0xAF PUSH6 0x555F1BB753EB CALLER MLOAD PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "112:1255:4:-:0;;;263:38;;;;;;;;;;1885:113:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959:5;1951;:13;;;;;;;;;;;;:::i;:::-;;1984:7;1974;:17;;;;;;;;;;;;:::i;:::-;;1885:113;;882:23:5;892:12;:10;;;:12;;:::i;:::-;882:9;;;:23;;:::i;:::-;112:1255:4;;587:96:0;640:7;666:10;659:17;;587:96;:::o;1656:169:5:-;1711:16;1730:6;;;;;;;;;;;1711:25;;1755:8;1746:6;;:17;;;;;;;;;;;;;;;;;;1809:8;1778:40;;1799:8;1778:40;;;;;;;;;;;;1701:124;1656:169;:::o;112:1255:4:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:320:6:-;51:6;88:1;82:4;78:12;68:22;;135:1;129:4;125:12;156:18;146:81;;212:4;204:6;200:17;190:27;;146:81;274:2;266:6;263:14;243:18;240:38;237:84;;;293:18;;:::i;:::-;237:84;58:269;7:320;;;:::o;333:180::-;381:77;378:1;371:88;478:4;475:1;468:15;502:4;499:1;492:15;112:1255:4;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_565": {
"entryPoint": 5293,
"id": 565,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_543": {
"entryPoint": 3167,
"id": 543,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_554": {
"entryPoint": 5288,
"id": 554,
"parameterSlots": 3,
"returnSlots": 0
},
"@_burn_498": {
"entryPoint": 4619,
"id": 498,
"parameterSlots": 2,
"returnSlots": 0
},
"@_mint_426": {
"entryPoint": 4267,
"id": 426,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_11": {
"entryPoint": 3159,
"id": 11,
"parameterSlots": 0,
"returnSlots": 1
},
"@_setOwner_853": {
"entryPoint": 5090,
"id": 853,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_371": {
"entryPoint": 3626,
"id": 371,
"parameterSlots": 3,
"returnSlots": 0
},
"@addController_748": {
"entryPoint": 2316,
"id": 748,
"parameterSlots": 1,
"returnSlots": 0
},
"@allowance_159": {
"entryPoint": 2561,
"id": 159,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_180": {
"entryPoint": 1044,
"id": 180,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_120": {
"entryPoint": 1667,
"id": 120,
"parameterSlots": 1,
"returnSlots": 1
},
"@burn_733": {
"entryPoint": 1927,
"id": 733,
"parameterSlots": 2,
"returnSlots": 0
},
"@decimals_96": {
"entryPoint": 1332,
"id": 96,
"parameterSlots": 0,
"returnSlots": 1
},
"@decreaseAllowance_294": {
"entryPoint": 2081,
"id": 294,
"parameterSlots": 2,
"returnSlots": 1
},
"@increaseAllowance_255": {
"entryPoint": 1341,
"id": 255,
"parameterSlots": 2,
"returnSlots": 1
},
"@mint_711": {
"entryPoint": 1513,
"id": 711,
"parameterSlots": 2,
"returnSlots": 0
},
"@name_76": {
"entryPoint": 898,
"id": 76,
"parameterSlots": 0,
"returnSlots": 1
},
"@owner_797": {
"entryPoint": 1739,
"id": 797,
"parameterSlots": 0,
"returnSlots": 1
},
"@removeController_763": {
"entryPoint": 2944,
"id": 763,
"parameterSlots": 1,
"returnSlots": 0
},
"@symbol_86": {
"entryPoint": 1781,
"id": 86,
"parameterSlots": 0,
"returnSlots": 1
},
"@totalSupply_106": {
"entryPoint": 1074,
"id": 106,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_228": {
"entryPoint": 1084,
"id": 228,
"parameterSlots": 3,
"returnSlots": 1
},
"@transferOwnership_834": {
"entryPoint": 2696,
"id": 834,
"parameterSlots": 1,
"returnSlots": 0
},
"@transfer_141": {
"entryPoint": 2531,
"id": 141,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 5298,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 5319,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 5340,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 5385,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 5449,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 5532,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 5596,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 5611,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5626,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5683,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5718,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5753,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5788,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5823,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_65089127b803930c398c36e2411edb8f0ffcc22797f9575db6a198b718da7d72_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5858,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8ff8a328d78cd80ce29c4c18014e741f7bb01c4500f00f595cf38d812d0a8161_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5893,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5928,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5963,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5998,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6033,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6068,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6103,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6138,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 6173,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 6188,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 6203,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 6230,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6257,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6291,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6323,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6355,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6387,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6419,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_65089127b803930c398c36e2411edb8f0ffcc22797f9575db6a198b718da7d72__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6451,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8ff8a328d78cd80ce29c4c18014e741f7bb01c4500f00f595cf38d812d0a8161__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6483,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6515,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6547,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6579,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6611,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6643,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6675,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6707,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 6739,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 6766,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 6793,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 6804,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 6821,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 6907,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 6959,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 6977,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 6989,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 7021,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 7031,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 7044,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 7095,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 7145,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 7192,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 7239,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 7244,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f": {
"entryPoint": 7261,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd": {
"entryPoint": 7340,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 7419,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029": {
"entryPoint": 7498,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6": {
"entryPoint": 7577,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_65089127b803930c398c36e2411edb8f0ffcc22797f9575db6a198b718da7d72": {
"entryPoint": 7656,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8ff8a328d78cd80ce29c4c18014e741f7bb01c4500f00f595cf38d812d0a8161": {
"entryPoint": 7697,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330": {
"entryPoint": 7738,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 7817,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f": {
"entryPoint": 7858,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea": {
"entryPoint": 7937,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208": {
"entryPoint": 8016,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8": {
"entryPoint": 8095,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": {
"entryPoint": 8174,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 8215,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 8238,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:21458:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:6",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:6"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:6"
},
"nodeType": "YulFunctionCall",
"src": "78:20:6"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:6"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:6"
},
"nodeType": "YulFunctionCall",
"src": "107:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:6"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:6",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:6",
"type": ""
}
],
"src": "7:139:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:6",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:6"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:6"
},
"nodeType": "YulFunctionCall",
"src": "223:20:6"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:6"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "252:26:6"
},
"nodeType": "YulFunctionCall",
"src": "252:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:6"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:6",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:6",
"type": ""
}
],
"src": "152:139:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "363:263:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "409:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "411:77:6"
},
"nodeType": "YulFunctionCall",
"src": "411:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "411:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "384:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "393:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "380:3:6"
},
"nodeType": "YulFunctionCall",
"src": "380:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "405:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "376:3:6"
},
"nodeType": "YulFunctionCall",
"src": "376:32:6"
},
"nodeType": "YulIf",
"src": "373:119:6"
},
{
"nodeType": "YulBlock",
"src": "502:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "517:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "531:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "521:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "546:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "581:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "592:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "577:3:6"
},
"nodeType": "YulFunctionCall",
"src": "577:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "601:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "556:20:6"
},
"nodeType": "YulFunctionCall",
"src": "556:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "546:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "333:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "344:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "356:6:6",
"type": ""
}
],
"src": "297:329:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "715:391:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "761:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "763:77:6"
},
"nodeType": "YulFunctionCall",
"src": "763:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "763:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "736:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "745:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "732:3:6"
},
"nodeType": "YulFunctionCall",
"src": "732:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "757:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "728:3:6"
},
"nodeType": "YulFunctionCall",
"src": "728:32:6"
},
"nodeType": "YulIf",
"src": "725:119:6"
},
{
"nodeType": "YulBlock",
"src": "854:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "869:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "883:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "873:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "898:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "933:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "944:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "929:3:6"
},
"nodeType": "YulFunctionCall",
"src": "929:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "953:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "908:20:6"
},
"nodeType": "YulFunctionCall",
"src": "908:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "898:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "981:118:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "996:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1010:2:6",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1000:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1026:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1061:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1072:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1057:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1057:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1081:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1036:20:6"
},
"nodeType": "YulFunctionCall",
"src": "1036:53:6"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1026:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "677:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "688:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "700:6:6",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "708:6:6",
"type": ""
}
],
"src": "632:474:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1212:519:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1258:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1260:77:6"
},
"nodeType": "YulFunctionCall",
"src": "1260:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "1260:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1233:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1242:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1229:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1229:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1254:2:6",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1225:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1225:32:6"
},
"nodeType": "YulIf",
"src": "1222:119:6"
},
{
"nodeType": "YulBlock",
"src": "1351:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1366:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1380:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1370:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1395:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1430:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1441:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1426:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1426:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1450:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1405:20:6"
},
"nodeType": "YulFunctionCall",
"src": "1405:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1395:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1478:118:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1493:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1507:2:6",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1497:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1523:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1558:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1569:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1554:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1554:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1578:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1533:20:6"
},
"nodeType": "YulFunctionCall",
"src": "1533:53:6"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1523:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1606:118:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1621:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1635:2:6",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1625:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1651:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1686:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1697:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1682:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1682:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1706:7:6"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1661:20:6"
},
"nodeType": "YulFunctionCall",
"src": "1661:53:6"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1651:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1166:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1177:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1189:6:6",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1197:6:6",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1205:6:6",
"type": ""
}
],
"src": "1112:619:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1820:391:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1866:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1868:77:6"
},
"nodeType": "YulFunctionCall",
"src": "1868:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "1868:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1841:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1850:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1837:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1837:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1862:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1833:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1833:32:6"
},
"nodeType": "YulIf",
"src": "1830:119:6"
},
{
"nodeType": "YulBlock",
"src": "1959:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1974:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1988:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1978:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2003:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2038:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2049:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2034:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2034:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2058:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2013:20:6"
},
"nodeType": "YulFunctionCall",
"src": "2013:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2003:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2086:118:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2101:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2115:2:6",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2105:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2131:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2166:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2177:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2162:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2162:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2186:7:6"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2141:20:6"
},
"nodeType": "YulFunctionCall",
"src": "2141:53:6"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2131:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1782:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1793:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1805:6:6",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1813:6:6",
"type": ""
}
],
"src": "1737:474:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2282:53:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2299:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2322:5:6"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2304:17:6"
},
"nodeType": "YulFunctionCall",
"src": "2304:24:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2292:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2292:37:6"
},
"nodeType": "YulExpressionStatement",
"src": "2292:37:6"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2270:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2277:3:6",
"type": ""
}
],
"src": "2217:118:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2400:50:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2417:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2437:5:6"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2422:14:6"
},
"nodeType": "YulFunctionCall",
"src": "2422:21:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2410:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2410:34:6"
},
"nodeType": "YulExpressionStatement",
"src": "2410:34:6"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2388:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2395:3:6",
"type": ""
}
],
"src": "2341:109:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2548:272:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2558:53:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2605:5:6"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2572:32:6"
},
"nodeType": "YulFunctionCall",
"src": "2572:39:6"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2562:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2620:78:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2686:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2691:6:6"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2627:58:6"
},
"nodeType": "YulFunctionCall",
"src": "2627:71:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2620:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2733:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2740:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2729:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2729:16:6"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2747:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2752:6:6"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2707:21:6"
},
"nodeType": "YulFunctionCall",
"src": "2707:52:6"
},
"nodeType": "YulExpressionStatement",
"src": "2707:52:6"
},
{
"nodeType": "YulAssignment",
"src": "2768:46:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2779:3:6"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2806:6:6"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2784:21:6"
},
"nodeType": "YulFunctionCall",
"src": "2784:29:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2775:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2775:39:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2768:3:6"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2529:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2536:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2544:3:6",
"type": ""
}
],
"src": "2456:364:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2972:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2982:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3048:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3053:2:6",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2989:58:6"
},
"nodeType": "YulFunctionCall",
"src": "2989:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2982:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3154:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulIdentifier",
"src": "3065:88:6"
},
"nodeType": "YulFunctionCall",
"src": "3065:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "3065:93:6"
},
{
"nodeType": "YulAssignment",
"src": "3167:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3178:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3183:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3174:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3174:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3167:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2960:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2968:3:6",
"type": ""
}
],
"src": "2826:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3344:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3354:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3420:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3425:2:6",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3361:58:6"
},
"nodeType": "YulFunctionCall",
"src": "3361:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3354:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3526:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
"nodeType": "YulIdentifier",
"src": "3437:88:6"
},
"nodeType": "YulFunctionCall",
"src": "3437:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "3437:93:6"
},
{
"nodeType": "YulAssignment",
"src": "3539:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3550:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3555:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3546:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3546:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3539:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3332:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3340:3:6",
"type": ""
}
],
"src": "3198:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3716:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3726:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3792:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3797:2:6",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3733:58:6"
},
"nodeType": "YulFunctionCall",
"src": "3733:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3726:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3898:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "3809:88:6"
},
"nodeType": "YulFunctionCall",
"src": "3809:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "3809:93:6"
},
{
"nodeType": "YulAssignment",
"src": "3911:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3922:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3927:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3918:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3918:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3911:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3704:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3712:3:6",
"type": ""
}
],
"src": "3570:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4088:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4098:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4164:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4169:2:6",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4105:58:6"
},
"nodeType": "YulFunctionCall",
"src": "4105:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4098:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4270:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulIdentifier",
"src": "4181:88:6"
},
"nodeType": "YulFunctionCall",
"src": "4181:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "4181:93:6"
},
{
"nodeType": "YulAssignment",
"src": "4283:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4294:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4299:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4290:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4290:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4283:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4076:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4084:3:6",
"type": ""
}
],
"src": "3942:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4460:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4470:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4536:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4541:2:6",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4477:58:6"
},
"nodeType": "YulFunctionCall",
"src": "4477:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4470:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4642:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulIdentifier",
"src": "4553:88:6"
},
"nodeType": "YulFunctionCall",
"src": "4553:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "4553:93:6"
},
{
"nodeType": "YulAssignment",
"src": "4655:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4666:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4671:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4662:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4662:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4655:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4448:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4456:3:6",
"type": ""
}
],
"src": "4314:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4832:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4842:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4908:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4913:2:6",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4849:58:6"
},
"nodeType": "YulFunctionCall",
"src": "4849:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4842:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5014:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_65089127b803930c398c36e2411edb8f0ffcc22797f9575db6a198b718da7d72",
"nodeType": "YulIdentifier",
"src": "4925:88:6"
},
"nodeType": "YulFunctionCall",
"src": "4925:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "4925:93:6"
},
{
"nodeType": "YulAssignment",
"src": "5027:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5038:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5043:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5034:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5034:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5027:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_65089127b803930c398c36e2411edb8f0ffcc22797f9575db6a198b718da7d72_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4820:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4828:3:6",
"type": ""
}
],
"src": "4686:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5204:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5214:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5280:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5285:2:6",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5221:58:6"
},
"nodeType": "YulFunctionCall",
"src": "5221:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5214:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5386:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_8ff8a328d78cd80ce29c4c18014e741f7bb01c4500f00f595cf38d812d0a8161",
"nodeType": "YulIdentifier",
"src": "5297:88:6"
},
"nodeType": "YulFunctionCall",
"src": "5297:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "5297:93:6"
},
{
"nodeType": "YulAssignment",
"src": "5399:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5410:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5415:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5406:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5406:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5399:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8ff8a328d78cd80ce29c4c18014e741f7bb01c4500f00f595cf38d812d0a8161_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5192:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5200:3:6",
"type": ""
}
],
"src": "5058:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5576:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5586:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5652:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5657:2:6",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5593:58:6"
},
"nodeType": "YulFunctionCall",
"src": "5593:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5586:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5758:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
"nodeType": "YulIdentifier",
"src": "5669:88:6"
},
"nodeType": "YulFunctionCall",
"src": "5669:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "5669:93:6"
},
{
"nodeType": "YulAssignment",
"src": "5771:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5782:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5787:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5778:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5778:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5771:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5564:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5572:3:6",
"type": ""
}
],
"src": "5430:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5948:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5958:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6024:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6029:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5965:58:6"
},
"nodeType": "YulFunctionCall",
"src": "5965:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5958:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6130:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "6041:88:6"
},
"nodeType": "YulFunctionCall",
"src": "6041:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "6041:93:6"
},
{
"nodeType": "YulAssignment",
"src": "6143:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6154:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6159:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6150:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6150:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6143:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5936:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5944:3:6",
"type": ""
}
],
"src": "5802:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6320:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6330:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6396:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6401:2:6",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6337:58:6"
},
"nodeType": "YulFunctionCall",
"src": "6337:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6330:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6502:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
"nodeType": "YulIdentifier",
"src": "6413:88:6"
},
"nodeType": "YulFunctionCall",
"src": "6413:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "6413:93:6"
},
{
"nodeType": "YulAssignment",
"src": "6515:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6526:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6531:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6522:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6522:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6515:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6308:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6316:3:6",
"type": ""
}
],
"src": "6174:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6692:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6702:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6768:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6773:2:6",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6709:58:6"
},
"nodeType": "YulFunctionCall",
"src": "6709:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6702:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6874:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulIdentifier",
"src": "6785:88:6"
},
"nodeType": "YulFunctionCall",
"src": "6785:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "6785:93:6"
},
{
"nodeType": "YulAssignment",
"src": "6887:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6898:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6903:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6894:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6894:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6887:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6680:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6688:3:6",
"type": ""
}
],
"src": "6546:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7064:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7074:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7140:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7145:2:6",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7081:58:6"
},
"nodeType": "YulFunctionCall",
"src": "7081:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7074:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7246:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulIdentifier",
"src": "7157:88:6"
},
"nodeType": "YulFunctionCall",
"src": "7157:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "7157:93:6"
},
{
"nodeType": "YulAssignment",
"src": "7259:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7270:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7275:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7266:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7266:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7259:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7052:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7060:3:6",
"type": ""
}
],
"src": "6918:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7436:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7446:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7512:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7517:2:6",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7453:58:6"
},
"nodeType": "YulFunctionCall",
"src": "7453:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7446:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7618:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulIdentifier",
"src": "7529:88:6"
},
"nodeType": "YulFunctionCall",
"src": "7529:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "7529:93:6"
},
{
"nodeType": "YulAssignment",
"src": "7631:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7642:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7647:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7638:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7638:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7631:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7424:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7432:3:6",
"type": ""
}
],
"src": "7290:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7808:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7818:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7884:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7889:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7825:58:6"
},
"nodeType": "YulFunctionCall",
"src": "7825:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7818:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7990:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "7901:88:6"
},
"nodeType": "YulFunctionCall",
"src": "7901:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "7901:93:6"
},
{
"nodeType": "YulAssignment",
"src": "8003:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8014:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8019:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8010:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8010:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8003:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7796:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7804:3:6",
"type": ""
}
],
"src": "7662:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8099:53:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8116:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8139:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8121:17:6"
},
"nodeType": "YulFunctionCall",
"src": "8121:24:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8109:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8109:37:6"
},
"nodeType": "YulExpressionStatement",
"src": "8109:37:6"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8087:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8094:3:6",
"type": ""
}
],
"src": "8034:118:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8219:51:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8236:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8257:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "8241:15:6"
},
"nodeType": "YulFunctionCall",
"src": "8241:22:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8229:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8229:35:6"
},
"nodeType": "YulExpressionStatement",
"src": "8229:35:6"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8207:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8214:3:6",
"type": ""
}
],
"src": "8158:112:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8374:124:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8384:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8396:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8407:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8392:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8392:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8384:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8464:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8477:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8488:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8473:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8473:17:6"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "8420:43:6"
},
"nodeType": "YulFunctionCall",
"src": "8420:71:6"
},
"nodeType": "YulExpressionStatement",
"src": "8420:71:6"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8346:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8358:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8369:4:6",
"type": ""
}
],
"src": "8276:222:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8596:118:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8606:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8618:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8629:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8614:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8614:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8606:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8680:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8693:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8704:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8689:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8689:17:6"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "8642:37:6"
},
"nodeType": "YulFunctionCall",
"src": "8642:65:6"
},
"nodeType": "YulExpressionStatement",
"src": "8642:65:6"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8568:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8580:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8591:4:6",
"type": ""
}
],
"src": "8504:210:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8838:195:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8848:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8860:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8871:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8856:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8856:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8848:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8895:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8906:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8891:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8891:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8914:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8920:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8910:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8910:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8884:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8884:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "8884:47:6"
},
{
"nodeType": "YulAssignment",
"src": "8940:86:6",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9012:6:6"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9021:4:6"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8948:63:6"
},
"nodeType": "YulFunctionCall",
"src": "8948:78:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8940:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8810:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8822:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8833:4:6",
"type": ""
}
],
"src": "8720:313:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9210:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9220:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9232:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9243:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9228:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9228:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9220:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9267:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9278:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9263:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9263:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9286:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9292:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9282:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9282:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9256:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9256:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "9256:47:6"
},
{
"nodeType": "YulAssignment",
"src": "9312:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9446:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9320:124:6"
},
"nodeType": "YulFunctionCall",
"src": "9320:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9312:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9190:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9205:4:6",
"type": ""
}
],
"src": "9039:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9635:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9645:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9657:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9668:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9653:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9653:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9645:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9692:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9703:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9688:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9688:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9711:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9717:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9707:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9707:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9681:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9681:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "9681:47:6"
},
{
"nodeType": "YulAssignment",
"src": "9737:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9871:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9745:124:6"
},
"nodeType": "YulFunctionCall",
"src": "9745:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9737:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9615:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9630:4:6",
"type": ""
}
],
"src": "9464:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10060:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10070:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10082:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10093:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10078:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10078:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10070:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10117:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10128:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10113:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10113:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10136:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10142:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10132:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10132:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10106:6:6"
},
"nodeType": "YulFunctionCall",
"src": "10106:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "10106:47:6"
},
{
"nodeType": "YulAssignment",
"src": "10162:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10296:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10170:124:6"
},
"nodeType": "YulFunctionCall",
"src": "10170:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10162:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10040:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10055:4:6",
"type": ""
}
],
"src": "9889:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10485:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10495:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10507:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10518:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10503:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10503:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10495:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10542:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10553:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10538:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10538:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10561:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10567:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10557:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10557:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10531:6:6"
},
"nodeType": "YulFunctionCall",
"src": "10531:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "10531:47:6"
},
{
"nodeType": "YulAssignment",
"src": "10587:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10721:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10595:124:6"
},
"nodeType": "YulFunctionCall",
"src": "10595:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10587:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10465:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10480:4:6",
"type": ""
}
],
"src": "10314:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10910:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10920:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10932:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10943:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10928:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10928:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10920:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10967:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10978:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10963:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10963:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10986:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10992:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10982:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10982:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10956:6:6"
},
"nodeType": "YulFunctionCall",
"src": "10956:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "10956:47:6"
},
{
"nodeType": "YulAssignment",
"src": "11012:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11146:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11020:124:6"
},
"nodeType": "YulFunctionCall",
"src": "11020:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11012:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10890:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10905:4:6",
"type": ""
}
],
"src": "10739:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11335:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11345:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11357:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11368:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11353:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11353:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11345:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11392:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11403:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11388:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11388:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11411:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11417:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11407:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11407:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11381:6:6"
},
"nodeType": "YulFunctionCall",
"src": "11381:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "11381:47:6"
},
{
"nodeType": "YulAssignment",
"src": "11437:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11571:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_65089127b803930c398c36e2411edb8f0ffcc22797f9575db6a198b718da7d72_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11445:124:6"
},
"nodeType": "YulFunctionCall",
"src": "11445:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11437:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_65089127b803930c398c36e2411edb8f0ffcc22797f9575db6a198b718da7d72__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11315:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11330:4:6",
"type": ""
}
],
"src": "11164:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11760:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11770:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11782:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11793:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11778:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11778:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11770:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11817:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11828:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11813:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11813:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11836:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11842:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11832:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11832:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11806:6:6"
},
"nodeType": "YulFunctionCall",
"src": "11806:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "11806:47:6"
},
{
"nodeType": "YulAssignment",
"src": "11862:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11996:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8ff8a328d78cd80ce29c4c18014e741f7bb01c4500f00f595cf38d812d0a8161_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11870:124:6"
},
"nodeType": "YulFunctionCall",
"src": "11870:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11862:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8ff8a328d78cd80ce29c4c18014e741f7bb01c4500f00f595cf38d812d0a8161__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11740:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11755:4:6",
"type": ""
}
],
"src": "11589:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12185:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12195:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12207:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12218:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12203:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12203:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12195:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12242:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12253:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12238:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12238:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12261:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12267:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12257:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12257:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12231:6:6"
},
"nodeType": "YulFunctionCall",
"src": "12231:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "12231:47:6"
},
{
"nodeType": "YulAssignment",
"src": "12287:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12421:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12295:124:6"
},
"nodeType": "YulFunctionCall",
"src": "12295:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12287:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12165:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12180:4:6",
"type": ""
}
],
"src": "12014:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12610:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12620:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12632:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12643:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12628:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12628:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12620:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12667:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12678:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12663:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12663:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12686:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12692:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12682:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12682:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12656:6:6"
},
"nodeType": "YulFunctionCall",
"src": "12656:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "12656:47:6"
},
{
"nodeType": "YulAssignment",
"src": "12712:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12846:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12720:124:6"
},
"nodeType": "YulFunctionCall",
"src": "12720:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12712:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12590:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12605:4:6",
"type": ""
}
],
"src": "12439:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13035:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13045:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13057:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13068:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13053:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13053:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13045:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13092:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13103:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13088:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13088:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13111:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13117:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13107:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13107:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13081:6:6"
},
"nodeType": "YulFunctionCall",
"src": "13081:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "13081:47:6"
},
{
"nodeType": "YulAssignment",
"src": "13137:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13271:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13145:124:6"
},
"nodeType": "YulFunctionCall",
"src": "13145:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13137:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13015:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13030:4:6",
"type": ""
}
],
"src": "12864:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13460:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13470:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13482:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13493:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13478:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13478:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13470:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13517:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13528:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13513:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13513:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13536:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13542:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13532:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13532:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13506:6:6"
},
"nodeType": "YulFunctionCall",
"src": "13506:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "13506:47:6"
},
{
"nodeType": "YulAssignment",
"src": "13562:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13696:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13570:124:6"
},
"nodeType": "YulFunctionCall",
"src": "13570:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13562:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13440:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13455:4:6",
"type": ""
}
],
"src": "13289:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13885:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13895:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13907:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13918:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13903:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13903:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13895:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13942:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13953:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13938:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13938:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13961:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13967:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13957:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13957:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13931:6:6"
},
"nodeType": "YulFunctionCall",
"src": "13931:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "13931:47:6"
},
{
"nodeType": "YulAssignment",
"src": "13987:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14121:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13995:124:6"
},
"nodeType": "YulFunctionCall",
"src": "13995:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13987:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13865:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13880:4:6",
"type": ""
}
],
"src": "13714:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14310:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14320:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14332:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14343:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14328:3:6"
},
"nodeType": "YulFunctionCall",
"src": "14328:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14320:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14367:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14378:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14363:3:6"
},
"nodeType": "YulFunctionCall",
"src": "14363:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14386:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14392:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14382:3:6"
},
"nodeType": "YulFunctionCall",
"src": "14382:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14356:6:6"
},
"nodeType": "YulFunctionCall",
"src": "14356:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "14356:47:6"
},
{
"nodeType": "YulAssignment",
"src": "14412:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14546:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14420:124:6"
},
"nodeType": "YulFunctionCall",
"src": "14420:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14412:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14290:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14305:4:6",
"type": ""
}
],
"src": "14139:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14735:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14745:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14757:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14768:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14753:3:6"
},
"nodeType": "YulFunctionCall",
"src": "14753:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14745:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14792:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14803:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14788:3:6"
},
"nodeType": "YulFunctionCall",
"src": "14788:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14811:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14817:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14807:3:6"
},
"nodeType": "YulFunctionCall",
"src": "14807:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14781:6:6"
},
"nodeType": "YulFunctionCall",
"src": "14781:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "14781:47:6"
},
{
"nodeType": "YulAssignment",
"src": "14837:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14971:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14845:124:6"
},
"nodeType": "YulFunctionCall",
"src": "14845:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14837:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14715:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14730:4:6",
"type": ""
}
],
"src": "14564:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15087:124:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15097:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15109:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15120:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15105:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15105:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15097:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15177:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15190:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15201:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15186:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15186:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "15133:43:6"
},
"nodeType": "YulFunctionCall",
"src": "15133:71:6"
},
"nodeType": "YulExpressionStatement",
"src": "15133:71:6"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15059:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15071:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15082:4:6",
"type": ""
}
],
"src": "14989:222:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15311:120:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15321:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15333:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15344:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15329:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15329:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15321:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15397:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15410:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15421:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15406:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15406:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "15357:39:6"
},
"nodeType": "YulFunctionCall",
"src": "15357:67:6"
},
"nodeType": "YulExpressionStatement",
"src": "15357:67:6"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15283:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15295:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15306:4:6",
"type": ""
}
],
"src": "15217:214:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15477:35:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15487:19:6",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15503:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "15497:5:6"
},
"nodeType": "YulFunctionCall",
"src": "15497:9:6"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15487:6:6"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15470:6:6",
"type": ""
}
],
"src": "15437:75:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15577:40:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15588:22:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15604:5:6"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "15598:5:6"
},
"nodeType": "YulFunctionCall",
"src": "15598:12:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15588:6:6"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15560:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "15570:6:6",
"type": ""
}
],
"src": "15518:99:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15719:73:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15736:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15741:6:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15729:6:6"
},
"nodeType": "YulFunctionCall",
"src": "15729:19:6"
},
"nodeType": "YulExpressionStatement",
"src": "15729:19:6"
},
{
"nodeType": "YulAssignment",
"src": "15757:29:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15776:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15781:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15772:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15772:14:6"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "15757:11:6"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15691:3:6",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "15696:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "15707:11:6",
"type": ""
}
],
"src": "15623:169:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15842:261:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15852:25:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15875:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15857:17:6"
},
"nodeType": "YulFunctionCall",
"src": "15857:20:6"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15852:1:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "15886:25:6",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15909:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15891:17:6"
},
"nodeType": "YulFunctionCall",
"src": "15891:20:6"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15886:1:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "16049:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "16051:16:6"
},
"nodeType": "YulFunctionCall",
"src": "16051:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "16051:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15970:1:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15977:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16045:1:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15973:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15973:74:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "15967:2:6"
},
"nodeType": "YulFunctionCall",
"src": "15967:81:6"
},
"nodeType": "YulIf",
"src": "15964:107:6"
},
{
"nodeType": "YulAssignment",
"src": "16081:16:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16092:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16095:1:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16088:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16088:9:6"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "16081:3:6"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "15829:1:6",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "15832:1:6",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "15838:3:6",
"type": ""
}
],
"src": "15798:305:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16154:146:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16164:25:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16187:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "16169:17:6"
},
"nodeType": "YulFunctionCall",
"src": "16169:20:6"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16164:1:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "16198:25:6",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16221:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "16203:17:6"
},
"nodeType": "YulFunctionCall",
"src": "16203:20:6"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16198:1:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "16245:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "16247:16:6"
},
"nodeType": "YulFunctionCall",
"src": "16247:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "16247:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16239:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16242:1:6"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "16236:2:6"
},
"nodeType": "YulFunctionCall",
"src": "16236:8:6"
},
"nodeType": "YulIf",
"src": "16233:34:6"
},
{
"nodeType": "YulAssignment",
"src": "16277:17:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16289:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16292:1:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16285:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16285:9:6"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "16277:4:6"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "16140:1:6",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "16143:1:6",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "16149:4:6",
"type": ""
}
],
"src": "16109:191:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16351:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16361:35:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16390:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "16372:17:6"
},
"nodeType": "YulFunctionCall",
"src": "16372:24:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "16361:7:6"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16333:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "16343:7:6",
"type": ""
}
],
"src": "16306:96:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16450:48:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16460:32:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16485:5:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16478:6:6"
},
"nodeType": "YulFunctionCall",
"src": "16478:13:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16471:6:6"
},
"nodeType": "YulFunctionCall",
"src": "16471:21:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "16460:7:6"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16432:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "16442:7:6",
"type": ""
}
],
"src": "16408:90:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16549:81:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16559:65:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16574:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16581:42:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "16570:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16570:54:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "16559:7:6"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16531:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "16541:7:6",
"type": ""
}
],
"src": "16504:126:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16681:32:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16691:16:6",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "16702:5:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "16691:7:6"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16663:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "16673:7:6",
"type": ""
}
],
"src": "16636:77:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16762:43:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16772:27:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16787:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16794:4:6",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "16783:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16783:16:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "16772:7:6"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16744:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "16754:7:6",
"type": ""
}
],
"src": "16719:86:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16860:258:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "16870:10:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "16879:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "16874:1:6",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "16939:63:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "16964:3:6"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16969:1:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16960:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16960:11:6"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "16983:3:6"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16988:1:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16979:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16979:11:6"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "16973:5:6"
},
"nodeType": "YulFunctionCall",
"src": "16973:18:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16953:6:6"
},
"nodeType": "YulFunctionCall",
"src": "16953:39:6"
},
"nodeType": "YulExpressionStatement",
"src": "16953:39:6"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16900:1:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16903:6:6"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "16897:2:6"
},
"nodeType": "YulFunctionCall",
"src": "16897:13:6"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "16911:19:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16913:15:6",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16922:1:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16925:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16918:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16918:10:6"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16913:1:6"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "16893:3:6",
"statements": []
},
"src": "16889:113:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17036:76:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "17086:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17091:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17082:3:6"
},
"nodeType": "YulFunctionCall",
"src": "17082:16:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17100:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17075:6:6"
},
"nodeType": "YulFunctionCall",
"src": "17075:27:6"
},
"nodeType": "YulExpressionStatement",
"src": "17075:27:6"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "17017:1:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17020:6:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "17014:2:6"
},
"nodeType": "YulFunctionCall",
"src": "17014:13:6"
},
"nodeType": "YulIf",
"src": "17011:101:6"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "16842:3:6",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "16847:3:6",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "16852:6:6",
"type": ""
}
],
"src": "16811:307:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17175:269:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17185:22:6",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "17199:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17205:1:6",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "17195:3:6"
},
"nodeType": "YulFunctionCall",
"src": "17195:12:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17185:6:6"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "17216:38:6",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "17246:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17252:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17242:3:6"
},
"nodeType": "YulFunctionCall",
"src": "17242:12:6"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "17220:18:6",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "17293:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17307:27:6",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17321:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17329:4:6",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17317:3:6"
},
"nodeType": "YulFunctionCall",
"src": "17317:17:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17307:6:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "17273:18:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "17266:6:6"
},
"nodeType": "YulFunctionCall",
"src": "17266:26:6"
},
"nodeType": "YulIf",
"src": "17263:81:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17396:42:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "17410:16:6"
},
"nodeType": "YulFunctionCall",
"src": "17410:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "17410:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "17360:18:6"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17383:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17391:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "17380:2:6"
},
"nodeType": "YulFunctionCall",
"src": "17380:14:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "17357:2:6"
},
"nodeType": "YulFunctionCall",
"src": "17357:38:6"
},
"nodeType": "YulIf",
"src": "17354:84:6"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "17159:4:6",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "17168:6:6",
"type": ""
}
],
"src": "17124:320:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17478:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17495:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17498:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17488:6:6"
},
"nodeType": "YulFunctionCall",
"src": "17488:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "17488:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17592:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17595:4:6",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17585:6:6"
},
"nodeType": "YulFunctionCall",
"src": "17585:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "17585:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17616:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17619:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17609:6:6"
},
"nodeType": "YulFunctionCall",
"src": "17609:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "17609:15:6"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "17450:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17664:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17681:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17684:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17674:6:6"
},
"nodeType": "YulFunctionCall",
"src": "17674:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "17674:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17778:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17781:4:6",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17771:6:6"
},
"nodeType": "YulFunctionCall",
"src": "17771:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "17771:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17802:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17805:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17795:6:6"
},
"nodeType": "YulFunctionCall",
"src": "17795:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "17795:15:6"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "17636:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17911:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17928:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17931:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17921:6:6"
},
"nodeType": "YulFunctionCall",
"src": "17921:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "17921:12:6"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "17822:117:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18034:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18051:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18054:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "18044:6:6"
},
"nodeType": "YulFunctionCall",
"src": "18044:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "18044:12:6"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "17945:117:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18116:54:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18126:38:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18144:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18151:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18140:3:6"
},
"nodeType": "YulFunctionCall",
"src": "18140:14:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18160:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "18156:3:6"
},
"nodeType": "YulFunctionCall",
"src": "18156:7:6"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "18136:3:6"
},
"nodeType": "YulFunctionCall",
"src": "18136:28:6"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "18126:6:6"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18099:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "18109:6:6",
"type": ""
}
],
"src": "18068:102:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18282:116:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18304:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18312:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18300:3:6"
},
"nodeType": "YulFunctionCall",
"src": "18300:14:6"
},
{
"hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18316:34:6",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18293:6:6"
},
"nodeType": "YulFunctionCall",
"src": "18293:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "18293:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18372:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18380:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18368:3:6"
},
"nodeType": "YulFunctionCall",
"src": "18368:15:6"
},
{
"hexValue": "657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18385:5:6",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18361:6:6"
},
"nodeType": "YulFunctionCall",
"src": "18361:30:6"
},
"nodeType": "YulExpressionStatement",
"src": "18361:30:6"
}
]
},
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18274:6:6",
"type": ""
}
],
"src": "18176:222:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18510:115:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18532:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18540:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18528:3:6"
},
"nodeType": "YulFunctionCall",
"src": "18528:14:6"
},
{
"hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18544:34:6",
"type": "",
"value": "ERC20: burn amount exceeds balan"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18521:6:6"
},
"nodeType": "YulFunctionCall",
"src": "18521:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "18521:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18600:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18608:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18596:3:6"
},
"nodeType": "YulFunctionCall",
"src": "18596:15:6"
},
{
"hexValue": "6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18613:4:6",
"type": "",
"value": "ce"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18589:6:6"
},
"nodeType": "YulFunctionCall",
"src": "18589:29:6"
},
"nodeType": "YulExpressionStatement",
"src": "18589:29:6"
}
]
},
"name": "store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18502:6:6",
"type": ""
}
],
"src": "18404:221:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18737:119:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18759:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18767:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18755:3:6"
},
"nodeType": "YulFunctionCall",
"src": "18755:14:6"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18771:34:6",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18748:6:6"
},
"nodeType": "YulFunctionCall",
"src": "18748:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "18748:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18827:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18835:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18823:3:6"
},
"nodeType": "YulFunctionCall",
"src": "18823:15:6"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18840:8:6",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18816:6:6"
},
"nodeType": "YulFunctionCall",
"src": "18816:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "18816:33:6"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18729:6:6",
"type": ""
}
],
"src": "18631:225:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18968:115:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18990:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18998:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18986:3:6"
},
"nodeType": "YulFunctionCall",
"src": "18986:14:6"
},
{
"hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19002:34:6",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18979:6:6"
},
"nodeType": "YulFunctionCall",
"src": "18979:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "18979:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19058:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19066:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19054:3:6"
},
"nodeType": "YulFunctionCall",
"src": "19054:15:6"
},
{
"hexValue": "7373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19071:4:6",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19047:6:6"
},
"nodeType": "YulFunctionCall",
"src": "19047:29:6"
},
"nodeType": "YulExpressionStatement",
"src": "19047:29:6"
}
]
},
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18960:6:6",
"type": ""
}
],
"src": "18862:221:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19195:119:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19217:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19225:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19213:3:6"
},
"nodeType": "YulFunctionCall",
"src": "19213:14:6"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19229:34:6",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19206:6:6"
},
"nodeType": "YulFunctionCall",
"src": "19206:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "19206:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19285:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19293:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19281:3:6"
},
"nodeType": "YulFunctionCall",
"src": "19281:15:6"
},
{
"hexValue": "616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19298:8:6",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19274:6:6"
},
"nodeType": "YulFunctionCall",
"src": "19274:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "19274:33:6"
}
]
},
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19187:6:6",
"type": ""
}
],
"src": "19089:225:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19426:69:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19448:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19456:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19444:3:6"
},
"nodeType": "YulFunctionCall",
"src": "19444:14:6"
},
{
"hexValue": "4f6e6c7920636f6e74726f6c6c6572732063616e206d696e74",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19460:27:6",
"type": "",
"value": "Only controllers can mint"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19437:6:6"
},
"nodeType": "YulFunctionCall",
"src": "19437:51:6"
},
"nodeType": "YulExpressionStatement",
"src": "19437:51:6"
}
]
},
"name": "store_literal_in_memory_65089127b803930c398c36e2411edb8f0ffcc22797f9575db6a198b718da7d72",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19418:6:6",
"type": ""
}
],
"src": "19320:175:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19607:69:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19629:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19637:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19625:3:6"
},
"nodeType": "YulFunctionCall",
"src": "19625:14:6"
},
{
"hexValue": "4f6e6c7920636f6e74726f6c6c6572732063616e206275726e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19641:27:6",
"type": "",
"value": "Only controllers can burn"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19618:6:6"
},
"nodeType": "YulFunctionCall",
"src": "19618:51:6"
},
"nodeType": "YulExpressionStatement",
"src": "19618:51:6"
}
]
},
"name": "store_literal_in_memory_8ff8a328d78cd80ce29c4c18014e741f7bb01c4500f00f595cf38d812d0a8161",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19599:6:6",
"type": ""
}
],
"src": "19501:175:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19788:121:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19810:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19818:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19806:3:6"
},
"nodeType": "YulFunctionCall",
"src": "19806:14:6"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19822:34:6",
"type": "",
"value": "ERC20: transfer amount exceeds a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19799:6:6"
},
"nodeType": "YulFunctionCall",
"src": "19799:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "19799:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19878:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19886:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19874:3:6"
},
"nodeType": "YulFunctionCall",
"src": "19874:15:6"
},
{
"hexValue": "6c6c6f77616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19891:10:6",
"type": "",
"value": "llowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19867:6:6"
},
"nodeType": "YulFunctionCall",
"src": "19867:35:6"
},
"nodeType": "YulExpressionStatement",
"src": "19867:35:6"
}
]
},
"name": "store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19780:6:6",
"type": ""
}
],
"src": "19682:227:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20021:76:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20043:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20051:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20039:3:6"
},
"nodeType": "YulFunctionCall",
"src": "20039:14:6"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20055:34:6",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20032:6:6"
},
"nodeType": "YulFunctionCall",
"src": "20032:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "20032:58:6"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20013:6:6",
"type": ""
}
],
"src": "19915:182:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20209:114:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20231:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20239:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20227:3:6"
},
"nodeType": "YulFunctionCall",
"src": "20227:14:6"
},
{
"hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20243:34:6",
"type": "",
"value": "ERC20: burn from the zero addres"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20220:6:6"
},
"nodeType": "YulFunctionCall",
"src": "20220:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "20220:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20299:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20307:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20295:3:6"
},
"nodeType": "YulFunctionCall",
"src": "20295:15:6"
},
{
"hexValue": "73",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20312:3:6",
"type": "",
"value": "s"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20288:6:6"
},
"nodeType": "YulFunctionCall",
"src": "20288:28:6"
},
"nodeType": "YulExpressionStatement",
"src": "20288:28:6"
}
]
},
"name": "store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20201:6:6",
"type": ""
}
],
"src": "20103:220:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20435:118:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20457:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20465:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20453:3:6"
},
"nodeType": "YulFunctionCall",
"src": "20453:14:6"
},
{
"hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20469:34:6",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20446:6:6"
},
"nodeType": "YulFunctionCall",
"src": "20446:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "20446:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20525:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20533:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20521:3:6"
},
"nodeType": "YulFunctionCall",
"src": "20521:15:6"
},
{
"hexValue": "6472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20538:7:6",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20514:6:6"
},
"nodeType": "YulFunctionCall",
"src": "20514:32:6"
},
"nodeType": "YulExpressionStatement",
"src": "20514:32:6"
}
]
},
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20427:6:6",
"type": ""
}
],
"src": "20329:224:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20665:117:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20687:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20695:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20683:3:6"
},
"nodeType": "YulFunctionCall",
"src": "20683:14:6"
},
{
"hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20699:34:6",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20676:6:6"
},
"nodeType": "YulFunctionCall",
"src": "20676:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "20676:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20755:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20763:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20751:3:6"
},
"nodeType": "YulFunctionCall",
"src": "20751:15:6"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20768:6:6",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20744:6:6"
},
"nodeType": "YulFunctionCall",
"src": "20744:31:6"
},
"nodeType": "YulExpressionStatement",
"src": "20744:31:6"
}
]
},
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20657:6:6",
"type": ""
}
],
"src": "20559:223:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20894:118:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20916:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20924:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20912:3:6"
},
"nodeType": "YulFunctionCall",
"src": "20912:14:6"
},
{
"hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20928:34:6",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20905:6:6"
},
"nodeType": "YulFunctionCall",
"src": "20905:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "20905:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20984:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20992:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20980:3:6"
},
"nodeType": "YulFunctionCall",
"src": "20980:15:6"
},
{
"hexValue": "207a65726f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20997:7:6",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20973:6:6"
},
"nodeType": "YulFunctionCall",
"src": "20973:32:6"
},
"nodeType": "YulExpressionStatement",
"src": "20973:32:6"
}
]
},
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20886:6:6",
"type": ""
}
],
"src": "20788:224:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21124:75:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21146:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21154:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21142:3:6"
},
"nodeType": "YulFunctionCall",
"src": "21142:14:6"
},
{
"hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "21158:33:6",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21135:6:6"
},
"nodeType": "YulFunctionCall",
"src": "21135:57:6"
},
"nodeType": "YulExpressionStatement",
"src": "21135:57:6"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "21116:6:6",
"type": ""
}
],
"src": "21018:181:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21248:79:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "21305:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21314:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21317:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "21307:6:6"
},
"nodeType": "YulFunctionCall",
"src": "21307:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "21307:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21271:5:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21296:5:6"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "21278:17:6"
},
"nodeType": "YulFunctionCall",
"src": "21278:24:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "21268:2:6"
},
"nodeType": "YulFunctionCall",
"src": "21268:35:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21261:6:6"
},
"nodeType": "YulFunctionCall",
"src": "21261:43:6"
},
"nodeType": "YulIf",
"src": "21258:63:6"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21241:5:6",
"type": ""
}
],
"src": "21205:122:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21376:79:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "21433:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21442:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21445:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "21435:6:6"
},
"nodeType": "YulFunctionCall",
"src": "21435:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "21435:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21399:5:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21424:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21406:17:6"
},
"nodeType": "YulFunctionCall",
"src": "21406:24:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "21396:2:6"
},
"nodeType": "YulFunctionCall",
"src": "21396:35:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21389:6:6"
},
"nodeType": "YulFunctionCall",
"src": "21389:43:6"
},
"nodeType": "YulIf",
"src": "21386:63:6"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21369:5:6",
"type": ""
}
],
"src": "21333:122:6"
}
]
},
"contents": "{\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_65089127b803930c398c36e2411edb8f0ffcc22797f9575db6a198b718da7d72_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_65089127b803930c398c36e2411edb8f0ffcc22797f9575db6a198b718da7d72(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_8ff8a328d78cd80ce29c4c18014e741f7bb01c4500f00f595cf38d812d0a8161_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_8ff8a328d78cd80ce29c4c18014e741f7bb01c4500f00f595cf38d812d0a8161(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_65089127b803930c398c36e2411edb8f0ffcc22797f9575db6a198b718da7d72__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_65089127b803930c398c36e2411edb8f0ffcc22797f9575db6a198b718da7d72_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_8ff8a328d78cd80ce29c4c18014e741f7bb01c4500f00f595cf38d812d0a8161__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8ff8a328d78cd80ce29c4c18014e741f7bb01c4500f00f595cf38d812d0a8161_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\n }\n\n function store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: burn amount exceeds balan\")\n\n mstore(add(memPtr, 32), \"ce\")\n\n }\n\n function store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\n\n }\n\n function store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\n }\n\n function store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\n\n }\n\n function store_literal_in_memory_65089127b803930c398c36e2411edb8f0ffcc22797f9575db6a198b718da7d72(memPtr) {\n\n mstore(add(memPtr, 0), \"Only controllers can mint\")\n\n }\n\n function store_literal_in_memory_8ff8a328d78cd80ce29c4c18014e741f7bb01c4500f00f595cf38d812d0a8161(memPtr) {\n\n mstore(add(memPtr, 0), \"Only controllers can burn\")\n\n }\n\n function store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds a\")\n\n mstore(add(memPtr, 32), \"llowance\")\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: burn from the zero addres\")\n\n mstore(add(memPtr, 32), \"s\")\n\n }\n\n function store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\n\n }\n\n function store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 6,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061010b5760003560e01c80638da5cb5b116100a2578063a7fc7a0711610071578063a7fc7a07146102ce578063a9059cbb146102ea578063dd62ed3e1461031a578063f2fde38b1461034a578063f6a74ed7146103665761010b565b80638da5cb5b1461024657806395d89b41146102645780639dc29fac14610282578063a457c2d71461029e5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806340c10f19146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610382565b6040516101259190611871565b60405180910390f35b6101486004803603810190610143919061159c565b610414565b6040516101559190611856565b60405180910390f35b610166610432565b6040516101739190611a53565b60405180910390f35b61019660048036038101906101919190611549565b61043c565b6040516101a39190611856565b60405180910390f35b6101b4610534565b6040516101c19190611a6e565b60405180910390f35b6101e460048036038101906101df919061159c565b61053d565b6040516101f19190611856565b60405180910390f35b610214600480360381019061020f919061159c565b6105e9565b005b610230600480360381019061022b91906114dc565b610683565b60405161023d9190611a53565b60405180910390f35b61024e6106cb565b60405161025b919061183b565b60405180910390f35b61026c6106f5565b6040516102799190611871565b60405180910390f35b61029c6004803603810190610297919061159c565b610787565b005b6102b860048036038101906102b3919061159c565b610821565b6040516102c59190611856565b60405180910390f35b6102e860048036038101906102e391906114dc565b61090c565b005b61030460048036038101906102ff919061159c565b6109e3565b6040516103119190611856565b60405180910390f35b610334600480360381019061032f9190611509565b610a01565b6040516103419190611a53565b60405180910390f35b610364600480360381019061035f91906114dc565b610a88565b005b610380600480360381019061037b91906114dc565b610b80565b005b60606003805461039190611bb7565b80601f01602080910402602001604051908101604052809291908181526020018280546103bd90611bb7565b801561040a5780601f106103df5761010080835404028352916020019161040a565b820191906000526020600020905b8154815290600101906020018083116103ed57829003601f168201915b5050505050905090565b6000610428610421610c57565b8484610c5f565b6001905092915050565b6000600254905090565b6000610449848484610e2a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610494610c57565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050b90611973565b60405180910390fd5b61052885610520610c57565b858403610c5f565b60019150509392505050565b60006012905090565b60006105df61054a610c57565b848460016000610558610c57565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105da9190611aa5565b610c5f565b6001905092915050565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066c90611933565b60405180910390fd5b61067f82826110ab565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461070490611bb7565b80601f016020809104026020016040519081016040528092919081815260200182805461073090611bb7565b801561077d5780601f106107525761010080835404028352916020019161077d565b820191906000526020600020905b81548152906001019060200180831161076057829003601f168201915b5050505050905090565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a90611953565b60405180910390fd5b61081d828261120b565b5050565b60008060016000610830610c57565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e490611a13565b60405180910390fd5b6109016108f8610c57565b85858403610c5f565b600191505092915050565b610914610c57565b73ffffffffffffffffffffffffffffffffffffffff166109326106cb565b73ffffffffffffffffffffffffffffffffffffffff1614610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f90611993565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006109f76109f0610c57565b8484610e2a565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a90610c57565b73ffffffffffffffffffffffffffffffffffffffff16610aae6106cb565b73ffffffffffffffffffffffffffffffffffffffff1614610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb90611993565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b906118d3565b60405180910390fd5b610b7d816113e2565b50565b610b88610c57565b73ffffffffffffffffffffffffffffffffffffffff16610ba66106cb565b73ffffffffffffffffffffffffffffffffffffffff1614610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf390611993565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc6906119f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d36906118f3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e1d9190611a53565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e91906119d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0190611893565b60405180910390fd5b610f158383836114a8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9290611913565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461102e9190611aa5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110929190611a53565b60405180910390a36110a58484846114ad565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290611a33565b60405180910390fd5b611127600083836114a8565b80600260008282546111399190611aa5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461118e9190611aa5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111f39190611a53565b60405180910390a3611207600083836114ad565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611272906119b3565b60405180910390fd5b611287826000836114a8565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561130d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611304906118b3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113649190611afb565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113c99190611a53565b60405180910390a36113dd836000846114ad565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506114c181612017565b92915050565b6000813590506114d68161202e565b92915050565b6000602082840312156114f2576114f1611c47565b5b6000611500848285016114b2565b91505092915050565b600080604083850312156115205761151f611c47565b5b600061152e858286016114b2565b925050602061153f858286016114b2565b9150509250929050565b60008060006060848603121561156257611561611c47565b5b6000611570868287016114b2565b9350506020611581868287016114b2565b9250506040611592868287016114c7565b9150509250925092565b600080604083850312156115b3576115b2611c47565b5b60006115c1858286016114b2565b92505060206115d2858286016114c7565b9150509250929050565b6115e581611b2f565b82525050565b6115f481611b41565b82525050565b600061160582611a89565b61160f8185611a94565b935061161f818560208601611b84565b61162881611c4c565b840191505092915050565b6000611640602383611a94565b915061164b82611c5d565b604082019050919050565b6000611663602283611a94565b915061166e82611cac565b604082019050919050565b6000611686602683611a94565b915061169182611cfb565b604082019050919050565b60006116a9602283611a94565b91506116b482611d4a565b604082019050919050565b60006116cc602683611a94565b91506116d782611d99565b604082019050919050565b60006116ef601983611a94565b91506116fa82611de8565b602082019050919050565b6000611712601983611a94565b915061171d82611e11565b602082019050919050565b6000611735602883611a94565b915061174082611e3a565b604082019050919050565b6000611758602083611a94565b915061176382611e89565b602082019050919050565b600061177b602183611a94565b915061178682611eb2565b604082019050919050565b600061179e602583611a94565b91506117a982611f01565b604082019050919050565b60006117c1602483611a94565b91506117cc82611f50565b604082019050919050565b60006117e4602583611a94565b91506117ef82611f9f565b604082019050919050565b6000611807601f83611a94565b915061181282611fee565b602082019050919050565b61182681611b6d565b82525050565b61183581611b77565b82525050565b600060208201905061185060008301846115dc565b92915050565b600060208201905061186b60008301846115eb565b92915050565b6000602082019050818103600083015261188b81846115fa565b905092915050565b600060208201905081810360008301526118ac81611633565b9050919050565b600060208201905081810360008301526118cc81611656565b9050919050565b600060208201905081810360008301526118ec81611679565b9050919050565b6000602082019050818103600083015261190c8161169c565b9050919050565b6000602082019050818103600083015261192c816116bf565b9050919050565b6000602082019050818103600083015261194c816116e2565b9050919050565b6000602082019050818103600083015261196c81611705565b9050919050565b6000602082019050818103600083015261198c81611728565b9050919050565b600060208201905081810360008301526119ac8161174b565b9050919050565b600060208201905081810360008301526119cc8161176e565b9050919050565b600060208201905081810360008301526119ec81611791565b9050919050565b60006020820190508181036000830152611a0c816117b4565b9050919050565b60006020820190508181036000830152611a2c816117d7565b9050919050565b60006020820190508181036000830152611a4c816117fa565b9050919050565b6000602082019050611a68600083018461181d565b92915050565b6000602082019050611a83600083018461182c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ab082611b6d565b9150611abb83611b6d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611af057611aef611be9565b5b828201905092915050565b6000611b0682611b6d565b9150611b1183611b6d565b925082821015611b2457611b23611be9565b5b828203905092915050565b6000611b3a82611b4d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611ba2578082015181840152602081019050611b87565b83811115611bb1576000848401525b50505050565b60006002820490506001821680611bcf57607f821691505b60208210811415611be357611be2611c18565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206275726e00000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61202081611b2f565b811461202b57600080fd5b50565b61203781611b6d565b811461204257600080fd5b5056fea26469706673582212204bfcbd98aeeb26ff9a09f5b3a63a9827de03959784c2af65555f1bb753eb335164736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x10B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xA7FC7A07 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xA7FC7A07 EQ PUSH2 0x2CE JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2EA JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x31A JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x34A JUMPI DUP1 PUSH4 0xF6A74ED7 EQ PUSH2 0x366 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x246 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x264 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x282 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x29E JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1AC JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x1FA JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x216 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x110 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x12E JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x17C JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x118 PUSH2 0x382 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x125 SWAP2 SWAP1 PUSH2 0x1871 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x148 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x143 SWAP2 SWAP1 PUSH2 0x159C JUMP JUMPDEST PUSH2 0x414 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x155 SWAP2 SWAP1 PUSH2 0x1856 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x166 PUSH2 0x432 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x173 SWAP2 SWAP1 PUSH2 0x1A53 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x196 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x191 SWAP2 SWAP1 PUSH2 0x1549 JUMP JUMPDEST PUSH2 0x43C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A3 SWAP2 SWAP1 PUSH2 0x1856 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B4 PUSH2 0x534 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C1 SWAP2 SWAP1 PUSH2 0x1A6E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1E4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DF SWAP2 SWAP1 PUSH2 0x159C JUMP JUMPDEST PUSH2 0x53D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F1 SWAP2 SWAP1 PUSH2 0x1856 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x214 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x20F SWAP2 SWAP1 PUSH2 0x159C JUMP JUMPDEST PUSH2 0x5E9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x230 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22B SWAP2 SWAP1 PUSH2 0x14DC JUMP JUMPDEST PUSH2 0x683 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0x1A53 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x24E PUSH2 0x6CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x25B SWAP2 SWAP1 PUSH2 0x183B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26C PUSH2 0x6F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x279 SWAP2 SWAP1 PUSH2 0x1871 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x29C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x297 SWAP2 SWAP1 PUSH2 0x159C JUMP JUMPDEST PUSH2 0x787 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2B8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2B3 SWAP2 SWAP1 PUSH2 0x159C JUMP JUMPDEST PUSH2 0x821 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C5 SWAP2 SWAP1 PUSH2 0x1856 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2E3 SWAP2 SWAP1 PUSH2 0x14DC JUMP JUMPDEST PUSH2 0x90C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x304 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2FF SWAP2 SWAP1 PUSH2 0x159C JUMP JUMPDEST PUSH2 0x9E3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x311 SWAP2 SWAP1 PUSH2 0x1856 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x334 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x32F SWAP2 SWAP1 PUSH2 0x1509 JUMP JUMPDEST PUSH2 0xA01 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x341 SWAP2 SWAP1 PUSH2 0x1A53 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x364 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x35F SWAP2 SWAP1 PUSH2 0x14DC JUMP JUMPDEST PUSH2 0xA88 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x380 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x37B SWAP2 SWAP1 PUSH2 0x14DC JUMP JUMPDEST PUSH2 0xB80 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x391 SWAP1 PUSH2 0x1BB7 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 0x3BD SWAP1 PUSH2 0x1BB7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x40A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3DF JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x40A 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 0x3ED JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x428 PUSH2 0x421 PUSH2 0xC57 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xC5F JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x449 DUP5 DUP5 DUP5 PUSH2 0xE2A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x494 PUSH2 0xC57 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x514 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x50B SWAP1 PUSH2 0x1973 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x528 DUP6 PUSH2 0x520 PUSH2 0xC57 JUMP JUMPDEST DUP6 DUP5 SUB PUSH2 0xC5F JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5DF PUSH2 0x54A PUSH2 0xC57 JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH1 0x0 PUSH2 0x558 PUSH2 0xC57 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x5DA SWAP2 SWAP1 PUSH2 0x1AA5 JUMP JUMPDEST PUSH2 0xC5F JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x675 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x66C SWAP1 PUSH2 0x1933 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x67F DUP3 DUP3 PUSH2 0x10AB JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x704 SWAP1 PUSH2 0x1BB7 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 0x730 SWAP1 PUSH2 0x1BB7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x77D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x752 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x77D 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 0x760 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x813 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x80A SWAP1 PUSH2 0x1953 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x81D DUP3 DUP3 PUSH2 0x120B JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x830 PUSH2 0xC57 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x8ED JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8E4 SWAP1 PUSH2 0x1A13 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x901 PUSH2 0x8F8 PUSH2 0xC57 JUMP JUMPDEST DUP6 DUP6 DUP5 SUB PUSH2 0xC5F JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x914 PUSH2 0xC57 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x932 PUSH2 0x6CB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x988 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x97F SWAP1 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x6 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F7 PUSH2 0x9F0 PUSH2 0xC57 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xE2A JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xA90 PUSH2 0xC57 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xAAE PUSH2 0x6CB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xB04 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP1 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xB74 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB6B SWAP1 PUSH2 0x18D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB7D DUP2 PUSH2 0x13E2 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0xB88 PUSH2 0xC57 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xBA6 PUSH2 0x6CB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xBFC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF3 SWAP1 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xCCF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCC6 SWAP1 PUSH2 0x19F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD3F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD36 SWAP1 PUSH2 0x18F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0xE1D SWAP2 SWAP1 PUSH2 0x1A53 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xE9A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE91 SWAP1 PUSH2 0x19D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF0A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF01 SWAP1 PUSH2 0x1893 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xF15 DUP4 DUP4 DUP4 PUSH2 0x14A8 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xF9B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF92 SWAP1 PUSH2 0x1913 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x102E SWAP2 SWAP1 PUSH2 0x1AA5 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1092 SWAP2 SWAP1 PUSH2 0x1A53 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x10A5 DUP5 DUP5 DUP5 PUSH2 0x14AD JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x111B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1112 SWAP1 PUSH2 0x1A33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1127 PUSH1 0x0 DUP4 DUP4 PUSH2 0x14A8 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1139 SWAP2 SWAP1 PUSH2 0x1AA5 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x118E SWAP2 SWAP1 PUSH2 0x1AA5 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x11F3 SWAP2 SWAP1 PUSH2 0x1A53 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x1207 PUSH1 0x0 DUP4 DUP4 PUSH2 0x14AD JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x127B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1272 SWAP1 PUSH2 0x19B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1287 DUP3 PUSH1 0x0 DUP4 PUSH2 0x14A8 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x130D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1304 SWAP1 PUSH2 0x18B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1364 SWAP2 SWAP1 PUSH2 0x1AFB JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x13C9 SWAP2 SWAP1 PUSH2 0x1A53 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x13DD DUP4 PUSH1 0x0 DUP5 PUSH2 0x14AD JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14C1 DUP2 PUSH2 0x2017 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14D6 DUP2 PUSH2 0x202E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14F2 JUMPI PUSH2 0x14F1 PUSH2 0x1C47 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1500 DUP5 DUP3 DUP6 ADD PUSH2 0x14B2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1520 JUMPI PUSH2 0x151F PUSH2 0x1C47 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x152E DUP6 DUP3 DUP7 ADD PUSH2 0x14B2 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x153F DUP6 DUP3 DUP7 ADD PUSH2 0x14B2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1562 JUMPI PUSH2 0x1561 PUSH2 0x1C47 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1570 DUP7 DUP3 DUP8 ADD PUSH2 0x14B2 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1581 DUP7 DUP3 DUP8 ADD PUSH2 0x14B2 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1592 DUP7 DUP3 DUP8 ADD PUSH2 0x14C7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x15B3 JUMPI PUSH2 0x15B2 PUSH2 0x1C47 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x15C1 DUP6 DUP3 DUP7 ADD PUSH2 0x14B2 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x15D2 DUP6 DUP3 DUP7 ADD PUSH2 0x14C7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x15E5 DUP2 PUSH2 0x1B2F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x15F4 DUP2 PUSH2 0x1B41 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1605 DUP3 PUSH2 0x1A89 JUMP JUMPDEST PUSH2 0x160F DUP2 DUP6 PUSH2 0x1A94 JUMP JUMPDEST SWAP4 POP PUSH2 0x161F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1B84 JUMP JUMPDEST PUSH2 0x1628 DUP2 PUSH2 0x1C4C JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1640 PUSH1 0x23 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x164B DUP3 PUSH2 0x1C5D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1663 PUSH1 0x22 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x166E DUP3 PUSH2 0x1CAC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1686 PUSH1 0x26 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x1691 DUP3 PUSH2 0x1CFB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16A9 PUSH1 0x22 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x16B4 DUP3 PUSH2 0x1D4A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16CC PUSH1 0x26 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x16D7 DUP3 PUSH2 0x1D99 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16EF PUSH1 0x19 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x16FA DUP3 PUSH2 0x1DE8 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1712 PUSH1 0x19 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x171D DUP3 PUSH2 0x1E11 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1735 PUSH1 0x28 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x1740 DUP3 PUSH2 0x1E3A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1758 PUSH1 0x20 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x1763 DUP3 PUSH2 0x1E89 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x177B PUSH1 0x21 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x1786 DUP3 PUSH2 0x1EB2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x179E PUSH1 0x25 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x17A9 DUP3 PUSH2 0x1F01 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17C1 PUSH1 0x24 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x17CC DUP3 PUSH2 0x1F50 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17E4 PUSH1 0x25 DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x17EF DUP3 PUSH2 0x1F9F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1807 PUSH1 0x1F DUP4 PUSH2 0x1A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x1812 DUP3 PUSH2 0x1FEE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1826 DUP2 PUSH2 0x1B6D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1835 DUP2 PUSH2 0x1B77 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1850 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x15DC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x186B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x15EB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x188B DUP2 DUP5 PUSH2 0x15FA JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x18AC DUP2 PUSH2 0x1633 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x18CC DUP2 PUSH2 0x1656 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x18EC DUP2 PUSH2 0x1679 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x190C DUP2 PUSH2 0x169C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x192C DUP2 PUSH2 0x16BF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x194C DUP2 PUSH2 0x16E2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x196C DUP2 PUSH2 0x1705 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x198C DUP2 PUSH2 0x1728 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19AC DUP2 PUSH2 0x174B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19CC DUP2 PUSH2 0x176E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19EC DUP2 PUSH2 0x1791 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A0C DUP2 PUSH2 0x17B4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A2C DUP2 PUSH2 0x17D7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A4C DUP2 PUSH2 0x17FA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A68 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x181D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A83 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x182C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1AB0 DUP3 PUSH2 0x1B6D JUMP JUMPDEST SWAP2 POP PUSH2 0x1ABB DUP4 PUSH2 0x1B6D JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1AF0 JUMPI PUSH2 0x1AEF PUSH2 0x1BE9 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B06 DUP3 PUSH2 0x1B6D JUMP JUMPDEST SWAP2 POP PUSH2 0x1B11 DUP4 PUSH2 0x1B6D JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1B24 JUMPI PUSH2 0x1B23 PUSH2 0x1BE9 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B3A DUP3 PUSH2 0x1B4D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1BA2 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1B87 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1BB1 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1BCF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1BE3 JUMPI PUSH2 0x1BE2 PUSH2 0x1C18 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F6E6C7920636F6E74726F6C6C6572732063616E206D696E7400000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F6E6C7920636F6E74726F6C6C6572732063616E206275726E00000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x2020 DUP2 PUSH2 0x1B2F JUMP JUMPDEST DUP2 EQ PUSH2 0x202B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2037 DUP2 PUSH2 0x1B6D JUMP JUMPDEST DUP2 EQ PUSH2 0x2042 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4B 0xFC 0xBD SWAP9 0xAE 0xEB 0x26 SELFDESTRUCT SWAP11 MULMOD CREATE2 0xB3 0xA6 GASPRICE SWAP9 0x27 0xDE SUB SWAP6 SWAP8 DUP5 0xC2 0xAF PUSH6 0x555F1BB753EB CALLER MLOAD PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "112:1255:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2063:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4284:202;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3151:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4953:512;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3000:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5860:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;450:156:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3315:169:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;988:85:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2274:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;753:160:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6633:467:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1023:109:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3687:208:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3953:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1427:223:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1252:113:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2063:98:1;2117:13;2149:5;2142:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2063:98;:::o;4284:202::-;4399:4;4419:39;4428:12;:10;:12::i;:::-;4442:7;4451:6;4419:8;:39::i;:::-;4475:4;4468:11;;4284:202;;;;:::o;3151:106::-;3212:7;3238:12;;3231:19;;3151:106;:::o;4953:512::-;5089:4;5105:36;5115:6;5123:9;5134:6;5105:9;:36::i;:::-;5152:24;5179:11;:19;5191:6;5179:19;;;;;;;;;;;;;;;:33;5199:12;:10;:12::i;:::-;5179:33;;;;;;;;;;;;;;;;5152:60;;5263:6;5243:16;:26;;5222:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;5369:57;5378:6;5386:12;:10;:12::i;:::-;5419:6;5400:16;:25;5369:8;:57::i;:::-;5454:4;5447:11;;;4953:512;;;;;:::o;3000:91::-;3058:5;3082:2;3075:9;;3000:91;:::o;5860:286::-;5972:4;5992:126;6014:12;:10;:12::i;:::-;6040:7;6098:10;6061:11;:25;6073:12;:10;:12::i;:::-;6061:25;;;;;;;;;;;;;;;:34;6087:7;6061:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5992:8;:126::i;:::-;6135:4;6128:11;;5860:286;;;;:::o;450:156:4:-;519:11;:23;531:10;519:23;;;;;;;;;;;;;;;;;;;;;;;;;511:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;582:17;588:2;592:6;582:5;:17::i;:::-;450:156;;:::o;3315:169:1:-;3429:7;3459:9;:18;3469:7;3459:18;;;;;;;;;;;;;;;;3452:25;;3315:169;;;:::o;988:85:5:-;1034:7;1060:6;;;;;;;;;;;1053:13;;988:85;:::o;2274:102:1:-;2330:13;2362:7;2355:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2274:102;:::o;753:160:4:-;824:11;:23;836:10;824:23;;;;;;;;;;;;;;;;;;;;;;;;;816:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;887:19;893:4;899:6;887:5;:19::i;:::-;753:160;;:::o;6633:467:1:-;6750:4;6770:24;6797:11;:25;6809:12;:10;:12::i;:::-;6797:25;;;;;;;;;;;;;;;:34;6823:7;6797:34;;;;;;;;;;;;;;;;6770:61;;6882:15;6862:16;:35;;6841:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;6994:67;7003:12;:10;:12::i;:::-;7017:7;7045:15;7026:16;:34;6994:8;:67::i;:::-;7089:4;7082:11;;;6633:467;;;;:::o;1023:109:4:-;1211:12:5;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1121:4:4::1;1095:11;:23;1107:10;1095:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;1023:109:::0;:::o;3687:208:1:-;3805:4;3825:42;3835:12;:10;:12::i;:::-;3849:9;3860:6;3825:9;:42::i;:::-;3884:4;3877:11;;3687:208;;;;:::o;3953:193::-;4082:7;4112:11;:18;4124:5;4112:18;;;;;;;;;;;;;;;:27;4131:7;4112:27;;;;;;;;;;;;;;;;4105:34;;3953:193;;;;:::o;1427:223:5:-;1211:12;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1548:1:::1;1528:22;;:8;:22;;;;1507:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;1624:19;1634:8;1624:9;:19::i;:::-;1427:223:::0;:::o;1252:113:4:-;1211:12:5;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1353:5:4::1;1327:11;:23;1339:10;1327:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;1252:113:::0;:::o;587:96:0:-;640:7;666:10;659:17;;587:96;:::o;10305:370:1:-;10453:1;10436:19;;:5;:19;;;;10428:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10533:1;10514:21;;:7;:21;;;;10506:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10615:6;10585:11;:18;10597:5;10585:18;;;;;;;;;;;;;;;:27;10604:7;10585:27;;;;;;;;;;;;;;;:36;;;;10652:7;10636:32;;10645:5;10636:32;;;10661:6;10636:32;;;;;;:::i;:::-;;;;;;;;10305:370;;;:::o;7574:747::-;7727:1;7709:20;;:6;:20;;;;7701:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7810:1;7789:23;;:9;:23;;;;7781:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7863:47;7884:6;7892:9;7903:6;7863:20;:47::i;:::-;7921:21;7945:9;:17;7955:6;7945:17;;;;;;;;;;;;;;;;7921:41;;8010:6;7993:13;:23;;7972:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;8150:6;8134:13;:22;8114:9;:17;8124:6;8114:17;;;;;;;;;;;;;;;:42;;;;8200:6;8176:9;:20;8186:9;8176:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;8239:9;8222:35;;8231:6;8222:35;;;8250:6;8222:35;;;;;;:::i;:::-;;;;;;;;8268:46;8288:6;8296:9;8307:6;8268:19;:46::i;:::-;7691:630;7574:747;;;:::o;8597:389::-;8699:1;8680:21;;:7;:21;;;;8672:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8748:49;8777:1;8781:7;8790:6;8748:20;:49::i;:::-;8824:6;8808:12;;:22;;;;;;;:::i;:::-;;;;;;;;8862:6;8840:9;:18;8850:7;8840:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8904:7;8883:37;;8900:1;8883:37;;;8913:6;8883:37;;;;;;:::i;:::-;;;;;;;;8931:48;8959:1;8963:7;8972:6;8931:19;:48::i;:::-;8597:389;;:::o;9306:576::-;9408:1;9389:21;;:7;:21;;;;9381:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9459:49;9480:7;9497:1;9501:6;9459:20;:49::i;:::-;9519:22;9544:9;:18;9554:7;9544:18;;;;;;;;;;;;;;;;9519:43;;9598:6;9580:14;:24;;9572:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9715:6;9698:14;:23;9677:9;:18;9687:7;9677:18;;;;;;;;;;;;;;;:44;;;;9757:6;9741:12;;:22;;;;;;;:::i;:::-;;;;;;;;9805:1;9779:37;;9788:7;9779:37;;;9809:6;9779:37;;;;;;:::i;:::-;;;;;;;;9827:48;9847:7;9864:1;9868:6;9827:19;:48::i;:::-;9371:511;9306:576;;:::o;1656:169:5:-;1711:16;1730:6;;;;;;;;;;;1711:25;;1755:8;1746:6;;:17;;;;;;;;;;;;;;;;;;1809:8;1778:40;;1799:8;1778:40;;;;;;;;;;;;1701:124;1656:169;:::o;11259:121:1:-;;;;:::o;11968:120::-;;;;:::o;7:139:6:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2217:118;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2341:109;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;2456:364;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2826:366;;;:::o;3198:::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3198:366;;;:::o;3570:::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3570:366;;;:::o;3942:::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;3942:366;;;:::o;4314:::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4314:366;;;:::o;4686:::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4686:366;;;:::o;5058:::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5058:366;;;:::o;5430:::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5430:366;;;:::o;5802:::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5802:366;;;:::o;6174:::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6174:366;;;:::o;6546:::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6546:366;;;:::o;6918:::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;6918:366;;;:::o;7290:::-;7432:3;7453:67;7517:2;7512:3;7453:67;:::i;:::-;7446:74;;7529:93;7618:3;7529:93;:::i;:::-;7647:2;7642:3;7638:12;7631:19;;7290:366;;;:::o;7662:::-;7804:3;7825:67;7889:2;7884:3;7825:67;:::i;:::-;7818:74;;7901:93;7990:3;7901:93;:::i;:::-;8019:2;8014:3;8010:12;8003:19;;7662:366;;;:::o;8034:118::-;8121:24;8139:5;8121:24;:::i;:::-;8116:3;8109:37;8034:118;;:::o;8158:112::-;8241:22;8257:5;8241:22;:::i;:::-;8236:3;8229:35;8158:112;;:::o;8276:222::-;8369:4;8407:2;8396:9;8392:18;8384:26;;8420:71;8488:1;8477:9;8473:17;8464:6;8420:71;:::i;:::-;8276:222;;;;:::o;8504:210::-;8591:4;8629:2;8618:9;8614:18;8606:26;;8642:65;8704:1;8693:9;8689:17;8680:6;8642:65;:::i;:::-;8504:210;;;;:::o;8720:313::-;8833:4;8871:2;8860:9;8856:18;8848:26;;8920:9;8914:4;8910:20;8906:1;8895:9;8891:17;8884:47;8948:78;9021:4;9012:6;8948:78;:::i;:::-;8940:86;;8720:313;;;;:::o;9039:419::-;9205:4;9243:2;9232:9;9228:18;9220:26;;9292:9;9286:4;9282:20;9278:1;9267:9;9263:17;9256:47;9320:131;9446:4;9320:131;:::i;:::-;9312:139;;9039:419;;;:::o;9464:::-;9630:4;9668:2;9657:9;9653:18;9645:26;;9717:9;9711:4;9707:20;9703:1;9692:9;9688:17;9681:47;9745:131;9871:4;9745:131;:::i;:::-;9737:139;;9464:419;;;:::o;9889:::-;10055:4;10093:2;10082:9;10078:18;10070:26;;10142:9;10136:4;10132:20;10128:1;10117:9;10113:17;10106:47;10170:131;10296:4;10170:131;:::i;:::-;10162:139;;9889:419;;;:::o;10314:::-;10480:4;10518:2;10507:9;10503:18;10495:26;;10567:9;10561:4;10557:20;10553:1;10542:9;10538:17;10531:47;10595:131;10721:4;10595:131;:::i;:::-;10587:139;;10314:419;;;:::o;10739:::-;10905:4;10943:2;10932:9;10928:18;10920:26;;10992:9;10986:4;10982:20;10978:1;10967:9;10963:17;10956:47;11020:131;11146:4;11020:131;:::i;:::-;11012:139;;10739:419;;;:::o;11164:::-;11330:4;11368:2;11357:9;11353:18;11345:26;;11417:9;11411:4;11407:20;11403:1;11392:9;11388:17;11381:47;11445:131;11571:4;11445:131;:::i;:::-;11437:139;;11164:419;;;:::o;11589:::-;11755:4;11793:2;11782:9;11778:18;11770:26;;11842:9;11836:4;11832:20;11828:1;11817:9;11813:17;11806:47;11870:131;11996:4;11870:131;:::i;:::-;11862:139;;11589:419;;;:::o;12014:::-;12180:4;12218:2;12207:9;12203:18;12195:26;;12267:9;12261:4;12257:20;12253:1;12242:9;12238:17;12231:47;12295:131;12421:4;12295:131;:::i;:::-;12287:139;;12014:419;;;:::o;12439:::-;12605:4;12643:2;12632:9;12628:18;12620:26;;12692:9;12686:4;12682:20;12678:1;12667:9;12663:17;12656:47;12720:131;12846:4;12720:131;:::i;:::-;12712:139;;12439:419;;;:::o;12864:::-;13030:4;13068:2;13057:9;13053:18;13045:26;;13117:9;13111:4;13107:20;13103:1;13092:9;13088:17;13081:47;13145:131;13271:4;13145:131;:::i;:::-;13137:139;;12864:419;;;:::o;13289:::-;13455:4;13493:2;13482:9;13478:18;13470:26;;13542:9;13536:4;13532:20;13528:1;13517:9;13513:17;13506:47;13570:131;13696:4;13570:131;:::i;:::-;13562:139;;13289:419;;;:::o;13714:::-;13880:4;13918:2;13907:9;13903:18;13895:26;;13967:9;13961:4;13957:20;13953:1;13942:9;13938:17;13931:47;13995:131;14121:4;13995:131;:::i;:::-;13987:139;;13714:419;;;:::o;14139:::-;14305:4;14343:2;14332:9;14328:18;14320:26;;14392:9;14386:4;14382:20;14378:1;14367:9;14363:17;14356:47;14420:131;14546:4;14420:131;:::i;:::-;14412:139;;14139:419;;;:::o;14564:::-;14730:4;14768:2;14757:9;14753:18;14745:26;;14817:9;14811:4;14807:20;14803:1;14792:9;14788:17;14781:47;14845:131;14971:4;14845:131;:::i;:::-;14837:139;;14564:419;;;:::o;14989:222::-;15082:4;15120:2;15109:9;15105:18;15097:26;;15133:71;15201:1;15190:9;15186:17;15177:6;15133:71;:::i;:::-;14989:222;;;;:::o;15217:214::-;15306:4;15344:2;15333:9;15329:18;15321:26;;15357:67;15421:1;15410:9;15406:17;15397:6;15357:67;:::i;:::-;15217:214;;;;:::o;15518:99::-;15570:6;15604:5;15598:12;15588:22;;15518:99;;;:::o;15623:169::-;15707:11;15741:6;15736:3;15729:19;15781:4;15776:3;15772:14;15757:29;;15623:169;;;;:::o;15798:305::-;15838:3;15857:20;15875:1;15857:20;:::i;:::-;15852:25;;15891:20;15909:1;15891:20;:::i;:::-;15886:25;;16045:1;15977:66;15973:74;15970:1;15967:81;15964:107;;;16051:18;;:::i;:::-;15964:107;16095:1;16092;16088:9;16081:16;;15798:305;;;;:::o;16109:191::-;16149:4;16169:20;16187:1;16169:20;:::i;:::-;16164:25;;16203:20;16221:1;16203:20;:::i;:::-;16198:25;;16242:1;16239;16236:8;16233:34;;;16247:18;;:::i;:::-;16233:34;16292:1;16289;16285:9;16277:17;;16109:191;;;;:::o;16306:96::-;16343:7;16372:24;16390:5;16372:24;:::i;:::-;16361:35;;16306:96;;;:::o;16408:90::-;16442:7;16485:5;16478:13;16471:21;16460:32;;16408:90;;;:::o;16504:126::-;16541:7;16581:42;16574:5;16570:54;16559:65;;16504:126;;;:::o;16636:77::-;16673:7;16702:5;16691:16;;16636:77;;;:::o;16719:86::-;16754:7;16794:4;16787:5;16783:16;16772:27;;16719:86;;;:::o;16811:307::-;16879:1;16889:113;16903:6;16900:1;16897:13;16889:113;;;16988:1;16983:3;16979:11;16973:18;16969:1;16964:3;16960:11;16953:39;16925:2;16922:1;16918:10;16913:15;;16889:113;;;17020:6;17017:1;17014:13;17011:101;;;17100:1;17091:6;17086:3;17082:16;17075:27;17011:101;16860:258;16811:307;;;:::o;17124:320::-;17168:6;17205:1;17199:4;17195:12;17185:22;;17252:1;17246:4;17242:12;17273:18;17263:81;;17329:4;17321:6;17317:17;17307:27;;17263:81;17391:2;17383:6;17380:14;17360:18;17357:38;17354:84;;;17410:18;;:::i;:::-;17354:84;17175:269;17124:320;;;:::o;17450:180::-;17498:77;17495:1;17488:88;17595:4;17592:1;17585:15;17619:4;17616:1;17609:15;17636:180;17684:77;17681:1;17674:88;17781:4;17778:1;17771:15;17805:4;17802:1;17795:15;17945:117;18054:1;18051;18044:12;18068:102;18109:6;18160:2;18156:7;18151:2;18144:5;18140:14;18136:28;18126:38;;18068:102;;;:::o;18176:222::-;18316:34;18312:1;18304:6;18300:14;18293:58;18385:5;18380:2;18372:6;18368:15;18361:30;18176:222;:::o;18404:221::-;18544:34;18540:1;18532:6;18528:14;18521:58;18613:4;18608:2;18600:6;18596:15;18589:29;18404:221;:::o;18631:225::-;18771:34;18767:1;18759:6;18755:14;18748:58;18840:8;18835:2;18827:6;18823:15;18816:33;18631:225;:::o;18862:221::-;19002:34;18998:1;18990:6;18986:14;18979:58;19071:4;19066:2;19058:6;19054:15;19047:29;18862:221;:::o;19089:225::-;19229:34;19225:1;19217:6;19213:14;19206:58;19298:8;19293:2;19285:6;19281:15;19274:33;19089:225;:::o;19320:175::-;19460:27;19456:1;19448:6;19444:14;19437:51;19320:175;:::o;19501:::-;19641:27;19637:1;19629:6;19625:14;19618:51;19501:175;:::o;19682:227::-;19822:34;19818:1;19810:6;19806:14;19799:58;19891:10;19886:2;19878:6;19874:15;19867:35;19682:227;:::o;19915:182::-;20055:34;20051:1;20043:6;20039:14;20032:58;19915:182;:::o;20103:220::-;20243:34;20239:1;20231:6;20227:14;20220:58;20312:3;20307:2;20299:6;20295:15;20288:28;20103:220;:::o;20329:224::-;20469:34;20465:1;20457:6;20453:14;20446:58;20538:7;20533:2;20525:6;20521:15;20514:32;20329:224;:::o;20559:223::-;20699:34;20695:1;20687:6;20683:14;20676:58;20768:6;20763:2;20755:6;20751:15;20744:31;20559:223;:::o;20788:224::-;20928:34;20924:1;20916:6;20912:14;20905:58;20997:7;20992:2;20984:6;20980:15;20973:32;20788:224;:::o;21018:181::-;21158:33;21154:1;21146:6;21142:14;21135:57;21018:181;:::o;21205:122::-;21278:24;21296:5;21278:24;:::i;:::-;21271:5;21268:35;21258:63;;21317:1;21314;21307:12;21258:63;21205:122;:::o;21333:::-;21406:24;21424:5;21406:24;:::i;:::-;21399:5;21396:35;21386:63;;21445:1;21442;21435:12;21386:63;21333:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1663000",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"addController(address)": "27074",
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2930",
"burn(address,uint256)": "infinite",
"decimals()": "366",
"decreaseAllowance(address,uint256)": "infinite",
"increaseAllowance(address,uint256)": "infinite",
"mint(address,uint256)": "infinite",
"name()": "infinite",
"owner()": "2545",
"removeController(address)": "27162",
"symbol()": "infinite",
"totalSupply()": "2505",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "30811"
}
},
"methodIdentifiers": {
"addController(address)": "a7fc7a07",
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"burn(address,uint256)": "9dc29fac",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"increaseAllowance(address,uint256)": "39509351",
"mint(address,uint256)": "40c10f19",
"name()": "06fdde03",
"owner()": "8da5cb5b",
"removeController(address)": "f6a74ed7",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd",
"transferOwnership(address)": "f2fde38b"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "controller",
"type": "address"
}
],
"name": "addController",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "controller",
"type": "address"
}
],
"name": "removeController",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "controller",
"type": "address"
}
],
"name": "addController",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "controller",
"type": "address"
}
],
"name": "removeController",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"addController(address)": {
"params": {
"controller": "the address to enable"
}
},
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"burn(address,uint256)": {
"params": {
"amount": "the amount of $LOOT to burn",
"from": "the holder of the $LOOT"
}
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the 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}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"mint(address,uint256)": {
"params": {
"amount": "the amount of $LOOT to mint",
"to": "the recipient of the $LOOT"
}
},
"name()": {
"details": "Returns the name of the token."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"removeController(address)": {
"params": {
"controller": "the address to disbale"
}
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. 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`."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {
"addController(address)": {
"notice": "enables an address to mint / burn"
},
"burn(address,uint256)": {
"notice": "burns $LOOT from a holder"
},
"mint(address,uint256)": {
"notice": "mints $LOOT to a recipient"
},
"removeController(address)": {
"notice": "disables an address from minting / burning"
}
},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/LOOT/LOOT.sol": "LOOT"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/LOOT/Context.sol": {
"keccak256": "0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f",
"license": "MIT",
"urls": [
"bzz-raw://26e8b38a7ac8e7b4463af00cf7fff1bf48ae9875765bf4f7751e100124d0bc8c",
"dweb:/ipfs/QmWcsmkVr24xmmjfnBQZoemFniXjj3vwT78Cz6uqZW1Hux"
]
},
"contracts/LOOT/ERC20.sol": {
"keccak256": "0xe6e95cc5d5265f57f56ecdd82622aa1b49a5a178f248fb3064581f578fc2e6d4",
"license": "MIT",
"urls": [
"bzz-raw://4c58725cfb159e4ad75e9f9634366c8c64d31aa72c01b5027c0cd2371041d4d5",
"dweb:/ipfs/QmQNS8zRNcuS4LR5S5yZdgxhyZWYyJHiZu8ria1x9Xv6VC"
]
},
"contracts/LOOT/IERC20.sol": {
"keccak256": "0x1a3fe05486ba5f5dbaa5fd9b8bdef2231a8675fb1fee2da87b01ac753837271f",
"license": "MIT",
"urls": [
"bzz-raw://b3c56f7b18c86053fe6a63a3c7936e3697e172b40ddb31be9273982f99bc6063",
"dweb:/ipfs/Qmep5wW9i9siCQMy1xEVBJprYwmaHU8DWXQFngazR1gsHy"
]
},
"contracts/LOOT/IERC20Metadata.sol": {
"keccak256": "0xb63c77a8047f65f823e21c5963e2305ded0691eb80101cdf533c91e84acaafdb",
"license": "MIT",
"urls": [
"bzz-raw://283f5cf2881c751e200196e8c8d1d3bf91779e1231aee67191d04783fcb07c91",
"dweb:/ipfs/QmTvnjekrmwSzcV565AbMmRCMVQ1hgAE6bzX9iR6XhynVW"
]
},
"contracts/LOOT/LOOT.sol": {
"keccak256": "0x3535291ee67ca8bb2d9fe6ecbe3414d88472b8c6de3b97a2e3a103a83997572c",
"license": "MIT LICENSE",
"urls": [
"bzz-raw://266fe66ef7b3b3ab9967601c56bcd746c72dea952ab966b12eb361060899a8e5",
"dweb:/ipfs/Qmc24sqGzb11q8nr6TuhGxteqTk3oruiouvnet99TiXZjN"
]
},
"contracts/LOOT/Ownable.sol": {
"keccak256": "0x7b961efda102882c3c58839a3725636b2d0db163e3710b050cfb6052751d76c2",
"license": "MIT",
"urls": [
"bzz-raw://d593e4f28dbfff72ded9b53317a2d80722b32b9c17cf6f5418c1382d8067eb4e",
"dweb:/ipfs/QmZck7Bcf6vSLSBMp9wHGPAjyBUJu6RsDb7kAgNAn6AP9E"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"owner()": "8da5cb5b",
"transferOwnership(address)": "f2fde38b"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.",
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract setting the deployer as the initial owner."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/LOOT/Ownable.sol": "Ownable"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/LOOT/Context.sol": {
"keccak256": "0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f",
"license": "MIT",
"urls": [
"bzz-raw://26e8b38a7ac8e7b4463af00cf7fff1bf48ae9875765bf4f7751e100124d0bc8c",
"dweb:/ipfs/QmWcsmkVr24xmmjfnBQZoemFniXjj3vwT78Cz6uqZW1Hux"
]
},
"contracts/LOOT/Ownable.sol": {
"keccak256": "0x7b961efda102882c3c58839a3725636b2d0db163e3710b050cfb6052751d76c2",
"license": "MIT",
"urls": [
"bzz-raw://d593e4f28dbfff72ded9b53317a2d80722b32b9c17cf6f5418c1382d8067eb4e",
"dweb:/ipfs/QmZck7Bcf6vSLSBMp9wHGPAjyBUJu6RsDb7kAgNAn6AP9E"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
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
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./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
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
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 LICENSE
pragma solidity ^0.8.0;
import "./ERC20.sol";
import "./Ownable.sol";
contract LOOT is ERC20, Ownable {
// a mapping from an address to whether or not it can mint / burn
mapping(address => bool) controllers;
constructor() ERC20("LOOT", "LOOT") {}
/**
* mints $LOOT to a recipient
* @param to the recipient of the $LOOT
* @param amount the amount of $LOOT to mint
*/
function mint(address to, uint256 amount) external {
require(controllers[msg.sender], "Only controllers can mint");
_mint(to, amount);
}
/**
* burns $LOOT from a holder
* @param from the holder of the $LOOT
* @param amount the amount of $LOOT to burn
*/
function burn(address from, uint256 amount) external {
require(controllers[msg.sender], "Only controllers can burn");
_burn(from, amount);
}
/**
* enables an address to mint / burn
* @param controller the address to enable
*/
function addController(address controller) external onlyOwner {
controllers[controller] = true;
}
/**
* disables an address from minting / burning
* @param controller the address to disbale
*/
function removeController(address controller) external onlyOwner {
controllers[controller] = false;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./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() {
_setOwner(_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 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"
);
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
{
"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": "60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212209fbd1e2b341cbab5807d27384f6069135d2afefc8faca0d89e8a66d6e134fd5364736f6c63430008070033",
"opcodes": "PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP16 0xBD 0x1E 0x2B CALLVALUE SHR 0xBA 0xB5 DUP1 PUSH30 0x27384F6069135D2AFEFC8FACA0D89E8A66D6E134FD5364736F6C63430008 SMOD STOP CALLER ",
"sourceMap": "126:8159:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212209fbd1e2b341cbab5807d27384f6069135d2afefc8faca0d89e8a66d6e134fd5364736f6c63430008070033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP16 0xBD 0x1E 0x2B CALLVALUE SHR 0xBA 0xB5 DUP1 PUSH30 0x27384F6069135D2AFEFC8FACA0D89E8A66D6E134FD5364736F6C63430008 SMOD STOP CALLER ",
"sourceMap": "126:8159:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "97",
"totalCost": "17297"
},
"internal": {
"functionCall(address,bytes memory)": "infinite",
"functionCall(address,bytes memory,string memory)": "infinite",
"functionCallWithValue(address,bytes memory,uint256)": "infinite",
"functionCallWithValue(address,bytes memory,uint256,string memory)": "infinite",
"functionDelegateCall(address,bytes memory)": "infinite",
"functionDelegateCall(address,bytes memory,string memory)": "infinite",
"functionStaticCall(address,bytes memory)": "infinite",
"functionStaticCall(address,bytes memory,string memory)": "infinite",
"isContract(address)": "infinite",
"sendValue(address payable,uint256)": "infinite",
"verifyCallResult(bool,bytes memory,string memory)": "infinite"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "Collection of functions related to the address type",
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/NFT/Address.sol": "Address"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/NFT/Address.sol": {
"keccak256": "0xed90359d980ae160f092e585f61fb2f21f6ae02f46c17f695d9edf571d964bc6",
"license": "MIT",
"urls": [
"bzz-raw://c25ef7116c7e843b419602f4213aa263320adfec43e054b9225ba02874aed65b",
"dweb:/ipfs/QmNTKMM8AR594VFvRAg7QMe15cjBxAc7g9LMGLC6KK7gYN"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.",
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/NFT/Context.sol": "Context"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/NFT/Context.sol": {
"keccak256": "0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f",
"license": "MIT",
"urls": [
"bzz-raw://26e8b38a7ac8e7b4463af00cf7fff1bf48ae9875765bf4f7751e100124d0bc8c",
"dweb:/ipfs/QmWcsmkVr24xmmjfnBQZoemFniXjj3vwT78Cz6uqZW1Hux"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "./PoliceAndThief.sol";
import "./LOOT.sol";
contract Bank is Ownable, IERC721Receiver, Pausable {
// maximum alpha score for a Police
uint8 public constant MAX_ALPHA = 8;
// struct to store a stake's token, owner, and earning values
struct Stake {
uint16 tokenId;
uint80 value;
address owner;
}
event TokenStaked(address owner, uint256 tokenId, uint256 value);
event ThiefClaimed(uint256 tokenId, uint256 earned, bool unstaked);
event PoliceClaimed(uint256 tokenId, uint256 earned, bool unstaked);
// reference to the PoliceAndThief NFT contract
PoliceAndThief game;
// reference to the $LOOT contract for minting $LOOT earnings
LOOT loot;
// maps tokenId to stake
mapping(uint256 => Stake) public bank;
// maps alpha to all Police stakes with that alpha
mapping(uint256 => Stake[]) public pack;
// tracks location of each Police in Pack
mapping(uint256 => uint256) public packIndices;
// total alpha scores staked
uint256 public totalAlphaStaked = 0;
// any rewards distributed when no wolves are staked
uint256 public unaccountedRewards = 0;
// amount of $LOOT due for each alpha point staked
uint256 public lootPerAlpha = 0;
// thief earn 10000 $LOOT per day
uint256 public DAILY_LOOT_RATE = 10000 ether;
// thief must have 2 days worth of $LOOT to unstake or else it's too cold
uint256 public MINIMUM_TO_EXIT = 2 days;
// wolves take a 20% tax on all $LOOT claimed
uint256 public constant LOOT_CLAIM_TAX_PERCENTAGE = 20;
// there will only ever be (roughly) 2.4 billion $LOOT earned through staking
uint256 public constant MAXIMUM_GLOBAL_LOOT = 2400000000 ether;
// amount of $LOOT earned so far
uint256 public totalLootEarned;
// number of Thief staked in the Bank
uint256 public totalThiefStaked;
// the last time $LOOT was claimed
uint256 public lastClaimTimestamp;
// emergency rescue to allow unstaking without any checks but without $LOOT
bool public rescueEnabled = false;
bool private _reentrant = false;
modifier nonReentrant() {
require(!_reentrant, "No reentrancy");
_reentrant = true;
_;
_reentrant = false;
}
/**
* @param _game reference to the PoliceAndThief NFT contract
* @param _loot reference to the $LOOT token
*/
constructor(PoliceAndThief _game, LOOT _loot) {
game = _game;
loot = _loot;
}
/***STAKING */
/**
* adds Thief and Polices to the Bank and Pack
* @param account the address of the staker
* @param tokenIds the IDs of the Thief and Polices to stake
*/
function addManyToBankAndPack(address account, uint16[] calldata tokenIds)
external
nonReentrant
{
require(
(account == _msgSender() && account == tx.origin) ||
_msgSender() == address(game),
"DONT GIVE YOUR TOKENS AWAY"
);
for (uint256 i = 0; i < tokenIds.length; i++) {
if (tokenIds[i] == 0) {
continue;
}
if (_msgSender() != address(game)) {
// dont do this step if its a mint + stake
require(
game.ownerOf(tokenIds[i]) == _msgSender(),
"AINT YO TOKEN"
);
game.transferFrom(_msgSender(), address(this), tokenIds[i]);
}
if (isThief(tokenIds[i])) _addThiefToBank(account, tokenIds[i]);
else _addPoliceToPack(account, tokenIds[i]);
}
}
/**
* adds a single Thief to the Bank
* @param account the address of the staker
* @param tokenId the ID of the Thief to add to the Bank
*/
function _addThiefToBank(address account, uint256 tokenId)
internal
whenNotPaused
_updateEarnings
{
bank[tokenId] = Stake({
owner: account,
tokenId: uint16(tokenId),
value: uint80(block.timestamp)
});
totalThiefStaked += 1;
emit TokenStaked(account, tokenId, block.timestamp);
}
/**
* adds a single Police to the Pack
* @param account the address of the staker
* @param tokenId the ID of the Police to add to the Pack
*/
function _addPoliceToPack(address account, uint256 tokenId) internal {
uint256 alpha = _alphaForPolice(tokenId);
totalAlphaStaked += alpha;
// Portion of earnings ranges from 8 to 5
packIndices[tokenId] = pack[alpha].length;
// Store the location of the police in the Pack
pack[alpha].push(
Stake({
owner: account,
tokenId: uint16(tokenId),
value: uint80(lootPerAlpha)
})
);
// Add the police to the Pack
emit TokenStaked(account, tokenId, lootPerAlpha);
}
/***CLAIMING / UNSTAKING */
/**
* realize $LOOT earnings and optionally unstake tokens from the Bank / Pack
* to unstake a Thief it will require it has 2 days worth of $LOOT unclaimed
* @param tokenIds the IDs of the tokens to claim earnings from
* @param unstake whether or not to unstake ALL of the tokens listed in tokenIds
*/
function claimManyFromBankAndPack(uint16[] calldata tokenIds, bool unstake)
external
nonReentrant
whenNotPaused
_updateEarnings
{
require(msg.sender == tx.origin, "Only EOA");
uint256 owed = 0;
for (uint256 i = 0; i < tokenIds.length; i++) {
if (isThief(tokenIds[i]))
owed += _claimThiefFromBank(tokenIds[i], unstake);
else owed += _claimPoliceFromPack(tokenIds[i], unstake);
}
if (owed == 0) return;
loot.mint(_msgSender(), owed);
}
/**
* realize $LOOT earnings for a single Thief and optionally unstake it
* if not unstaking, pay a 20% tax to the staked Polices
* if unstaking, there is a 50% chance all $LOOT is stolen
* @param tokenId the ID of the Thief to claim earnings from
* @param unstake whether or not to unstake the Thief
* @return owed - the amount of $LOOT earned
*/
function _claimThiefFromBank(uint256 tokenId, bool unstake)
internal
returns (uint256 owed)
{
Stake memory stake = bank[tokenId];
require(stake.owner == _msgSender(), "SWIPER, NO SWIPING");
require(
!(unstake && block.timestamp - stake.value < MINIMUM_TO_EXIT),
"GONNA BE COLD WITHOUT TWO DAY'S LOOT"
);
if (totalLootEarned < MAXIMUM_GLOBAL_LOOT) {
owed = ((block.timestamp - stake.value) * DAILY_LOOT_RATE) / 1 days;
} else if (stake.value > lastClaimTimestamp) {
owed = 0;
// $LOOT production stopped already
} else {
owed =
((lastClaimTimestamp - stake.value) * DAILY_LOOT_RATE) /
1 days;
// stop earning additional $LOOT if it's all been earned
}
if (unstake) {
if (random(tokenId) & 1 == 1) {
// 50% chance of all $LOOT stolen
_payPoliceTax(owed);
owed = 0;
}
game.transferFrom(address(this), _msgSender(), tokenId);
// send back Thief
delete bank[tokenId];
totalThiefStaked -= 1;
} else {
_payPoliceTax((owed * LOOT_CLAIM_TAX_PERCENTAGE) / 100);
// percentage tax to staked wolves
owed = (owed * (100 - LOOT_CLAIM_TAX_PERCENTAGE)) / 100;
// remainder goes to Thief owner
bank[tokenId] = Stake({
owner: _msgSender(),
tokenId: uint16(tokenId),
value: uint80(block.timestamp)
});
// reset stake
}
emit ThiefClaimed(tokenId, owed, unstake);
}
/**
* realize $LOOT earnings for a single Police and optionally unstake it
* Polices earn $LOOT proportional to their Alpha rank
* @param tokenId the ID of the Police to claim earnings from
* @param unstake whether or not to unstake the Police
* @return owed - the amount of $LOOT earned
*/
function _claimPoliceFromPack(uint256 tokenId, bool unstake)
internal
returns (uint256 owed)
{
require(
game.ownerOf(tokenId) == address(this),
"AINT A PART OF THE PACK"
);
uint256 alpha = _alphaForPolice(tokenId);
Stake memory stake = pack[alpha][packIndices[tokenId]];
require(stake.owner == _msgSender(), "SWIPER, NO SWIPING");
owed = (alpha) * (lootPerAlpha - stake.value);
// Calculate portion of tokens based on Alpha
if (unstake) {
totalAlphaStaked -= alpha;
// Remove Alpha from total staked
game.transferFrom(address(this), _msgSender(), tokenId);
// Send back Police
Stake memory lastStake = pack[alpha][pack[alpha].length - 1];
pack[alpha][packIndices[tokenId]] = lastStake;
// Shuffle last Police to current position
packIndices[lastStake.tokenId] = packIndices[tokenId];
pack[alpha].pop();
// Remove duplicate
delete packIndices[tokenId];
// Delete old mapping
} else {
pack[alpha][packIndices[tokenId]] = Stake({
owner: _msgSender(),
tokenId: uint16(tokenId),
value: uint80(lootPerAlpha)
});
// reset stake
}
emit PoliceClaimed(tokenId, owed, unstake);
}
/**
* emergency unstake tokens
* @param tokenIds the IDs of the tokens to claim earnings from
*/
function rescue(uint256[] calldata tokenIds) external nonReentrant {
require(rescueEnabled, "RESCUE DISABLED");
uint256 tokenId;
Stake memory stake;
Stake memory lastStake;
uint256 alpha;
for (uint256 i = 0; i < tokenIds.length; i++) {
tokenId = tokenIds[i];
if (isThief(tokenId)) {
stake = bank[tokenId];
require(stake.owner == _msgSender(), "SWIPER, NO SWIPING");
game.transferFrom(address(this), _msgSender(), tokenId);
// send back Thief
delete bank[tokenId];
totalThiefStaked -= 1;
emit ThiefClaimed(tokenId, 0, true);
} else {
alpha = _alphaForPolice(tokenId);
stake = pack[alpha][packIndices[tokenId]];
require(stake.owner == _msgSender(), "SWIPER, NO SWIPING");
totalAlphaStaked -= alpha;
// Remove Alpha from total staked
game.transferFrom(address(this), _msgSender(), tokenId);
// Send back Police
lastStake = pack[alpha][pack[alpha].length - 1];
pack[alpha][packIndices[tokenId]] = lastStake;
// Shuffle last Police to current position
packIndices[lastStake.tokenId] = packIndices[tokenId];
pack[alpha].pop();
// Remove duplicate
delete packIndices[tokenId];
// Delete old mapping
emit PoliceClaimed(tokenId, 0, true);
}
}
}
/***ACCOUNTING */
/**
* add $LOOT to claimable pot for the Pack
* @param amount $LOOT to add to the pot
*/
function _payPoliceTax(uint256 amount) internal {
if (totalAlphaStaked == 0) {
// if there's no staked wolves
unaccountedRewards += amount;
// keep track of $LOOT due to wolves
return;
}
// makes sure to include any unaccounted $LOOT
lootPerAlpha += (amount + unaccountedRewards) / totalAlphaStaked;
unaccountedRewards = 0;
}
/**
* tracks $LOOT earnings to ensure it stops once 2.4 billion is eclipsed
*/
modifier _updateEarnings() {
if (totalLootEarned < MAXIMUM_GLOBAL_LOOT) {
totalLootEarned +=
((block.timestamp - lastClaimTimestamp) *
totalThiefStaked *
DAILY_LOOT_RATE) /
1 days;
lastClaimTimestamp = block.timestamp;
}
_;
}
/***ADMIN */
function setSettings(uint256 rate, uint256 exit) external onlyOwner {
MINIMUM_TO_EXIT = exit;
DAILY_LOOT_RATE = rate;
}
/**
* allows owner to enable "rescue mode"
* simplifies accounting, prioritizes tokens out in emergency
*/
function setRescueEnabled(bool _enabled) external onlyOwner {
rescueEnabled = _enabled;
}
/**
* enables owner to pause / unpause minting
*/
function setPaused(bool _paused) external onlyOwner {
if (_paused) _pause();
else _unpause();
}
/***READ ONLY */
/**
* checks if a token is a Thief
* @param tokenId the ID of the token to check
* @return thief - whether or not a token is a Thief
*/
function isThief(uint256 tokenId) public view returns (bool thief) {
(thief, , , , , , , , ) = game.tokenTraits(tokenId);
}
/**
* gets the alpha score for a Police
* @param tokenId the ID of the Police to get the alpha score for
* @return the alpha score of the Police (5-8)
*/
function _alphaForPolice(uint256 tokenId) internal view returns (uint8) {
(, , , , , , , , uint8 alphaIndex) = game.tokenTraits(tokenId);
return MAX_ALPHA - alphaIndex;
// alpha index is 0-3
}
/**
* chooses a random Police thief when a newly minted token is stolen
* @param seed a random value to choose a Police from
* @return the owner of the randomly selected Police thief
*/
function randomPoliceOwner(uint256 seed) external view returns (address) {
if (totalAlphaStaked == 0) return address(0x0);
uint256 bucket = (seed & 0xFFFFFFFF) % totalAlphaStaked;
// choose a value from 0 to total alpha staked
uint256 cumulative;
seed >>= 32;
// loop through each bucket of Polices with the same alpha score
for (uint256 i = MAX_ALPHA - 3; i <= MAX_ALPHA; i++) {
cumulative += pack[i].length * i;
// if the value is not inside of that bucket, keep going
if (bucket >= cumulative) continue;
// get the address of a random Police with that alpha score
return pack[i][seed % pack[i].length].owner;
}
return address(0x0);
}
/**
* generates a pseudorandom number
* @param seed a value ensure different outcomes for different sources in the same block
* @return a pseudorandom value
*/
function random(uint256 seed) internal view returns (uint256) {
return
uint256(
keccak256(
abi.encodePacked(
tx.origin,
blockhash(block.number - 1),
block.timestamp,
seed,
totalThiefStaked,
totalAlphaStaked,
lastClaimTimestamp
)
)
) ^ game.randomSource().seed();
}
function onERC721Received(
address,
address from,
uint256,
bytes calldata
) external pure override returns (bytes4) {
require(from == address(0x0), "Cannot send tokens to Barn directly");
return IERC721Receiver.onERC721Received.selector;
}
}
// SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.0;
import "./Bank.sol";
interface IBank {
function addManyToBankAndPack(address account, uint16[] calldata tokenIds)
external;
function randomPoliceOwner(uint256 seed) external view returns (address);
function bank(uint256)
external
view
returns (
uint16,
uint80,
address
);
function totalLootEarned() external view returns (uint256);
function lastClaimTimestamp() external view returns (uint256);
function setOldTokenInfo(uint256 _tokenId) external;
function pack(uint256, uint256) external view returns (Bank.Stake memory);
function packIndices(uint256) external view returns (uint256);
}
// SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.0;
interface ILOOT {
function burn(address from, uint256 amount) external;
}
// SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.0;
interface IPoliceAndThief {
// struct to store each token's traits
struct ThiefPolice {
bool isThief;
uint8 uniform;
uint8 hair;
uint8 eyes;
uint8 facialHair;
uint8 headgear;
uint8 neckGear;
uint8 accessory;
uint8 alphaIndex;
}
function getPaidTokens() external view returns (uint256);
function getTokenTraits(uint256 tokenId)
external
view
returns (ThiefPolice memory);
}
// SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.0;
interface ISeed {
function seed() external view returns (uint256);
function update(uint256 _seed) external returns (uint256);
}
// SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.0;
interface ITraits {
function tokenURI(uint256 tokenId) external view returns (string memory);
function selectTrait(uint16 seed, uint8 traitType)
external
view
returns (uint8);
}
// SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract LOOT is ERC20, Ownable {
// a mapping from an address to whether or not it can mint / burn
mapping(address => bool) controllers;
constructor() ERC20("LOOT", "LOOT") {}
/**
* mints $LOOT to a recipient
* @param to the recipient of the $LOOT
* @param amount the amount of $LOOT to mint
*/
function mint(address to, uint256 amount) external {
require(controllers[msg.sender], "Only controllers can mint");
_mint(to, amount);
}
/**
* burns $LOOT from a holder
* @param from the holder of the $LOOT
* @param amount the amount of $LOOT to burn
*/
function burn(address from, uint256 amount) external {
require(controllers[msg.sender], "Only controllers can burn");
_burn(from, amount);
}
/**
* enables an address to mint / burn
* @param controller the address to enable
*/
function addController(address controller) external onlyOwner {
controllers[controller] = true;
}
/**
* disables an address from minting / burning
* @param controller the address to disbale
*/
function removeController(address controller) external onlyOwner {
controllers[controller] = false;
}
}
// SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./IPoliceAndThief.sol";
import "./IBank.sol";
import "./ITraits.sol";
import "./ISeed.sol";
import "./ILOOT.sol";
contract PoliceAndThief is
IPoliceAndThief,
ERC721Enumerable,
Ownable,
Pausable
{
// mint price
uint256 public MINT_PRICE = 1.7 ether;
uint256 public MAX_MINT = 30;
// max number of tokens that can be minted - 50000 in production
uint256 public immutable MAX_TOKENS;
// number of tokens that can be claimed for free - 20% of MAX_TOKENS
uint256 public PAID_TOKENS;
// number of tokens have been minted so far
uint16 public minted;
// mapping from tokenId to a struct containing the token's traits
mapping(uint256 => ThiefPolice) public tokenTraits;
// mapping from hashed(tokenTrait) to the tokenId it's associated with
// used to ensure there are no duplicates
mapping(uint256 => uint256) public existingCombinations;
// reference to the Bank for choosing random Police thieves
IBank public bank;
// reference to $LOOT for burning on mint
ILOOT public loot;
// reference to Traits
ITraits public traits;
ISeed public randomSource;
bool private _reentrant = false;
bool private stakingActive = true;
modifier nonReentrant() {
require(!_reentrant, "No reentrancy");
_reentrant = true;
_;
_reentrant = false;
}
/**
* instantiates contract and rarity tables
*/
constructor(
ILOOT _loot,
ITraits _traits,
uint256 _maxTokens
) ERC721("Police Game", "WGAME") {
loot = _loot;
traits = _traits;
MAX_TOKENS = _maxTokens;
PAID_TOKENS = _maxTokens / 5;
}
function setRandomSource(ISeed _seed) external onlyOwner {
randomSource = _seed;
}
/***EXTERNAL */
/**
* mint a token - 90% Thief, 10% Polices
* The first 20% are free to claim, the remaining cost $LOOT
*/
function mint(uint256 amount, bool stake)
external
payable
nonReentrant
whenNotPaused
{
require(!stake || stakingActive, "Staking not activated");
require(tx.origin == _msgSender(), "Only EOA");
require(minted + amount <= MAX_TOKENS, "All tokens minted");
require(amount > 0 && amount <= MAX_MINT, "Invalid mint amount");
if (minted < PAID_TOKENS) {
// requesting over paid amount
require(
minted + amount <= PAID_TOKENS,
"All tokens on-sale already sold"
);
// did not pay correct amount
require(amount * MINT_PRICE == msg.value, "Invalid payment amount");
} else {
// cost is burning
require(msg.value == 0);
}
uint256 totalLootCost = 0;
uint16[] memory tokenIds = new uint16[](amount);
address[] memory owners = new address[](amount);
uint256 seed;
uint256 firstMinted = minted;
for (uint256 i = 0; i < amount; i++) {
minted++;
seed = random(minted);
randomSource.update(minted ^ seed);
generate(minted, seed);
address recipient = selectRecipient(seed);
totalLootCost += mintCost(minted);
if (!stake || recipient != _msgSender()) {
owners[i] = recipient;
} else {
tokenIds[i] = minted;
owners[i] = address(bank);
}
}
if (totalLootCost > 0) loot.burn(_msgSender(), totalLootCost);
for (uint256 i = 0; i < owners.length; i++) {
uint256 id = firstMinted + i + 1;
if (!stake || owners[i] != _msgSender()) {
_safeMint(owners[i], id);
}
}
if (stake) bank.addManyToBankAndPack(_msgSender(), tokenIds);
}
/**
* the first 20% are paid in AVAX
* the next 20% are 20000 $LOOT
* the next 40% are 40000 $LOOT
* the final 20% are 80000 $LOOT
* @param tokenId the ID to check the cost of to mint
* @return the cost of the given token ID
*/
function mintCost(uint256 tokenId) public view returns (uint256) {
if (tokenId <= PAID_TOKENS) return 0;
if (tokenId <= (MAX_TOKENS * 2) / 5) return 20000 ether;
if (tokenId <= (MAX_TOKENS * 4) / 5) return 40000 ether;
return 60000 ether;
}
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override nonReentrant {
// Hardcode the Bank's approval so that users don't have to waste gas approving
if (_msgSender() != address(bank))
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: transfer caller is not owner nor approved"
);
_transfer(from, to, tokenId);
}
/***INTERNAL */
/**
* generates traits for a specific token, checking to make sure it's unique
* @param tokenId the id of the token to generate traits for
* @param seed a pseudorandom 256 bit number to derive traits from
* @return t - a struct of traits for the given token ID
*/
function generate(uint256 tokenId, uint256 seed)
internal
returns (ThiefPolice memory t)
{
t = selectTraits(seed);
if (existingCombinations[structToHash(t)] == 0) {
tokenTraits[tokenId] = t;
existingCombinations[structToHash(t)] = tokenId;
return t;
}
return generate(tokenId, random(seed));
}
/**
* uses A.J. Walker's Alias algorithm for O(1) rarity table lookup
* ensuring O(1) instead of O(n) reduces mint cost by more than 50%
* probability & alias tables are generated off-chain beforehand
* @param seed portion of the 256 bit seed to remove trait correlation
* @param traitType the trait type to select a trait for
* @return the ID of the randomly selected trait
*/
function selectTrait(uint16 seed, uint8 traitType)
internal
view
returns (uint8)
{
return traits.selectTrait(seed, traitType);
}
/**
* the first 20% (ETH purchases) go to the minter
* the remaining 80% have a 10% chance to be given to a random staked police
* @param seed a random value to select a recipient from
* @return the address of the recipient (either the minter or the Police thief's owner)
*/
function selectRecipient(uint256 seed) internal view returns (address) {
if (minted <= PAID_TOKENS || ((seed >> 245) % 10) != 0)
return _msgSender();
// top 10 bits haven't been used
address thief = bank.randomPoliceOwner(seed >> 144);
// 144 bits reserved for trait selection
if (thief == address(0x0)) return _msgSender();
return thief;
}
/**
* selects the species and all of its traits based on the seed value
* @param seed a pseudorandom 256 bit number to derive traits from
* @return t - a struct of randomly selected traits
*/
function selectTraits(uint256 seed)
internal
view
returns (ThiefPolice memory t)
{
t.isThief = (seed & 0xFFFF) % 10 != 0;
uint8 shift = t.isThief ? 0 : 10;
seed >>= 16;
t.uniform = selectTrait(uint16(seed & 0xFFFF), 0 + shift);
seed >>= 16;
t.hair = selectTrait(uint16(seed & 0xFFFF), 1 + shift);
seed >>= 16;
t.facialHair = selectTrait(uint16(seed & 0xFFFF), 2 + shift);
seed >>= 16;
t.eyes = selectTrait(uint16(seed & 0xFFFF), 3 + shift);
seed >>= 16;
t.accessory = selectTrait(uint16(seed & 0xFFFF), 4 + shift);
seed >>= 16;
t.headgear = selectTrait(uint16(seed & 0xFFFF), 5 + shift);
seed >>= 16;
if (!t.isThief) {
t.neckGear = selectTrait(uint16(seed & 0xFFFF), 6 + shift);
t.alphaIndex = selectTrait(uint16(seed & 0xFFFF), 7 + shift);
}
}
/**
* converts a struct to a 256 bit hash to check for uniqueness
* @param s the struct to pack into a hash
* @return the 256 bit hash of the struct
*/
function structToHash(ThiefPolice memory s)
internal
pure
returns (uint256)
{
return
uint256(
keccak256(
abi.encodePacked(
s.isThief,
s.uniform,
s.hair,
s.facialHair,
s.eyes,
s.headgear,
s.accessory,
s.neckGear,
s.alphaIndex
)
)
);
}
/**
* generates a pseudorandom number
* @param seed a value ensure different outcomes for different sources in the same block
* @return a pseudorandom value
*/
function random(uint256 seed) internal view returns (uint256) {
return
uint256(
keccak256(
abi.encodePacked(
tx.origin,
blockhash(block.number - 1),
block.timestamp,
seed
)
)
) ^ randomSource.seed();
}
/***READ */
function getTokenTraits(uint256 tokenId)
external
view
override
returns (ThiefPolice memory)
{
return tokenTraits[tokenId];
}
function getPaidTokens() external view override returns (uint256) {
return PAID_TOKENS;
}
/***ADMIN */
/**
* called after deployment so that the contract can get random police thieves
* @param _bank the address of the Bank
*/
function setBank(address _bank) external onlyOwner {
bank = IBank(_bank);
}
/**
* allows owner to withdraw funds from minting
*/
function withdraw() external onlyOwner {
payable(owner()).transfer(address(this).balance);
}
/**
* updates the number of tokens for sale
*/
function setPaidTokens(uint256 _paidTokens) external onlyOwner {
PAID_TOKENS = _paidTokens;
}
/**
* enables owner to pause / unpause minting
*/
function setPaused(bool _paused) external onlyOwner {
if (_paused) _pause();
else _unpause();
}
/***RENDER */
function tokenURI(uint256 tokenId)
public
view
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
return traits.tokenURI(tokenId);
}
function changePrice(uint256 _price) public onlyOwner {
MINT_PRICE = _price;
}
function setStakingActive(bool _staking) public onlyOwner {
stakingActive = _staking;
}
function setTraits(ITraits addr) public onlyOwner {
traits = addr;
}
}
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": {
"@_405": {
"entryPoint": null,
"id": 405,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 289,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 364,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 415,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"allocate_memory": {
"entryPoint": 548,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 579,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 589,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 643,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 697,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 751,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 805,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 852,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 899,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 904,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 909,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 914,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 919,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4093:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "102:326:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "112:75:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "179:6:9"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "137:41:9"
},
"nodeType": "YulFunctionCall",
"src": "137:49:9"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "121:15:9"
},
"nodeType": "YulFunctionCall",
"src": "121:66:9"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "112:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "203:5:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "210:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "196:6:9"
},
"nodeType": "YulFunctionCall",
"src": "196:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "196:21:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "226:27:9",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "241:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "248:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "237:3:9"
},
"nodeType": "YulFunctionCall",
"src": "237:16:9"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "230:3:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "291:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "293:77:9"
},
"nodeType": "YulFunctionCall",
"src": "293:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "293:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "272:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "277:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "268:3:9"
},
"nodeType": "YulFunctionCall",
"src": "268:16:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "286:3:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "265:2:9"
},
"nodeType": "YulFunctionCall",
"src": "265:25:9"
},
"nodeType": "YulIf",
"src": "262:112:9"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "405:3:9"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "410:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "415:6:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "383:21:9"
},
"nodeType": "YulFunctionCall",
"src": "383:39:9"
},
"nodeType": "YulExpressionStatement",
"src": "383:39:9"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "75:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "80:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "88:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "96:5:9",
"type": ""
}
],
"src": "7:421:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "521:282:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "570:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "572:77:9"
},
"nodeType": "YulFunctionCall",
"src": "572:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "572:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "549:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "557:4:9",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "545:3:9"
},
"nodeType": "YulFunctionCall",
"src": "545:17:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "564:3:9"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "541:3:9"
},
"nodeType": "YulFunctionCall",
"src": "541:27:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "534:6:9"
},
"nodeType": "YulFunctionCall",
"src": "534:35:9"
},
"nodeType": "YulIf",
"src": "531:122:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "662:27:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "682:6:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "676:5:9"
},
"nodeType": "YulFunctionCall",
"src": "676:13:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "666:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "698:99:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "770:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "778:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "766:3:9"
},
"nodeType": "YulFunctionCall",
"src": "766:17:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "785:6:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "793:3:9"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "707:58:9"
},
"nodeType": "YulFunctionCall",
"src": "707:90:9"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "698:5:9"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "499:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "507:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "515:5:9",
"type": ""
}
],
"src": "448:355:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "923:739:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "969:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "971:77:9"
},
"nodeType": "YulFunctionCall",
"src": "971:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "971:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "944:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "953:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "940:3:9"
},
"nodeType": "YulFunctionCall",
"src": "940:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "965:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "936:3:9"
},
"nodeType": "YulFunctionCall",
"src": "936:32:9"
},
"nodeType": "YulIf",
"src": "933:119:9"
},
{
"nodeType": "YulBlock",
"src": "1062:291:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1077:38:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1101:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1112:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1097:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1097:17:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1091:5:9"
},
"nodeType": "YulFunctionCall",
"src": "1091:24:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1081:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1162:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1164:77:9"
},
"nodeType": "YulFunctionCall",
"src": "1164:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "1164:79:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1134:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1142:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1131:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1131:30:9"
},
"nodeType": "YulIf",
"src": "1128:117:9"
},
{
"nodeType": "YulAssignment",
"src": "1259:84:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1315:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1326:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1311:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1311:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1335:7:9"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1269:41:9"
},
"nodeType": "YulFunctionCall",
"src": "1269:74:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1259:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1363:292:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1378:39:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1402:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1413:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1398:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1398:18:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1392:5:9"
},
"nodeType": "YulFunctionCall",
"src": "1392:25:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1382:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1464:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1466:77:9"
},
"nodeType": "YulFunctionCall",
"src": "1466:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "1466:79:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1436:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1444:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1433:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1433:30:9"
},
"nodeType": "YulIf",
"src": "1430:117:9"
},
{
"nodeType": "YulAssignment",
"src": "1561:84:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1617:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1628:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1613:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1613:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1637:7:9"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1571:41:9"
},
"nodeType": "YulFunctionCall",
"src": "1571:74:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1561:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "885:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "896:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "908:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "916:6:9",
"type": ""
}
],
"src": "809:853:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1709:88:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1719:30:9",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1729:18:9"
},
"nodeType": "YulFunctionCall",
"src": "1729:20:9"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1719:6:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1778:6:9"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1786:4:9"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1758:19:9"
},
"nodeType": "YulFunctionCall",
"src": "1758:33:9"
},
"nodeType": "YulExpressionStatement",
"src": "1758:33:9"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1693:4:9",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1702:6:9",
"type": ""
}
],
"src": "1668:129:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1843:35:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1853:19:9",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1869:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1863:5:9"
},
"nodeType": "YulFunctionCall",
"src": "1863:9:9"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1853:6:9"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1836:6:9",
"type": ""
}
],
"src": "1803:75:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1951:241:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2056:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2058:16:9"
},
"nodeType": "YulFunctionCall",
"src": "2058:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "2058:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2028:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2036:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2025:2:9"
},
"nodeType": "YulFunctionCall",
"src": "2025:30:9"
},
"nodeType": "YulIf",
"src": "2022:56:9"
},
{
"nodeType": "YulAssignment",
"src": "2088:37:9",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2118:6:9"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2096:21:9"
},
"nodeType": "YulFunctionCall",
"src": "2096:29:9"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2088:4:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2162:23:9",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2174:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2180:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2170:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2170:15:9"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2162:4:9"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1935:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1946:4:9",
"type": ""
}
],
"src": "1884:308:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2247:258:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2257:10:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2266:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "2261:1:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2326:63:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2351:3:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2356:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2347:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2347:11:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2370:3:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2375:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2366:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2366:11:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2360:5:9"
},
"nodeType": "YulFunctionCall",
"src": "2360:18:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2340:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2340:39:9"
},
"nodeType": "YulExpressionStatement",
"src": "2340:39:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2287:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2290:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2284:2:9"
},
"nodeType": "YulFunctionCall",
"src": "2284:13:9"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2298:19:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2300:15:9",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2309:1:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2312:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2305:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2305:10:9"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2300:1:9"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2280:3:9",
"statements": []
},
"src": "2276:113:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2423:76:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2473:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2478:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2469:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2469:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2487:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2462:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2462:27:9"
},
"nodeType": "YulExpressionStatement",
"src": "2462:27:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2404:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2407:6:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2401:2:9"
},
"nodeType": "YulFunctionCall",
"src": "2401:13:9"
},
"nodeType": "YulIf",
"src": "2398:101:9"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2229:3:9",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2234:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2239:6:9",
"type": ""
}
],
"src": "2198:307:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2562:269:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2572:22:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2586:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2592:1:9",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2582:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2582:12:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2572:6:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2603:38:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2633:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2639:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2629:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2629:12:9"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "2607:18:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2680:51:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2694:27:9",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2708:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2716:4:9",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2704:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2704:17:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2694:6:9"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2660:18:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2653:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2653:26:9"
},
"nodeType": "YulIf",
"src": "2650:81:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2783:42:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "2797:16:9"
},
"nodeType": "YulFunctionCall",
"src": "2797:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "2797:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2747:18:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2770:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2778:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2767:2:9"
},
"nodeType": "YulFunctionCall",
"src": "2767:14:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2744:2:9"
},
"nodeType": "YulFunctionCall",
"src": "2744:38:9"
},
"nodeType": "YulIf",
"src": "2741:84:9"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2546:4:9",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2555:6:9",
"type": ""
}
],
"src": "2511:320:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2880:238:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2890:58:9",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2912:6:9"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2942:4:9"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2920:21:9"
},
"nodeType": "YulFunctionCall",
"src": "2920:27:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2908:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2908:40:9"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "2894:10:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3059:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3061:16:9"
},
"nodeType": "YulFunctionCall",
"src": "3061:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "3061:18:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3002:10:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3014:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2999:2:9"
},
"nodeType": "YulFunctionCall",
"src": "2999:34:9"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3038:10:9"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3050:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3035:2:9"
},
"nodeType": "YulFunctionCall",
"src": "3035:22:9"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "2996:2:9"
},
"nodeType": "YulFunctionCall",
"src": "2996:62:9"
},
"nodeType": "YulIf",
"src": "2993:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3097:2:9",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3101:10:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3090:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3090:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "3090:22:9"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2866:6:9",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2874:4:9",
"type": ""
}
],
"src": "2837:281:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3152:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3169:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3172:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3162:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3162:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "3162:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3266:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3269:4:9",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3259:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3259:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "3259:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3290:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3293:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3283:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3283:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "3283:15:9"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "3124:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3338:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3355:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3358:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3348:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3348:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "3348:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3452:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3455:4:9",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3445:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3445:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "3445:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3476:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3479:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3469:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3469:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "3469:15:9"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "3310:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3585:28:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3602:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3605:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3595:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3595:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "3595:12:9"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "3496:117:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3708:28:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3725:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3728:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3718:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3718:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "3718:12:9"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "3619:117:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3831:28:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3848:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3851:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3841:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3841:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "3841:12:9"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "3742:117:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3954:28:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3971:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3974:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3964:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3964:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "3964:12:9"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "3865:117:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4036:54:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4046:38:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4064:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4071:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4060:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4060:14:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4080:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4076:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4076:7:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4056:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4056:28:9"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "4046:6:9"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4019:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "4029:6:9",
"type": ""
}
],
"src": "3988:102:9"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_memory_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n}\n",
"id": 9,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b50604051620024083803806200240883398181016040528101906200003791906200019f565b81600090805190602001906200004f92919062000071565b5080600190805190602001906200006892919062000071565b505050620003a8565b8280546200007f90620002b9565b90600052602060002090601f016020900481019282620000a35760008555620000ef565b82601f10620000be57805160ff1916838001178555620000ef565b82800160010185558215620000ef579182015b82811115620000ee578251825591602001919060010190620000d1565b5b509050620000fe919062000102565b5090565b5b808211156200011d57600081600090555060010162000103565b5090565b60006200013862000132846200024d565b62000224565b90508281526020810184848401111562000157576200015662000388565b5b6200016484828562000283565b509392505050565b600082601f83011262000184576200018362000383565b5b81516200019684826020860162000121565b91505092915050565b60008060408385031215620001b957620001b862000392565b5b600083015167ffffffffffffffff811115620001da57620001d96200038d565b5b620001e8858286016200016c565b925050602083015167ffffffffffffffff8111156200020c576200020b6200038d565b5b6200021a858286016200016c565b9150509250929050565b60006200023062000243565b90506200023e8282620002ef565b919050565b6000604051905090565b600067ffffffffffffffff8211156200026b576200026a62000354565b5b620002768262000397565b9050602081019050919050565b60005b83811015620002a357808201518184015260208101905062000286565b83811115620002b3576000848401525b50505050565b60006002820490506001821680620002d257607f821691505b60208210811415620002e957620002e862000325565b5b50919050565b620002fa8262000397565b810181811067ffffffffffffffff821117156200031c576200031b62000354565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61205080620003b86000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb46514610224578063b88d4fde14610240578063c87b56dd1461025c578063e985e9c51461028c576100cf565b80636352211e146101a657806370a08231146101d657806395d89b4114610206576100cf565b806301ffc9a7146100d457806306fdde0314610104578063081812fc14610122578063095ea7b31461015257806323b872dd1461016e57806342842e0e1461018a575b600080fd5b6100ee60048036038101906100e9919061143b565b6102bc565b6040516100fb91906116ec565b60405180910390f35b61010c61039e565b6040516101199190611707565b60405180910390f35b61013c60048036038101906101379190611468565b610430565b60405161014991906116d1565b60405180910390f35b61016c600480360381019061016791906113fb565b6104b5565b005b610188600480360381019061018391906112e5565b6105cd565b005b6101a4600480360381019061019f91906112e5565b61062d565b005b6101c060048036038101906101bb9190611468565b61064d565b6040516101cd91906116d1565b60405180910390f35b6101f060048036038101906101eb9190611278565b6106ff565b6040516101fd9190611889565b60405180910390f35b61020e6107b7565b60405161021b9190611707565b60405180910390f35b61023e600480360381019061023991906113bb565b610849565b005b61025a60048036038101906102559190611338565b6109ca565b005b61027660048036038101906102719190611468565b610a2b565b6040516102839190611707565b60405180910390f35b6102a660048036038101906102a191906112a5565b610ad2565b6040516102b391906116ec565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610397575061039682610b66565b5b9050919050565b6060600080546103ad90611a92565b80601f01602080910402602001604051908101604052809291908181526020018280546103d990611a92565b80156104265780601f106103fb57610100808354040283529160200191610426565b820191906000526020600020905b81548152906001019060200180831161040957829003601f168201915b5050505050905090565b600061043b82610bd0565b61047a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610471906117e9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104c08261064d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052890611849565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610550610c3c565b73ffffffffffffffffffffffffffffffffffffffff16148061057f575061057e81610579610c3c565b610ad2565b5b6105be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b590611789565b60405180910390fd5b6105c88383610c44565b505050565b6105de6105d8610c3c565b82610cfd565b61061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611869565b60405180910390fd5b610628838383610ddb565b505050565b610648838383604051806020016040528060008152506109ca565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed906117c9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610767906117a9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546107c690611a92565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290611a92565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b610851610c3c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b690611749565b60405180910390fd5b80600560006108cc610c3c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610979610c3c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516109be91906116ec565b60405180910390a35050565b6109db6109d5610c3c565b83610cfd565b610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1190611869565b60405180910390fd5b610a258484846105cd565b50505050565b6060610a3682610bd0565b610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90611829565b60405180910390fd5b6000610a7f611037565b90506000815111610a9f5760405180602001604052806000815250610aca565b80610aa98461104e565b604051602001610aba9291906116ad565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610cb78361064d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610d0882610bd0565b610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90611769565b60405180910390fd5b6000610d528361064d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610dc157508373ffffffffffffffffffffffffffffffffffffffff16610da984610430565b73ffffffffffffffffffffffffffffffffffffffff16145b80610dd25750610dd18185610ad2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610dfb8261064d565b73ffffffffffffffffffffffffffffffffffffffff1614610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4890611809565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890611729565b60405180910390fd5b610ecc8383836111af565b610ed7600082610c44565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f2791906119a8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7e9190611921565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b606060405180602001604052806000815250905090565b60606000821415611096576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506111aa565b600082905060005b600082146110c85780806110b190611af5565b915050600a826110c19190611977565b915061109e565b60008167ffffffffffffffff8111156110e4576110e3611c2b565b5b6040519080825280601f01601f1916602001820160405280156111165781602001600182028036833780820191505090505b5090505b600085146111a35760018261112f91906119a8565b9150600a8561113e9190611b3e565b603061114a9190611921565b60f81b8183815181106111605761115f611bfc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561119c9190611977565b945061111a565b8093505050505b919050565b505050565b60006111c76111c2846118c9565b6118a4565b9050828152602081018484840111156111e3576111e2611c5f565b5b6111ee848285611a50565b509392505050565b60008135905061120581611fbe565b92915050565b60008135905061121a81611fd5565b92915050565b60008135905061122f81611fec565b92915050565b600082601f83011261124a57611249611c5a565b5b813561125a8482602086016111b4565b91505092915050565b60008135905061127281612003565b92915050565b60006020828403121561128e5761128d611c69565b5b600061129c848285016111f6565b91505092915050565b600080604083850312156112bc576112bb611c69565b5b60006112ca858286016111f6565b92505060206112db858286016111f6565b9150509250929050565b6000806000606084860312156112fe576112fd611c69565b5b600061130c868287016111f6565b935050602061131d868287016111f6565b925050604061132e86828701611263565b9150509250925092565b6000806000806080858703121561135257611351611c69565b5b6000611360878288016111f6565b9450506020611371878288016111f6565b935050604061138287828801611263565b925050606085013567ffffffffffffffff8111156113a3576113a2611c64565b5b6113af87828801611235565b91505092959194509250565b600080604083850312156113d2576113d1611c69565b5b60006113e0858286016111f6565b92505060206113f18582860161120b565b9150509250929050565b6000806040838503121561141257611411611c69565b5b6000611420858286016111f6565b925050602061143185828601611263565b9150509250929050565b60006020828403121561145157611450611c69565b5b600061145f84828501611220565b91505092915050565b60006020828403121561147e5761147d611c69565b5b600061148c84828501611263565b91505092915050565b61149e816119dc565b82525050565b6114ad816119ee565b82525050565b60006114be826118fa565b6114c88185611905565b93506114d8818560208601611a5f565b6114e181611c6e565b840191505092915050565b60006114f7826118fa565b6115018185611916565b9350611511818560208601611a5f565b80840191505092915050565b600061152a602483611905565b915061153582611c7f565b604082019050919050565b600061154d601983611905565b915061155882611cce565b602082019050919050565b6000611570602c83611905565b915061157b82611cf7565b604082019050919050565b6000611593603883611905565b915061159e82611d46565b604082019050919050565b60006115b6602a83611905565b91506115c182611d95565b604082019050919050565b60006115d9602983611905565b91506115e482611de4565b604082019050919050565b60006115fc602c83611905565b915061160782611e33565b604082019050919050565b600061161f602983611905565b915061162a82611e82565b604082019050919050565b6000611642602f83611905565b915061164d82611ed1565b604082019050919050565b6000611665602183611905565b915061167082611f20565b604082019050919050565b6000611688603183611905565b915061169382611f6f565b604082019050919050565b6116a781611a46565b82525050565b60006116b982856114ec565b91506116c582846114ec565b91508190509392505050565b60006020820190506116e66000830184611495565b92915050565b600060208201905061170160008301846114a4565b92915050565b6000602082019050818103600083015261172181846114b3565b905092915050565b600060208201905081810360008301526117428161151d565b9050919050565b6000602082019050818103600083015261176281611540565b9050919050565b6000602082019050818103600083015261178281611563565b9050919050565b600060208201905081810360008301526117a281611586565b9050919050565b600060208201905081810360008301526117c2816115a9565b9050919050565b600060208201905081810360008301526117e2816115cc565b9050919050565b60006020820190508181036000830152611802816115ef565b9050919050565b6000602082019050818103600083015261182281611612565b9050919050565b6000602082019050818103600083015261184281611635565b9050919050565b6000602082019050818103600083015261186281611658565b9050919050565b600060208201905081810360008301526118828161167b565b9050919050565b600060208201905061189e600083018461169e565b92915050565b60006118ae6118bf565b90506118ba8282611ac4565b919050565b6000604051905090565b600067ffffffffffffffff8211156118e4576118e3611c2b565b5b6118ed82611c6e565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061192c82611a46565b915061193783611a46565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561196c5761196b611b6f565b5b828201905092915050565b600061198282611a46565b915061198d83611a46565b92508261199d5761199c611b9e565b5b828204905092915050565b60006119b382611a46565b91506119be83611a46565b9250828210156119d1576119d0611b6f565b5b828203905092915050565b60006119e782611a26565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015611a7d578082015181840152602081019050611a62565b83811115611a8c576000848401525b50505050565b60006002820490506001821680611aaa57607f821691505b60208210811415611abe57611abd611bcd565b5b50919050565b611acd82611c6e565b810181811067ffffffffffffffff82111715611aec57611aeb611c2b565b5b80604052505050565b6000611b0082611a46565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611b3357611b32611b6f565b5b600182019050919050565b6000611b4982611a46565b9150611b5483611a46565b925082611b6457611b63611b9e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b611fc7816119dc565b8114611fd257600080fd5b50565b611fde816119ee565b8114611fe957600080fd5b50565b611ff5816119fa565b811461200057600080fd5b50565b61200c81611a46565b811461201757600080fd5b5056fea2646970667358221220d5b5d549e63c54a55bd3f7dd8ccdda546941bcf07d2a22a36538eafd5ec1187964736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2408 CODESIZE SUB DUP1 PUSH3 0x2408 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x19F JUMP JUMPDEST DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x4F SWAP3 SWAP2 SWAP1 PUSH3 0x71 JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x68 SWAP3 SWAP2 SWAP1 PUSH3 0x71 JUMP JUMPDEST POP POP POP PUSH3 0x3A8 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x7F SWAP1 PUSH3 0x2B9 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xA3 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xEF JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xBE JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xEF JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xEF JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xEE JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xD1 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0xFE SWAP2 SWAP1 PUSH3 0x102 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x11D JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x103 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x138 PUSH3 0x132 DUP5 PUSH3 0x24D JUMP JUMPDEST PUSH3 0x224 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x157 JUMPI PUSH3 0x156 PUSH3 0x388 JUMP JUMPDEST JUMPDEST PUSH3 0x164 DUP5 DUP3 DUP6 PUSH3 0x283 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x184 JUMPI PUSH3 0x183 PUSH3 0x383 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x196 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x121 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1B9 JUMPI PUSH3 0x1B8 PUSH3 0x392 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x1DA JUMPI PUSH3 0x1D9 PUSH3 0x38D JUMP JUMPDEST JUMPDEST PUSH3 0x1E8 DUP6 DUP3 DUP7 ADD PUSH3 0x16C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x20C JUMPI PUSH3 0x20B PUSH3 0x38D JUMP JUMPDEST JUMPDEST PUSH3 0x21A DUP6 DUP3 DUP7 ADD PUSH3 0x16C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x230 PUSH3 0x243 JUMP JUMPDEST SWAP1 POP PUSH3 0x23E DUP3 DUP3 PUSH3 0x2EF JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x26B JUMPI PUSH3 0x26A PUSH3 0x354 JUMP JUMPDEST JUMPDEST PUSH3 0x276 DUP3 PUSH3 0x397 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x2A3 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x286 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x2B3 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x2D2 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x2E9 JUMPI PUSH3 0x2E8 PUSH3 0x325 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x2FA DUP3 PUSH3 0x397 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x31C JUMPI PUSH3 0x31B PUSH3 0x354 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2050 DUP1 PUSH3 0x3B8 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x224 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x240 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x25C JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x28C JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1A6 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x206 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x104 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x152 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x16E JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x18A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE9 SWAP2 SWAP1 PUSH2 0x143B JUMP JUMPDEST PUSH2 0x2BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFB SWAP2 SWAP1 PUSH2 0x16EC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x10C PUSH2 0x39E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x1707 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x1468 JUMP JUMPDEST PUSH2 0x430 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x149 SWAP2 SWAP1 PUSH2 0x16D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x167 SWAP2 SWAP1 PUSH2 0x13FB JUMP JUMPDEST PUSH2 0x4B5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x188 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x183 SWAP2 SWAP1 PUSH2 0x12E5 JUMP JUMPDEST PUSH2 0x5CD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19F SWAP2 SWAP1 PUSH2 0x12E5 JUMP JUMPDEST PUSH2 0x62D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BB SWAP2 SWAP1 PUSH2 0x1468 JUMP JUMPDEST PUSH2 0x64D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CD SWAP2 SWAP1 PUSH2 0x16D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0x1278 JUMP JUMPDEST PUSH2 0x6FF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FD SWAP2 SWAP1 PUSH2 0x1889 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20E PUSH2 0x7B7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21B SWAP2 SWAP1 PUSH2 0x1707 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x239 SWAP2 SWAP1 PUSH2 0x13BB JUMP JUMPDEST PUSH2 0x849 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x25A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x1338 JUMP JUMPDEST PUSH2 0x9CA JUMP JUMPDEST STOP JUMPDEST PUSH2 0x276 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x271 SWAP2 SWAP1 PUSH2 0x1468 JUMP JUMPDEST PUSH2 0xA2B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x283 SWAP2 SWAP1 PUSH2 0x1707 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A1 SWAP2 SWAP1 PUSH2 0x12A5 JUMP JUMPDEST PUSH2 0xAD2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B3 SWAP2 SWAP1 PUSH2 0x16EC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x387 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x397 JUMPI POP PUSH2 0x396 DUP3 PUSH2 0xB66 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x3AD SWAP1 PUSH2 0x1A92 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x3D9 SWAP1 PUSH2 0x1A92 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x426 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3FB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x426 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x409 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43B DUP3 PUSH2 0xBD0 JUMP JUMPDEST PUSH2 0x47A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x471 SWAP1 PUSH2 0x17E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4C0 DUP3 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x531 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x528 SWAP1 PUSH2 0x1849 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x550 PUSH2 0xC3C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x57F JUMPI POP PUSH2 0x57E DUP2 PUSH2 0x579 PUSH2 0xC3C JUMP JUMPDEST PUSH2 0xAD2 JUMP JUMPDEST JUMPDEST PUSH2 0x5BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5B5 SWAP1 PUSH2 0x1789 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5C8 DUP4 DUP4 PUSH2 0xC44 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x5DE PUSH2 0x5D8 PUSH2 0xC3C JUMP JUMPDEST DUP3 PUSH2 0xCFD JUMP JUMPDEST PUSH2 0x61D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x614 SWAP1 PUSH2 0x1869 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x628 DUP4 DUP4 DUP4 PUSH2 0xDDB JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x648 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x9CA JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x6F6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6ED SWAP1 PUSH2 0x17C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x770 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x767 SWAP1 PUSH2 0x17A9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x7C6 SWAP1 PUSH2 0x1A92 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x7F2 SWAP1 PUSH2 0x1A92 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x83F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x814 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x83F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x822 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x851 PUSH2 0xC3C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x8BF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8B6 SWAP1 PUSH2 0x1749 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 PUSH2 0x8CC PUSH2 0xC3C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x979 PUSH2 0xC3C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x9BE SWAP2 SWAP1 PUSH2 0x16EC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x9DB PUSH2 0x9D5 PUSH2 0xC3C JUMP JUMPDEST DUP4 PUSH2 0xCFD JUMP JUMPDEST PUSH2 0xA1A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA11 SWAP1 PUSH2 0x1869 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA25 DUP5 DUP5 DUP5 PUSH2 0x5CD JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xA36 DUP3 PUSH2 0xBD0 JUMP JUMPDEST PUSH2 0xA75 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA6C SWAP1 PUSH2 0x1829 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xA7F PUSH2 0x1037 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0xA9F JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xACA JUMP JUMPDEST DUP1 PUSH2 0xAA9 DUP5 PUSH2 0x104E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xABA SWAP3 SWAP2 SWAP1 PUSH2 0x16AD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xCB7 DUP4 PUSH2 0x64D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD08 DUP3 PUSH2 0xBD0 JUMP JUMPDEST PUSH2 0xD47 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD3E SWAP1 PUSH2 0x1769 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xD52 DUP4 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xDC1 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDA9 DUP5 PUSH2 0x430 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0xDD2 JUMPI POP PUSH2 0xDD1 DUP2 DUP6 PUSH2 0xAD2 JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDFB DUP3 PUSH2 0x64D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xE51 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE48 SWAP1 PUSH2 0x1809 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xEC1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEB8 SWAP1 PUSH2 0x1729 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xECC DUP4 DUP4 DUP4 PUSH2 0x11AF JUMP JUMPDEST PUSH2 0xED7 PUSH1 0x0 DUP3 PUSH2 0xC44 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xF27 SWAP2 SWAP1 PUSH2 0x19A8 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xF7E SWAP2 SWAP1 PUSH2 0x1921 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x1096 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x11AA JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x10C8 JUMPI DUP1 DUP1 PUSH2 0x10B1 SWAP1 PUSH2 0x1AF5 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x10C1 SWAP2 SWAP1 PUSH2 0x1977 JUMP JUMPDEST SWAP2 POP PUSH2 0x109E JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10E4 JUMPI PUSH2 0x10E3 PUSH2 0x1C2B JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1116 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x11A3 JUMPI PUSH1 0x1 DUP3 PUSH2 0x112F SWAP2 SWAP1 PUSH2 0x19A8 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x113E SWAP2 SWAP1 PUSH2 0x1B3E JUMP JUMPDEST PUSH1 0x30 PUSH2 0x114A SWAP2 SWAP1 PUSH2 0x1921 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1160 JUMPI PUSH2 0x115F PUSH2 0x1BFC JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x119C SWAP2 SWAP1 PUSH2 0x1977 JUMP JUMPDEST SWAP5 POP PUSH2 0x111A JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11C7 PUSH2 0x11C2 DUP5 PUSH2 0x18C9 JUMP JUMPDEST PUSH2 0x18A4 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x11E3 JUMPI PUSH2 0x11E2 PUSH2 0x1C5F JUMP JUMPDEST JUMPDEST PUSH2 0x11EE DUP5 DUP3 DUP6 PUSH2 0x1A50 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1205 DUP2 PUSH2 0x1FBE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x121A DUP2 PUSH2 0x1FD5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x122F DUP2 PUSH2 0x1FEC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x124A JUMPI PUSH2 0x1249 PUSH2 0x1C5A JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x125A DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x11B4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1272 DUP2 PUSH2 0x2003 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x128E JUMPI PUSH2 0x128D PUSH2 0x1C69 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x129C DUP5 DUP3 DUP6 ADD PUSH2 0x11F6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x12BC JUMPI PUSH2 0x12BB PUSH2 0x1C69 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x12CA DUP6 DUP3 DUP7 ADD PUSH2 0x11F6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x12DB DUP6 DUP3 DUP7 ADD PUSH2 0x11F6 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x12FE JUMPI PUSH2 0x12FD PUSH2 0x1C69 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x130C DUP7 DUP3 DUP8 ADD PUSH2 0x11F6 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x131D DUP7 DUP3 DUP8 ADD PUSH2 0x11F6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x132E DUP7 DUP3 DUP8 ADD PUSH2 0x1263 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1352 JUMPI PUSH2 0x1351 PUSH2 0x1C69 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1360 DUP8 DUP3 DUP9 ADD PUSH2 0x11F6 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1371 DUP8 DUP3 DUP9 ADD PUSH2 0x11F6 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1382 DUP8 DUP3 DUP9 ADD PUSH2 0x1263 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x13A3 JUMPI PUSH2 0x13A2 PUSH2 0x1C64 JUMP JUMPDEST JUMPDEST PUSH2 0x13AF DUP8 DUP3 DUP9 ADD PUSH2 0x1235 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 0x13D2 JUMPI PUSH2 0x13D1 PUSH2 0x1C69 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x13E0 DUP6 DUP3 DUP7 ADD PUSH2 0x11F6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x13F1 DUP6 DUP3 DUP7 ADD PUSH2 0x120B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1412 JUMPI PUSH2 0x1411 PUSH2 0x1C69 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1420 DUP6 DUP3 DUP7 ADD PUSH2 0x11F6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1431 DUP6 DUP3 DUP7 ADD PUSH2 0x1263 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1451 JUMPI PUSH2 0x1450 PUSH2 0x1C69 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x145F DUP5 DUP3 DUP6 ADD PUSH2 0x1220 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x147E JUMPI PUSH2 0x147D PUSH2 0x1C69 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x148C DUP5 DUP3 DUP6 ADD PUSH2 0x1263 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x149E DUP2 PUSH2 0x19DC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x14AD DUP2 PUSH2 0x19EE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14BE DUP3 PUSH2 0x18FA JUMP JUMPDEST PUSH2 0x14C8 DUP2 DUP6 PUSH2 0x1905 JUMP JUMPDEST SWAP4 POP PUSH2 0x14D8 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1A5F JUMP JUMPDEST PUSH2 0x14E1 DUP2 PUSH2 0x1C6E JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14F7 DUP3 PUSH2 0x18FA JUMP JUMPDEST PUSH2 0x1501 DUP2 DUP6 PUSH2 0x1916 JUMP JUMPDEST SWAP4 POP PUSH2 0x1511 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1A5F JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x152A PUSH1 0x24 DUP4 PUSH2 0x1905 JUMP JUMPDEST SWAP2 POP PUSH2 0x1535 DUP3 PUSH2 0x1C7F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x154D PUSH1 0x19 DUP4 PUSH2 0x1905 JUMP JUMPDEST SWAP2 POP PUSH2 0x1558 DUP3 PUSH2 0x1CCE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1570 PUSH1 0x2C DUP4 PUSH2 0x1905 JUMP JUMPDEST SWAP2 POP PUSH2 0x157B DUP3 PUSH2 0x1CF7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1593 PUSH1 0x38 DUP4 PUSH2 0x1905 JUMP JUMPDEST SWAP2 POP PUSH2 0x159E DUP3 PUSH2 0x1D46 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15B6 PUSH1 0x2A DUP4 PUSH2 0x1905 JUMP JUMPDEST SWAP2 POP PUSH2 0x15C1 DUP3 PUSH2 0x1D95 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15D9 PUSH1 0x29 DUP4 PUSH2 0x1905 JUMP JUMPDEST SWAP2 POP PUSH2 0x15E4 DUP3 PUSH2 0x1DE4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15FC PUSH1 0x2C DUP4 PUSH2 0x1905 JUMP JUMPDEST SWAP2 POP PUSH2 0x1607 DUP3 PUSH2 0x1E33 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x161F PUSH1 0x29 DUP4 PUSH2 0x1905 JUMP JUMPDEST SWAP2 POP PUSH2 0x162A DUP3 PUSH2 0x1E82 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1642 PUSH1 0x2F DUP4 PUSH2 0x1905 JUMP JUMPDEST SWAP2 POP PUSH2 0x164D DUP3 PUSH2 0x1ED1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1665 PUSH1 0x21 DUP4 PUSH2 0x1905 JUMP JUMPDEST SWAP2 POP PUSH2 0x1670 DUP3 PUSH2 0x1F20 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1688 PUSH1 0x31 DUP4 PUSH2 0x1905 JUMP JUMPDEST SWAP2 POP PUSH2 0x1693 DUP3 PUSH2 0x1F6F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x16A7 DUP2 PUSH2 0x1A46 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16B9 DUP3 DUP6 PUSH2 0x14EC JUMP JUMPDEST SWAP2 POP PUSH2 0x16C5 DUP3 DUP5 PUSH2 0x14EC JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x16E6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1495 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1701 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x14A4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1721 DUP2 DUP5 PUSH2 0x14B3 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1742 DUP2 PUSH2 0x151D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1762 DUP2 PUSH2 0x1540 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1782 DUP2 PUSH2 0x1563 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x17A2 DUP2 PUSH2 0x1586 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x17C2 DUP2 PUSH2 0x15A9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x17E2 DUP2 PUSH2 0x15CC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1802 DUP2 PUSH2 0x15EF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1822 DUP2 PUSH2 0x1612 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1842 DUP2 PUSH2 0x1635 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1862 DUP2 PUSH2 0x1658 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1882 DUP2 PUSH2 0x167B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x189E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x169E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18AE PUSH2 0x18BF JUMP JUMPDEST SWAP1 POP PUSH2 0x18BA DUP3 DUP3 PUSH2 0x1AC4 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x18E4 JUMPI PUSH2 0x18E3 PUSH2 0x1C2B JUMP JUMPDEST JUMPDEST PUSH2 0x18ED DUP3 PUSH2 0x1C6E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x192C DUP3 PUSH2 0x1A46 JUMP JUMPDEST SWAP2 POP PUSH2 0x1937 DUP4 PUSH2 0x1A46 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x196C JUMPI PUSH2 0x196B PUSH2 0x1B6F JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1982 DUP3 PUSH2 0x1A46 JUMP JUMPDEST SWAP2 POP PUSH2 0x198D DUP4 PUSH2 0x1A46 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x199D JUMPI PUSH2 0x199C PUSH2 0x1B9E JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19B3 DUP3 PUSH2 0x1A46 JUMP JUMPDEST SWAP2 POP PUSH2 0x19BE DUP4 PUSH2 0x1A46 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x19D1 JUMPI PUSH2 0x19D0 PUSH2 0x1B6F JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19E7 DUP3 PUSH2 0x1A26 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1A7D JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1A62 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1A8C JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1AAA JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1ABE JUMPI PUSH2 0x1ABD PUSH2 0x1BCD JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1ACD DUP3 PUSH2 0x1C6E JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1AEC JUMPI PUSH2 0x1AEB PUSH2 0x1C2B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B00 DUP3 PUSH2 0x1A46 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1B33 JUMPI PUSH2 0x1B32 PUSH2 0x1B6F JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B49 DUP3 PUSH2 0x1A46 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B54 DUP4 PUSH2 0x1A46 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1B64 JUMPI PUSH2 0x1B63 PUSH2 0x1B9E JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x73206E6F74206F776E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x1FC7 DUP2 PUSH2 0x19DC JUMP JUMPDEST DUP2 EQ PUSH2 0x1FD2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1FDE DUP2 PUSH2 0x19EE JUMP JUMPDEST DUP2 EQ PUSH2 0x1FE9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1FF5 DUP2 PUSH2 0x19FA JUMP JUMPDEST DUP2 EQ PUSH2 0x2000 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x200C DUP2 PUSH2 0x1A46 JUMP JUMPDEST DUP2 EQ PUSH2 0x2017 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD5 0xB5 0xD5 0x49 0xE6 EXTCODECOPY SLOAD 0xA5 JUMPDEST 0xD3 0xF7 0xDD DUP13 0xCD 0xDA SLOAD PUSH10 0x41BCF07D2A22A36538EA REVERT 0x5E 0xC1 XOR PUSH26 0x64736F6C63430008070033000000000000000000000000000000 ",
"sourceMap": "489:13406:3:-:0;;;1251:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1325:5;1317;:13;;;;;;;;;;;;:::i;:::-;;1350:7;1340;:17;;;;;;;;;;;;:::i;:::-;;1251:113;;489:13406;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:421:9:-;96:5;121:66;137:49;179:6;137:49;:::i;:::-;121:66;:::i;:::-;112:75;;210:6;203:5;196:21;248:4;241:5;237:16;286:3;277:6;272:3;268:16;265:25;262:112;;;293:79;;:::i;:::-;262:112;383:39;415:6;410:3;405;383:39;:::i;:::-;102:326;7:421;;;;;:::o;448:355::-;515:5;564:3;557:4;549:6;545:17;541:27;531:122;;572:79;;:::i;:::-;531:122;682:6;676:13;707:90;793:3;785:6;778:4;770:6;766:17;707:90;:::i;:::-;698:99;;521:282;448:355;;;;:::o;809:853::-;908:6;916;965:2;953:9;944:7;940:23;936:32;933:119;;;971:79;;:::i;:::-;933:119;1112:1;1101:9;1097:17;1091:24;1142:18;1134:6;1131:30;1128:117;;;1164:79;;:::i;:::-;1128:117;1269:74;1335:7;1326:6;1315:9;1311:22;1269:74;:::i;:::-;1259:84;;1062:291;1413:2;1402:9;1398:18;1392:25;1444:18;1436:6;1433:30;1430:117;;;1466:79;;:::i;:::-;1430:117;1571:74;1637:7;1628:6;1617:9;1613:22;1571:74;:::i;:::-;1561:84;;1363:292;809:853;;;;;:::o;1668:129::-;1702:6;1729:20;;:::i;:::-;1719:30;;1758:33;1786:4;1778:6;1758:33;:::i;:::-;1668:129;;;:::o;1803:75::-;1836:6;1869:2;1863:9;1853:19;;1803:75;:::o;1884:308::-;1946:4;2036:18;2028:6;2025:30;2022:56;;;2058:18;;:::i;:::-;2022:56;2096:29;2118:6;2096:29;:::i;:::-;2088:37;;2180:4;2174;2170:15;2162:23;;1884:308;;;:::o;2198:307::-;2266:1;2276:113;2290:6;2287:1;2284:13;2276:113;;;2375:1;2370:3;2366:11;2360:18;2356:1;2351:3;2347:11;2340:39;2312:2;2309:1;2305:10;2300:15;;2276:113;;;2407:6;2404:1;2401:13;2398:101;;;2487:1;2478:6;2473:3;2469:16;2462:27;2398:101;2247:258;2198:307;;;:::o;2511:320::-;2555:6;2592:1;2586:4;2582:12;2572:22;;2639:1;2633:4;2629:12;2660:18;2650:81;;2716:4;2708:6;2704:17;2694:27;;2650:81;2778:2;2770:6;2767:14;2747:18;2744:38;2741:84;;;2797:18;;:::i;:::-;2741:84;2562:269;2511:320;;;:::o;2837:281::-;2920:27;2942:4;2920:27;:::i;:::-;2912:6;2908:40;3050:6;3038:10;3035:22;3014:18;3002:10;2999:34;2996:62;2993:88;;;3061:18;;:::i;:::-;2993:88;3101:10;3097:2;3090:22;2880:238;2837:281;;:::o;3124:180::-;3172:77;3169:1;3162:88;3269:4;3266:1;3259:15;3293:4;3290:1;3283:15;3310:180;3358:77;3355:1;3348:88;3455:4;3452:1;3445:15;3479:4;3476:1;3469:15;3496:117;3605:1;3602;3595:12;3619:117;3728:1;3725;3718:12;3742:117;3851:1;3848;3841:12;3865:117;3974:1;3971;3964:12;3988:102;4029:6;4080:2;4076:7;4071:2;4064:5;4060:14;4056:28;4046:38;;3988:102;;;:::o;489:13406:3:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_approve_1070": {
"entryPoint": 3140,
"id": 1070,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_559": {
"entryPoint": 4151,
"id": 559,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_1143": {
"entryPoint": 4527,
"id": 1143,
"parameterSlots": 3,
"returnSlots": 0
},
"@_exists_797": {
"entryPoint": 3024,
"id": 797,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_838": {
"entryPoint": 3325,
"id": 838,
"parameterSlots": 2,
"returnSlots": 1
},
"@_msgSender_308": {
"entryPoint": 3132,
"id": 308,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transfer_1046": {
"entryPoint": 3547,
"id": 1046,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_602": {
"entryPoint": 1205,
"id": 602,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_460": {
"entryPoint": 1791,
"id": 460,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_623": {
"entryPoint": 1072,
"id": 623,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_675": {
"entryPoint": 2770,
"id": 675,
"parameterSlots": 2,
"returnSlots": 1
},
"@name_498": {
"entryPoint": 926,
"id": 498,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_488": {
"entryPoint": 1613,
"id": 488,
"parameterSlots": 1,
"returnSlots": 1
},
"@safeTransferFrom_721": {
"entryPoint": 1581,
"id": 721,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_750": {
"entryPoint": 2506,
"id": 750,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_657": {
"entryPoint": 2121,
"id": 657,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_341": {
"entryPoint": 2918,
"id": 341,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_436": {
"entryPoint": 700,
"id": 436,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_508": {
"entryPoint": 1975,
"id": 508,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_1402": {
"entryPoint": 4174,
"id": 1402,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_550": {
"entryPoint": 2603,
"id": 550,
"parameterSlots": 1,
"returnSlots": 1
},
"@transferFrom_702": {
"entryPoint": 1485,
"id": 702,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 4532,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 4598,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 4619,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 4640,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 4661,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 4707,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 4728,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 4773,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 4837,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 4920,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 5051,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 5115,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 5179,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 5224,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 5269,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 5284,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5299,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 5356,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5405,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5440,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5475,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5510,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5545,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5580,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5615,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5650,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5685,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5720,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5755,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 5790,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 5805,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 5841,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 5868,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5895,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5929,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5961,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5993,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6025,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6057,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6089,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6121,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6153,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6185,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6217,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6249,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 6281,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 6308,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 6335,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 6345,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 6394,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 6405,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 6422,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 6433,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 6519,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 6568,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 6620,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 6638,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 6650,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 6694,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 6726,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 6736,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 6751,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 6802,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 6852,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"increment_t_uint256": {
"entryPoint": 6901,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 6974,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 7023,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 7070,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 7117,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 7164,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 7211,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 7258,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 7263,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 7268,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 7273,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 7278,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 7295,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 7374,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c": {
"entryPoint": 7415,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d": {
"entryPoint": 7494,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba": {
"entryPoint": 7573,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397": {
"entryPoint": 7652,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d": {
"entryPoint": 7731,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950": {
"entryPoint": 7810,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb": {
"entryPoint": 7889,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 7968,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2": {
"entryPoint": 8047,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 8126,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 8149,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 8172,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 8195,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:24990:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "90:327:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "100:74:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "166:6:9"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "125:40:9"
},
"nodeType": "YulFunctionCall",
"src": "125:48:9"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "109:15:9"
},
"nodeType": "YulFunctionCall",
"src": "109:65:9"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "100:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "190:5:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "197:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "183:6:9"
},
"nodeType": "YulFunctionCall",
"src": "183:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "183:21:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "213:27:9",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "228:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "235:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "224:3:9"
},
"nodeType": "YulFunctionCall",
"src": "224:16:9"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "217:3:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "278:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "280:77:9"
},
"nodeType": "YulFunctionCall",
"src": "280:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "280:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "259:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "264:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "255:3:9"
},
"nodeType": "YulFunctionCall",
"src": "255:16:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "273:3:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "252:2:9"
},
"nodeType": "YulFunctionCall",
"src": "252:25:9"
},
"nodeType": "YulIf",
"src": "249:112:9"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "394:3:9"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "399:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "404:6:9"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "370:23:9"
},
"nodeType": "YulFunctionCall",
"src": "370:41:9"
},
"nodeType": "YulExpressionStatement",
"src": "370:41:9"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "63:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "68:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "76:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "84:5:9",
"type": ""
}
],
"src": "7:410:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "475:87:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "485:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "507:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "494:12:9"
},
"nodeType": "YulFunctionCall",
"src": "494:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "485:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "550:5:9"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "523:26:9"
},
"nodeType": "YulFunctionCall",
"src": "523:33:9"
},
"nodeType": "YulExpressionStatement",
"src": "523:33:9"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "453:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "461:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "469:5:9",
"type": ""
}
],
"src": "423:139:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "617:84:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "627:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "649:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "636:12:9"
},
"nodeType": "YulFunctionCall",
"src": "636:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "627:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "689:5:9"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "665:23:9"
},
"nodeType": "YulFunctionCall",
"src": "665:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "665:30:9"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "595:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "603:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:9",
"type": ""
}
],
"src": "568:133:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "758:86:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "768:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "790:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "777:12:9"
},
"nodeType": "YulFunctionCall",
"src": "777:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "768:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "832:5:9"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "806:25:9"
},
"nodeType": "YulFunctionCall",
"src": "806:32:9"
},
"nodeType": "YulExpressionStatement",
"src": "806:32:9"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "736:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "744:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "752:5:9",
"type": ""
}
],
"src": "707:137:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "924:277:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "973:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "975:77:9"
},
"nodeType": "YulFunctionCall",
"src": "975:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "975:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "952:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "960:4:9",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "948:3:9"
},
"nodeType": "YulFunctionCall",
"src": "948:17:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "967:3:9"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "944:3:9"
},
"nodeType": "YulFunctionCall",
"src": "944:27:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "937:6:9"
},
"nodeType": "YulFunctionCall",
"src": "937:35:9"
},
"nodeType": "YulIf",
"src": "934:122:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1065:34:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1092:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1079:12:9"
},
"nodeType": "YulFunctionCall",
"src": "1079:20:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1069:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1108:87:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1168:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1176:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1164:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1164:17:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1183:6:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1191:3:9"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1117:46:9"
},
"nodeType": "YulFunctionCall",
"src": "1117:78:9"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1108:5:9"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "902:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "910:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "918:5:9",
"type": ""
}
],
"src": "863:338:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1259:87:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1269:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1291:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1278:12:9"
},
"nodeType": "YulFunctionCall",
"src": "1278:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1269:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1334:5:9"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1307:26:9"
},
"nodeType": "YulFunctionCall",
"src": "1307:33:9"
},
"nodeType": "YulExpressionStatement",
"src": "1307:33:9"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1237:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1245:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1253:5:9",
"type": ""
}
],
"src": "1207:139:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1418:263:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1464:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1466:77:9"
},
"nodeType": "YulFunctionCall",
"src": "1466:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "1466:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1439:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1448:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1435:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1435:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1460:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1431:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1431:32:9"
},
"nodeType": "YulIf",
"src": "1428:119:9"
},
{
"nodeType": "YulBlock",
"src": "1557:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1572:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1586:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1576:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1601:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1636:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1647:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1632:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1632:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1656:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1611:20:9"
},
"nodeType": "YulFunctionCall",
"src": "1611:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1601:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1388:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1399:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1411:6:9",
"type": ""
}
],
"src": "1352:329:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1770:391:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1816:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1818:77:9"
},
"nodeType": "YulFunctionCall",
"src": "1818:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "1818:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1791:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1800:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1787:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1787:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1812:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1783:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1783:32:9"
},
"nodeType": "YulIf",
"src": "1780:119:9"
},
{
"nodeType": "YulBlock",
"src": "1909:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1924:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1938:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1928:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1953:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1988:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1999:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1984:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1984:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2008:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1963:20:9"
},
"nodeType": "YulFunctionCall",
"src": "1963:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1953:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2036:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2051:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2065:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2055:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2081:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2116:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2127:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2112:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2112:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2136:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2091:20:9"
},
"nodeType": "YulFunctionCall",
"src": "2091:53:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2081:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1732:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1743:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1755:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1763:6:9",
"type": ""
}
],
"src": "1687:474:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2267:519:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2313:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2315:77:9"
},
"nodeType": "YulFunctionCall",
"src": "2315:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "2315:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2288:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2297:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2284:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2284:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2309:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2280:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2280:32:9"
},
"nodeType": "YulIf",
"src": "2277:119:9"
},
{
"nodeType": "YulBlock",
"src": "2406:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2421:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2435:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2425:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2450:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2485:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2496:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2481:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2481:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2505:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2460:20:9"
},
"nodeType": "YulFunctionCall",
"src": "2460:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2450:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2533:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2548:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2562:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2552:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2578:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2613:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2624:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2609:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2609:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2633:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2588:20:9"
},
"nodeType": "YulFunctionCall",
"src": "2588:53:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2578:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2661:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2676:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2690:2:9",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2680:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2706:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2741:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2752:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2737:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2737:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2761:7:9"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2716:20:9"
},
"nodeType": "YulFunctionCall",
"src": "2716:53:9"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2706:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2221:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2232:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2244:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2252:6:9",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2260:6:9",
"type": ""
}
],
"src": "2167:619:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2918:817:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2965:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2967:77:9"
},
"nodeType": "YulFunctionCall",
"src": "2967:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "2967:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2939:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2948:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2935:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2935:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2960:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2931:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2931:33:9"
},
"nodeType": "YulIf",
"src": "2928:120:9"
},
{
"nodeType": "YulBlock",
"src": "3058:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3073:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3087:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3077:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3102:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3137:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3148:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3133:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3133:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3157:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3112:20:9"
},
"nodeType": "YulFunctionCall",
"src": "3112:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3102:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3185:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3200:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3214:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3204:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3230:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3265:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3276:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3261:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3261:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3285:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3240:20:9"
},
"nodeType": "YulFunctionCall",
"src": "3240:53:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3230:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3313:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3328:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3342:2:9",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3332:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3358:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3393:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3404:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3389:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3389:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3413:7:9"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3368:20:9"
},
"nodeType": "YulFunctionCall",
"src": "3368:53:9"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3358:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3441:287:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3456:46:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3487:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3498:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3483:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3483:18:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3470:12:9"
},
"nodeType": "YulFunctionCall",
"src": "3470:32:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3460:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3549:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3551:77:9"
},
"nodeType": "YulFunctionCall",
"src": "3551:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "3551:79:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3521:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3529:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3518:2:9"
},
"nodeType": "YulFunctionCall",
"src": "3518:30:9"
},
"nodeType": "YulIf",
"src": "3515:117:9"
},
{
"nodeType": "YulAssignment",
"src": "3646:72:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3690:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3701:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3686:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3686:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3710:7:9"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3656:29:9"
},
"nodeType": "YulFunctionCall",
"src": "3656:62:9"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "3646:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2864:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2875:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2887:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2895:6:9",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2903:6:9",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "2911:6:9",
"type": ""
}
],
"src": "2792:943:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3821:388:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3867:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3869:77:9"
},
"nodeType": "YulFunctionCall",
"src": "3869:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "3869:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3842:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3851:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3838:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3838:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3863:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3834:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3834:32:9"
},
"nodeType": "YulIf",
"src": "3831:119:9"
},
{
"nodeType": "YulBlock",
"src": "3960:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3975:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3989:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3979:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4004:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4039:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4050:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4035:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4035:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4059:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4014:20:9"
},
"nodeType": "YulFunctionCall",
"src": "4014:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4004:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4087:115:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4102:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4116:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4106:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4132:60:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4164:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4175:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4160:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4160:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4184:7:9"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "4142:17:9"
},
"nodeType": "YulFunctionCall",
"src": "4142:50:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4132:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3783:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3794:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3806:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3814:6:9",
"type": ""
}
],
"src": "3741:468:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4298:391:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4344:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4346:77:9"
},
"nodeType": "YulFunctionCall",
"src": "4346:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "4346:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4319:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4328:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4315:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4315:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4340:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4311:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4311:32:9"
},
"nodeType": "YulIf",
"src": "4308:119:9"
},
{
"nodeType": "YulBlock",
"src": "4437:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4452:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4466:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4456:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4481:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4516:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4527:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4512:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4512:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4536:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4491:20:9"
},
"nodeType": "YulFunctionCall",
"src": "4491:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4481:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4564:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4579:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4593:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4583:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4609:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4644:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4655:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4640:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4640:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4664:7:9"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4619:20:9"
},
"nodeType": "YulFunctionCall",
"src": "4619:53:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4609:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4260:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4271:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4283:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4291:6:9",
"type": ""
}
],
"src": "4215:474:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4760:262:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4806:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4808:77:9"
},
"nodeType": "YulFunctionCall",
"src": "4808:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "4808:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4781:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4790:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4777:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4777:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4802:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4773:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4773:32:9"
},
"nodeType": "YulIf",
"src": "4770:119:9"
},
{
"nodeType": "YulBlock",
"src": "4899:116:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4914:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4928:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4918:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4943:62:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4977:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4988:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4973:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4973:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4997:7:9"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "4953:19:9"
},
"nodeType": "YulFunctionCall",
"src": "4953:52:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4943:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4730:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4741:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4753:6:9",
"type": ""
}
],
"src": "4695:327:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5094:263:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5140:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5142:77:9"
},
"nodeType": "YulFunctionCall",
"src": "5142:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "5142:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5115:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5124:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5111:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5111:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5136:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5107:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5107:32:9"
},
"nodeType": "YulIf",
"src": "5104:119:9"
},
{
"nodeType": "YulBlock",
"src": "5233:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5248:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5262:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5252:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5277:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5312:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5323:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5308:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5308:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5332:7:9"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5287:20:9"
},
"nodeType": "YulFunctionCall",
"src": "5287:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5277:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5064:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5075:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5087:6:9",
"type": ""
}
],
"src": "5028:329:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5428:53:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5445:3:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5468:5:9"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "5450:17:9"
},
"nodeType": "YulFunctionCall",
"src": "5450:24:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5438:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5438:37:9"
},
"nodeType": "YulExpressionStatement",
"src": "5438:37:9"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5416:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5423:3:9",
"type": ""
}
],
"src": "5363:118:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5546:50:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5563:3:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5583:5:9"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "5568:14:9"
},
"nodeType": "YulFunctionCall",
"src": "5568:21:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5556:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5556:34:9"
},
"nodeType": "YulExpressionStatement",
"src": "5556:34:9"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5534:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5541:3:9",
"type": ""
}
],
"src": "5487:109:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5694:272:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5704:53:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5751:5:9"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5718:32:9"
},
"nodeType": "YulFunctionCall",
"src": "5718:39:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5708:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5766:78:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5832:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5837:6:9"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5773:58:9"
},
"nodeType": "YulFunctionCall",
"src": "5773:71:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5766:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5879:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5886:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5875:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5875:16:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5893:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5898:6:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5853:21:9"
},
"nodeType": "YulFunctionCall",
"src": "5853:52:9"
},
"nodeType": "YulExpressionStatement",
"src": "5853:52:9"
},
{
"nodeType": "YulAssignment",
"src": "5914:46:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5925:3:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5952:6:9"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5930:21:9"
},
"nodeType": "YulFunctionCall",
"src": "5930:29:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5921:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5921:39:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5914:3:9"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5675:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5682:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5690:3:9",
"type": ""
}
],
"src": "5602:364:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6082:267:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6092:53:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6139:5:9"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6106:32:9"
},
"nodeType": "YulFunctionCall",
"src": "6106:39:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6096:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6154:96:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6238:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6243:6:9"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "6161:76:9"
},
"nodeType": "YulFunctionCall",
"src": "6161:89:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6154:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6285:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6292:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6281:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6281:16:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6299:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6304:6:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "6259:21:9"
},
"nodeType": "YulFunctionCall",
"src": "6259:52:9"
},
"nodeType": "YulExpressionStatement",
"src": "6259:52:9"
},
{
"nodeType": "YulAssignment",
"src": "6320:23:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6331:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6336:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6327:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6327:16:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6320:3:9"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6063:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6070:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6078:3:9",
"type": ""
}
],
"src": "5972:377:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6501:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6511:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6577:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6582:2:9",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6518:58:9"
},
"nodeType": "YulFunctionCall",
"src": "6518:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6511:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6683:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "6594:88:9"
},
"nodeType": "YulFunctionCall",
"src": "6594:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "6594:93:9"
},
{
"nodeType": "YulAssignment",
"src": "6696:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6707:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6712:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6703:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6703:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6696:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6489:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6497:3:9",
"type": ""
}
],
"src": "6355:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6873:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6883:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6949:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6954:2:9",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6890:58:9"
},
"nodeType": "YulFunctionCall",
"src": "6890:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6883:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7055:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "6966:88:9"
},
"nodeType": "YulFunctionCall",
"src": "6966:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "6966:93:9"
},
{
"nodeType": "YulAssignment",
"src": "7068:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7079:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7084:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7075:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7075:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7068:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6861:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6869:3:9",
"type": ""
}
],
"src": "6727:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7245:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7255:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7321:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7326:2:9",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7262:58:9"
},
"nodeType": "YulFunctionCall",
"src": "7262:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7255:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7427:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulIdentifier",
"src": "7338:88:9"
},
"nodeType": "YulFunctionCall",
"src": "7338:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "7338:93:9"
},
{
"nodeType": "YulAssignment",
"src": "7440:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7451:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7456:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7447:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7447:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7440:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7233:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7241:3:9",
"type": ""
}
],
"src": "7099:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7617:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7627:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7693:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7698:2:9",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7634:58:9"
},
"nodeType": "YulFunctionCall",
"src": "7634:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7627:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7799:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulIdentifier",
"src": "7710:88:9"
},
"nodeType": "YulFunctionCall",
"src": "7710:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "7710:93:9"
},
{
"nodeType": "YulAssignment",
"src": "7812:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7823:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7828:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7819:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7819:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7812:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7605:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7613:3:9",
"type": ""
}
],
"src": "7471:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7989:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7999:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8065:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8070:2:9",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8006:58:9"
},
"nodeType": "YulFunctionCall",
"src": "8006:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7999:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8171:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulIdentifier",
"src": "8082:88:9"
},
"nodeType": "YulFunctionCall",
"src": "8082:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "8082:93:9"
},
{
"nodeType": "YulAssignment",
"src": "8184:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8195:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8200:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8191:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8191:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8184:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7977:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7985:3:9",
"type": ""
}
],
"src": "7843:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8361:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8371:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8437:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8442:2:9",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8378:58:9"
},
"nodeType": "YulFunctionCall",
"src": "8378:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8371:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8543:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulIdentifier",
"src": "8454:88:9"
},
"nodeType": "YulFunctionCall",
"src": "8454:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "8454:93:9"
},
{
"nodeType": "YulAssignment",
"src": "8556:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8567:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8572:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8563:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8563:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8556:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8349:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8357:3:9",
"type": ""
}
],
"src": "8215:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8733:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8743:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8809:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8814:2:9",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8750:58:9"
},
"nodeType": "YulFunctionCall",
"src": "8750:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8743:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8915:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulIdentifier",
"src": "8826:88:9"
},
"nodeType": "YulFunctionCall",
"src": "8826:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "8826:93:9"
},
{
"nodeType": "YulAssignment",
"src": "8928:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8939:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8944:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8935:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8935:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8928:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8721:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8729:3:9",
"type": ""
}
],
"src": "8587:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9105:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9115:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9181:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9186:2:9",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9122:58:9"
},
"nodeType": "YulFunctionCall",
"src": "9122:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9115:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9287:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950",
"nodeType": "YulIdentifier",
"src": "9198:88:9"
},
"nodeType": "YulFunctionCall",
"src": "9198:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "9198:93:9"
},
{
"nodeType": "YulAssignment",
"src": "9300:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9311:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9316:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9307:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9307:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9300:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9093:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9101:3:9",
"type": ""
}
],
"src": "8959:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9477:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9487:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9553:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9558:2:9",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9494:58:9"
},
"nodeType": "YulFunctionCall",
"src": "9494:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9487:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9659:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulIdentifier",
"src": "9570:88:9"
},
"nodeType": "YulFunctionCall",
"src": "9570:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "9570:93:9"
},
{
"nodeType": "YulAssignment",
"src": "9672:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9683:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9688:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9679:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9679:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9672:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9465:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9473:3:9",
"type": ""
}
],
"src": "9331:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9849:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9859:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9925:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9930:2:9",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9866:58:9"
},
"nodeType": "YulFunctionCall",
"src": "9866:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9859:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10031:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "9942:88:9"
},
"nodeType": "YulFunctionCall",
"src": "9942:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "9942:93:9"
},
{
"nodeType": "YulAssignment",
"src": "10044:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10055:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10060:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10051:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10051:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10044:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9837:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9845:3:9",
"type": ""
}
],
"src": "9703:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10221:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10231:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10297:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10302:2:9",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10238:58:9"
},
"nodeType": "YulFunctionCall",
"src": "10238:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10231:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10403:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulIdentifier",
"src": "10314:88:9"
},
"nodeType": "YulFunctionCall",
"src": "10314:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "10314:93:9"
},
{
"nodeType": "YulAssignment",
"src": "10416:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10427:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10432:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10423:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10423:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10416:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10209:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10217:3:9",
"type": ""
}
],
"src": "10075:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10512:53:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10529:3:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10552:5:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "10534:17:9"
},
"nodeType": "YulFunctionCall",
"src": "10534:24:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10522:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10522:37:9"
},
"nodeType": "YulExpressionStatement",
"src": "10522:37:9"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10500:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10507:3:9",
"type": ""
}
],
"src": "10447:118:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10755:251:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10766:102:9",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10855:6:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10864:3:9"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "10773:81:9"
},
"nodeType": "YulFunctionCall",
"src": "10773:95:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10766:3:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10878:102:9",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "10967:6:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10976:3:9"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "10885:81:9"
},
"nodeType": "YulFunctionCall",
"src": "10885:95:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10878:3:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10990:10:9",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10997:3:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10990:3:9"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10726:3:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "10732:6:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10740:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10751:3:9",
"type": ""
}
],
"src": "10571:435:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11110:124:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11120:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11132:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11143:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11128:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11128:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11120:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11200:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11213:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11224:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11209:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11209:17:9"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "11156:43:9"
},
"nodeType": "YulFunctionCall",
"src": "11156:71:9"
},
"nodeType": "YulExpressionStatement",
"src": "11156:71:9"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11082:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11094:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11105:4:9",
"type": ""
}
],
"src": "11012:222:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11332:118:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11342:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11354:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11365:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11350:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11350:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11342:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11416:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11429:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11440:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11425:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11425:17:9"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "11378:37:9"
},
"nodeType": "YulFunctionCall",
"src": "11378:65:9"
},
"nodeType": "YulExpressionStatement",
"src": "11378:65:9"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11304:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11316:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11327:4:9",
"type": ""
}
],
"src": "11240:210:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11574:195:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11584:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11596:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11607:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11592:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11592:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11584:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11631:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11642:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11627:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11627:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11650:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11656:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11646:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11646:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11620:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11620:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "11620:47:9"
},
{
"nodeType": "YulAssignment",
"src": "11676:86:9",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11748:6:9"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11757:4:9"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11684:63:9"
},
"nodeType": "YulFunctionCall",
"src": "11684:78:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11676:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11546:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11558:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11569:4:9",
"type": ""
}
],
"src": "11456:313:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11946:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11956:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11968:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11979:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11964:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11964:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11956:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12003:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12014:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11999:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11999:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12022:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12028:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12018:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12018:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11992:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11992:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "11992:47:9"
},
{
"nodeType": "YulAssignment",
"src": "12048:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12182:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12056:124:9"
},
"nodeType": "YulFunctionCall",
"src": "12056:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12048:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11926:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11941:4:9",
"type": ""
}
],
"src": "11775:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12371:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12381:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12393:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12404:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12389:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12389:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12381:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12428:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12439:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12424:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12424:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12447:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12453:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12443:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12443:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12417:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12417:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "12417:47:9"
},
{
"nodeType": "YulAssignment",
"src": "12473:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12607:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12481:124:9"
},
"nodeType": "YulFunctionCall",
"src": "12481:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12473:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12351:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12366:4:9",
"type": ""
}
],
"src": "12200:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12796:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12806:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12818:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12829:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12814:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12814:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12806:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12853:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12864:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12849:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12849:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12872:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12878:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12868:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12868:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12842:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12842:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "12842:47:9"
},
{
"nodeType": "YulAssignment",
"src": "12898:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13032:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12906:124:9"
},
"nodeType": "YulFunctionCall",
"src": "12906:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12898:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12776:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12791:4:9",
"type": ""
}
],
"src": "12625:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13221:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13231:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13243:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13254:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13239:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13239:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13231:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13278:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13289:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13274:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13274:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13297:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13303:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13293:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13293:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13267:6:9"
},
"nodeType": "YulFunctionCall",
"src": "13267:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "13267:47:9"
},
{
"nodeType": "YulAssignment",
"src": "13323:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13457:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13331:124:9"
},
"nodeType": "YulFunctionCall",
"src": "13331:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13323:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13201:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13216:4:9",
"type": ""
}
],
"src": "13050:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13646:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13656:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13668:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13679:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13664:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13664:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13656:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13703:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13714:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13699:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13699:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13722:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13728:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13718:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13718:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13692:6:9"
},
"nodeType": "YulFunctionCall",
"src": "13692:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "13692:47:9"
},
{
"nodeType": "YulAssignment",
"src": "13748:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13882:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13756:124:9"
},
"nodeType": "YulFunctionCall",
"src": "13756:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13748:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13626:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13641:4:9",
"type": ""
}
],
"src": "13475:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14071:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14081:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14093:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14104:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14089:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14089:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14081:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14128:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14139:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14124:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14124:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14147:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14153:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14143:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14143:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14117:6:9"
},
"nodeType": "YulFunctionCall",
"src": "14117:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "14117:47:9"
},
{
"nodeType": "YulAssignment",
"src": "14173:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14307:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14181:124:9"
},
"nodeType": "YulFunctionCall",
"src": "14181:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14173:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14051:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14066:4:9",
"type": ""
}
],
"src": "13900:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14496:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14506:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14518:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14529:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14514:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14514:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14506:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14553:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14564:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14549:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14549:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14572:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14578:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14568:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14568:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14542:6:9"
},
"nodeType": "YulFunctionCall",
"src": "14542:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "14542:47:9"
},
{
"nodeType": "YulAssignment",
"src": "14598:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14732:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14606:124:9"
},
"nodeType": "YulFunctionCall",
"src": "14606:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14598:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14476:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14491:4:9",
"type": ""
}
],
"src": "14325:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14921:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14931:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14943:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14954:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14939:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14939:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14931:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14978:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14989:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14974:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14974:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14997:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15003:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14993:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14993:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14967:6:9"
},
"nodeType": "YulFunctionCall",
"src": "14967:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "14967:47:9"
},
{
"nodeType": "YulAssignment",
"src": "15023:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15157:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15031:124:9"
},
"nodeType": "YulFunctionCall",
"src": "15031:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15023:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14901:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14916:4:9",
"type": ""
}
],
"src": "14750:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15346:248:9",
"statements": [
{
"node
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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