Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save prtk418/0d91fa14fd7a9fa2fb74319a087ddf09 to your computer and use it in GitHub Desktop.
Save prtk418/0d91fa14fd7a9fa2fb74319a087ddf09 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.0 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/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.0 (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
{
"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": {
"@_131": {
"entryPoint": null,
"id": 131,
"parameterSlots": 0,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_2882": {
"entryPoint": null,
"id": 2882,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_2515": {
"entryPoint": 293,
"id": 2515,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 301,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_address_fromMemory": {
"entryPoint": 497,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address_fromMemory": {
"entryPoint": 520,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 591,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 611,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 643,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 648,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1355:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "70:80:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "80:22:22",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "95:6:22"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "89:5:22"
},
"nodeType": "YulFunctionCall",
"src": "89:13:22"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "80:5:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "138:5:22"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "111:26:22"
},
"nodeType": "YulFunctionCall",
"src": "111:33:22"
},
"nodeType": "YulExpressionStatement",
"src": "111:33:22"
}
]
},
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "48:6:22",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "56:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "64:5:22",
"type": ""
}
],
"src": "7:143:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "250:413:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "296:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "298:77:22"
},
"nodeType": "YulFunctionCall",
"src": "298:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "298:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "271:7:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "280:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "267:3:22"
},
"nodeType": "YulFunctionCall",
"src": "267:23:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "292:2:22",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "263:3:22"
},
"nodeType": "YulFunctionCall",
"src": "263:32:22"
},
"nodeType": "YulIf",
"src": "260:119:22"
},
{
"nodeType": "YulBlock",
"src": "389:128:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "404:15:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "418:1:22",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "408:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "433:74:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "479:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "490:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "475:3:22"
},
"nodeType": "YulFunctionCall",
"src": "475:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "499:7:22"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "443:31:22"
},
"nodeType": "YulFunctionCall",
"src": "443:64:22"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "433:6:22"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "527:129:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "542:16:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "556:2:22",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "546:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "572:74:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "618:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "629:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "614:3:22"
},
"nodeType": "YulFunctionCall",
"src": "614:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "638:7:22"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "582:31:22"
},
"nodeType": "YulFunctionCall",
"src": "582:64:22"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "572:6:22"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "212:9:22",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "223:7:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "235:6:22",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "243:6:22",
"type": ""
}
],
"src": "156:507:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "709:35:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "719:19:22",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "735:2:22",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "729:5:22"
},
"nodeType": "YulFunctionCall",
"src": "729:9:22"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "719:6:22"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "702:6:22",
"type": ""
}
],
"src": "669:75:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "795:51:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "805:35:22",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "834:5:22"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "816:17:22"
},
"nodeType": "YulFunctionCall",
"src": "816:24:22"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "805:7:22"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "777:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "787:7:22",
"type": ""
}
],
"src": "750:96:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "897:81:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "907:65:22",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "922:5:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "929:42:22",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "918:3:22"
},
"nodeType": "YulFunctionCall",
"src": "918:54:22"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "907:7:22"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "879:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "889:7:22",
"type": ""
}
],
"src": "852:126:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1073:28:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1090:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1093:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1083:6:22"
},
"nodeType": "YulFunctionCall",
"src": "1083:12:22"
},
"nodeType": "YulExpressionStatement",
"src": "1083:12:22"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "984:117:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1196:28:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1213:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1216:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1206:6:22"
},
"nodeType": "YulFunctionCall",
"src": "1206:12:22"
},
"nodeType": "YulExpressionStatement",
"src": "1206:12:22"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1107:117:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1273:79:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1330:16:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1339:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1342:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1332:6:22"
},
"nodeType": "YulFunctionCall",
"src": "1332:12:22"
},
"nodeType": "YulExpressionStatement",
"src": "1332:12:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1296:5:22"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1321:5:22"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1303:17:22"
},
"nodeType": "YulFunctionCall",
"src": "1303:24:22"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1293:2:22"
},
"nodeType": "YulFunctionCall",
"src": "1293:35:22"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1286:6:22"
},
"nodeType": "YulFunctionCall",
"src": "1286:43:22"
},
"nodeType": "YulIf",
"src": "1283:63:22"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1266:5:22",
"type": ""
}
],
"src": "1230:122:22"
}
]
},
"contents": "{\n\n function abi_decode_t_address_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_addresst_address_fromMemory(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_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\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 validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 22,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526000600655600060075560006008556000600c60006101000a81548160ff0219169083151502179055503480156200003b57600080fd5b50604051620044cf380380620044cf833981810160405281019062000061919062000208565b62000081620000756200012560201b60201c565b6200012d60201b60201c565b60008060146101000a81548160ff02191690831515021790555081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620002a2565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050620002028162000288565b92915050565b6000806040838503121562000222576200022162000283565b5b60006200023285828601620001f1565b92505060206200024585828601620001f1565b9150509250929050565b60006200025c8262000263565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b62000293816200024f565b81146200029f57600080fd5b50565b61421d80620002b26000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80636a3ef057116100f957806388ff498b11610097578063db796b8911610071578063db796b891461048c578063dd55fcb3146104aa578063de54625d146104dc578063f2fde38b1461050c576101a9565b806388ff498b146104325780638da5cb5b14610450578063c0c472c01461046e576101a9565b8063715018a6116100d3578063715018a6146103d257806376531008146103dc57806376fbe719146103f857806381d449c114610416576101a9565b80636a3ef057146103685780636f234fb5146103845780636f257875146103b4576101a9565b806337a386b9116101665780633c989e6a116101405780633c989e6a146102de578063512114361461030e5780635c975abb1461032c578063607af3971461034a576101a9565b806337a386b914610270578063387f8bdd1461028e57806339db714f146102c0576101a9565b806313324aa9146101ae578063150b7a02146101ca57806316c38b3c146101fa578063201ef2a4146102165780632435d6511461023457806328b3e69714610252575b600080fd5b6101c860048036038101906101c391906132d1565b610528565b005b6101e460048036038101906101df91906131e9565b610776565b6040516101f191906138f9565b60405180910390f35b610214600480360381019061020f919061337e565b6107f9565b005b61021e610894565b60405161022b9190613b4f565b60405180910390f35b61023c610899565b6040516102499190613ac6565b60405180910390f35b61025a6108a7565b6040516102679190613ac6565b60405180910390f35b6102786108ac565b6040516102859190613ac6565b60405180910390f35b6102a860048036038101906102a391906134b7565b6108b3565b6040516102b793929190613a8f565b60405180910390f35b6102c8610921565b6040516102d591906138de565b60405180910390f35b6102f860048036038101906102f391906134b7565b610934565b60405161030591906137e2565b60405180910390f35b610316610a64565b6040516103239190613ac6565b60405180910390f35b610334610a6a565b60405161034191906138de565b60405180910390f35b610352610a80565b60405161035f9190613ac6565b60405180910390f35b610382600480360381019061037d9190613331565b610a86565b005b61039e600480360381019061039991906134b7565b611327565b6040516103ab9190613ac6565b60405180910390f35b6103bc61133f565b6040516103c99190613ac6565b60405180910390f35b6103da611345565b005b6103f660048036038101906103f1919061337e565b6113cd565b005b610400611466565b60405161040d9190613ac6565b60405180910390f35b610430600480360381019061042b9190613271565b61146c565b005b61043a6118b1565b6040516104479190613ac6565b60405180910390f35b6104586118c1565b60405161046591906137e2565b60405180910390f35b6104766118ea565b6040516104839190613ac6565b60405180910390f35b6104946118f0565b6040516104a19190613ac6565b60405180910390f35b6104c460048036038101906104bf91906134e4565b6118f6565b6040516104d393929190613a8f565b60405180910390f35b6104f660048036038101906104f191906134b7565b61197d565b60405161050391906138de565b60405180910390f35b6105266004803603810190610521919061318f565b611a61565b005b610530610a6a565b15610570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610567906139d4565b60405180910390fd5b6b07c13bc4b2c133c56000000060095410156105e4576201518069021e19e0c9bab2400000600a54600b54426105a69190613c6d565b6105b09190613c13565b6105ba9190613c13565b6105c49190613be2565b600960008282546105d59190613b8c565b9250508190555042600b819055505b6000805b848490508110156106c95761062785858381811061060957610608613ee7565b5b905060200201602081019061061e919061348a565b61ffff1661197d565b156106735761066185858381811061064257610641613ee7565b5b9050602002016020810190610657919061348a565b61ffff1684611b59565b8261066c9190613b8c565b91506106b6565b6106a885858381811061068957610688613ee7565b5b905060200201602081019061069e919061348a565b61ffff16846120a4565b826106b39190613b8c565b91505b80806106c190613da8565b9150506105e8565b5060008114156106d95750610771565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1961071f61286a565b836040518363ffffffff1660e01b815260040161073d92919061387e565b600060405180830381600087803b15801561075757600080fd5b505af115801561076b573d6000803e3d6000fd5b50505050505b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146107e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dd90613994565b60405180910390fd5b63150b7a0260e01b905095945050505050565b61080161286a565b73ffffffffffffffffffffffffffffffffffffffff1661081f6118c1565b73ffffffffffffffffffffffffffffffffffffffff1614610875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086c90613a14565b60405180910390fd5b801561088857610883612872565b610891565b610890612915565b5b50565b600881565b69021e19e0c9bab240000081565b601481565b6202a30081565b60036020528060005260406000206000915090508060000160009054906101000a900461ffff16908060000160029054906101000a900469ffffffffffffffffffff169080600001600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905083565b600c60009054906101000a900460ff1681565b60008060065414156109495760009050610a5f565b600060065463ffffffff841661095f9190613e29565b90506000602084901c935060006003600861097a9190613ca1565b60ff1690505b600860ff168111610a57578060046000838152602001908152602001600020805490506109ad9190613c13565b826109b89190613b8c565b91508183106109c657610a44565b600460008281526020019081526020016000206004600083815260200190815260200160002080549050866109fb9190613e29565b81548110610a0c57610a0b613ee7565b5b90600052602060002001600001600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169350505050610a5f565b8080610a4f90613da8565b915050610980565b506000925050505b919050565b60095481565b60008060149054906101000a900460ff16905090565b600b5481565b600c60009054906101000a900460ff16610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90613974565b60405180910390fd5b6000610adf612fb3565b610ae7612fb3565b600080600090505b8686905081101561131e57868682818110610b0d57610b0c613ee7565b5b905060200201359450610b1f8561197d565b15610dce57600360008681526020019081526020016000206040518060600160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900469ffffffffffffffffffff1669ffffffffffffffffffff1669ffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509350610bfa61286a565b73ffffffffffffffffffffffffffffffffffffffff16846040015173ffffffffffffffffffffffffffffffffffffffff1614610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c62906139b4565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde30610cb261286a565b886040518463ffffffff1660e01b8152600401610cd193929190613834565b600060405180830381600087803b158015610ceb57600080fd5b505af1158015610cff573d6000803e3d6000fd5b5050505060036000868152602001908152602001600020600080820160006101000a81549061ffff02191690556000820160026101000a81549069ffffffffffffffffffff021916905560008201600c6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550506001600a6000828254610d859190613c6d565b925050819055507fe9d8194f830c159f3fa36a3722d86930569b5a9ce5265dda89fd43f4880761658560006001604051610dc193929190613ae1565b60405180910390a161130b565b610dd7856129b6565b60ff16915060046000838152602001908152602001600020600560008781526020019081526020016000205481548110610e1457610e13613ee7565b5b906000526020600020016040518060600160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900469ffffffffffffffffffff1669ffffffffffffffffffff1669ffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509350610ee161286a565b73ffffffffffffffffffffffffffffffffffffffff16846040015173ffffffffffffffffffffffffffffffffffffffff1614610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f49906139b4565b60405180910390fd5b8160066000828254610f649190613c6d565b92505081905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde30610fb261286a565b886040518463ffffffff1660e01b8152600401610fd193929190613834565b600060405180830381600087803b158015610feb57600080fd5b505af1158015610fff573d6000803e3d6000fd5b5050505060046000838152602001908152602001600020600160046000858152602001908152602001600020805490506110399190613c6d565b8154811061104a57611049613ee7565b5b906000526020600020016040518060600160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900469ffffffffffffffffffff1669ffffffffffffffffffff1669ffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509250826004600084815260200190815260200160002060056000888152602001908152602001600020548154811061114857611147613ee7565b5b9060005260206000200160008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548169ffffffffffffffffffff021916908369ffffffffffffffffffff160217905550604082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050600560008681526020019081526020016000205460056000856000015161ffff168152602001908152602001600020819055506004600083815260200190815260200160002080548061124857611247613eb8565b5b60019003818190600052602060002001600080820160006101000a81549061ffff02191690556000820160026101000a81549069ffffffffffffffffffff021916905560008201600c6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555050905560056000868152602001908152602001600020600090557ff65d435564b020fcb9d6f56608c9333a6cf42914eeddfbac41a764da73667de1856000600160405161130293929190613ae1565b60405180910390a15b808061131690613da8565b915050610aef565b50505050505050565b60056020528060005260406000206000915090505481565b60065481565b61134d61286a565b73ffffffffffffffffffffffffffffffffffffffff1661136b6118c1565b73ffffffffffffffffffffffffffffffffffffffff16146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890613a14565b60405180910390fd5b6113cb6000612a85565b565b6113d561286a565b73ffffffffffffffffffffffffffffffffffffffff166113f36118c1565b73ffffffffffffffffffffffffffffffffffffffff1614611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090613a14565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b600a5481565b61147461286a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115015750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114e961286a565b73ffffffffffffffffffffffffffffffffffffffff16145b611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790613a34565b60405180910390fd5b60005b828290508110156118ab57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661158f61286a565b73ffffffffffffffffffffffffffffffffffffffff16146117b4576115b261286a565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e85858581811061161957611618613ee7565b5b905060200201602081019061162e919061348a565b6040518263ffffffff1660e01b815260040161164a9190613a74565b60206040518083038186803b15801561166257600080fd5b505afa158015611676573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169a91906131bc565b73ffffffffffffffffffffffffffffffffffffffff16146116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e790613a54565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd61173661286a565b3086868681811061174a57611749613ee7565b5b905060200201602081019061175f919061348a565b6040518463ffffffff1660e01b815260040161177d939291906137fd565b600060405180830381600087803b15801561179757600080fd5b505af11580156117ab573d6000803e3d6000fd5b505050506117ee565b60008383838181106117c9576117c8613ee7565b5b90506020020160208101906117de919061348a565b61ffff1614156117ed57611898565b5b61182283838381811061180457611803613ee7565b5b9050602002016020810190611819919061348a565b61ffff1661197d565b156118615761185c8484848481811061183e5761183d613ee7565b5b9050602002016020810190611853919061348a565b61ffff16612b49565b611897565b6118968484848481811061187857611877613ee7565b5b905060200201602081019061188d919061348a565b61ffff16612d52565b5b5b80806118a390613da8565b915050611543565b50505050565b6b07c13bc4b2c133c56000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075481565b60085481565b6004602052816000526040600020818154811061191257600080fd5b90600052602060002001600091509150508060000160009054906101000a900461ffff16908060000160029054906101000a900469ffffffffffffffffffff169080600001600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905083565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e05c57bf836040518263ffffffff1660e01b81526004016119da9190613ac6565b6101406040518083038186803b1580156119f357600080fd5b505afa158015611a07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2b91906133ab565b90919293949596975090919293949596509091929394955090919293945090919293509091925090915090505080915050919050565b611a6961286a565b73ffffffffffffffffffffffffffffffffffffffff16611a876118c1565b73ffffffffffffffffffffffffffffffffffffffff1614611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad490613a14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490613954565b60405180910390fd5b611b5681612a85565b50565b600080600360008581526020019081526020016000206040518060600160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900469ffffffffffffffffffff1669ffffffffffffffffffff1669ffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050611c3261286a565b73ffffffffffffffffffffffffffffffffffffffff16816040015173ffffffffffffffffffffffffffffffffffffffff1614611ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9a906139b4565b60405180910390fd5b828015611ccd57506202a300816020015169ffffffffffffffffffff1642611ccb9190613c6d565b105b15611d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d04906139f4565b60405180910390fd5b6b07c13bc4b2c133c5600000006009541015611d69576201518069021e19e0c9bab2400000826020015169ffffffffffffffffffff1642611d4e9190613c6d565b611d589190613c13565b611d629190613be2565b9150611dd1565b600b54816020015169ffffffffffffffffffff161115611d8c5760009150611dd0565b6201518069021e19e0c9bab2400000826020015169ffffffffffffffffffff16600b54611db99190613c6d565b611dc39190613c13565b611dcd9190613be2565b91505b5b8215611f1e57600180611de386612f05565b161415611df857611df382612f4b565b600091505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde30611e3f61286a565b876040518463ffffffff1660e01b8152600401611e5e93929190613834565b600060405180830381600087803b158015611e7857600080fd5b505af1158015611e8c573d6000803e3d6000fd5b5050505060036000858152602001908152602001600020600080820160006101000a81549061ffff02191690556000820160026101000a81549069ffffffffffffffffffff021916905560008201600c6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550506001600a6000828254611f129190613c6d565b92505081905550612062565b611f3f6064601484611f309190613c13565b611f3a9190613be2565b612f4b565b606460146064611f4f9190613c6d565b83611f5a9190613c13565b611f649190613be2565b915060405180606001604052808561ffff1681526020014269ffffffffffffffffffff168152602001611f9561286a565b73ffffffffffffffffffffffffffffffffffffffff168152506003600086815260200190815260200160002060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548169ffffffffffffffffffff021916908369ffffffffffffffffffff160217905550604082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050505b7fe9d8194f830c159f3fa36a3722d86930569b5a9ce5265dda89fd43f48807616584838560405161209593929190613b18565b60405180910390a15092915050565b60003073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b81526004016121189190613ac6565b60206040518083038186803b15801561213057600080fd5b505afa158015612144573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061216891906131bc565b73ffffffffffffffffffffffffffffffffffffffff16146121be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b590613934565b60405180910390fd5b60006121c9846129b6565b60ff16905060006004600083815260200190815260200160002060056000878152602001908152602001600020548154811061220857612207613ee7565b5b906000526020600020016040518060600160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900469ffffffffffffffffffff1669ffffffffffffffffffff1669ffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505090506122d561286a565b73ffffffffffffffffffffffffffffffffffffffff16816040015173ffffffffffffffffffffffffffffffffffffffff1614612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233d906139b4565b60405180910390fd5b806020015169ffffffffffffffffffff166008546123649190613c6d565b8261236f9190613c13565b925083156126fa5781600660008282546123899190613c6d565b92505081905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde306123d761286a565b886040518463ffffffff1660e01b81526004016123f693929190613834565b600060405180830381600087803b15801561241057600080fd5b505af1158015612424573d6000803e3d6000fd5b50505050600060046000848152602001908152602001600020600160046000868152602001908152602001600020805490506124609190613c6d565b8154811061247157612470613ee7565b5b906000526020600020016040518060600160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900469ffffffffffffffffffff1669ffffffffffffffffffff1669ffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050806004600085815260200190815260200160002060056000898152602001908152602001600020548154811061256f5761256e613ee7565b5b9060005260206000200160008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548169ffffffffffffffffffff021916908369ffffffffffffffffffff160217905550604082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050600560008781526020019081526020016000205460056000836000015161ffff168152602001908152602001600020819055506004600084815260200190815260200160002080548061266f5761266e613eb8565b5b60019003818190600052602060002001600080820160006101000a81549061ffff02191690556000820160026101000a81549069ffffffffffffffffffff021916905560008201600c6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550509055600560008781526020019081526020016000206000905550612827565b60405180606001604052808661ffff16815260200160085469ffffffffffffffffffff16815260200161272b61286a565b73ffffffffffffffffffffffffffffffffffffffff168152506004600084815260200190815260200160002060056000888152602001908152602001600020548154811061277c5761277b613ee7565b5b9060005260206000200160008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548169ffffffffffffffffffff021916908369ffffffffffffffffffff160217905550604082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050505b7ff65d435564b020fcb9d6f56608c9333a6cf42914eeddfbac41a764da73667de185848660405161285a93929190613b18565b60405180910390a1505092915050565b600033905090565b61287a610a6a565b156128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b1906139d4565b60405180910390fd5b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586128fe61286a565b60405161290b91906137e2565b60405180910390a1565b61291d610a6a565b61295c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295390613914565b60405180910390fd5b60008060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61299f61286a565b6040516129ac91906137e2565b60405180910390a1565b600080600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e05c57bf846040518263ffffffff1660e01b8152600401612a149190613ac6565b6101406040518083038186803b158015612a2d57600080fd5b505afa158015612a41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a6591906133ab565b9950505050505050505050806008612a7d9190613ca1565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b51610a6a565b15612b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b88906139d4565b60405180910390fd5b6b07c13bc4b2c133c5600000006009541015612c05576201518069021e19e0c9bab2400000600a54600b5442612bc79190613c6d565b612bd19190613c13565b612bdb9190613c13565b612be59190613be2565b60096000828254612bf69190613b8c565b9250508190555042600b819055505b60405180606001604052808261ffff1681526020014269ffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548169ffffffffffffffffffff021916908369ffffffffffffffffffff160217905550604082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050506001600a6000828254612d0c9190613b8c565b925050819055507f6173e4d2d9dd52aae0ed37afed3adcf924a490639b759ca93d32dc43366c17d2828242604051612d46939291906138a7565b60405180910390a15050565b6000612d5d826129b6565b60ff1690508060066000828254612d749190613b8c565b92505081905550600460008281526020019081526020016000208054905060056000848152602001908152602001600020819055506004600082815260200190815260200160002060405180606001604052808461ffff16815260200160085469ffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548169ffffffffffffffffffff021916908369ffffffffffffffffffff160217905550604082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050507f6173e4d2d9dd52aae0ed37afed3adcf924a490639b759ca93d32dc43366c17d28383600854604051612ef8939291906138a7565b60405180910390a1505050565b600032600143612f159190613c6d565b404284604051602001612f2b9493929190613794565b6040516020818303038152906040528051906020012060001c9050919050565b60006006541415612f74578060076000828254612f689190613b8c565b92505081905550612fb0565b60065460075482612f859190613b8c565b612f8f9190613be2565b60086000828254612fa09190613b8c565b9250508190555060006007819055505b50565b6040518060600160405280600061ffff168152602001600069ffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b60008135905061300981614174565b92915050565b60008151905061301e81614174565b92915050565b60008083601f84011261303a57613039613f1b565b5b8235905067ffffffffffffffff81111561305757613056613f16565b5b60208301915083602082028301111561307357613072613f20565b5b9250929050565b60008083601f8401126130905761308f613f1b565b5b8235905067ffffffffffffffff8111156130ad576130ac613f16565b5b6020830191508360208202830111156130c9576130c8613f20565b5b9250929050565b6000813590506130df8161418b565b92915050565b6000815190506130f48161418b565b92915050565b60008083601f8401126131105761310f613f1b565b5b8235905067ffffffffffffffff81111561312d5761312c613f16565b5b60208301915083600182028301111561314957613148613f20565b5b9250929050565b60008135905061315f816141a2565b92915050565b600081359050613174816141b9565b92915050565b600081519050613189816141d0565b92915050565b6000602082840312156131a5576131a4613f2a565b5b60006131b384828501612ffa565b91505092915050565b6000602082840312156131d2576131d1613f2a565b5b60006131e08482850161300f565b91505092915050565b60008060008060006080868803121561320557613204613f2a565b5b600061321388828901612ffa565b955050602061322488828901612ffa565b945050604061323588828901613165565b935050606086013567ffffffffffffffff81111561325657613255613f25565b5b613262888289016130fa565b92509250509295509295909350565b60008060006040848603121561328a57613289613f2a565b5b600061329886828701612ffa565b935050602084013567ffffffffffffffff8111156132b9576132b8613f25565b5b6132c586828701613024565b92509250509250925092565b6000806000604084860312156132ea576132e9613f2a565b5b600084013567ffffffffffffffff81111561330857613307613f25565b5b61331486828701613024565b93509350506020613327868287016130d0565b9150509250925092565b6000806020838503121561334857613347613f2a565b5b600083013567ffffffffffffffff81111561336657613365613f25565b5b6133728582860161307a565b92509250509250929050565b60006020828403121561339457613393613f2a565b5b60006133a2848285016130d0565b91505092915050565b6000806000806000806000806000806101408b8d0312156133cf576133ce613f2a565b5b60006133dd8d828e016130e5565b9a505060206133ee8d828e0161317a565b99505060406133ff8d828e0161317a565b98505060606134108d828e0161317a565b97505060806134218d828e0161317a565b96505060a06134328d828e0161317a565b95505060c06134438d828e0161317a565b94505060e06134548d828e0161317a565b9350506101006134668d828e0161317a565b9250506101206134788d828e0161317a565b9150509295989b9194979a5092959850565b6000602082840312156134a05761349f613f2a565b5b60006134ae84828501613150565b91505092915050565b6000602082840312156134cd576134cc613f2a565b5b60006134db84828501613165565b91505092915050565b600080604083850312156134fb576134fa613f2a565b5b600061350985828601613165565b925050602061351a85828601613165565b9150509250929050565b61352d81613cd5565b82525050565b61354461353f82613cd5565b613df1565b82525050565b61355381613ce7565b82525050565b61356a61356582613cf3565b613e03565b82525050565b61357981613cfd565b82525050565b61358881613d84565b82525050565b600061359b601483613b7b565b91506135a682613f3c565b602082019050919050565b60006135be601783613b7b565b91506135c982613f65565b602082019050919050565b60006135e1602683613b7b565b91506135ec82613f8e565b604082019050919050565b6000613604600f83613b7b565b915061360f82613fdd565b602082019050919050565b6000613627602383613b7b565b915061363282614006565b604082019050919050565b600061364a601283613b7b565b915061365582614055565b602082019050919050565b600061366d601083613b7b565b91506136788261407e565b602082019050919050565b6000613690602483613b7b565b915061369b826140a7565b604082019050919050565b60006136b3602083613b7b565b91506136be826140f6565b602082019050919050565b60006136d6601a83613b7b565b91506136e18261411f565b602082019050919050565b60006136f9600083613b6a565b915061370482614148565b600082019050919050565b600061371c600d83613b7b565b91506137278261414b565b602082019050919050565b61373b81613d29565b82525050565b61374a81613d96565b82525050565b61375981613d57565b82525050565b61377061376b82613d57565b613e1f565b82525050565b61377f81613d6e565b82525050565b61378e81613d61565b82525050565b60006137a08287613533565b6014820191506137b08286613559565b6020820191506137c0828561375f565b6020820191506137d0828461375f565b60208201915081905095945050505050565b60006020820190506137f76000830184613524565b92915050565b60006060820190506138126000830186613524565b61381f6020830185613524565b61382c6040830184613741565b949350505050565b60006080820190506138496000830186613524565b6138566020830185613524565b6138636040830184613750565b8181036060830152613874816136ec565b9050949350505050565b60006040820190506138936000830185613524565b6138a06020830184613750565b9392505050565b60006060820190506138bc6000830186613524565b6138c96020830185613750565b6138d66040830184613750565b949350505050565b60006020820190506138f3600083018461354a565b92915050565b600060208201905061390e6000830184613570565b92915050565b6000602082019050818103600083015261392d8161358e565b9050919050565b6000602082019050818103600083015261394d816135b1565b9050919050565b6000602082019050818103600083015261396d816135d4565b9050919050565b6000602082019050818103600083015261398d816135f7565b9050919050565b600060208201905081810360008301526139ad8161361a565b9050919050565b600060208201905081810360008301526139cd8161363d565b9050919050565b600060208201905081810360008301526139ed81613660565b9050919050565b60006020820190508181036000830152613a0d81613683565b9050919050565b60006020820190508181036000830152613a2d816136a6565b9050919050565b60006020820190508181036000830152613a4d816136c9565b9050919050565b60006020820190508181036000830152613a6d8161370f565b9050919050565b6000602082019050613a896000830184613741565b92915050565b6000606082019050613aa46000830186613732565b613ab16020830185613776565b613abe6040830184613524565b949350505050565b6000602082019050613adb6000830184613750565b92915050565b6000606082019050613af66000830186613750565b613b03602083018561357f565b613b10604083018461354a565b949350505050565b6000606082019050613b2d6000830186613750565b613b3a6020830185613750565b613b47604083018461354a565b949350505050565b6000602082019050613b646000830184613785565b92915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613b9782613d57565b9150613ba283613d57565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bd757613bd6613e5a565b5b828201905092915050565b6000613bed82613d57565b9150613bf883613d57565b925082613c0857613c07613e89565b5b828204905092915050565b6000613c1e82613d57565b9150613c2983613d57565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c6257613c61613e5a565b5b828202905092915050565b6000613c7882613d57565b9150613c8383613d57565b925082821015613c9657613c95613e5a565b5b828203905092915050565b6000613cac82613d61565b9150613cb783613d61565b925082821015613cca57613cc9613e5a565b5b828203905092915050565b6000613ce082613d37565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600069ffffffffffffffffffff82169050919050565b6000613d8f82613d57565b9050919050565b6000613da182613d29565b9050919050565b6000613db382613d57565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613de657613de5613e5a565b5b600182019050919050565b6000613dfc82613e0d565b9050919050565b6000819050919050565b6000613e1882613f2f565b9050919050565b6000819050919050565b6000613e3482613d57565b9150613e3f83613d57565b925082613e4f57613e4e613e89565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f41494e5420412050415254204f4620544845205041434b000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5245534355452044495341424c45440000000000000000000000000000000000600082015250565b7f43616e6e6f742073656e6420746f6b656e7320746f204261726e20646972656360008201527f746c790000000000000000000000000000000000000000000000000000000000602082015250565b7f5357495045522c204e4f2053574950494e470000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f474f4e4e4120424520434f4c4420574954484f55542054574f2044415927532060008201527f574f4f4c00000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f444f4e54204749564520594f555220544f4b454e532041574159000000000000600082015250565b50565b7f41494e5420594f20544f4b454e00000000000000000000000000000000000000600082015250565b61417d81613cd5565b811461418857600080fd5b50565b61419481613ce7565b811461419f57600080fd5b50565b6141ab81613d29565b81146141b657600080fd5b50565b6141c281613d57565b81146141cd57600080fd5b50565b6141d981613d61565b81146141e457600080fd5b5056fea2646970667358221220105bba3044aabdaa7acef578b27cc0ff0e7a1a36ea1a2dc980b795594668657864736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 PUSH1 0x6 SSTORE PUSH1 0x0 PUSH1 0x7 SSTORE PUSH1 0x0 PUSH1 0x8 SSTORE PUSH1 0x0 PUSH1 0xC PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH3 0x3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x44CF CODESIZE SUB DUP1 PUSH3 0x44CF DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x61 SWAP2 SWAP1 PUSH3 0x208 JUMP JUMPDEST PUSH3 0x81 PUSH3 0x75 PUSH3 0x125 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x12D PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH1 0x2 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP POP PUSH3 0x2A2 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x202 DUP2 PUSH3 0x288 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x222 JUMPI PUSH3 0x221 PUSH3 0x283 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x232 DUP6 DUP3 DUP7 ADD PUSH3 0x1F1 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH3 0x245 DUP6 DUP3 DUP7 ADD PUSH3 0x1F1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x25C DUP3 PUSH3 0x263 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x293 DUP2 PUSH3 0x24F JUMP JUMPDEST DUP2 EQ PUSH3 0x29F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x421D DUP1 PUSH3 0x2B2 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 0x1A9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6A3EF057 GT PUSH2 0xF9 JUMPI DUP1 PUSH4 0x88FF498B GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xDB796B89 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xDB796B89 EQ PUSH2 0x48C JUMPI DUP1 PUSH4 0xDD55FCB3 EQ PUSH2 0x4AA JUMPI DUP1 PUSH4 0xDE54625D EQ PUSH2 0x4DC JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x50C JUMPI PUSH2 0x1A9 JUMP JUMPDEST DUP1 PUSH4 0x88FF498B EQ PUSH2 0x432 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x450 JUMPI DUP1 PUSH4 0xC0C472C0 EQ PUSH2 0x46E JUMPI PUSH2 0x1A9 JUMP JUMPDEST DUP1 PUSH4 0x715018A6 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x3D2 JUMPI DUP1 PUSH4 0x76531008 EQ PUSH2 0x3DC JUMPI DUP1 PUSH4 0x76FBE719 EQ PUSH2 0x3F8 JUMPI DUP1 PUSH4 0x81D449C1 EQ PUSH2 0x416 JUMPI PUSH2 0x1A9 JUMP JUMPDEST DUP1 PUSH4 0x6A3EF057 EQ PUSH2 0x368 JUMPI DUP1 PUSH4 0x6F234FB5 EQ PUSH2 0x384 JUMPI DUP1 PUSH4 0x6F257875 EQ PUSH2 0x3B4 JUMPI PUSH2 0x1A9 JUMP JUMPDEST DUP1 PUSH4 0x37A386B9 GT PUSH2 0x166 JUMPI DUP1 PUSH4 0x3C989E6A GT PUSH2 0x140 JUMPI DUP1 PUSH4 0x3C989E6A EQ PUSH2 0x2DE JUMPI DUP1 PUSH4 0x51211436 EQ PUSH2 0x30E JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x32C JUMPI DUP1 PUSH4 0x607AF397 EQ PUSH2 0x34A JUMPI PUSH2 0x1A9 JUMP JUMPDEST DUP1 PUSH4 0x37A386B9 EQ PUSH2 0x270 JUMPI DUP1 PUSH4 0x387F8BDD EQ PUSH2 0x28E JUMPI DUP1 PUSH4 0x39DB714F EQ PUSH2 0x2C0 JUMPI PUSH2 0x1A9 JUMP JUMPDEST DUP1 PUSH4 0x13324AA9 EQ PUSH2 0x1AE JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0x16C38B3C EQ PUSH2 0x1FA JUMPI DUP1 PUSH4 0x201EF2A4 EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0x2435D651 EQ PUSH2 0x234 JUMPI DUP1 PUSH4 0x28B3E697 EQ PUSH2 0x252 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1C8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C3 SWAP2 SWAP1 PUSH2 0x32D1 JUMP JUMPDEST PUSH2 0x528 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1E4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DF SWAP2 SWAP1 PUSH2 0x31E9 JUMP JUMPDEST PUSH2 0x776 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F1 SWAP2 SWAP1 PUSH2 0x38F9 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 0x337E JUMP JUMPDEST PUSH2 0x7F9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x21E PUSH2 0x894 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x22B SWAP2 SWAP1 PUSH2 0x3B4F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23C PUSH2 0x899 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x249 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x25A PUSH2 0x8A7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x267 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x278 PUSH2 0x8AC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x285 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A3 SWAP2 SWAP1 PUSH2 0x34B7 JUMP JUMPDEST PUSH2 0x8B3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B7 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3A8F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C8 PUSH2 0x921 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D5 SWAP2 SWAP1 PUSH2 0x38DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F3 SWAP2 SWAP1 PUSH2 0x34B7 JUMP JUMPDEST PUSH2 0x934 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x305 SWAP2 SWAP1 PUSH2 0x37E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x316 PUSH2 0xA64 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x323 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x334 PUSH2 0xA6A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x341 SWAP2 SWAP1 PUSH2 0x38DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x352 PUSH2 0xA80 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x35F SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x382 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x37D SWAP2 SWAP1 PUSH2 0x3331 JUMP JUMPDEST PUSH2 0xA86 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x39E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x399 SWAP2 SWAP1 PUSH2 0x34B7 JUMP JUMPDEST PUSH2 0x1327 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3AB SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3BC PUSH2 0x133F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3C9 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3DA PUSH2 0x1345 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3F6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3F1 SWAP2 SWAP1 PUSH2 0x337E JUMP JUMPDEST PUSH2 0x13CD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x400 PUSH2 0x1466 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x40D SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x430 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x42B SWAP2 SWAP1 PUSH2 0x3271 JUMP JUMPDEST PUSH2 0x146C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x43A PUSH2 0x18B1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x447 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x458 PUSH2 0x18C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x465 SWAP2 SWAP1 PUSH2 0x37E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x476 PUSH2 0x18EA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x483 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x494 PUSH2 0x18F0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4A1 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4C4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4BF SWAP2 SWAP1 PUSH2 0x34E4 JUMP JUMPDEST PUSH2 0x18F6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D3 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3A8F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4F6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4F1 SWAP2 SWAP1 PUSH2 0x34B7 JUMP JUMPDEST PUSH2 0x197D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x503 SWAP2 SWAP1 PUSH2 0x38DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x526 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x521 SWAP2 SWAP1 PUSH2 0x318F JUMP JUMPDEST PUSH2 0x1A61 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x530 PUSH2 0xA6A JUMP JUMPDEST ISZERO PUSH2 0x570 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x567 SWAP1 PUSH2 0x39D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH12 0x7C13BC4B2C133C560000000 PUSH1 0x9 SLOAD LT ISZERO PUSH2 0x5E4 JUMPI PUSH3 0x15180 PUSH10 0x21E19E0C9BAB2400000 PUSH1 0xA SLOAD PUSH1 0xB SLOAD TIMESTAMP PUSH2 0x5A6 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST PUSH2 0x5B0 SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST PUSH2 0x5BA SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST PUSH2 0x5C4 SWAP2 SWAP1 PUSH2 0x3BE2 JUMP JUMPDEST PUSH1 0x9 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x5D5 SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP TIMESTAMP PUSH1 0xB DUP2 SWAP1 SSTORE POP JUMPDEST PUSH1 0x0 DUP1 JUMPDEST DUP5 DUP5 SWAP1 POP DUP2 LT ISZERO PUSH2 0x6C9 JUMPI PUSH2 0x627 DUP6 DUP6 DUP4 DUP2 DUP2 LT PUSH2 0x609 JUMPI PUSH2 0x608 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x61E SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH2 0xFFFF AND PUSH2 0x197D JUMP JUMPDEST ISZERO PUSH2 0x673 JUMPI PUSH2 0x661 DUP6 DUP6 DUP4 DUP2 DUP2 LT PUSH2 0x642 JUMPI PUSH2 0x641 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x657 SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH2 0xFFFF AND DUP5 PUSH2 0x1B59 JUMP JUMPDEST DUP3 PUSH2 0x66C SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP2 POP PUSH2 0x6B6 JUMP JUMPDEST PUSH2 0x6A8 DUP6 DUP6 DUP4 DUP2 DUP2 LT PUSH2 0x689 JUMPI PUSH2 0x688 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x69E SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH2 0xFFFF AND DUP5 PUSH2 0x20A4 JUMP JUMPDEST DUP3 PUSH2 0x6B3 SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP2 POP JUMPDEST DUP1 DUP1 PUSH2 0x6C1 SWAP1 PUSH2 0x3DA8 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x5E8 JUMP JUMPDEST POP PUSH1 0x0 DUP2 EQ ISZERO PUSH2 0x6D9 JUMPI POP PUSH2 0x771 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x40C10F19 PUSH2 0x71F PUSH2 0x286A JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x73D SWAP3 SWAP2 SWAP1 PUSH2 0x387E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x757 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x76B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x7E6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7DD SWAP1 PUSH2 0x3994 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x801 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x81F PUSH2 0x18C1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x875 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x86C SWAP1 PUSH2 0x3A14 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 ISZERO PUSH2 0x888 JUMPI PUSH2 0x883 PUSH2 0x2872 JUMP JUMPDEST PUSH2 0x891 JUMP JUMPDEST PUSH2 0x890 PUSH2 0x2915 JUMP JUMPDEST JUMPDEST POP JUMP JUMPDEST PUSH1 0x8 DUP2 JUMP JUMPDEST PUSH10 0x21E19E0C9BAB2400000 DUP2 JUMP JUMPDEST PUSH1 0x14 DUP2 JUMP JUMPDEST PUSH3 0x2A300 DUP2 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH2 0xFFFF AND SWAP1 DUP1 PUSH1 0x0 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x0 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP4 JUMP JUMPDEST PUSH1 0xC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x6 SLOAD EQ ISZERO PUSH2 0x949 JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0xA5F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x6 SLOAD PUSH4 0xFFFFFFFF DUP5 AND PUSH2 0x95F SWAP2 SWAP1 PUSH2 0x3E29 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x20 DUP5 SWAP1 SHR SWAP4 POP PUSH1 0x0 PUSH1 0x3 PUSH1 0x8 PUSH2 0x97A SWAP2 SWAP1 PUSH2 0x3CA1 JUMP JUMPDEST PUSH1 0xFF AND SWAP1 POP JUMPDEST PUSH1 0x8 PUSH1 0xFF AND DUP2 GT PUSH2 0xA57 JUMPI DUP1 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 POP PUSH2 0x9AD SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST DUP3 PUSH2 0x9B8 SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP2 POP DUP2 DUP4 LT PUSH2 0x9C6 JUMPI PUSH2 0xA44 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 POP DUP7 PUSH2 0x9FB SWAP2 SWAP1 PUSH2 0x3E29 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0xA0C JUMPI PUSH2 0xA0B PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP4 POP POP POP POP PUSH2 0xA5F JUMP JUMPDEST DUP1 DUP1 PUSH2 0xA4F SWAP1 PUSH2 0x3DA8 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x980 JUMP JUMPDEST POP PUSH1 0x0 SWAP3 POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0xB SLOAD DUP2 JUMP JUMPDEST PUSH1 0xC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0xAD5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xACC SWAP1 PUSH2 0x3974 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xADF PUSH2 0x2FB3 JUMP JUMPDEST PUSH2 0xAE7 PUSH2 0x2FB3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 POP JUMPDEST DUP7 DUP7 SWAP1 POP DUP2 LT ISZERO PUSH2 0x131E JUMPI DUP7 DUP7 DUP3 DUP2 DUP2 LT PUSH2 0xB0D JUMPI PUSH2 0xB0C PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD SWAP5 POP PUSH2 0xB1F DUP6 PUSH2 0x197D JUMP JUMPDEST ISZERO PUSH2 0xDCE JUMPI PUSH1 0x3 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0xFFFF AND PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP SWAP4 POP PUSH2 0xBFA PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x40 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xC6B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC62 SWAP1 PUSH2 0x39B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xB88D4FDE ADDRESS PUSH2 0xCB2 PUSH2 0x286A JUMP JUMPDEST DUP9 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCD1 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xCEB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xCFF JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x3 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH2 0xFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x0 DUP3 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x0 DUP3 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE POP POP PUSH1 0x1 PUSH1 0xA PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xD85 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH32 0xE9D8194F830C159F3FA36A3722D86930569B5A9CE5265DDA89FD43F488076165 DUP6 PUSH1 0x0 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0xDC1 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3AE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0x130B JUMP JUMPDEST PUSH2 0xDD7 DUP6 PUSH2 0x29B6 JUMP JUMPDEST PUSH1 0xFF AND SWAP2 POP PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0xE14 JUMPI PUSH2 0xE13 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0xFFFF AND PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP SWAP4 POP PUSH2 0xEE1 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x40 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xF52 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF49 SWAP1 PUSH2 0x39B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x6 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xF64 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xB88D4FDE ADDRESS PUSH2 0xFB2 PUSH2 0x286A JUMP JUMPDEST DUP9 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFD1 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xFEB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xFFF JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0x4 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 POP PUSH2 0x1039 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x104A JUMPI PUSH2 0x1049 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0xFFFF AND PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP SWAP3 POP DUP3 PUSH1 0x4 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x1148 JUMPI PUSH2 0x1147 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP PUSH1 0x5 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x5 PUSH1 0x0 DUP6 PUSH1 0x0 ADD MLOAD PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD DUP1 PUSH2 0x1248 JUMPI PUSH2 0x1247 PUSH2 0x3EB8 JUMP JUMPDEST JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH2 0xFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x0 DUP3 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x0 DUP3 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE POP POP SWAP1 SSTORE PUSH1 0x5 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH32 0xF65D435564B020FCB9D6F56608C9333A6CF42914EEDDFBAC41A764DA73667DE1 DUP6 PUSH1 0x0 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x1302 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3AE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST DUP1 DUP1 PUSH2 0x1316 SWAP1 PUSH2 0x3DA8 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xAEF JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x5 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x134D PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x136B PUSH2 0x18C1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x13C1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13B8 SWAP1 PUSH2 0x3A14 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x13CB PUSH1 0x0 PUSH2 0x2A85 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x13D5 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x13F3 PUSH2 0x18C1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1449 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1440 SWAP1 PUSH2 0x3A14 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xC 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 0xA SLOAD DUP2 JUMP JUMPDEST PUSH2 0x1474 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x1501 JUMPI POP PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x14E9 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST PUSH2 0x1540 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1537 SWAP1 PUSH2 0x3A34 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP3 SWAP1 POP DUP2 LT ISZERO PUSH2 0x18AB JUMPI PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x158F PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x17B4 JUMPI PUSH2 0x15B2 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x6352211E DUP6 DUP6 DUP6 DUP2 DUP2 LT PUSH2 0x1619 JUMPI PUSH2 0x1618 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x162E SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x164A SWAP2 SWAP1 PUSH2 0x3A74 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1662 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1676 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x169A SWAP2 SWAP1 PUSH2 0x31BC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x16F0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16E7 SWAP1 PUSH2 0x3A54 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD PUSH2 0x1736 PUSH2 0x286A JUMP JUMPDEST ADDRESS DUP7 DUP7 DUP7 DUP2 DUP2 LT PUSH2 0x174A JUMPI PUSH2 0x1749 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x175F SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x177D SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x37FD JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1797 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x17AB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH2 0x17EE JUMP JUMPDEST PUSH1 0x0 DUP4 DUP4 DUP4 DUP2 DUP2 LT PUSH2 0x17C9 JUMPI PUSH2 0x17C8 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x17DE SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH2 0xFFFF AND EQ ISZERO PUSH2 0x17ED JUMPI PUSH2 0x1898 JUMP JUMPDEST JUMPDEST PUSH2 0x1822 DUP4 DUP4 DUP4 DUP2 DUP2 LT PUSH2 0x1804 JUMPI PUSH2 0x1803 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1819 SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH2 0xFFFF AND PUSH2 0x197D JUMP JUMPDEST ISZERO PUSH2 0x1861 JUMPI PUSH2 0x185C DUP5 DUP5 DUP5 DUP5 DUP2 DUP2 LT PUSH2 0x183E JUMPI PUSH2 0x183D PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1853 SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH2 0xFFFF AND PUSH2 0x2B49 JUMP JUMPDEST PUSH2 0x1897 JUMP JUMPDEST PUSH2 0x1896 DUP5 DUP5 DUP5 DUP5 DUP2 DUP2 LT PUSH2 0x1878 JUMPI PUSH2 0x1877 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x188D SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH2 0xFFFF AND PUSH2 0x2D52 JUMP JUMPDEST JUMPDEST JUMPDEST DUP1 DUP1 PUSH2 0x18A3 SWAP1 PUSH2 0x3DA8 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1543 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH12 0x7C13BC4B2C133C560000000 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x7 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1912 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP2 POP POP DUP1 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH2 0xFFFF AND SWAP1 DUP1 PUSH1 0x0 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x0 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP4 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xE05C57BF DUP4 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19DA SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH2 0x140 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x19F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1A07 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1A2B SWAP2 SWAP1 PUSH2 0x33AB JUMP JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 SWAP7 SWAP8 POP SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 SWAP7 POP SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 POP SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 POP SWAP1 SWAP2 SWAP3 SWAP4 POP SWAP1 SWAP2 SWAP3 POP SWAP1 SWAP2 POP SWAP1 POP POP DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1A69 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1A87 PUSH2 0x18C1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1ADD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AD4 SWAP1 PUSH2 0x3A14 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1B4D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B44 SWAP1 PUSH2 0x3954 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1B56 DUP2 PUSH2 0x2A85 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x3 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0xFFFF AND PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP SWAP1 POP PUSH2 0x1C32 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x40 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1CA3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C9A SWAP1 PUSH2 0x39B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 DUP1 ISZERO PUSH2 0x1CCD JUMPI POP PUSH3 0x2A300 DUP2 PUSH1 0x20 ADD MLOAD PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND TIMESTAMP PUSH2 0x1CCB SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST LT JUMPDEST ISZERO PUSH2 0x1D0D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D04 SWAP1 PUSH2 0x39F4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH12 0x7C13BC4B2C133C560000000 PUSH1 0x9 SLOAD LT ISZERO PUSH2 0x1D69 JUMPI PUSH3 0x15180 PUSH10 0x21E19E0C9BAB2400000 DUP3 PUSH1 0x20 ADD MLOAD PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND TIMESTAMP PUSH2 0x1D4E SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST PUSH2 0x1D58 SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST PUSH2 0x1D62 SWAP2 SWAP1 PUSH2 0x3BE2 JUMP JUMPDEST SWAP2 POP PUSH2 0x1DD1 JUMP JUMPDEST PUSH1 0xB SLOAD DUP2 PUSH1 0x20 ADD MLOAD PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND GT ISZERO PUSH2 0x1D8C JUMPI PUSH1 0x0 SWAP2 POP PUSH2 0x1DD0 JUMP JUMPDEST PUSH3 0x15180 PUSH10 0x21E19E0C9BAB2400000 DUP3 PUSH1 0x20 ADD MLOAD PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xB SLOAD PUSH2 0x1DB9 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST PUSH2 0x1DC3 SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST PUSH2 0x1DCD SWAP2 SWAP1 PUSH2 0x3BE2 JUMP JUMPDEST SWAP2 POP JUMPDEST JUMPDEST DUP3 ISZERO PUSH2 0x1F1E JUMPI PUSH1 0x1 DUP1 PUSH2 0x1DE3 DUP7 PUSH2 0x2F05 JUMP JUMPDEST AND EQ ISZERO PUSH2 0x1DF8 JUMPI PUSH2 0x1DF3 DUP3 PUSH2 0x2F4B JUMP JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xB88D4FDE ADDRESS PUSH2 0x1E3F PUSH2 0x286A JUMP JUMPDEST DUP8 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E5E SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1E78 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1E8C JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x3 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH2 0xFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x0 DUP3 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x0 DUP3 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE POP POP PUSH1 0x1 PUSH1 0xA PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1F12 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0x2062 JUMP JUMPDEST PUSH2 0x1F3F PUSH1 0x64 PUSH1 0x14 DUP5 PUSH2 0x1F30 SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST PUSH2 0x1F3A SWAP2 SWAP1 PUSH2 0x3BE2 JUMP JUMPDEST PUSH2 0x2F4B JUMP JUMPDEST PUSH1 0x64 PUSH1 0x14 PUSH1 0x64 PUSH2 0x1F4F SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST DUP4 PUSH2 0x1F5A SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST PUSH2 0x1F64 SWAP2 SWAP1 PUSH2 0x3BE2 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP6 PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F95 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x3 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP JUMPDEST PUSH32 0xE9D8194F830C159F3FA36A3722D86930569B5A9CE5265DDA89FD43F488076165 DUP5 DUP4 DUP6 PUSH1 0x40 MLOAD PUSH2 0x2095 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3B18 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x6352211E DUP6 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2118 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2130 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2144 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2168 SWAP2 SWAP1 PUSH2 0x31BC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x21BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x21B5 SWAP1 PUSH2 0x3934 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x21C9 DUP5 PUSH2 0x29B6 JUMP JUMPDEST PUSH1 0xFF AND SWAP1 POP PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x2208 JUMPI PUSH2 0x2207 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0xFFFF AND PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP SWAP1 POP PUSH2 0x22D5 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x40 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2346 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x233D SWAP1 PUSH2 0x39B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x20 ADD MLOAD PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x8 SLOAD PUSH2 0x2364 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST DUP3 PUSH2 0x236F SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST SWAP3 POP DUP4 ISZERO PUSH2 0x26FA JUMPI DUP2 PUSH1 0x6 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2389 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xB88D4FDE ADDRESS PUSH2 0x23D7 PUSH2 0x286A JUMP JUMPDEST DUP9 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x23F6 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2410 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2424 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0x4 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 POP PUSH2 0x2460 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x2471 JUMPI PUSH2 0x2470 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0xFFFF AND PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP SWAP1 POP DUP1 PUSH1 0x4 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x256F JUMPI PUSH2 0x256E PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP PUSH1 0x5 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x5 PUSH1 0x0 DUP4 PUSH1 0x0 ADD MLOAD PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x4 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD DUP1 PUSH2 0x266F JUMPI PUSH2 0x266E PUSH2 0x3EB8 JUMP JUMPDEST JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH2 0xFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x0 DUP3 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x0 DUP3 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE POP POP SWAP1 SSTORE PUSH1 0x5 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE POP PUSH2 0x2827 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP7 PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x8 SLOAD PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x272B PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x4 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x277C JUMPI PUSH2 0x277B PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP JUMPDEST PUSH32 0xF65D435564B020FCB9D6F56608C9333A6CF42914EEDDFBAC41A764DA73667DE1 DUP6 DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0x285A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3B18 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x287A PUSH2 0xA6A JUMP JUMPDEST ISZERO PUSH2 0x28BA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x28B1 SWAP1 PUSH2 0x39D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x28FE PUSH2 0x286A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x290B SWAP2 SWAP1 PUSH2 0x37E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0x291D PUSH2 0xA6A JUMP JUMPDEST PUSH2 0x295C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2953 SWAP1 PUSH2 0x3914 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x299F PUSH2 0x286A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29AC SWAP2 SWAP1 PUSH2 0x37E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xE05C57BF DUP5 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2A14 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH2 0x140 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2A2D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2A41 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2A65 SWAP2 SWAP1 PUSH2 0x33AB JUMP JUMPDEST SWAP10 POP POP POP POP POP POP POP POP POP POP DUP1 PUSH1 0x8 PUSH2 0x2A7D SWAP2 SWAP1 PUSH2 0x3CA1 JUMP JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 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 PUSH2 0x2B51 PUSH2 0xA6A JUMP JUMPDEST ISZERO PUSH2 0x2B91 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2B88 SWAP1 PUSH2 0x39D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH12 0x7C13BC4B2C133C560000000 PUSH1 0x9 SLOAD LT ISZERO PUSH2 0x2C05 JUMPI PUSH3 0x15180 PUSH10 0x21E19E0C9BAB2400000 PUSH1 0xA SLOAD PUSH1 0xB SLOAD TIMESTAMP PUSH2 0x2BC7 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST PUSH2 0x2BD1 SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST PUSH2 0x2BDB SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST PUSH2 0x2BE5 SWAP2 SWAP1 PUSH2 0x3BE2 JUMP JUMPDEST PUSH1 0x9 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2BF6 SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP TIMESTAMP PUSH1 0xB DUP2 SWAP1 SSTORE POP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x3 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP PUSH1 0x1 PUSH1 0xA PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2D0C SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH32 0x6173E4D2D9DD52AAE0ED37AFED3ADCF924A490639B759CA93D32DC43366C17D2 DUP3 DUP3 TIMESTAMP PUSH1 0x40 MLOAD PUSH2 0x2D46 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x38A7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D5D DUP3 PUSH2 0x29B6 JUMP JUMPDEST PUSH1 0xFF AND SWAP1 POP DUP1 PUSH1 0x6 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2D74 SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x4 PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 POP PUSH1 0x5 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x4 PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP5 PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x8 SLOAD PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP POP PUSH32 0x6173E4D2D9DD52AAE0ED37AFED3ADCF924A490639B759CA93D32DC43366C17D2 DUP4 DUP4 PUSH1 0x8 SLOAD PUSH1 0x40 MLOAD PUSH2 0x2EF8 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x38A7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH1 0x0 ORIGIN PUSH1 0x1 NUMBER PUSH2 0x2F15 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST BLOCKHASH TIMESTAMP DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2F2B SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3794 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x6 SLOAD EQ ISZERO PUSH2 0x2F74 JUMPI DUP1 PUSH1 0x7 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2F68 SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0x2FB0 JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH1 0x7 SLOAD DUP3 PUSH2 0x2F85 SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST PUSH2 0x2F8F SWAP2 SWAP1 PUSH2 0x3BE2 JUMP JUMPDEST PUSH1 0x8 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2FA0 SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x7 DUP2 SWAP1 SSTORE POP JUMPDEST POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3009 DUP2 PUSH2 0x4174 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x301E DUP2 PUSH2 0x4174 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x303A JUMPI PUSH2 0x3039 PUSH2 0x3F1B JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3057 JUMPI PUSH2 0x3056 PUSH2 0x3F16 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x3073 JUMPI PUSH2 0x3072 PUSH2 0x3F20 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x3090 JUMPI PUSH2 0x308F PUSH2 0x3F1B JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x30AD JUMPI PUSH2 0x30AC PUSH2 0x3F16 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x30C9 JUMPI PUSH2 0x30C8 PUSH2 0x3F20 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x30DF DUP2 PUSH2 0x418B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x30F4 DUP2 PUSH2 0x418B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x3110 JUMPI PUSH2 0x310F PUSH2 0x3F1B JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x312D JUMPI PUSH2 0x312C PUSH2 0x3F16 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x3149 JUMPI PUSH2 0x3148 PUSH2 0x3F20 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x315F DUP2 PUSH2 0x41A2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3174 DUP2 PUSH2 0x41B9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x3189 DUP2 PUSH2 0x41D0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x31A5 JUMPI PUSH2 0x31A4 PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x31B3 DUP5 DUP3 DUP6 ADD PUSH2 0x2FFA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x31D2 JUMPI PUSH2 0x31D1 PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x31E0 DUP5 DUP3 DUP6 ADD PUSH2 0x300F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x3205 JUMPI PUSH2 0x3204 PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3213 DUP9 DUP3 DUP10 ADD PUSH2 0x2FFA JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x3224 DUP9 DUP3 DUP10 ADD PUSH2 0x2FFA JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0x3235 DUP9 DUP3 DUP10 ADD PUSH2 0x3165 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3256 JUMPI PUSH2 0x3255 PUSH2 0x3F25 JUMP JUMPDEST JUMPDEST PUSH2 0x3262 DUP9 DUP3 DUP10 ADD PUSH2 0x30FA JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x328A JUMPI PUSH2 0x3289 PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3298 DUP7 DUP3 DUP8 ADD PUSH2 0x2FFA JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x32B9 JUMPI PUSH2 0x32B8 PUSH2 0x3F25 JUMP JUMPDEST JUMPDEST PUSH2 0x32C5 DUP7 DUP3 DUP8 ADD PUSH2 0x3024 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x32EA JUMPI PUSH2 0x32E9 PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3308 JUMPI PUSH2 0x3307 PUSH2 0x3F25 JUMP JUMPDEST JUMPDEST PUSH2 0x3314 DUP7 DUP3 DUP8 ADD PUSH2 0x3024 JUMP JUMPDEST SWAP4 POP SWAP4 POP POP PUSH1 0x20 PUSH2 0x3327 DUP7 DUP3 DUP8 ADD PUSH2 0x30D0 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3348 JUMPI PUSH2 0x3347 PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3366 JUMPI PUSH2 0x3365 PUSH2 0x3F25 JUMP JUMPDEST JUMPDEST PUSH2 0x3372 DUP6 DUP3 DUP7 ADD PUSH2 0x307A JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3394 JUMPI PUSH2 0x3393 PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x33A2 DUP5 DUP3 DUP6 ADD PUSH2 0x30D0 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x140 DUP12 DUP14 SUB SLT ISZERO PUSH2 0x33CF JUMPI PUSH2 0x33CE PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x33DD DUP14 DUP3 DUP15 ADD PUSH2 0x30E5 JUMP JUMPDEST SWAP11 POP POP PUSH1 0x20 PUSH2 0x33EE DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP10 POP POP PUSH1 0x40 PUSH2 0x33FF DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP9 POP POP PUSH1 0x60 PUSH2 0x3410 DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP8 POP POP PUSH1 0x80 PUSH2 0x3421 DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP7 POP POP PUSH1 0xA0 PUSH2 0x3432 DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP6 POP POP PUSH1 0xC0 PUSH2 0x3443 DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP5 POP POP PUSH1 0xE0 PUSH2 0x3454 DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP4 POP POP PUSH2 0x100 PUSH2 0x3466 DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP3 POP POP PUSH2 0x120 PUSH2 0x3478 DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP9 SWAP12 SWAP2 SWAP5 SWAP8 SWAP11 POP SWAP3 SWAP6 SWAP9 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x34A0 JUMPI PUSH2 0x349F PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x34AE DUP5 DUP3 DUP6 ADD PUSH2 0x3150 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x34CD JUMPI PUSH2 0x34CC PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x34DB DUP5 DUP3 DUP6 ADD PUSH2 0x3165 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x34FB JUMPI PUSH2 0x34FA PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3509 DUP6 DUP3 DUP7 ADD PUSH2 0x3165 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x351A DUP6 DUP3 DUP7 ADD PUSH2 0x3165 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x352D DUP2 PUSH2 0x3CD5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3544 PUSH2 0x353F DUP3 PUSH2 0x3CD5 JUMP JUMPDEST PUSH2 0x3DF1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3553 DUP2 PUSH2 0x3CE7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x356A PUSH2 0x3565 DUP3 PUSH2 0x3CF3 JUMP JUMPDEST PUSH2 0x3E03 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3579 DUP2 PUSH2 0x3CFD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3588 DUP2 PUSH2 0x3D84 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x359B PUSH1 0x14 DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x35A6 DUP3 PUSH2 0x3F3C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35BE PUSH1 0x17 DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x35C9 DUP3 PUSH2 0x3F65 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35E1 PUSH1 0x26 DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x35EC DUP3 PUSH2 0x3F8E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3604 PUSH1 0xF DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x360F DUP3 PUSH2 0x3FDD JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3627 PUSH1 0x23 DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x3632 DUP3 PUSH2 0x4006 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x364A PUSH1 0x12 DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x3655 DUP3 PUSH2 0x4055 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x366D PUSH1 0x10 DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x3678 DUP3 PUSH2 0x407E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3690 PUSH1 0x24 DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x369B DUP3 PUSH2 0x40A7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36B3 PUSH1 0x20 DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x36BE DUP3 PUSH2 0x40F6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36D6 PUSH1 0x1A DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x36E1 DUP3 PUSH2 0x411F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36F9 PUSH1 0x0 DUP4 PUSH2 0x3B6A JUMP JUMPDEST SWAP2 POP PUSH2 0x3704 DUP3 PUSH2 0x4148 JUMP JUMPDEST PUSH1 0x0 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x371C PUSH1 0xD DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x3727 DUP3 PUSH2 0x414B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x373B DUP2 PUSH2 0x3D29 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x374A DUP2 PUSH2 0x3D96 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3759 DUP2 PUSH2 0x3D57 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3770 PUSH2 0x376B DUP3 PUSH2 0x3D57 JUMP JUMPDEST PUSH2 0x3E1F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x377F DUP2 PUSH2 0x3D6E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x378E DUP2 PUSH2 0x3D61 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37A0 DUP3 DUP8 PUSH2 0x3533 JUMP JUMPDEST PUSH1 0x14 DUP3 ADD SWAP2 POP PUSH2 0x37B0 DUP3 DUP7 PUSH2 0x3559 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x37C0 DUP3 DUP6 PUSH2 0x375F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x37D0 DUP3 DUP5 PUSH2 0x375F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP DUP2 SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x37F7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3524 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3812 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x3524 JUMP JUMPDEST PUSH2 0x381F PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3524 JUMP JUMPDEST PUSH2 0x382C PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3741 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x3849 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x3524 JUMP JUMPDEST PUSH2 0x3856 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3524 JUMP JUMPDEST PUSH2 0x3863 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3750 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x3874 DUP2 PUSH2 0x36EC JUMP JUMPDEST SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3893 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x3524 JUMP JUMPDEST PUSH2 0x38A0 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3750 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x38BC PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x3524 JUMP JUMPDEST PUSH2 0x38C9 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3750 JUMP JUMPDEST PUSH2 0x38D6 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3750 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x38F3 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x354A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x390E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3570 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 0x392D DUP2 PUSH2 0x358E 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 0x394D DUP2 PUSH2 0x35B1 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 0x396D DUP2 PUSH2 0x35D4 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 0x398D DUP2 PUSH2 0x35F7 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 0x39AD DUP2 PUSH2 0x361A 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 0x39CD DUP2 PUSH2 0x363D 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 0x39ED DUP2 PUSH2 0x3660 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 0x3A0D DUP2 PUSH2 0x3683 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 0x3A2D DUP2 PUSH2 0x36A6 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 0x3A4D DUP2 PUSH2 0x36C9 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 0x3A6D DUP2 PUSH2 0x370F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3A89 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3741 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3AA4 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x3732 JUMP JUMPDEST PUSH2 0x3AB1 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3776 JUMP JUMPDEST PUSH2 0x3ABE PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3524 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3ADB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3750 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3AF6 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x3750 JUMP JUMPDEST PUSH2 0x3B03 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x357F JUMP JUMPDEST PUSH2 0x3B10 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x354A JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3B2D PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x3750 JUMP JUMPDEST PUSH2 0x3B3A PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3750 JUMP JUMPDEST PUSH2 0x3B47 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x354A JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3B64 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3785 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B97 DUP3 PUSH2 0x3D57 JUMP JUMPDEST SWAP2 POP PUSH2 0x3BA2 DUP4 PUSH2 0x3D57 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x3BD7 JUMPI PUSH2 0x3BD6 PUSH2 0x3E5A JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BED DUP3 PUSH2 0x3D57 JUMP JUMPDEST SWAP2 POP PUSH2 0x3BF8 DUP4 PUSH2 0x3D57 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3C08 JUMPI PUSH2 0x3C07 PUSH2 0x3E89 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C1E DUP3 PUSH2 0x3D57 JUMP JUMPDEST SWAP2 POP PUSH2 0x3C29 DUP4 PUSH2 0x3D57 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x3C62 JUMPI PUSH2 0x3C61 PUSH2 0x3E5A JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C78 DUP3 PUSH2 0x3D57 JUMP JUMPDEST SWAP2 POP PUSH2 0x3C83 DUP4 PUSH2 0x3D57 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x3C96 JUMPI PUSH2 0x3C95 PUSH2 0x3E5A JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3CAC DUP3 PUSH2 0x3D61 JUMP JUMPDEST SWAP2 POP PUSH2 0x3CB7 DUP4 PUSH2 0x3D61 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x3CCA JUMPI PUSH2 0x3CC9 PUSH2 0x3E5A JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3CE0 DUP3 PUSH2 0x3D37 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFFFF 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 PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH10 0xFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D8F DUP3 PUSH2 0x3D57 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DA1 DUP3 PUSH2 0x3D29 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DB3 DUP3 PUSH2 0x3D57 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x3DE6 JUMPI PUSH2 0x3DE5 PUSH2 0x3E5A JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DFC DUP3 PUSH2 0x3E0D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E18 DUP3 PUSH2 0x3F2F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E34 DUP3 PUSH2 0x3D57 JUMP JUMPDEST SWAP2 POP PUSH2 0x3E3F DUP4 PUSH2 0x3D57 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3E4F JUMPI PUSH2 0x3E4E PUSH2 0x3E89 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 0x31 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 PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x60 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x41494E5420412050415254204F4620544845205041434B000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5245534355452044495341424C45440000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x43616E6E6F742073656E6420746F6B656E7320746F204261726E206469726563 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x746C790000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5357495045522C204E4F2053574950494E470000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x474F4E4E4120424520434F4C4420574954484F55542054574F20444159275320 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x574F4F4C00000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x444F4E54204749564520594F555220544F4B454E532041574159000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST POP JUMP JUMPDEST PUSH32 0x41494E5420594F20544F4B454E00000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x417D DUP2 PUSH2 0x3CD5 JUMP JUMPDEST DUP2 EQ PUSH2 0x4188 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x4194 DUP2 PUSH2 0x3CE7 JUMP JUMPDEST DUP2 EQ PUSH2 0x419F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x41AB DUP2 PUSH2 0x3D29 JUMP JUMPDEST DUP2 EQ PUSH2 0x41B6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x41C2 DUP2 PUSH2 0x3D57 JUMP JUMPDEST DUP2 EQ PUSH2 0x41CD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x41D9 DUP2 PUSH2 0x3D61 JUMP JUMPDEST DUP2 EQ PUSH2 0x41E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LT JUMPDEST 0xBA ADDRESS DIFFICULTY 0xAA 0xBD 0xAA PUSH27 0xCEF578B27CC0FF0E7A1A36EA1A2DC980B795594668657864736F6C PUSH4 0x43000807 STOP CALLER ",
"sourceMap": "233:13170:16:-:0;;;1175:1;1141:35;;1272:1;1236:37;;1361:1;1331:31;;2167:5;2139:33;;;;;;;;;;;;;;;;;;;;2291:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;921:32:0;940:12;:10;;;:12;;:::i;:::-;921:18;;;:32;;:::i;:::-;991:5:1;981:7;;:15;;;;;;;;;;;;;;;;;;2355:6:16;2341:5;;:21;;;;;;;;;;;;;;;;;;2380:5;2368:4;;:18;;;;;;;;;;;;;;;;;;2291:100;;233:13170;;640:96:12;693:7;719:10;712:17;;640:96;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;7:143:22:-;64:5;95:6;89:13;80:22;;111:33;138:5;111:33;:::i;:::-;7:143;;;;:::o;156:507::-;235:6;243;292:2;280:9;271:7;267:23;263:32;260:119;;;298:79;;:::i;:::-;260:119;418:1;443:64;499:7;490:6;479:9;475:22;443:64;:::i;:::-;433:74;;389:128;556:2;582:64;638:7;629:6;618:9;614:22;582:64;:::i;:::-;572:74;;527:129;156:507;;;;;:::o;750:96::-;787:7;816:24;834:5;816:24;:::i;:::-;805:35;;750:96;;;:::o;852:126::-;889:7;929:42;922:5;918:54;907:65;;852:126;;;:::o;1107:117::-;1216:1;1213;1206:12;1230:122;1303:24;1321:5;1303:24;:::i;:::-;1296:5;1293:35;1283:63;;1342:1;1339;1332:12;1283:63;1230:122;:::o;233:13170:16:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@DAILY_WOOL_RATE_2843": {
"entryPoint": 2201,
"id": 2843,
"parameterSlots": 0,
"returnSlots": 0
},
"@MAXIMUM_GLOBAL_WOOL_2852": {
"entryPoint": 6321,
"id": 2852,
"parameterSlots": 0,
"returnSlots": 0
},
"@MAX_ALPHA_2779": {
"entryPoint": 2196,
"id": 2779,
"parameterSlots": 0,
"returnSlots": 0
},
"@MINIMUM_TO_EXIT_2846": {
"entryPoint": 2220,
"id": 2846,
"parameterSlots": 0,
"returnSlots": 0
},
"@WOOL_CLAIM_TAX_PERCENTAGE_2849": {
"entryPoint": 2215,
"id": 2849,
"parameterSlots": 0,
"returnSlots": 0
},
"@_addSheepToBarn_3026": {
"entryPoint": 11081,
"id": 3026,
"parameterSlots": 2,
"returnSlots": 0
},
"@_addWolfToPack_3077": {
"entryPoint": 11602,
"id": 3077,
"parameterSlots": 2,
"returnSlots": 0
},
"@_alphaForWolf_3779": {
"entryPoint": 10678,
"id": 3779,
"parameterSlots": 1,
"returnSlots": 1
},
"@_claimSheepFromBarn_3314": {
"entryPoint": 7001,
"id": 3314,
"parameterSlots": 2,
"returnSlots": 1
},
"@_claimWolfFromPack_3467": {
"entryPoint": 8356,
"id": 3467,
"parameterSlots": 2,
"returnSlots": 1
},
"@_msgSender_2515": {
"entryPoint": 10346,
"id": 2515,
"parameterSlots": 0,
"returnSlots": 1
},
"@_pause_179": {
"entryPoint": 10354,
"id": 179,
"parameterSlots": 0,
"returnSlots": 0
},
"@_payWolfTax_3683": {
"entryPoint": 12107,
"id": 3683,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transferOwnership_103": {
"entryPoint": 10885,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@_unpause_195": {
"entryPoint": 10517,
"id": 195,
"parameterSlots": 0,
"returnSlots": 0
},
"@addManyToBarnAndPack_2985": {
"entryPoint": 5228,
"id": 2985,
"parameterSlots": 3,
"returnSlots": 0
},
"@barn_2821": {
"entryPoint": 2227,
"id": 2821,
"parameterSlots": 0,
"returnSlots": 0
},
"@claimManyFromBarnAndPack_3145": {
"entryPoint": 1320,
"id": 3145,
"parameterSlots": 3,
"returnSlots": 0
},
"@isSheep_3759": {
"entryPoint": 6525,
"id": 3759,
"parameterSlots": 1,
"returnSlots": 1
},
"@lastClaimTimestamp_2858": {
"entryPoint": 2688,
"id": 2858,
"parameterSlots": 0,
"returnSlots": 0
},
"@onERC721Received_3916": {
"entryPoint": 1910,
"id": 3916,
"parameterSlots": 5,
"returnSlots": 1
},
"@owner_32": {
"entryPoint": 6337,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@packIndices_2831": {
"entryPoint": 4903,
"id": 2831,
"parameterSlots": 0,
"returnSlots": 0
},
"@pack_2827": {
"entryPoint": 6390,
"id": 2827,
"parameterSlots": 0,
"returnSlots": 0
},
"@paused_140": {
"entryPoint": 2666,
"id": 140,
"parameterSlots": 0,
"returnSlots": 1
},
"@randomWolfOwner_3858": {
"entryPoint": 2356,
"id": 3858,
"parameterSlots": 1,
"returnSlots": 1
},
"@random_3887": {
"entryPoint": 12037,
"id": 3887,
"parameterSlots": 1,
"returnSlots": 1
},
"@renounceOwnership_60": {
"entryPoint": 4933,
"id": 60,
"parameterSlots": 0,
"returnSlots": 0
},
"@rescueEnabled_2861": {
"entryPoint": 2337,
"id": 2861,
"parameterSlots": 0,
"returnSlots": 0
},
"@rescue_3653": {
"entryPoint": 2694,
"id": 3653,
"parameterSlots": 2,
"returnSlots": 0
},
"@setPaused_3742": {
"entryPoint": 2041,
"id": 3742,
"parameterSlots": 1,
"returnSlots": 0
},
"@setRescueEnabled_3725": {
"entryPoint": 5069,
"id": 3725,
"parameterSlots": 1,
"returnSlots": 0
},
"@totalAlphaStaked_2834": {
"entryPoint": 4927,
"id": 2834,
"parameterSlots": 0,
"returnSlots": 0
},
"@totalSheepStaked_2856": {
"entryPoint": 5222,
"id": 2856,
"parameterSlots": 0,
"returnSlots": 0
},
"@totalWoolEarned_2854": {
"entryPoint": 2660,
"id": 2854,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_83": {
"entryPoint": 6753,
"id": 83,
"parameterSlots": 1,
"returnSlots": 0
},
"@unaccountedRewards_2837": {
"entryPoint": 6378,
"id": 2837,
"parameterSlots": 0,
"returnSlots": 0
},
"@woolPerAlpha_2840": {
"entryPoint": 6384,
"id": 2840,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 12282,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address_fromMemory": {
"entryPoint": 12303,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_array$_t_uint16_$dyn_calldata_ptr": {
"entryPoint": 12324,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_t_array$_t_uint256_$dyn_calldata_ptr": {
"entryPoint": 12410,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_t_bool": {
"entryPoint": 12496,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool_fromMemory": {
"entryPoint": 12517,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_calldata_ptr": {
"entryPoint": 12538,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_t_uint16": {
"entryPoint": 12624,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 12645,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint8_fromMemory": {
"entryPoint": 12666,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 12687,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address_fromMemory": {
"entryPoint": 12732,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr": {
"entryPoint": 12777,
"id": null,
"parameterSlots": 2,
"returnSlots": 5
},
"abi_decode_tuple_t_addresst_array$_t_uint16_$dyn_calldata_ptr": {
"entryPoint": 12913,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_array$_t_uint16_$dyn_calldata_ptrt_bool": {
"entryPoint": 13009,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_array$_t_uint256_$dyn_calldata_ptr": {
"entryPoint": 13105,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bool": {
"entryPoint": 13182,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_boolt_uint8t_uint8t_uint8t_uint8t_uint8t_uint8t_uint8t_uint8t_uint8_fromMemory": {
"entryPoint": 13227,
"id": null,
"parameterSlots": 2,
"returnSlots": 10
},
"abi_decode_tuple_t_uint16": {
"entryPoint": 13450,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 13495,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256t_uint256": {
"entryPoint": 13540,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 13604,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_address_to_t_address_nonPadded_inplace_fromStack": {
"entryPoint": 13619,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 13642,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack": {
"entryPoint": 13657,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes4_to_t_bytes4_fromStack": {
"entryPoint": 13680,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_rational_0_by_1_to_t_uint256_fromStack": {
"entryPoint": 13695,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13710,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e7292b082f3036cc2b242b13fb6ddd7676e4286eccda978ca4217fb6f525c0d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13745,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13780,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_3627869cbfbe47c04407c26ad3c50752ee4de310fc5c078427516c3010a4dded_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13815,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_5a993494cb95a3b702ba42fc8c6e4dd357d6fab0b0ae3d8178fe5bb95577142f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13850,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_653c04d3397d6f715d1629316c08451dddb4151ebeec4cfcffa5b5e49763a7b8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13885,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13920,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6ccb350b77038131fd82d0643bb472d3a648c0583f20a0e746f08be5b652e50d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13955,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13990,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_bfa119aedd29ad111c5c0b27aef45bcf6598aad4dca6f1ee9742c2c7fb594896_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14025,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 14060,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_ecf9aedd6ac346fea1d629ae44723c1fa8ccb4a8f4571e6d9d4c6d3096948e0f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14095,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint16_to_t_uint16_fromStack": {
"entryPoint": 14130,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint16_to_t_uint256_fromStack": {
"entryPoint": 14145,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 14160,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack": {
"entryPoint": 14175,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint80_to_t_uint80_fromStack": {
"entryPoint": 14198,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 14213,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_address_t_bytes32_t_uint256_t_uint256__to_t_address_t_bytes32_t_uint256_t_uint256__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 14228,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 14306,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint16__to_t_address_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 14333,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed": {
"entryPoint": 14388,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 14462,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 14503,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 14558,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed": {
"entryPoint": 14585,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14612,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e7292b082f3036cc2b242b13fb6ddd7676e4286eccda978ca4217fb6f525c0d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14644,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14676,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3627869cbfbe47c04407c26ad3c50752ee4de310fc5c078427516c3010a4dded__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14708,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5a993494cb95a3b702ba42fc8c6e4dd357d6fab0b0ae3d8178fe5bb95577142f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14740,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_653c04d3397d6f715d1629316c08451dddb4151ebeec4cfcffa5b5e49763a7b8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14772,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14804,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6ccb350b77038131fd82d0643bb472d3a648c0583f20a0e746f08be5b652e50d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14836,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14868,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_bfa119aedd29ad111c5c0b27aef45bcf6598aad4dca6f1ee9742c2c7fb594896__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14900,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_ecf9aedd6ac346fea1d629ae44723c1fa8ccb4a8f4571e6d9d4c6d3096948e0f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14932,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint16__to_t_uint256__fromStack_reversed": {
"entryPoint": 14964,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint16_t_uint80_t_address__to_t_uint16_t_uint80_t_address__fromStack_reversed": {
"entryPoint": 14991,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 15046,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_rational_0_by_1_t_bool__to_t_uint256_t_uint256_t_bool__fromStack_reversed": {
"entryPoint": 15073,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_uint256_t_bool__to_t_uint256_t_uint256_t_bool__fromStack_reversed": {
"entryPoint": 15128,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 15183,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 15210,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 15227,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 15244,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 15330,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 15379,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 15469,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint8": {
"entryPoint": 15521,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 15573,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 15591,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes32": {
"entryPoint": 15603,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 15613,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint16": {
"entryPoint": 15657,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 15671,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 15703,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 15713,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint80": {
"entryPoint": 15726,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_rational_0_by_1_to_t_uint256": {
"entryPoint": 15748,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint16_to_t_uint256": {
"entryPoint": 15766,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 15784,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"leftAlign_t_address": {
"entryPoint": 15857,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"leftAlign_t_bytes32": {
"entryPoint": 15875,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"leftAlign_t_uint160": {
"entryPoint": 15885,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"leftAlign_t_uint256": {
"entryPoint": 15903,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 15913,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 15962,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 16009,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x31": {
"entryPoint": 16056,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 16103,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490": {
"entryPoint": 16150,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 16155,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef": {
"entryPoint": 16160,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 16165,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 16170,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"shift_left_96": {
"entryPoint": 16175,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a": {
"entryPoint": 16188,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1e7292b082f3036cc2b242b13fb6ddd7676e4286eccda978ca4217fb6f525c0d": {
"entryPoint": 16229,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 16270,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_3627869cbfbe47c04407c26ad3c50752ee4de310fc5c078427516c3010a4dded": {
"entryPoint": 16349,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_5a993494cb95a3b702ba42fc8c6e4dd357d6fab0b0ae3d8178fe5bb95577142f": {
"entryPoint": 16390,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_653c04d3397d6f715d1629316c08451dddb4151ebeec4cfcffa5b5e49763a7b8": {
"entryPoint": 16469,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a": {
"entryPoint": 16510,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6ccb350b77038131fd82d0643bb472d3a648c0583f20a0e746f08be5b652e50d": {
"entryPoint": 16551,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 16630,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_bfa119aedd29ad111c5c0b27aef45bcf6598aad4dca6f1ee9742c2c7fb594896": {
"entryPoint": 16671,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470": {
"entryPoint": 16712,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_ecf9aedd6ac346fea1d629ae44723c1fa8ccb4a8f4571e6d9d4c6d3096948e0f": {
"entryPoint": 16715,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 16756,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 16779,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint16": {
"entryPoint": 16802,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 16825,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint8": {
"entryPoint": 16848,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:33670:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:22",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:22"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:22"
},
"nodeType": "YulFunctionCall",
"src": "78:20:22"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:22"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:22"
},
"nodeType": "YulFunctionCall",
"src": "107:33:22"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:22"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:22",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:22",
"type": ""
}
],
"src": "7:139:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "215:80:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "225:22:22",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "240:6:22"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "234:5:22"
},
"nodeType": "YulFunctionCall",
"src": "234:13:22"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "225:5:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "283:5:22"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "256:26:22"
},
"nodeType": "YulFunctionCall",
"src": "256:33:22"
},
"nodeType": "YulExpressionStatement",
"src": "256:33:22"
}
]
},
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "193:6:22",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "201:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "209:5:22",
"type": ""
}
],
"src": "152:143:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "406:478:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "455:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "457:77:22"
},
"nodeType": "YulFunctionCall",
"src": "457:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "457:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "434:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "442:4:22",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "430:3:22"
},
"nodeType": "YulFunctionCall",
"src": "430:17:22"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "449:3:22"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "426:3:22"
},
"nodeType": "YulFunctionCall",
"src": "426:27:22"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "419:6:22"
},
"nodeType": "YulFunctionCall",
"src": "419:35:22"
},
"nodeType": "YulIf",
"src": "416:122:22"
},
{
"nodeType": "YulAssignment",
"src": "547:30:22",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "570:6:22"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "557:12:22"
},
"nodeType": "YulFunctionCall",
"src": "557:20:22"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "547:6:22"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "620:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490",
"nodeType": "YulIdentifier",
"src": "622:77:22"
},
"nodeType": "YulFunctionCall",
"src": "622:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "622:79:22"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "592:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "600:18:22",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "589:2:22"
},
"nodeType": "YulFunctionCall",
"src": "589:30:22"
},
"nodeType": "YulIf",
"src": "586:117:22"
},
{
"nodeType": "YulAssignment",
"src": "712:29:22",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "728:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:4:22",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "724:3:22"
},
"nodeType": "YulFunctionCall",
"src": "724:17:22"
},
"variableNames": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "712:8:22"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "795:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulIdentifier",
"src": "797:77:22"
},
"nodeType": "YulFunctionCall",
"src": "797:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "797:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "760:8:22"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "774:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "782:4:22",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "770:3:22"
},
"nodeType": "YulFunctionCall",
"src": "770:17:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "756:3:22"
},
"nodeType": "YulFunctionCall",
"src": "756:32:22"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "790:3:22"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "753:2:22"
},
"nodeType": "YulFunctionCall",
"src": "753:41:22"
},
"nodeType": "YulIf",
"src": "750:128:22"
}
]
},
"name": "abi_decode_t_array$_t_uint16_$dyn_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "373:6:22",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "381:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "arrayPos",
"nodeType": "YulTypedName",
"src": "389:8:22",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "399:6:22",
"type": ""
}
],
"src": "317:567:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "997:478:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1046:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "1048:77:22"
},
"nodeType": "YulFunctionCall",
"src": "1048:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "1048:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1025:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1033:4:22",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1021:3:22"
},
"nodeType": "YulFunctionCall",
"src": "1021:17:22"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1040:3:22"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1017:3:22"
},
"nodeType": "YulFunctionCall",
"src": "1017:27:22"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1010:6:22"
},
"nodeType": "YulFunctionCall",
"src": "1010:35:22"
},
"nodeType": "YulIf",
"src": "1007:122:22"
},
{
"nodeType": "YulAssignment",
"src": "1138:30:22",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1161:6:22"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1148:12:22"
},
"nodeType": "YulFunctionCall",
"src": "1148:20:22"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1138:6:22"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1211:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490",
"nodeType": "YulIdentifier",
"src": "1213:77:22"
},
"nodeType": "YulFunctionCall",
"src": "1213:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "1213:79:22"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1183:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1191:18:22",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1180:2:22"
},
"nodeType": "YulFunctionCall",
"src": "1180:30:22"
},
"nodeType": "YulIf",
"src": "1177:117:22"
},
{
"nodeType": "YulAssignment",
"src": "1303:29:22",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1319:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1327:4:22",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1315:3:22"
},
"nodeType": "YulFunctionCall",
"src": "1315:17:22"
},
"variableNames": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "1303:8:22"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1386:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulIdentifier",
"src": "1388:77:22"
},
"nodeType": "YulFunctionCall",
"src": "1388:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "1388:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "1351:8:22"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1365:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1373:4:22",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1361:3:22"
},
"nodeType": "YulFunctionCall",
"src": "1361:17:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1347:3:22"
},
"nodeType": "YulFunctionCall",
"src": "1347:32:22"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1381:3:22"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1344:2:22"
},
"nodeType": "YulFunctionCall",
"src": "1344:41:22"
},
"nodeType": "YulIf",
"src": "1341:128:22"
}
]
},
"name": "abi_decode_t_array$_t_uint256_$dyn_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "964:6:22",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "972:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "arrayPos",
"nodeType": "YulTypedName",
"src": "980:8:22",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "990:6:22",
"type": ""
}
],
"src": "907:568:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1530:84:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1540:29:22",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1562:6:22"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1549:12:22"
},
"nodeType": "YulFunctionCall",
"src": "1549:20:22"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1540:5:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1602:5:22"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "1578:23:22"
},
"nodeType": "YulFunctionCall",
"src": "1578:30:22"
},
"nodeType": "YulExpressionStatement",
"src": "1578:30:22"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1508:6:22",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1516:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1524:5:22",
"type": ""
}
],
"src": "1481:133:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1680:77:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1690:22:22",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1705:6:22"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1699:5:22"
},
"nodeType": "YulFunctionCall",
"src": "1699:13:22"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1690:5:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1745:5:22"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "1721:23:22"
},
"nodeType": "YulFunctionCall",
"src": "1721:30:22"
},
"nodeType": "YulExpressionStatement",
"src": "1721:30:22"
}
]
},
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1658:6:22",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1666:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1674:5:22",
"type": ""
}
],
"src": "1620:137:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1850:478:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1899:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "1901:77:22"
},
"nodeType": "YulFunctionCall",
"src": "1901:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "1901:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1878:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1886:4:22",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1874:3:22"
},
"nodeType": "YulFunctionCall",
"src": "1874:17:22"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1893:3:22"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1870:3:22"
},
"nodeType": "YulFunctionCall",
"src": "1870:27:22"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1863:6:22"
},
"nodeType": "YulFunctionCall",
"src": "1863:35:22"
},
"nodeType": "YulIf",
"src": "1860:122:22"
},
{
"nodeType": "YulAssignment",
"src": "1991:30:22",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2014:6:22"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2001:12:22"
},
"nodeType": "YulFunctionCall",
"src": "2001:20:22"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1991:6:22"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2064:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490",
"nodeType": "YulIdentifier",
"src": "2066:77:22"
},
"nodeType": "YulFunctionCall",
"src": "2066:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "2066:79:22"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2036:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2044:18:22",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2033:2:22"
},
"nodeType": "YulFunctionCall",
"src": "2033:30:22"
},
"nodeType": "YulIf",
"src": "2030:117:22"
},
{
"nodeType": "YulAssignment",
"src": "2156:29:22",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2172:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2180:4:22",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2168:3:22"
},
"nodeType": "YulFunctionCall",
"src": "2168:17:22"
},
"variableNames": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "2156:8:22"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2239:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulIdentifier",
"src": "2241:77:22"
},
"nodeType": "YulFunctionCall",
"src": "2241:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "2241:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "2204:8:22"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2218:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2226:4:22",
"type": "",
"value": "0x01"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "2214:3:22"
},
"nodeType": "YulFunctionCall",
"src": "2214:17:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2200:3:22"
},
"nodeType": "YulFunctionCall",
"src": "2200:32:22"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2234:3:22"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2197:2:22"
},
"nodeType": "YulFunctionCall",
"src": "2197:41:22"
},
"nodeType": "YulIf",
"src": "2194:128:22"
}
]
},
"name": "abi_decode_t_bytes_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1817:6:22",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1825:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "arrayPos",
"nodeType": "YulTypedName",
"src": "1833:8:22",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1843:6:22",
"type": ""
}
],
"src": "1776:552:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2385:86:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2395:29:22",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2417:6:22"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2404:12:22"
},
"nodeType": "YulFunctionCall",
"src": "2404:20:22"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2395:5:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2459:5:22"
}
],
"functionName": {
"name": "validator_revert_t_uint16",
"nodeType": "YulIdentifier",
"src": "2433:25:22"
},
"nodeType": "YulFunctionCall",
"src": "2433:32:22"
},
"nodeType": "YulExpressionStatement",
"src": "2433:32:22"
}
]
},
"name": "abi_decode_t_uint16",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2363:6:22",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2371:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2379:5:22",
"type": ""
}
],
"src": "2334:137:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2529:87:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2539:29:22",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2561:6:22"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2548:12:22"
},
"nodeType": "YulFunctionCall",
"src": "2548:20:22"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2539:5:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2604:5:22"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2577:26:22"
},
"nodeType": "YulFunctionCall",
"src": "2577:33:22"
},
"nodeType": "YulExpressionStatement",
"src": "2577:33:22"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2507:6:22",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2515:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2523:5:22",
"type": ""
}
],
"src": "2477:139:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2683:78:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2693:22:22",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2708:6:22"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2702:5:22"
},
"nodeType": "YulFunctionCall",
"src": "2702:13:22"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2693:5:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2749:5:22"
}
],
"functionName": {
"name": "validator_revert_t_uint8",
"nodeType": "YulIdentifier",
"src": "2724:24:22"
},
"nodeType": "YulFunctionCall",
"src": "2724:31:22"
},
"nodeType": "YulExpressionStatement",
"src": "2724:31:22"
}
]
},
"name": "abi_decode_t_uint8_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2661:6:22",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2669:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2677:5:22",
"type": ""
}
],
"src": "2622:139:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2833:263:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2879:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2881:77:22"
},
"nodeType": "YulFunctionCall",
"src": "2881:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "2881:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2854:7:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2863:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2850:3:22"
},
"nodeType": "YulFunctionCall",
"src": "2850:23:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2875:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2846:3:22"
},
"nodeType": "YulFunctionCall",
"src": "2846:32:22"
},
"nodeType": "YulIf",
"src": "2843:119:22"
},
{
"nodeType": "YulBlock",
"src": "2972:117:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2987:15:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3001:1:22",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2991:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3016:63:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3051:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3062:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3047:3:22"
},
"nodeType": "YulFunctionCall",
"src": "3047:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3071:7:22"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3026:20:22"
},
"nodeType": "YulFunctionCall",
"src": "3026:53:22"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3016:6:22"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2803:9:22",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2814:7:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2826:6:22",
"type": ""
}
],
"src": "2767:329:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3179:274:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3225:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3227:77:22"
},
"nodeType": "YulFunctionCall",
"src": "3227:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "3227:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3200:7:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3209:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3196:3:22"
},
"nodeType": "YulFunctionCall",
"src": "3196:23:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3221:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3192:3:22"
},
"nodeType": "YulFunctionCall",
"src": "3192:32:22"
},
"nodeType": "YulIf",
"src": "3189:119:22"
},
{
"nodeType": "YulBlock",
"src": "3318:128:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3333:15:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3347:1:22",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3337:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3362:74:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3408:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3419:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3404:3:22"
},
"nodeType": "YulFunctionCall",
"src": "3404:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3428:7:22"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "3372:31:22"
},
"nodeType": "YulFunctionCall",
"src": "3372:64:22"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3362:6:22"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3149:9:22",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3160:7:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3172:6:22",
"type": ""
}
],
"src": "3102:351:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3595:827:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3642:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3644:77:22"
},
"nodeType": "YulFunctionCall",
"src": "3644:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "3644:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3616:7:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3625:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3612:3:22"
},
"nodeType": "YulFunctionCall",
"src": "3612:23:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3637:3:22",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3608:3:22"
},
"nodeType": "YulFunctionCall",
"src": "3608:33:22"
},
"nodeType": "YulIf",
"src": "3605:120:22"
},
{
"nodeType": "YulBlock",
"src": "3735:117:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3750:15:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3764:1:22",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3754:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3779:63:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3814:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3825:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3810:3:22"
},
"nodeType": "YulFunctionCall",
"src": "3810:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3834:7:22"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3789:20:22"
},
"nodeType": "YulFunctionCall",
"src": "3789:53:22"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3779:6:22"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3862:118:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3877:16:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3891:2:22",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3881:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3907:63:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3942:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3953:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3938:3:22"
},
"nodeType": "YulFunctionCall",
"src": "3938:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3962:7:22"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3917:20:22"
},
"nodeType": "YulFunctionCall",
"src": "3917:53:22"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3907:6:22"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3990:118:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4005:16:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4019:2:22",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4009:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4035:63:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4070:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4081:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4066:3:22"
},
"nodeType": "YulFunctionCall",
"src": "4066:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4090:7:22"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4045:20:22"
},
"nodeType": "YulFunctionCall",
"src": "4045:53:22"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4035:6:22"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4118:297:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4133:46:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4164:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4175:2:22",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4160:3:22"
},
"nodeType": "YulFunctionCall",
"src": "4160:18:22"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4147:12:22"
},
"nodeType": "YulFunctionCall",
"src": "4147:32:22"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4137:6:22",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4226:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "4228:77:22"
},
"nodeType": "YulFunctionCall",
"src": "4228:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "4228:79:22"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4198:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4206:18:22",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4195:2:22"
},
"nodeType": "YulFunctionCall",
"src": "4195:30:22"
},
"nodeType": "YulIf",
"src": "4192:117:22"
},
{
"nodeType": "YulAssignment",
"src": "4323:82:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4377:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4388:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4373:3:22"
},
"nodeType": "YulFunctionCall",
"src": "4373:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4397:7:22"
}
],
"functionName": {
"name": "abi_decode_t_bytes_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "4341:31:22"
},
"nodeType": "YulFunctionCall",
"src": "4341:64:22"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4323:6:22"
},
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "4331:6:22"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3533:9:22",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3544:7:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3556:6:22",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3564:6:22",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3572:6:22",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3580:6:22",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "3588:6:22",
"type": ""
}
],
"src": "3459:963:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4545:585:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4591:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4593:77:22"
},
"nodeType": "YulFunctionCall",
"src": "4593:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "4593:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4566:7:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4575:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4562:3:22"
},
"nodeType": "YulFunctionCall",
"src": "4562:23:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4587:2:22",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4558:3:22"
},
"nodeType": "YulFunctionCall",
"src": "4558:32:22"
},
"nodeType": "YulIf",
"src": "4555:119:22"
},
{
"nodeType": "YulBlock",
"src": "4684:117:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4699:15:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4713:1:22",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4703:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4728:63:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4763:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4774:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4759:3:22"
},
"nodeType": "YulFunctionCall",
"src": "4759:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4783:7:22"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4738:20:22"
},
"nodeType": "YulFunctionCall",
"src": "4738:53:22"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4728:6:22"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4811:312:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4826:46:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4857:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4868:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4853:3:22"
},
"nodeType": "YulFunctionCall",
"src": "4853:18:22"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4840:12:22"
},
"nodeType": "YulFunctionCall",
"src": "4840:32:22"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4830:6:22",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4919:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "4921:77:22"
},
"nodeType": "YulFunctionCall",
"src": "4921:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "4921:79:22"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4891:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4899:18:22",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4888:2:22"
},
"nodeType": "YulFunctionCall",
"src": "4888:30:22"
},
"nodeType": "YulIf",
"src": "4885:117:22"
},
{
"nodeType": "YulAssignment",
"src": "5016:97:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5085:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5096:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5081:3:22"
},
"nodeType": "YulFunctionCall",
"src": "5081:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5105:7:22"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint16_$dyn_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "5034:46:22"
},
"nodeType": "YulFunctionCall",
"src": "5034:79:22"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5016:6:22"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5024:6:22"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_array$_t_uint16_$dyn_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4499:9:22",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4510:7:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4522:6:22",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4530:6:22",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4538:6:22",
"type": ""
}
],
"src": "4428:702:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5250:582:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5296:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5298:77:22"
},
"nodeType": "YulFunctionCall",
"src": "5298:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "5298:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5271:7:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5280:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5267:3:22"
},
"nodeType": "YulFunctionCall",
"src": "5267:23:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5292:2:22",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5263:3:22"
},
"nodeType": "YulFunctionCall",
"src": "5263:32:22"
},
"nodeType": "YulIf",
"src": "5260:119:22"
},
{
"nodeType": "YulBlock",
"src": "5389:311:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5404:45:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5435:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5446:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5431:3:22"
},
"nodeType": "YulFunctionCall",
"src": "5431:17:22"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5418:12:22"
},
"nodeType": "YulFunctionCall",
"src": "5418:31:22"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5408:6:22",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5496:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "5498:77:22"
},
"nodeType": "YulFunctionCall",
"src": "5498:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "5498:79:22"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5468:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5476:18:22",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5465:2:22"
},
"nodeType": "YulFunctionCall",
"src": "5465:30:22"
},
"nodeType": "YulIf",
"src": "5462:117:22"
},
{
"nodeType": "YulAssignment",
"src": "5593:97:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5662:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5673:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5658:3:22"
},
"nodeType": "YulFunctionCall",
"src": "5658:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5682:7:22"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint16_$dyn_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "5611:46:22"
},
"nodeType": "YulFunctionCall",
"src": "5611:79:22"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5593:6:22"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5601:6:22"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5710:115:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5725:16:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5739:2:22",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5729:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5755:60:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5787:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5798:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5783:3:22"
},
"nodeType": "YulFunctionCall",
"src": "5783:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5807:7:22"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "5765:17:22"
},
"nodeType": "YulFunctionCall",
"src": "5765:50:22"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5755:6:22"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_array$_t_uint16_$dyn_calldata_ptrt_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5204:9:22",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5215:7:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5227:6:22",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5235:6:22",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5243:6:22",
"type": ""
}
],
"src": "5136:696:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5939:458:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5985:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5987:77:22"
},
"nodeType": "YulFunctionCall",
"src": "5987:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "5987:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5960:7:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5969:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5956:3:22"
},
"nodeType": "YulFunctionCall",
"src": "5956:23:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5981:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5952:3:22"
},
"nodeType": "YulFunctionCall",
"src": "5952:32:22"
},
"nodeType": "YulIf",
"src": "5949:119:22"
},
{
"nodeType": "YulBlock",
"src": "6078:312:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6093:45:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6124:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6135:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6120:3:22"
},
"nodeType": "YulFunctionCall",
"src": "6120:17:22"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6107:12:22"
},
"nodeType": "YulFunctionCall",
"src": "6107:31:22"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6097:6:22",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6185:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "6187:77:22"
},
"nodeType": "YulFunctionCall",
"src": "6187:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "6187:79:22"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6157:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6165:18:22",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6154:2:22"
},
"nodeType": "YulFunctionCall",
"src": "6154:30:22"
},
"nodeType": "YulIf",
"src": "6151:117:22"
},
{
"nodeType": "YulAssignment",
"src": "6282:98:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6352:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6363:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6348:3:22"
},
"nodeType": "YulFunctionCall",
"src": "6348:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6372:7:22"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint256_$dyn_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "6300:47:22"
},
"nodeType": "YulFunctionCall",
"src": "6300:80:22"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6282:6:22"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6290:6:22"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_array$_t_uint256_$dyn_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5901:9:22",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5912:7:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5924:6:22",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5932:6:22",
"type": ""
}
],
"src": "5838:559:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6466:260:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6512:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6514:77:22"
},
"nodeType": "YulFunctionCall",
"src": "6514:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "6514:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6487:7:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6496:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6483:3:22"
},
"nodeType": "YulFunctionCall",
"src": "6483:23:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6508:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6479:3:22"
},
"nodeType": "YulFunctionCall",
"src": "6479:32:22"
},
"nodeType": "YulIf",
"src": "6476:119:22"
},
{
"nodeType": "YulBlock",
"src": "6605:114:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6620:15:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6634:1:22",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6624:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6649:60:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6681:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6692:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6677:3:22"
},
"nodeType": "YulFunctionCall",
"src": "6677:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6701:7:22"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "6659:17:22"
},
"nodeType": "YulFunctionCall",
"src": "6659:50:22"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6649:6:22"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6436:9:22",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6447:7:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6459:6:22",
"type": ""
}
],
"src": "6403:323:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6941:1511:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6988:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6990:77:22"
},
"nodeType": "YulFunctionCall",
"src": "6990:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "6990:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6962:7:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6971:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6958:3:22"
},
"nodeType": "YulFunctionCall",
"src": "6958:23:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6983:3:22",
"type": "",
"value": "320"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6954:3:22"
},
"nodeType": "YulFunctionCall",
"src": "6954:33:22"
},
"nodeType": "YulIf",
"src": "6951:120:22"
},
{
"nodeType": "YulBlock",
"src": "7081:125:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7096:15:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7110:1:22",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7100:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7125:71:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7168:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7179:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7164:3:22"
},
"nodeType": "YulFunctionCall",
"src": "7164:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7188:7:22"
}
],
"functionName": {
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulIdentifier",
"src": "7135:28:22"
},
"nodeType": "YulFunctionCall",
"src": "7135:61:22"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7125:6:22"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7216:127:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7231:16:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7245:2:22",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7235:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7261:72:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7305:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7316:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7301:3:22"
},
"nodeType": "YulFunctionCall",
"src": "7301:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7325:7:22"
}
],
"functionName": {
"name": "abi_decode_t_uint8_fromMemory",
"nodeType": "YulIdentifier",
"src": "7271:29:22"
},
"nodeType": "YulFunctionCall",
"src": "7271:62:22"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "7261:6:22"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7353:127:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7368:16:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7382:2:22",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7372:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7398:72:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7442:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7453:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7438:3:22"
},
"nodeType": "YulFunctionCall",
"src": "7438:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7462:7:22"
}
],
"functionName": {
"name": "abi_decode_t_uint8_fromMemory",
"nodeType": "YulIdentifier",
"src": "7408:29:22"
},
"nodeType": "YulFunctionCall",
"src": "7408:62:22"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "7398:6:22"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7490:127:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7505:16:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7519:2:22",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7509:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7535:72:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7579:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7590:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7575:3:22"
},
"nodeType": "YulFunctionCall",
"src": "7575:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7599:7:22"
}
],
"functionName": {
"name": "abi_decode_t_uint8_fromMemory",
"nodeType": "YulIdentifier",
"src": "7545:29:22"
},
"nodeType": "YulFunctionCall",
"src": "7545:62:22"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "7535:6:22"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7627:128:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7642:17:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7656:3:22",
"type": "",
"value": "128"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7646:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7673:72:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7717:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7728:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7713:3:22"
},
"nodeType": "YulFunctionCall",
"src": "7713:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7737:7:22"
}
],
"functionName": {
"name": "abi_decode_t_uint8_fromMemory",
"nodeType": "YulIdentifier",
"src": "7683:29:22"
},
"nodeType": "YulFunctionCall",
"src": "7683:62:22"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "7673:6:22"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7765:128:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7780:17:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7794:3:22",
"type": "",
"value": "160"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7784:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7811:72:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7855:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7866:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7851:3:22"
},
"nodeType": "YulFunctionCall",
"src": "7851:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7875:7:22"
}
],
"functionName": {
"name": "abi_decode_t_uint8_fromMemory",
"nodeType": "YulIdentifier",
"src": "7821:29:22"
},
"nodeType": "YulFunctionCall",
"src": "7821:62:22"
},
"variableNames": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "7811:6:22"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7903:128:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7918:17:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7932:3:22",
"type": "",
"value": "192"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7922:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7949:72:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7993:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8004:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7989:3:22"
},
"nodeType": "YulFunctionCall",
"src": "7989:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8013:7:22"
}
],
"functionName": {
"name": "abi_decode_t_uint8_fromMemory",
"nodeType": "YulIdentifier",
"src": "7959:29:22"
},
"nodeType": "YulFunctionCall",
"src": "7959:62:22"
},
"variableNames": [
{
"name": "value6",
"nodeType": "YulIdentifier",
"src": "7949:6:22"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "8041:128:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8056:17:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8070:3:22",
"type": "",
"value": "224"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8060:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8087:72:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8131:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8142:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8127:3:22"
},
"nodeType": "YulFunctionCall",
"src": "8127:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8151:7:22"
}
],
"functionName": {
"name": "abi_decode_t_uint8_fromMemory",
"nodeType": "YulIdentifier",
"src": "8097:29:22"
},
"nodeType": "YulFunctionCall",
"src": "8097:62:22"
},
"variableNames": [
{
"name": "value7",
"nodeType": "YulIdentifier",
"src": "8087:6:22"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "8179:128:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8194:17:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8208:3:22",
"type": "",
"value": "256"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8198:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8225:72:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8269:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8280:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8265:3:22"
},
"nodeType": "YulFunctionCall",
"src": "8265:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8289:7:22"
}
],
"functionName": {
"name": "abi_decode_t_uint8_fromMemory",
"nodeType": "YulIdentifier",
"src": "8235:29:22"
},
"nodeType": "YulFunctionCall",
"src": "8235:62:22"
},
"variableNames": [
{
"name": "value8",
"nodeType": "YulIdentifier",
"src": "8225:6:22"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "8317:128:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8332:17:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8346:3:22",
"type": "",
"value": "288"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8336:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8363:72:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8407:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8418:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8403:3:22"
},
"nodeType": "YulFunctionCall",
"src": "8403:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8427:7:22"
}
],
"functionName": {
"name": "abi_decode_t_uint8_fromMemory",
"nodeType": "YulIdentifier",
"src": "8373:29:22"
},
"nodeType": "YulFunctionCall",
"src": "8373:62:22"
},
"variableNames": [
{
"name": "value9",
"nodeType": "YulIdentifier",
"src": "8363:6:22"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_boolt_uint8t_uint8t_uint8t_uint8t_uint8t_uint8t_uint8t_uint8t_uint8_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6839:9:22",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6850:7:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6862:6:22",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6870:6:22",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "6878:6:22",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "6886:6:22",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "6894:6:22",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "6902:6:22",
"type": ""
},
{
"name": "value6",
"nodeType": "YulTypedName",
"src": "6910:6:22",
"type": ""
},
{
"name": "value7",
"nodeType": "YulTypedName",
"src": "6918:6:22",
"type": ""
},
{
"name": "value8",
"nodeType": "YulTypedName",
"src": "6926:6:22",
"type": ""
},
{
"name": "value9",
"nodeType": "YulTypedName",
"src": "6934:6:22",
"type": ""
}
],
"src": "6732:1720:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8523:262:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8569:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "8571:77:22"
},
"nodeType": "YulFunctionCall",
"src": "8571:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "8571:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8544:7:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8553:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8540:3:22"
},
"nodeType": "YulFunctionCall",
"src": "8540:23:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8565:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8536:3:22"
},
"nodeType": "YulFunctionCall",
"src": "8536:32:22"
},
"nodeType": "YulIf",
"src": "8533:119:22"
},
{
"nodeType": "YulBlock",
"src": "8662:116:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8677:15:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8691:1:22",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8681:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8706:62:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8740:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8751:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8736:3:22"
},
"nodeType": "YulFunctionCall",
"src": "8736:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8760:7:22"
}
],
"functionName": {
"name": "abi_decode_t_uint16",
"nodeType": "YulIdentifier",
"src": "8716:19:22"
},
"nodeType": "YulFunctionCall",
"src": "8716:52:22"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8706:6:22"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint16",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8493:9:22",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8504:7:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8516:6:22",
"type": ""
}
],
"src": "8458:327:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8857:263:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8903:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "8905:77:22"
},
"nodeType": "YulFunctionCall",
"src": "8905:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "8905:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8878:7:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8887:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8874:3:22"
},
"nodeType": "YulFunctionCall",
"src": "8874:23:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8899:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8870:3:22"
},
"nodeType": "YulFunctionCall",
"src": "8870:32:22"
},
"nodeType": "YulIf",
"src": "8867:119:22"
},
{
"nodeType": "YulBlock",
"src": "8996:117:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9011:15:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9025:1:22",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9015:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9040:63:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9075:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9086:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9071:3:22"
},
"nodeType": "YulFunctionCall",
"src": "9071:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9095:7:22"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9050:20:22"
},
"nodeType": "YulFunctionCall",
"src": "9050:53:22"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9040:6:22"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8827:9:22",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8838:7:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8850:6:22",
"type": ""
}
],
"src": "8791:329:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9209:391:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9255:83:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "9257:77:22"
},
"nodeType": "YulFunctionCall",
"src": "9257:79:22"
},
"nodeType": "YulExpressionStatement",
"src": "9257:79:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9230:7:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9239:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9226:3:22"
},
"nodeType": "YulFunctionCall",
"src": "9226:23:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9251:2:22",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "9222:3:22"
},
"nodeType": "YulFunctionCall",
"src": "9222:32:22"
},
"nodeType": "YulIf",
"src": "9219:119:22"
},
{
"nodeType": "YulBlock",
"src": "9348:117:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9363:15:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9377:1:22",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9367:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9392:63:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9427:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9438:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9423:3:22"
},
"nodeType": "YulFunctionCall",
"src": "9423:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9447:7:22"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9402:20:22"
},
"nodeType": "YulFunctionCall",
"src": "9402:53:22"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9392:6:22"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9475:118:22",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9490:16:22",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9504:2:22",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9494:6:22",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9520:63:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9555:9:22"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9566:6:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9551:3:22"
},
"nodeType": "YulFunctionCall",
"src": "9551:22:22"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9575:7:22"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9530:20:22"
},
"nodeType": "YulFunctionCall",
"src": "9530:53:22"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "9520:6:22"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9171:9:22",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "9182:7:22",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9194:6:22",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "9202:6:22",
"type": ""
}
],
"src": "9126:474:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9671:53:22",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9688:3:22"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9711:5:22"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "9693:17:22"
},
"nodeType": "YulFunctionCall",
"src": "9693:24:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9681:6:22"
},
"nodeType": "YulFunctionCall",
"src": "9681:37:22"
},
"nodeType": "YulExpressionStatement",
"src": "9681:37:22"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9659:5:22",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9666:3:22",
"type": ""
}
],
"src": "9606:118:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9813:74:22",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9830:3:22"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9873:5:22"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "9855:17:22"
},
"nodeType": "YulFunctionCall",
"src": "9855:24:22"
}
],
"functionName": {
"name": "leftAlign_t_address",
"nodeType": "YulIdentifier",
"src": "9835:19:22"
},
"nodeType": "YulFunctionCall",
"src": "9835:45:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9823:6:22"
},
"nodeType": "YulFunctionCall",
"src": "9823:58:22"
},
"nodeType": "YulExpressionStatement",
"src": "9823:58:22"
}
]
},
"name": "abi_encode_t_address_to_t_address_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9801:5:22",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9808:3:22",
"type": ""
}
],
"src": "9730:157:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9952:50:22",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9969:3:22"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9989:5:22"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "9974:14:22"
},
"nodeType": "YulFunctionCall",
"src": "9974:21:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9962:6:22"
},
"nodeType": "YulFunctionCall",
"src": "9962:34:22"
},
"nodeType": "YulExpressionStatement",
"src": "9962:34:22"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9940:5:22",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9947:3:22",
"type": ""
}
],
"src": "9893:109:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10091:74:22",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10108:3:22"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10151:5:22"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "10133:17:22"
},
"nodeType": "YulFunctionCall",
"src": "10133:24:22"
}
],
"functionName": {
"name": "leftAlign_t_bytes32",
"nodeType": "YulIdentifier",
"src": "10113:19:22"
},
"nodeType": "YulFunctionCall",
"src": "10113:45:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10101:6:22"
},
"nodeType": "YulFunctionCall",
"src": "10101:58:22"
},
"nodeType": "YulExpressionStatement",
"src": "10101:58:22"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10079:5:22",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10086:3:22",
"type": ""
}
],
"src": "10008:157:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10234:52:22",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10251:3:22"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10273:5:22"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "10256:16:22"
},
"nodeType": "YulFunctionCall",
"src": "10256:23:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10244:6:22"
},
"nodeType": "YulFunctionCall",
"src": "10244:36:22"
},
"nodeType": "YulExpressionStatement",
"src": "10244:36:22"
}
]
},
"name": "abi_encode_t_bytes4_to_t_bytes4_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10222:5:22",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10229:3:22",
"type": ""
}
],
"src": "10171:115:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10365:74:22",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10382:3:22"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10426:5:22"
}
],
"functionName": {
"name": "convert_t_rational_0_by_1_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "10387:38:22"
},
"nodeType": "YulFunctionCall",
"src": "10387:45:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10375:6:22"
},
"nodeType": "YulFunctionCall",
"src": "10375:58:22"
},
"nodeType": "YulExpressionStatement",
"src": "10375:58:22"
}
]
},
"name": "abi_encode_t_rational_0_by_1_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10353:5:22",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10360:3:22",
"type": ""
}
],
"src": "10292:147:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10591:220:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10601:74:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10667:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10672:2:22",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10608:58:22"
},
"nodeType": "YulFunctionCall",
"src": "10608:67:22"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10601:3:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10773:3:22"
}
],
"functionName": {
"name": "store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a",
"nodeType": "YulIdentifier",
"src": "10684:88:22"
},
"nodeType": "YulFunctionCall",
"src": "10684:93:22"
},
"nodeType": "YulExpressionStatement",
"src": "10684:93:22"
},
{
"nodeType": "YulAssignment",
"src": "10786:19:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10797:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10802:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10793:3:22"
},
"nodeType": "YulFunctionCall",
"src": "10793:12:22"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10786:3:22"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10579:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10587:3:22",
"type": ""
}
],
"src": "10445:366:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10963:220:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10973:74:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11039:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11044:2:22",
"type": "",
"value": "23"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10980:58:22"
},
"nodeType": "YulFunctionCall",
"src": "10980:67:22"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10973:3:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11145:3:22"
}
],
"functionName": {
"name": "store_literal_in_memory_1e7292b082f3036cc2b242b13fb6ddd7676e4286eccda978ca4217fb6f525c0d",
"nodeType": "YulIdentifier",
"src": "11056:88:22"
},
"nodeType": "YulFunctionCall",
"src": "11056:93:22"
},
"nodeType": "YulExpressionStatement",
"src": "11056:93:22"
},
{
"nodeType": "YulAssignment",
"src": "11158:19:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11169:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11174:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11165:3:22"
},
"nodeType": "YulFunctionCall",
"src": "11165:12:22"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11158:3:22"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e7292b082f3036cc2b242b13fb6ddd7676e4286eccda978ca4217fb6f525c0d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10951:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10959:3:22",
"type": ""
}
],
"src": "10817:366:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11335:220:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11345:74:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11411:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11416:2:22",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11352:58:22"
},
"nodeType": "YulFunctionCall",
"src": "11352:67:22"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11345:3:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11517:3:22"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "11428:88:22"
},
"nodeType": "YulFunctionCall",
"src": "11428:93:22"
},
"nodeType": "YulExpressionStatement",
"src": "11428:93:22"
},
{
"nodeType": "YulAssignment",
"src": "11530:19:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11541:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11546:2:22",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11537:3:22"
},
"nodeType": "YulFunctionCall",
"src": "11537:12:22"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11530:3:22"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11323:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11331:3:22",
"type": ""
}
],
"src": "11189:366:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11707:220:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11717:74:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11783:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11788:2:22",
"type": "",
"value": "15"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11724:58:22"
},
"nodeType": "YulFunctionCall",
"src": "11724:67:22"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11717:3:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11889:3:22"
}
],
"functionName": {
"name": "store_literal_in_memory_3627869cbfbe47c04407c26ad3c50752ee4de310fc5c078427516c3010a4dded",
"nodeType": "YulIdentifier",
"src": "11800:88:22"
},
"nodeType": "YulFunctionCall",
"src": "11800:93:22"
},
"nodeType": "YulExpressionStatement",
"src": "11800:93:22"
},
{
"nodeType": "YulAssignment",
"src": "11902:19:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11913:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11918:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11909:3:22"
},
"nodeType": "YulFunctionCall",
"src": "11909:12:22"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11902:3:22"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3627869cbfbe47c04407c26ad3c50752ee4de310fc5c078427516c3010a4dded_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11695:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11703:3:22",
"type": ""
}
],
"src": "11561:366:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12079:220:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12089:74:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12155:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12160:2:22",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12096:58:22"
},
"nodeType": "YulFunctionCall",
"src": "12096:67:22"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12089:3:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12261:3:22"
}
],
"functionName": {
"name": "store_literal_in_memory_5a993494cb95a3b702ba42fc8c6e4dd357d6fab0b0ae3d8178fe5bb95577142f",
"nodeType": "YulIdentifier",
"src": "12172:88:22"
},
"nodeType": "YulFunctionCall",
"src": "12172:93:22"
},
"nodeType": "YulExpressionStatement",
"src": "12172:93:22"
},
{
"nodeType": "YulAssignment",
"src": "12274:19:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12285:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12290:2:22",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12281:3:22"
},
"nodeType": "YulFunctionCall",
"src": "12281:12:22"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12274:3:22"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5a993494cb95a3b702ba42fc8c6e4dd357d6fab0b0ae3d8178fe5bb95577142f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12067:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12075:3:22",
"type": ""
}
],
"src": "11933:366:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12451:220:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12461:74:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12527:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12532:2:22",
"type": "",
"value": "18"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12468:58:22"
},
"nodeType": "YulFunctionCall",
"src": "12468:67:22"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12461:3:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12633:3:22"
}
],
"functionName": {
"name": "store_literal_in_memory_653c04d3397d6f715d1629316c08451dddb4151ebeec4cfcffa5b5e49763a7b8",
"nodeType": "YulIdentifier",
"src": "12544:88:22"
},
"nodeType": "YulFunctionCall",
"src": "12544:93:22"
},
"nodeType": "YulExpressionStatement",
"src": "12544:93:22"
},
{
"nodeType": "YulAssignment",
"src": "12646:19:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12657:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12662:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12653:3:22"
},
"nodeType": "YulFunctionCall",
"src": "12653:12:22"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12646:3:22"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_653c04d3397d6f715d1629316c08451dddb4151ebeec4cfcffa5b5e49763a7b8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12439:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12447:3:22",
"type": ""
}
],
"src": "12305:366:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12823:220:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12833:74:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12899:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12904:2:22",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12840:58:22"
},
"nodeType": "YulFunctionCall",
"src": "12840:67:22"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12833:3:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13005:3:22"
}
],
"functionName": {
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulIdentifier",
"src": "12916:88:22"
},
"nodeType": "YulFunctionCall",
"src": "12916:93:22"
},
"nodeType": "YulExpressionStatement",
"src": "12916:93:22"
},
{
"nodeType": "YulAssignment",
"src": "13018:19:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13029:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13034:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13025:3:22"
},
"nodeType": "YulFunctionCall",
"src": "13025:12:22"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13018:3:22"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12811:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12819:3:22",
"type": ""
}
],
"src": "12677:366:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13195:220:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13205:74:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13271:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13276:2:22",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13212:58:22"
},
"nodeType": "YulFunctionCall",
"src": "13212:67:22"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13205:3:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13377:3:22"
}
],
"functionName": {
"name": "store_literal_in_memory_6ccb350b77038131fd82d0643bb472d3a648c0583f20a0e746f08be5b652e50d",
"nodeType": "YulIdentifier",
"src": "13288:88:22"
},
"nodeType": "YulFunctionCall",
"src": "13288:93:22"
},
"nodeType": "YulExpressionStatement",
"src": "13288:93:22"
},
{
"nodeType": "YulAssignment",
"src": "13390:19:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13401:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13406:2:22",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13397:3:22"
},
"nodeType": "YulFunctionCall",
"src": "13397:12:22"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13390:3:22"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6ccb350b77038131fd82d0643bb472d3a648c0583f20a0e746f08be5b652e50d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13183:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13191:3:22",
"type": ""
}
],
"src": "13049:366:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13567:220:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13577:74:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13643:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13648:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13584:58:22"
},
"nodeType": "YulFunctionCall",
"src": "13584:67:22"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13577:3:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13749:3:22"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "13660:88:22"
},
"nodeType": "YulFunctionCall",
"src": "13660:93:22"
},
"nodeType": "YulExpressionStatement",
"src": "13660:93:22"
},
{
"nodeType": "YulAssignment",
"src": "13762:19:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13773:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13778:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13769:3:22"
},
"nodeType": "YulFunctionCall",
"src": "13769:12:22"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13762:3:22"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13555:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13563:3:22",
"type": ""
}
],
"src": "13421:366:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13939:220:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13949:74:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14015:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14020:2:22",
"type": "",
"value": "26"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13956:58:22"
},
"nodeType": "YulFunctionCall",
"src": "13956:67:22"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13949:3:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14121:3:22"
}
],
"functionName": {
"name": "store_literal_in_memory_bfa119aedd29ad111c5c0b27aef45bcf6598aad4dca6f1ee9742c2c7fb594896",
"nodeType": "YulIdentifier",
"src": "14032:88:22"
},
"nodeType": "YulFunctionCall",
"src": "14032:93:22"
},
"nodeType": "YulExpressionStatement",
"src": "14032:93:22"
},
{
"nodeType": "YulAssignment",
"src": "14134:19:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14145:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14150:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14141:3:22"
},
"nodeType": "YulFunctionCall",
"src": "14141:12:22"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14134:3:22"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_bfa119aedd29ad111c5c0b27aef45bcf6598aad4dca6f1ee9742c2c7fb594896_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13927:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13935:3:22",
"type": ""
}
],
"src": "13793:366:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14310:217:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14320:72:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14385:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14390:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14327:57:22"
},
"nodeType": "YulFunctionCall",
"src": "14327:65:22"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14320:3:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14490:3:22"
}
],
"functionName": {
"name": "store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"nodeType": "YulIdentifier",
"src": "14401:88:22"
},
"nodeType": "YulFunctionCall",
"src": "14401:93:22"
},
"nodeType": "YulExpressionStatement",
"src": "14401:93:22"
},
{
"nodeType": "YulAssignment",
"src": "14503:18:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14514:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14519:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14510:3:22"
},
"nodeType": "YulFunctionCall",
"src": "14510:11:22"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14503:3:22"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14298:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14306:3:22",
"type": ""
}
],
"src": "14165:362:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14679:220:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14689:74:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14755:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14760:2:22",
"type": "",
"value": "13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14696:58:22"
},
"nodeType": "YulFunctionCall",
"src": "14696:67:22"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14689:3:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14861:3:22"
}
],
"functionName": {
"name": "store_literal_in_memory_ecf9aedd6ac346fea1d629ae44723c1fa8ccb4a8f4571e6d9d4c6d3096948e0f",
"nodeType": "YulIdentifier",
"src": "14772:88:22"
},
"nodeType": "YulFunctionCall",
"src": "14772:93:22"
},
"nodeType": "YulExpressionStatement",
"src": "14772:93:22"
},
{
"nodeType": "YulAssignment",
"src": "14874:19:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14885:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14890:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14881:3:22"
},
"nodeType": "YulFunctionCall",
"src": "14881:12:22"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14874:3:22"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_ecf9aedd6ac346fea1d629ae44723c1fa8ccb4a8f4571e6d9d4c6d3096948e0f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14667:3:22",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14675:3:22",
"type": ""
}
],
"src": "14533:366:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14968:52:22",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14985:3:22"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15007:5:22"
}
],
"functionName": {
"name": "cleanup_t_uint16",
"nodeType": "YulIdentifier",
"src": "14990:16:22"
},
"nodeType": "YulFunctionCall",
"src": "14990:23:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14978:6:22"
},
"nodeType": "YulFunctionCall",
"src": "14978:36:22"
},
"nodeType": "YulExpressionStatement",
"src": "14978:36:22"
}
]
},
"name": "abi_encode_t_uint16_to_t_uint16_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14956:5:22",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14963:3:22",
"type": ""
}
],
"src": "14905:115:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15090:65:22",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15107:3:22"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15142:5:22"
}
],
"functionName": {
"name": "convert_t_uint16_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "15112:29:22"
},
"nodeType": "YulFunctionCall",
"src": "15112:36:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15100:6:22"
},
"nodeType": "YulFunctionCall",
"src": "15100:49:22"
},
"nodeType": "YulExpressionStatement",
"src": "15100:49:22"
}
]
},
"name": "abi_encode_t_uint16_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15078:5:22",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15085:3:22",
"type": ""
}
],
"src": "15026:129:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15226:53:22",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15243:3:22"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15266:5:22"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15248:17:22"
},
"nodeType": "YulFunctionCall",
"src": "15248:24:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15236:6:22"
},
"nodeType": "YulFunctionCall",
"src": "15236:37:22"
},
"nodeType": "YulExpressionStatement",
"src": "15236:37:22"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15214:5:22",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15221:3:22",
"type": ""
}
],
"src": "15161:118:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15368:74:22",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15385:3:22"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15428:5:22"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15410:17:22"
},
"nodeType": "YulFunctionCall",
"src": "15410:24:22"
}
],
"functionName": {
"name": "leftAlign_t_uint256",
"nodeType": "YulIdentifier",
"src": "15390:19:22"
},
"nodeType": "YulFunctionCall",
"src": "15390:45:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15378:6:22"
},
"nodeType": "YulFunctionCall",
"src": "15378:58:22"
},
"nodeType": "YulExpressionStatement",
"src": "15378:58:22"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15356:5:22",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15363:3:22",
"type": ""
}
],
"src": "15285:157:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15511:52:22",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15528:3:22"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15550:5:22"
}
],
"functionName": {
"name": "cleanup_t_uint80",
"nodeType": "YulIdentifier",
"src": "15533:16:22"
},
"nodeType": "YulFunctionCall",
"src": "15533:23:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15521:6:22"
},
"nodeType": "YulFunctionCall",
"src": "15521:36:22"
},
"nodeType": "YulExpressionStatement",
"src": "15521:36:22"
}
]
},
"name": "abi_encode_t_uint80_to_t_uint80_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15499:5:22",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15506:3:22",
"type": ""
}
],
"src": "15448:115:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15630:51:22",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15647:3:22"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15668:5:22"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "15652:15:22"
},
"nodeType": "YulFunctionCall",
"src": "15652:22:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15640:6:22"
},
"nodeType": "YulFunctionCall",
"src": "15640:35:22"
},
"nodeType": "YulExpressionStatement",
"src": "15640:35:22"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15618:5:22",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15625:3:22",
"type": ""
}
],
"src": "15569:112:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15887:479:22",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15960:6:22"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15969:3:22"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "15898:61:22"
},
"nodeType": "YulFunctionCall",
"src": "15898:75:22"
},
"nodeType": "YulExpressionStatement",
"src": "15898:75:22"
},
{
"nodeType": "YulAssignment",
"src": "15982:19:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15993:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15998:2:22",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15989:3:22"
},
"nodeType": "YulFunctionCall",
"src": "15989:12:22"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15982:3:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "16073:6:22"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16082:3:22"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "16011:61:22"
},
"nodeType": "YulFunctionCall",
"src": "16011:75:22"
},
"nodeType": "YulExpressionStatement",
"src": "16011:75:22"
},
{
"nodeType": "YulAssignment",
"src": "16095:19:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16106:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16111:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16102:3:22"
},
"nodeType": "YulFunctionCall",
"src": "16102:12:22"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16095:3:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "16186:6:22"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16195:3:22"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "16124:61:22"
},
"nodeType": "YulFunctionCall",
"src": "16124:75:22"
},
"nodeType": "YulExpressionStatement",
"src": "16124:75:22"
},
{
"nodeType": "YulAssignment",
"src": "16208:19:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16219:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16224:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16215:3:22"
},
"nodeType": "YulFunctionCall",
"src": "16215:12:22"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16208:3:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "16299:6:22"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16308:3:22"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "16237:61:22"
},
"nodeType": "YulFunctionCall",
"src": "16237:75:22"
},
"nodeType": "YulExpressionStatement",
"src": "16237:75:22"
},
{
"nodeType": "YulAssignment",
"src": "16321:19:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16332:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16337:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16328:3:22"
},
"nodeType": "YulFunctionCall",
"src": "16328:12:22"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16321:3:22"
}
]
},
{
"nodeType": "YulAssignment",
"src": "16350:10:22",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16357:3:22"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16350:3:22"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_address_t_bytes32_t_uint256_t_uint256__to_t_address_t_bytes32_t_uint256_t_uint256__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15842:3:22",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "15848:6:22",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "15856:6:22",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "15864:6:22",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15872:6:22",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15883:3:22",
"type": ""
}
],
"src": "15687:679:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16470:124:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16480:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16492:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16503:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16488:3:22"
},
"nodeType": "YulFunctionCall",
"src": "16488:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16480:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16560:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16573:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16584:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16569:3:22"
},
"nodeType": "YulFunctionCall",
"src": "16569:17:22"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "16516:43:22"
},
"nodeType": "YulFunctionCall",
"src": "16516:71:22"
},
"nodeType": "YulExpressionStatement",
"src": "16516:71:22"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16442:9:22",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16454:6:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16465:4:22",
"type": ""
}
],
"src": "16372:222:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16753:287:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16763:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16775:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16786:2:22",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16771:3:22"
},
"nodeType": "YulFunctionCall",
"src": "16771:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16763:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16843:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16856:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16867:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16852:3:22"
},
"nodeType": "YulFunctionCall",
"src": "16852:17:22"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "16799:43:22"
},
"nodeType": "YulFunctionCall",
"src": "16799:71:22"
},
"nodeType": "YulExpressionStatement",
"src": "16799:71:22"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "16924:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16937:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16948:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16933:3:22"
},
"nodeType": "YulFunctionCall",
"src": "16933:18:22"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "16880:43:22"
},
"nodeType": "YulFunctionCall",
"src": "16880:72:22"
},
"nodeType": "YulExpressionStatement",
"src": "16880:72:22"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "17005:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17018:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17029:2:22",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17014:3:22"
},
"nodeType": "YulFunctionCall",
"src": "17014:18:22"
}
],
"functionName": {
"name": "abi_encode_t_uint16_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "16962:42:22"
},
"nodeType": "YulFunctionCall",
"src": "16962:71:22"
},
"nodeType": "YulExpressionStatement",
"src": "16962:71:22"
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint16__to_t_address_t_address_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16709:9:22",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "16721:6:22",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "16729:6:22",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16737:6:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16748:4:22",
"type": ""
}
],
"src": "16600:440:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17300:494:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17310:27:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17322:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17333:3:22",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17318:3:22"
},
"nodeType": "YulFunctionCall",
"src": "17318:19:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17310:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "17391:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17404:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17415:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17400:3:22"
},
"nodeType": "YulFunctionCall",
"src": "17400:17:22"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "17347:43:22"
},
"nodeType": "YulFunctionCall",
"src": "17347:71:22"
},
"nodeType": "YulExpressionStatement",
"src": "17347:71:22"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "17472:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17485:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17496:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17481:3:22"
},
"nodeType": "YulFunctionCall",
"src": "17481:18:22"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "17428:43:22"
},
"nodeType": "YulFunctionCall",
"src": "17428:72:22"
},
"nodeType": "YulExpressionStatement",
"src": "17428:72:22"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "17554:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17567:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17578:2:22",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17563:3:22"
},
"nodeType": "YulFunctionCall",
"src": "17563:18:22"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "17510:43:22"
},
"nodeType": "YulFunctionCall",
"src": "17510:72:22"
},
"nodeType": "YulExpressionStatement",
"src": "17510:72:22"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17603:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17614:2:22",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17599:3:22"
},
"nodeType": "YulFunctionCall",
"src": "17599:18:22"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17623:4:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17629:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17619:3:22"
},
"nodeType": "YulFunctionCall",
"src": "17619:20:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17592:6:22"
},
"nodeType": "YulFunctionCall",
"src": "17592:48:22"
},
"nodeType": "YulExpressionStatement",
"src": "17592:48:22"
},
{
"nodeType": "YulAssignment",
"src": "17649:138:22",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17782:4:22"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17657:123:22"
},
"nodeType": "YulFunctionCall",
"src": "17657:130:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17649:4:22"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17256:9:22",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "17268:6:22",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "17276:6:22",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "17284:6:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17295:4:22",
"type": ""
}
],
"src": "17046:748:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17926:206:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17936:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17948:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17959:2:22",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17944:3:22"
},
"nodeType": "YulFunctionCall",
"src": "17944:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17936:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18016:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18029:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18040:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18025:3:22"
},
"nodeType": "YulFunctionCall",
"src": "18025:17:22"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "17972:43:22"
},
"nodeType": "YulFunctionCall",
"src": "17972:71:22"
},
"nodeType": "YulExpressionStatement",
"src": "17972:71:22"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "18097:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18110:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18121:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18106:3:22"
},
"nodeType": "YulFunctionCall",
"src": "18106:18:22"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "18053:43:22"
},
"nodeType": "YulFunctionCall",
"src": "18053:72:22"
},
"nodeType": "YulExpressionStatement",
"src": "18053:72:22"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17890:9:22",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "17902:6:22",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "17910:6:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17921:4:22",
"type": ""
}
],
"src": "17800:332:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18292:288:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18302:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18314:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18325:2:22",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18310:3:22"
},
"nodeType": "YulFunctionCall",
"src": "18310:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18302:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18382:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18395:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18406:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18391:3:22"
},
"nodeType": "YulFunctionCall",
"src": "18391:17:22"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "18338:43:22"
},
"nodeType": "YulFunctionCall",
"src": "18338:71:22"
},
"nodeType": "YulExpressionStatement",
"src": "18338:71:22"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "18463:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18476:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18487:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18472:3:22"
},
"nodeType": "YulFunctionCall",
"src": "18472:18:22"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "18419:43:22"
},
"nodeType": "YulFunctionCall",
"src": "18419:72:22"
},
"nodeType": "YulExpressionStatement",
"src": "18419:72:22"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "18545:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18558:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18569:2:22",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18554:3:22"
},
"nodeType": "YulFunctionCall",
"src": "18554:18:22"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "18501:43:22"
},
"nodeType": "YulFunctionCall",
"src": "18501:72:22"
},
"nodeType": "YulExpressionStatement",
"src": "18501:72:22"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18248:9:22",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "18260:6:22",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "18268:6:22",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18276:6:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18287:4:22",
"type": ""
}
],
"src": "18138:442:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18678:118:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18688:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18700:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18711:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18696:3:22"
},
"nodeType": "YulFunctionCall",
"src": "18696:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18688:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18762:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18775:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18786:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18771:3:22"
},
"nodeType": "YulFunctionCall",
"src": "18771:17:22"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "18724:37:22"
},
"nodeType": "YulFunctionCall",
"src": "18724:65:22"
},
"nodeType": "YulExpressionStatement",
"src": "18724:65:22"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18650:9:22",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18662:6:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18673:4:22",
"type": ""
}
],
"src": "18586:210:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18898:122:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18908:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18920:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18931:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18916:3:22"
},
"nodeType": "YulFunctionCall",
"src": "18916:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18908:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18986:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18999:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19010:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18995:3:22"
},
"nodeType": "YulFunctionCall",
"src": "18995:17:22"
}
],
"functionName": {
"name": "abi_encode_t_bytes4_to_t_bytes4_fromStack",
"nodeType": "YulIdentifier",
"src": "18944:41:22"
},
"nodeType": "YulFunctionCall",
"src": "18944:69:22"
},
"nodeType": "YulExpressionStatement",
"src": "18944:69:22"
}
]
},
"name": "abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18870:9:22",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18882:6:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18893:4:22",
"type": ""
}
],
"src": "18802:218:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19197:248:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19207:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19219:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19230:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19215:3:22"
},
"nodeType": "YulFunctionCall",
"src": "19215:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19207:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19254:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19265:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19250:3:22"
},
"nodeType": "YulFunctionCall",
"src": "19250:17:22"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19273:4:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19279:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19269:3:22"
},
"nodeType": "YulFunctionCall",
"src": "19269:20:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19243:6:22"
},
"nodeType": "YulFunctionCall",
"src": "19243:47:22"
},
"nodeType": "YulExpressionStatement",
"src": "19243:47:22"
},
{
"nodeType": "YulAssignment",
"src": "19299:139:22",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19433:4:22"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19307:124:22"
},
"nodeType": "YulFunctionCall",
"src": "19307:131:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19299:4:22"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19177:9:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19192:4:22",
"type": ""
}
],
"src": "19026:419:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19622:248:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19632:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19644:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19655:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19640:3:22"
},
"nodeType": "YulFunctionCall",
"src": "19640:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19632:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19679:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19690:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19675:3:22"
},
"nodeType": "YulFunctionCall",
"src": "19675:17:22"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19698:4:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19704:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19694:3:22"
},
"nodeType": "YulFunctionCall",
"src": "19694:20:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19668:6:22"
},
"nodeType": "YulFunctionCall",
"src": "19668:47:22"
},
"nodeType": "YulExpressionStatement",
"src": "19668:47:22"
},
{
"nodeType": "YulAssignment",
"src": "19724:139:22",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19858:4:22"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e7292b082f3036cc2b242b13fb6ddd7676e4286eccda978ca4217fb6f525c0d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19732:124:22"
},
"nodeType": "YulFunctionCall",
"src": "19732:131:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19724:4:22"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e7292b082f3036cc2b242b13fb6ddd7676e4286eccda978ca4217fb6f525c0d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19602:9:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19617:4:22",
"type": ""
}
],
"src": "19451:419:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20047:248:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20057:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20069:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20080:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20065:3:22"
},
"nodeType": "YulFunctionCall",
"src": "20065:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20057:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20104:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20115:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20100:3:22"
},
"nodeType": "YulFunctionCall",
"src": "20100:17:22"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20123:4:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20129:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20119:3:22"
},
"nodeType": "YulFunctionCall",
"src": "20119:20:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20093:6:22"
},
"nodeType": "YulFunctionCall",
"src": "20093:47:22"
},
"nodeType": "YulExpressionStatement",
"src": "20093:47:22"
},
{
"nodeType": "YulAssignment",
"src": "20149:139:22",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20283:4:22"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20157:124:22"
},
"nodeType": "YulFunctionCall",
"src": "20157:131:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20149:4:22"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20027:9:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20042:4:22",
"type": ""
}
],
"src": "19876:419:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20472:248:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20482:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20494:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20505:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20490:3:22"
},
"nodeType": "YulFunctionCall",
"src": "20490:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20482:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20529:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20540:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20525:3:22"
},
"nodeType": "YulFunctionCall",
"src": "20525:17:22"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20548:4:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20554:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20544:3:22"
},
"nodeType": "YulFunctionCall",
"src": "20544:20:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20518:6:22"
},
"nodeType": "YulFunctionCall",
"src": "20518:47:22"
},
"nodeType": "YulExpressionStatement",
"src": "20518:47:22"
},
{
"nodeType": "YulAssignment",
"src": "20574:139:22",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20708:4:22"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3627869cbfbe47c04407c26ad3c50752ee4de310fc5c078427516c3010a4dded_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20582:124:22"
},
"nodeType": "YulFunctionCall",
"src": "20582:131:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20574:4:22"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3627869cbfbe47c04407c26ad3c50752ee4de310fc5c078427516c3010a4dded__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20452:9:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20467:4:22",
"type": ""
}
],
"src": "20301:419:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20897:248:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20907:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20919:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20930:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20915:3:22"
},
"nodeType": "YulFunctionCall",
"src": "20915:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20907:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20954:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20965:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20950:3:22"
},
"nodeType": "YulFunctionCall",
"src": "20950:17:22"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20973:4:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20979:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20969:3:22"
},
"nodeType": "YulFunctionCall",
"src": "20969:20:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20943:6:22"
},
"nodeType": "YulFunctionCall",
"src": "20943:47:22"
},
"nodeType": "YulExpressionStatement",
"src": "20943:47:22"
},
{
"nodeType": "YulAssignment",
"src": "20999:139:22",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21133:4:22"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5a993494cb95a3b702ba42fc8c6e4dd357d6fab0b0ae3d8178fe5bb95577142f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21007:124:22"
},
"nodeType": "YulFunctionCall",
"src": "21007:131:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20999:4:22"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5a993494cb95a3b702ba42fc8c6e4dd357d6fab0b0ae3d8178fe5bb95577142f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20877:9:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20892:4:22",
"type": ""
}
],
"src": "20726:419:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21322:248:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21332:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21344:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21355:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21340:3:22"
},
"nodeType": "YulFunctionCall",
"src": "21340:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21332:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21379:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21390:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21375:3:22"
},
"nodeType": "YulFunctionCall",
"src": "21375:17:22"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21398:4:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21404:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21394:3:22"
},
"nodeType": "YulFunctionCall",
"src": "21394:20:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21368:6:22"
},
"nodeType": "YulFunctionCall",
"src": "21368:47:22"
},
"nodeType": "YulExpressionStatement",
"src": "21368:47:22"
},
{
"nodeType": "YulAssignment",
"src": "21424:139:22",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21558:4:22"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_653c04d3397d6f715d1629316c08451dddb4151ebeec4cfcffa5b5e49763a7b8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21432:124:22"
},
"nodeType": "YulFunctionCall",
"src": "21432:131:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21424:4:22"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_653c04d3397d6f715d1629316c08451dddb4151ebeec4cfcffa5b5e49763a7b8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21302:9:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21317:4:22",
"type": ""
}
],
"src": "21151:419:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21747:248:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21757:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21769:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21780:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21765:3:22"
},
"nodeType": "YulFunctionCall",
"src": "21765:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21757:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21804:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21815:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21800:3:22"
},
"nodeType": "YulFunctionCall",
"src": "21800:17:22"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21823:4:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21829:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21819:3:22"
},
"nodeType": "YulFunctionCall",
"src": "21819:20:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21793:6:22"
},
"nodeType": "YulFunctionCall",
"src": "21793:47:22"
},
"nodeType": "YulExpressionStatement",
"src": "21793:47:22"
},
{
"nodeType": "YulAssignment",
"src": "21849:139:22",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21983:4:22"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21857:124:22"
},
"nodeType": "YulFunctionCall",
"src": "21857:131:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21849:4:22"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21727:9:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21742:4:22",
"type": ""
}
],
"src": "21576:419:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22172:248:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22182:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22194:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22205:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22190:3:22"
},
"nodeType": "YulFunctionCall",
"src": "22190:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22182:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22229:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22240:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22225:3:22"
},
"nodeType": "YulFunctionCall",
"src": "22225:17:22"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22248:4:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22254:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22244:3:22"
},
"nodeType": "YulFunctionCall",
"src": "22244:20:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22218:6:22"
},
"nodeType": "YulFunctionCall",
"src": "22218:47:22"
},
"nodeType": "YulExpressionStatement",
"src": "22218:47:22"
},
{
"nodeType": "YulAssignment",
"src": "22274:139:22",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22408:4:22"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6ccb350b77038131fd82d0643bb472d3a648c0583f20a0e746f08be5b652e50d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22282:124:22"
},
"nodeType": "YulFunctionCall",
"src": "22282:131:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22274:4:22"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6ccb350b77038131fd82d0643bb472d3a648c0583f20a0e746f08be5b652e50d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22152:9:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22167:4:22",
"type": ""
}
],
"src": "22001:419:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22597:248:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22607:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22619:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22630:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22615:3:22"
},
"nodeType": "YulFunctionCall",
"src": "22615:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22607:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22654:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22665:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22650:3:22"
},
"nodeType": "YulFunctionCall",
"src": "22650:17:22"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22673:4:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22679:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22669:3:22"
},
"nodeType": "YulFunctionCall",
"src": "22669:20:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22643:6:22"
},
"nodeType": "YulFunctionCall",
"src": "22643:47:22"
},
"nodeType": "YulExpressionStatement",
"src": "22643:47:22"
},
{
"nodeType": "YulAssignment",
"src": "22699:139:22",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22833:4:22"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22707:124:22"
},
"nodeType": "YulFunctionCall",
"src": "22707:131:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22699:4:22"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22577:9:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22592:4:22",
"type": ""
}
],
"src": "22426:419:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23022:248:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23032:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23044:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23055:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23040:3:22"
},
"nodeType": "YulFunctionCall",
"src": "23040:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23032:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23079:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23090:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23075:3:22"
},
"nodeType": "YulFunctionCall",
"src": "23075:17:22"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23098:4:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23104:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23094:3:22"
},
"nodeType": "YulFunctionCall",
"src": "23094:20:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23068:6:22"
},
"nodeType": "YulFunctionCall",
"src": "23068:47:22"
},
"nodeType": "YulExpressionStatement",
"src": "23068:47:22"
},
{
"nodeType": "YulAssignment",
"src": "23124:139:22",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23258:4:22"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_bfa119aedd29ad111c5c0b27aef45bcf6598aad4dca6f1ee9742c2c7fb594896_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23132:124:22"
},
"nodeType": "YulFunctionCall",
"src": "23132:131:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23124:4:22"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_bfa119aedd29ad111c5c0b27aef45bcf6598aad4dca6f1ee9742c2c7fb594896__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23002:9:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23017:4:22",
"type": ""
}
],
"src": "22851:419:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23447:248:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23457:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23469:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23480:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23465:3:22"
},
"nodeType": "YulFunctionCall",
"src": "23465:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23457:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23504:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23515:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23500:3:22"
},
"nodeType": "YulFunctionCall",
"src": "23500:17:22"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23523:4:22"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23529:9:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23519:3:22"
},
"nodeType": "YulFunctionCall",
"src": "23519:20:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23493:6:22"
},
"nodeType": "YulFunctionCall",
"src": "23493:47:22"
},
"nodeType": "YulExpressionStatement",
"src": "23493:47:22"
},
{
"nodeType": "YulAssignment",
"src": "23549:139:22",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23683:4:22"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_ecf9aedd6ac346fea1d629ae44723c1fa8ccb4a8f4571e6d9d4c6d3096948e0f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23557:124:22"
},
"nodeType": "YulFunctionCall",
"src": "23557:131:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23549:4:22"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_ecf9aedd6ac346fea1d629ae44723c1fa8ccb4a8f4571e6d9d4c6d3096948e0f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23427:9:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23442:4:22",
"type": ""
}
],
"src": "23276:419:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23798:123:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23808:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23820:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23831:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23816:3:22"
},
"nodeType": "YulFunctionCall",
"src": "23816:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23808:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "23887:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23900:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23911:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23896:3:22"
},
"nodeType": "YulFunctionCall",
"src": "23896:17:22"
}
],
"functionName": {
"name": "abi_encode_t_uint16_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "23844:42:22"
},
"nodeType": "YulFunctionCall",
"src": "23844:70:22"
},
"nodeType": "YulExpressionStatement",
"src": "23844:70:22"
}
]
},
"name": "abi_encode_tuple_t_uint16__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23770:9:22",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "23782:6:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23793:4:22",
"type": ""
}
],
"src": "23701:220:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24077:284:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24087:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24099:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24110:2:22",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24095:3:22"
},
"nodeType": "YulFunctionCall",
"src": "24095:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24087:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "24165:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24178:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24189:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24174:3:22"
},
"nodeType": "YulFunctionCall",
"src": "24174:17:22"
}
],
"functionName": {
"name": "abi_encode_t_uint16_to_t_uint16_fromStack",
"nodeType": "YulIdentifier",
"src": "24123:41:22"
},
"nodeType": "YulFunctionCall",
"src": "24123:69:22"
},
"nodeType": "YulExpressionStatement",
"src": "24123:69:22"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "24244:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24257:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24268:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24253:3:22"
},
"nodeType": "YulFunctionCall",
"src": "24253:18:22"
}
],
"functionName": {
"name": "abi_encode_t_uint80_to_t_uint80_fromStack",
"nodeType": "YulIdentifier",
"src": "24202:41:22"
},
"nodeType": "YulFunctionCall",
"src": "24202:70:22"
},
"nodeType": "YulExpressionStatement",
"src": "24202:70:22"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "24326:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24339:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24350:2:22",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24335:3:22"
},
"nodeType": "YulFunctionCall",
"src": "24335:18:22"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "24282:43:22"
},
"nodeType": "YulFunctionCall",
"src": "24282:72:22"
},
"nodeType": "YulExpressionStatement",
"src": "24282:72:22"
}
]
},
"name": "abi_encode_tuple_t_uint16_t_uint80_t_address__to_t_uint16_t_uint80_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24033:9:22",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "24045:6:22",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "24053:6:22",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "24061:6:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24072:4:22",
"type": ""
}
],
"src": "23927:434:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24465:124:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24475:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24487:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24498:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24483:3:22"
},
"nodeType": "YulFunctionCall",
"src": "24483:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24475:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "24555:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24568:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24579:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24564:3:22"
},
"nodeType": "YulFunctionCall",
"src": "24564:17:22"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "24511:43:22"
},
"nodeType": "YulFunctionCall",
"src": "24511:71:22"
},
"nodeType": "YulExpressionStatement",
"src": "24511:71:22"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24437:9:22",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "24449:6:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24460:4:22",
"type": ""
}
],
"src": "24367:222:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24751:290:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24761:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24773:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24784:2:22",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24769:3:22"
},
"nodeType": "YulFunctionCall",
"src": "24769:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24761:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "24841:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24854:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24865:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24850:3:22"
},
"nodeType": "YulFunctionCall",
"src": "24850:17:22"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "24797:43:22"
},
"nodeType": "YulFunctionCall",
"src": "24797:71:22"
},
"nodeType": "YulExpressionStatement",
"src": "24797:71:22"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "24930:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24943:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24954:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24939:3:22"
},
"nodeType": "YulFunctionCall",
"src": "24939:18:22"
}
],
"functionName": {
"name": "abi_encode_t_rational_0_by_1_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "24878:51:22"
},
"nodeType": "YulFunctionCall",
"src": "24878:80:22"
},
"nodeType": "YulExpressionStatement",
"src": "24878:80:22"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "25006:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25019:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25030:2:22",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25015:3:22"
},
"nodeType": "YulFunctionCall",
"src": "25015:18:22"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "24968:37:22"
},
"nodeType": "YulFunctionCall",
"src": "24968:66:22"
},
"nodeType": "YulExpressionStatement",
"src": "24968:66:22"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_rational_0_by_1_t_bool__to_t_uint256_t_uint256_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24707:9:22",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "24719:6:22",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "24727:6:22",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "24735:6:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24746:4:22",
"type": ""
}
],
"src": "24595:446:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25195:282:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25205:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25217:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25228:2:22",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25213:3:22"
},
"nodeType": "YulFunctionCall",
"src": "25213:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25205:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "25285:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25298:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25309:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25294:3:22"
},
"nodeType": "YulFunctionCall",
"src": "25294:17:22"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "25241:43:22"
},
"nodeType": "YulFunctionCall",
"src": "25241:71:22"
},
"nodeType": "YulExpressionStatement",
"src": "25241:71:22"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "25366:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25379:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25390:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25375:3:22"
},
"nodeType": "YulFunctionCall",
"src": "25375:18:22"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "25322:43:22"
},
"nodeType": "YulFunctionCall",
"src": "25322:72:22"
},
"nodeType": "YulExpressionStatement",
"src": "25322:72:22"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "25442:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25455:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25466:2:22",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25451:3:22"
},
"nodeType": "YulFunctionCall",
"src": "25451:18:22"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "25404:37:22"
},
"nodeType": "YulFunctionCall",
"src": "25404:66:22"
},
"nodeType": "YulExpressionStatement",
"src": "25404:66:22"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_uint256_t_bool__to_t_uint256_t_uint256_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25151:9:22",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "25163:6:22",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "25171:6:22",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "25179:6:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25190:4:22",
"type": ""
}
],
"src": "25047:430:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25577:120:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25587:26:22",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25599:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25610:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25595:3:22"
},
"nodeType": "YulFunctionCall",
"src": "25595:18:22"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25587:4:22"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "25663:6:22"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25676:9:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25687:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25672:3:22"
},
"nodeType": "YulFunctionCall",
"src": "25672:17:22"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "25623:39:22"
},
"nodeType": "YulFunctionCall",
"src": "25623:67:22"
},
"nodeType": "YulExpressionStatement",
"src": "25623:67:22"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25549:9:22",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "25561:6:22",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25572:4:22",
"type": ""
}
],
"src": "25483:214:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25743:35:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25753:19:22",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25769:2:22",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "25763:5:22"
},
"nodeType": "YulFunctionCall",
"src": "25763:9:22"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25753:6:22"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25736:6:22",
"type": ""
}
],
"src": "25703:75:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25879:73:22",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25896:3:22"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25901:6:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25889:6:22"
},
"nodeType": "YulFunctionCall",
"src": "25889:19:22"
},
"nodeType": "YulExpressionStatement",
"src": "25889:19:22"
},
{
"nodeType": "YulAssignment",
"src": "25917:29:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25936:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25941:4:22",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25932:3:22"
},
"nodeType": "YulFunctionCall",
"src": "25932:14:22"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "25917:11:22"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25851:3:22",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "25856:6:22",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "25867:11:22",
"type": ""
}
],
"src": "25784:168:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26054:73:22",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26071:3:22"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26076:6:22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26064:6:22"
},
"nodeType": "YulFunctionCall",
"src": "26064:19:22"
},
"nodeType": "YulExpressionStatement",
"src": "26064:19:22"
},
{
"nodeType": "YulAssignment",
"src": "26092:29:22",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26111:3:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26116:4:22",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26107:3:22"
},
"nodeType": "YulFunctionCall",
"src": "26107:14:22"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "26092:11:22"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "26026:3:22",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "26031:6:22",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "26042:11:22",
"type": ""
}
],
"src": "25958:169:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26177:261:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26187:25:22",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26210:1:22"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26192:17:22"
},
"nodeType": "YulFunctionCall",
"src": "26192:20:22"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26187:1:22"
}
]
},
{
"nodeType": "YulAssignment",
"src": "26221:25:22",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26244:1:22"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26226:17:22"
},
"nodeType": "YulFunctionCall",
"src": "26226:20:22"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26221:1:22"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26384:22:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "26386:16:22"
},
"nodeType": "YulFunctionCall",
"src": "26386:18:22"
},
"nodeType": "YulExpressionStatement",
"src": "26386:18:22"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26305:1:22"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26312:66:22",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26380:1:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26308:3:22"
},
"nodeType": "YulFunctionCall",
"src": "26308:74:22"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "26302:2:22"
},
"nodeType": "YulFunctionCall",
"src": "26302:81:22"
},
"nodeType": "YulIf",
"src": "26299:107:22"
},
{
"nodeType": "YulAssignment",
"src": "26416:16:22",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26427:1:22"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26430:1:22"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26423:3:22"
},
"nodeType": "YulFunctionCall",
"src": "26423:9:22"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "26416:3:22"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "26164:1:22",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "26167:1:22",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "26173:3:22",
"type": ""
}
],
"src": "26133:305:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26486:143:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26496:25:22",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26519:1:22"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26501:17:22"
},
"nodeType": "YulFunctionCall",
"src": "26501:20:22"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26496:1:22"
}
]
},
{
"nodeType": "YulAssignment",
"src": "26530:25:22",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26553:1:22"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26535:17:22"
},
"nodeType": "YulFunctionCall",
"src": "26535:20:22"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26530:1:22"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26577:22:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "26579:16:22"
},
"nodeType": "YulFunctionCall",
"src": "26579:18:22"
},
"nodeType": "YulExpressionStatement",
"src": "26579:18:22"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26574:1:22"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26567:6:22"
},
"nodeType": "YulFunctionCall",
"src": "26567:9:22"
},
"nodeType": "YulIf",
"src": "26564:35:22"
},
{
"nodeType": "YulAssignment",
"src": "26609:14:22",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26618:1:22"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26621:1:22"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "26614:3:22"
},
"nodeType": "YulFunctionCall",
"src": "26614:9:22"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "26609:1:22"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "26475:1:22",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "26478:1:22",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "26484:1:22",
"type": ""
}
],
"src": "26444:185:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26683:300:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26693:25:22",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26716:1:22"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26698:17:22"
},
"nodeType": "YulFunctionCall",
"src": "26698:20:22"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26693:1:22"
}
]
},
{
"nodeType": "YulAssignment",
"src": "26727:25:22",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26750:1:22"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26732:17:22"
},
"nodeType": "YulFunctionCall",
"src": "26732:20:22"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26727:1:22"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26925:22:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "26927:16:22"
},
"nodeType": "YulFunctionCall",
"src": "26927:18:22"
},
"nodeType": "YulExpressionStatement",
"src": "26927:18:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26837:1:22"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26830:6:22"
},
"nodeType": "YulFunctionCall",
"src": "26830:9:22"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26823:6:22"
},
"nodeType": "YulFunctionCall",
"src": "26823:17:22"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26845:1:22"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26852:66:22",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26920:1:22"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "26848:3:22"
},
"nodeType": "YulFunctionCall",
"src": "26848:74:22"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "26842:2:22"
},
"nodeType": "YulFunctionCall",
"src": "26842:81:22"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "26819:3:22"
},
"nodeType": "YulFunctionCall",
"src": "26819:105:22"
},
"nodeType": "YulIf",
"src": "26816:131:22"
},
{
"nodeType": "YulAssignment",
"src": "26957:20:22",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26972:1:22"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26975:1:22"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "26968:3:22"
},
"nodeType": "YulFunctionCall",
"src": "26968:9:22"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "26957:7:22"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "26666:1:22",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "26669:1:22",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "26675:7:22",
"type": ""
}
],
"src": "26635:348:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27034:146:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27044:25:22",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27067:1:22"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "27049:17:22"
},
"nodeType": "YulFunctionCall",
"src": "27049:20:22"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27044:1:22"
}
]
},
{
"nodeType": "YulAssignment",
"src": "27078:25:22",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27101:1:22"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "27083:17:22"
},
"nodeType": "YulFunctionCall",
"src": "27083:20:22"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27078:1:22"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27125:22:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "27127:16:22"
},
"nodeType": "YulFunctionCall",
"src": "27127:18:22"
},
"nodeType": "YulExpressionStatement",
"src": "27127:18:22"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27119:1:22"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27122:1:22"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "27116:2:22"
},
"nodeType": "YulFunctionCall",
"src": "27116:8:22"
},
"nodeType": "YulIf",
"src": "27113:34:22"
},
{
"nodeType": "YulAssignment",
"src": "27157:17:22",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27169:1:22"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27172:1:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27165:3:22"
},
"nodeType": "YulFunctionCall",
"src": "27165:9:22"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "27157:4:22"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "27020:1:22",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "27023:1:22",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "27029:4:22",
"type": ""
}
],
"src": "26989:191:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27229:142:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27239:23:22",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27260:1:22"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "27244:15:22"
},
"nodeType": "YulFunctionCall",
"src": "27244:18:22"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27239:1:22"
}
]
},
{
"nodeType": "YulAssignment",
"src": "27271:23:22",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27292:1:22"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "27276:15:22"
},
"nodeType": "YulFunctionCall",
"src": "27276:18:22"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27271:1:22"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27316:22:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "27318:16:22"
},
"nodeType": "YulFunctionCall",
"src": "27318:18:22"
},
"nodeType": "YulExpressionStatement",
"src": "27318:18:22"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27310:1:22"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27313:1:22"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "27307:2:22"
},
"nodeType": "YulFunctionCall",
"src": "27307:8:22"
},
"nodeType": "YulIf",
"src": "27304:34:22"
},
{
"nodeType": "YulAssignment",
"src": "27348:17:22",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27360:1:22"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27363:1:22"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27356:3:22"
},
"nodeType": "YulFunctionCall",
"src": "27356:9:22"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "27348:4:22"
}
]
}
]
},
"name": "checked_sub_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "27215:1:22",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "27218:1:22",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "27224:4:22",
"type": ""
}
],
"src": "27186:185:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27422:51:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27432:35:22",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27461:5:22"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "27443:17:22"
},
"nodeType": "YulFunctionCall",
"src": "27443:24:22"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "27432:7:22"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27404:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "27414:7:22",
"type": ""
}
],
"src": "27377:96:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27521:48:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27531:32:22",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27556:5:22"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27549:6:22"
},
"nodeType": "YulFunctionCall",
"src": "27549:13:22"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27542:6:22"
},
"nodeType": "YulFunctionCall",
"src": "27542:21:22"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "27531:7:22"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27503:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "27513:7:22",
"type": ""
}
],
"src": "27479:90:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27620:32:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27630:16:22",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "27641:5:22"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "27630:7:22"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27602:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "27612:7:22",
"type": ""
}
],
"src": "27575:77:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27702:105:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27712:89:22",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27727:5:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27734:66:22",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "27723:3:22"
},
"nodeType": "YulFunctionCall",
"src": "27723:78:22"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "27712:7:22"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27684:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "27694:7:22",
"type": ""
}
],
"src": "27658:149:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27857:45:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27867:29:22",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27882:5:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27889:6:22",
"type": "",
"value": "0xffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "27878:3:22"
},
"nodeType": "YulFunctionCall",
"src": "27878:18:22"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "27867:7:22"
}
]
}
]
},
"name": "cleanup_t_uint16",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27839:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "27849:7:22",
"type": ""
}
],
"src": "27813:89:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27953:81:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27963:65:22",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27978:5:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27985:42:22",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "27974:3:22"
},
"nodeType": "YulFunctionCall",
"src": "27974:54:22"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "27963:7:22"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27935:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "27945:7:22",
"type": ""
}
],
"src": "27908:126:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28085:32:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28095:16:22",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "28106:5:22"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "28095:7:22"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28067:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "28077:7:22",
"type": ""
}
],
"src": "28040:77:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28166:43:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28176:27:22",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28191:5:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28198:4:22",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "28187:3:22"
},
"nodeType": "YulFunctionCall",
"src": "28187:16:22"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "28176:7:22"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28148:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "28158:7:22",
"type": ""
}
],
"src": "28123:86:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28259:61:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28269:45:22",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28284:5:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28291:22:22",
"type": "",
"value": "0xffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "28280:3:22"
},
"nodeType": "YulFunctionCall",
"src": "28280:34:22"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "28269:7:22"
}
]
}
]
},
"name": "cleanup_t_uint80",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28241:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "28251:7:22",
"type": ""
}
],
"src": "28215:105:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28394:53:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28404:37:22",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28435:5:22"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28417:17:22"
},
"nodeType": "YulFunctionCall",
"src": "28417:24:22"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "28404:9:22"
}
]
}
]
},
"name": "convert_t_rational_0_by_1_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28374:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "28384:9:22",
"type": ""
}
],
"src": "28326:121:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28512:52:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28522:36:22",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28552:5:22"
}
],
"functionName": {
"name": "cleanup_t_uint16",
"nodeType": "YulIdentifier",
"src": "28535:16:22"
},
"nodeType": "YulFunctionCall",
"src": "28535:23:22"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "28522:9:22"
}
]
}
]
},
"name": "convert_t_uint16_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28492:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "28502:9:22",
"type": ""
}
],
"src": "28453:111:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28613:190:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28623:33:22",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28650:5:22"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28632:17:22"
},
"nodeType": "YulFunctionCall",
"src": "28632:24:22"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28623:5:22"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "28746:22:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "28748:16:22"
},
"nodeType": "YulFunctionCall",
"src": "28748:18:22"
},
"nodeType": "YulExpressionStatement",
"src": "28748:18:22"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28671:5:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28678:66:22",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "28668:2:22"
},
"nodeType": "YulFunctionCall",
"src": "28668:77:22"
},
"nodeType": "YulIf",
"src": "28665:103:22"
},
{
"nodeType": "YulAssignment",
"src": "28777:20:22",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28788:5:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28795:1:22",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28784:3:22"
},
"nodeType": "YulFunctionCall",
"src": "28784:13:22"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "28777:3:22"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28599:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "28609:3:22",
"type": ""
}
],
"src": "28570:233:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28856:53:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28866:37:22",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28897:5:22"
}
],
"functionName": {
"name": "leftAlign_t_uint160",
"nodeType": "YulIdentifier",
"src": "28877:19:22"
},
"nodeType": "YulFunctionCall",
"src": "28877:26:22"
},
"variableNames": [
{
"name": "aligned",
"nodeType": "YulIdentifier",
"src": "28866:7:22"
}
]
}
]
},
"name": "leftAlign_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28838:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "aligned",
"nodeType": "YulTypedName",
"src": "28848:7:22",
"type": ""
}
],
"src": "28809:100:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28962:32:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28972:16:22",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "28983:5:22"
},
"variableNames": [
{
"name": "aligned",
"nodeType": "YulIdentifier",
"src": "28972:7:22"
}
]
}
]
},
"name": "leftAlign_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28944:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "aligned",
"nodeType": "YulTypedName",
"src": "28954:7:22",
"type": ""
}
],
"src": "28915:79:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29047:47:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29057:31:22",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29082:5:22"
}
],
"functionName": {
"name": "shift_left_96",
"nodeType": "YulIdentifier",
"src": "29068:13:22"
},
"nodeType": "YulFunctionCall",
"src": "29068:20:22"
},
"variableNames": [
{
"name": "aligned",
"nodeType": "YulIdentifier",
"src": "29057:7:22"
}
]
}
]
},
"name": "leftAlign_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29029:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "aligned",
"nodeType": "YulTypedName",
"src": "29039:7:22",
"type": ""
}
],
"src": "29000:94:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29147:32:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29157:16:22",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "29168:5:22"
},
"variableNames": [
{
"name": "aligned",
"nodeType": "YulIdentifier",
"src": "29157:7:22"
}
]
}
]
},
"name": "leftAlign_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29129:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "aligned",
"nodeType": "YulTypedName",
"src": "29139:7:22",
"type": ""
}
],
"src": "29100:79:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29219:142:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29229:25:22",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29252:1:22"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "29234:17:22"
},
"nodeType": "YulFunctionCall",
"src": "29234:20:22"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29229:1:22"
}
]
},
{
"nodeType": "YulAssignment",
"src": "29263:25:22",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29286:1:22"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "29268:17:22"
},
"nodeType": "YulFunctionCall",
"src": "29268:20:22"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29263:1:22"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "29310:22:22",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "29312:16:22"
},
"nodeType": "YulFunctionCall",
"src": "29312:18:22"
},
"nodeType": "YulExpressionStatement",
"src": "29312:18:22"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29307:1:22"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "29300:6:22"
},
"nodeType": "YulFunctionCall",
"src": "29300:9:22"
},
"nodeType": "YulIf",
"src": "29297:35:22"
},
{
"nodeType": "YulAssignment",
"src": "29341:14:22",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29350:1:22"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29353:1:22"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "29346:3:22"
},
"nodeType": "YulFunctionCall",
"src": "29346:9:22"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "29341:1:22"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "29208:1:22",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "29211:1:22",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "29217:1:22",
"type": ""
}
],
"src": "29185:176:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29395:152:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29412:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29415:77:22",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29405:6:22"
},
"nodeType": "YulFunctionCall",
"src": "29405:88:22"
},
"nodeType": "YulExpressionStatement",
"src": "29405:88:22"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29509:1:22",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29512:4:22",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29502:6:22"
},
"nodeType": "YulFunctionCall",
"src": "29502:15:22"
},
"nodeType": "YulExpressionStatement",
"src": "29502:15:22"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29533:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29536:4:22",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29526:6:22"
},
"nodeType": "YulFunctionCall",
"src": "29526:15:22"
},
"nodeType": "YulExpressionStatement",
"src": "29526:15:22"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "29367:180:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29581:152:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29598:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29601:77:22",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29591:6:22"
},
"nodeType": "YulFunctionCall",
"src": "29591:88:22"
},
"nodeType": "YulExpressionStatement",
"src": "29591:88:22"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29695:1:22",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29698:4:22",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29688:6:22"
},
"nodeType": "YulFunctionCall",
"src": "29688:15:22"
},
"nodeType": "YulExpressionStatement",
"src": "29688:15:22"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29719:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29722:4:22",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29712:6:22"
},
"nodeType": "YulFunctionCall",
"src": "29712:15:22"
},
"nodeType": "YulExpressionStatement",
"src": "29712:15:22"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "29553:180:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29767:152:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29784:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29787:77:22",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29777:6:22"
},
"nodeType": "YulFunctionCall",
"src": "29777:88:22"
},
"nodeType": "YulExpressionStatement",
"src": "29777:88:22"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29881:1:22",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29884:4:22",
"type": "",
"value": "0x31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29874:6:22"
},
"nodeType": "YulFunctionCall",
"src": "29874:15:22"
},
"nodeType": "YulExpressionStatement",
"src": "29874:15:22"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29905:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29908:4:22",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29898:6:22"
},
"nodeType": "YulFunctionCall",
"src": "29898:15:22"
},
"nodeType": "YulExpressionStatement",
"src": "29898:15:22"
}
]
},
"name": "panic_error_0x31",
"nodeType": "YulFunctionDefinition",
"src": "29739:180:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29953:152:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29970:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29973:77:22",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29963:6:22"
},
"nodeType": "YulFunctionCall",
"src": "29963:88:22"
},
"nodeType": "YulExpressionStatement",
"src": "29963:88:22"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30067:1:22",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30070:4:22",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30060:6:22"
},
"nodeType": "YulFunctionCall",
"src": "30060:15:22"
},
"nodeType": "YulExpressionStatement",
"src": "30060:15:22"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30091:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30094:4:22",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "30084:6:22"
},
"nodeType": "YulFunctionCall",
"src": "30084:15:22"
},
"nodeType": "YulExpressionStatement",
"src": "30084:15:22"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "29925:180:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30200:28:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30217:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30220:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "30210:6:22"
},
"nodeType": "YulFunctionCall",
"src": "30210:12:22"
},
"nodeType": "YulExpressionStatement",
"src": "30210:12:22"
}
]
},
"name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490",
"nodeType": "YulFunctionDefinition",
"src": "30111:117:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30323:28:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30340:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30343:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "30333:6:22"
},
"nodeType": "YulFunctionCall",
"src": "30333:12:22"
},
"nodeType": "YulExpressionStatement",
"src": "30333:12:22"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "30234:117:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30446:28:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30463:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30466:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "30456:6:22"
},
"nodeType": "YulFunctionCall",
"src": "30456:12:22"
},
"nodeType": "YulExpressionStatement",
"src": "30456:12:22"
}
]
},
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulFunctionDefinition",
"src": "30357:117:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30569:28:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30586:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30589:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "30579:6:22"
},
"nodeType": "YulFunctionCall",
"src": "30579:12:22"
},
"nodeType": "YulExpressionStatement",
"src": "30579:12:22"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "30480:117:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30692:28:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30709:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30712:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "30702:6:22"
},
"nodeType": "YulFunctionCall",
"src": "30702:12:22"
},
"nodeType": "YulExpressionStatement",
"src": "30702:12:22"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "30603:117:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30768:52:22",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30778:35:22",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30803:2:22",
"type": "",
"value": "96"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "30807:5:22"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "30799:3:22"
},
"nodeType": "YulFunctionCall",
"src": "30799:14:22"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "30778:8:22"
}
]
}
]
},
"name": "shift_left_96",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "30749:5:22",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "30759:8:22",
"type": ""
}
],
"src": "30726:94:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30932:64:22",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30954:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30962:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30950:3:22"
},
"nodeType": "YulFunctionCall",
"src": "30950:14:22"
},
{
"hexValue": "5061757361626c653a206e6f7420706175736564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30966:22:22",
"type": "",
"value": "Pausable: not paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30943:6:22"
},
"nodeType": "YulFunctionCall",
"src": "30943:46:22"
},
"nodeType": "YulExpressionStatement",
"src": "30943:46:22"
}
]
},
"name": "store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30924:6:22",
"type": ""
}
],
"src": "30826:170:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31108:67:22",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31130:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31138:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31126:3:22"
},
"nodeType": "YulFunctionCall",
"src": "31126:14:22"
},
{
"hexValue": "41494e5420412050415254204f4620544845205041434b",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31142:25:22",
"type": "",
"value": "AINT A PART OF THE PACK"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31119:6:22"
},
"nodeType": "YulFunctionCall",
"src": "31119:49:22"
},
"nodeType": "YulExpressionStatement",
"src": "31119:49:22"
}
]
},
"name": "store_literal_in_memory_1e7292b082f3036cc2b242b13fb6ddd7676e4286eccda978ca4217fb6f525c0d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31100:6:22",
"type": ""
}
],
"src": "31002:173:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31287:119:22",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31309:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31317:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31305:3:22"
},
"nodeType": "YulFunctionCall",
"src": "31305:14:22"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31321:34:22",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31298:6:22"
},
"nodeType": "YulFunctionCall",
"src": "31298:58:22"
},
"nodeType": "YulExpressionStatement",
"src": "31298:58:22"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31377:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31385:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31373:3:22"
},
"nodeType": "YulFunctionCall",
"src": "31373:15:22"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31390:8:22",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31366:6:22"
},
"nodeType": "YulFunctionCall",
"src": "31366:33:22"
},
"nodeType": "YulExpressionStatement",
"src": "31366:33:22"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31279:6:22",
"type": ""
}
],
"src": "31181:225:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31518:59:22",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31540:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31548:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31536:3:22"
},
"nodeType": "YulFunctionCall",
"src": "31536:14:22"
},
{
"hexValue": "5245534355452044495341424c4544",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31552:17:22",
"type": "",
"value": "RESCUE DISABLED"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31529:6:22"
},
"nodeType": "YulFunctionCall",
"src": "31529:41:22"
},
"nodeType": "YulExpressionStatement",
"src": "31529:41:22"
}
]
},
"name": "store_literal_in_memory_3627869cbfbe47c04407c26ad3c50752ee4de310fc5c078427516c3010a4dded",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31510:6:22",
"type": ""
}
],
"src": "31412:165:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31689:116:22",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31711:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31719:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31707:3:22"
},
"nodeType": "YulFunctionCall",
"src": "31707:14:22"
},
{
"hexValue": "43616e6e6f742073656e6420746f6b656e7320746f204261726e206469726563",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31723:34:22",
"type": "",
"value": "Cannot send tokens to Barn direc"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31700:6:22"
},
"nodeType": "YulFunctionCall",
"src": "31700:58:22"
},
"nodeType": "YulExpressionStatement",
"src": "31700:58:22"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31779:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31787:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31775:3:22"
},
"nodeType": "YulFunctionCall",
"src": "31775:15:22"
},
{
"hexValue": "746c79",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31792:5:22",
"type": "",
"value": "tly"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31768:6:22"
},
"nodeType": "YulFunctionCall",
"src": "31768:30:22"
},
"nodeType": "YulExpressionStatement",
"src": "31768:30:22"
}
]
},
"name": "store_literal_in_memory_5a993494cb95a3b702ba42fc8c6e4dd357d6fab0b0ae3d8178fe5bb95577142f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31681:6:22",
"type": ""
}
],
"src": "31583:222:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31917:62:22",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31939:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31947:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31935:3:22"
},
"nodeType": "YulFunctionCall",
"src": "31935:14:22"
},
{
"hexValue": "5357495045522c204e4f2053574950494e47",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31951:20:22",
"type": "",
"value": "SWIPER, NO SWIPING"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31928:6:22"
},
"nodeType": "YulFunctionCall",
"src": "31928:44:22"
},
"nodeType": "YulExpressionStatement",
"src": "31928:44:22"
}
]
},
"name": "store_literal_in_memory_653c04d3397d6f715d1629316c08451dddb4151ebeec4cfcffa5b5e49763a7b8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31909:6:22",
"type": ""
}
],
"src": "31811:168:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32091:60:22",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32113:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32121:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32109:3:22"
},
"nodeType": "YulFunctionCall",
"src": "32109:14:22"
},
{
"hexValue": "5061757361626c653a20706175736564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32125:18:22",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32102:6:22"
},
"nodeType": "YulFunctionCall",
"src": "32102:42:22"
},
"nodeType": "YulExpressionStatement",
"src": "32102:42:22"
}
]
},
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "32083:6:22",
"type": ""
}
],
"src": "31985:166:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32263:117:22",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32285:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32293:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32281:3:22"
},
"nodeType": "YulFunctionCall",
"src": "32281:14:22"
},
{
"hexValue": "474f4e4e4120424520434f4c4420574954484f55542054574f20444159275320",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32297:34:22",
"type": "",
"value": "GONNA BE COLD WITHOUT TWO DAY'S "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32274:6:22"
},
"nodeType": "YulFunctionCall",
"src": "32274:58:22"
},
"nodeType": "YulExpressionStatement",
"src": "32274:58:22"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32353:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32361:2:22",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32349:3:22"
},
"nodeType": "YulFunctionCall",
"src": "32349:15:22"
},
{
"hexValue": "574f4f4c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32366:6:22",
"type": "",
"value": "WOOL"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32342:6:22"
},
"nodeType": "YulFunctionCall",
"src": "32342:31:22"
},
"nodeType": "YulExpressionStatement",
"src": "32342:31:22"
}
]
},
"name": "store_literal_in_memory_6ccb350b77038131fd82d0643bb472d3a648c0583f20a0e746f08be5b652e50d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "32255:6:22",
"type": ""
}
],
"src": "32157:223:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32492:76:22",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32514:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32522:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32510:3:22"
},
"nodeType": "YulFunctionCall",
"src": "32510:14:22"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32526:34:22",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32503:6:22"
},
"nodeType": "YulFunctionCall",
"src": "32503:58:22"
},
"nodeType": "YulExpressionStatement",
"src": "32503:58:22"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "32484:6:22",
"type": ""
}
],
"src": "32386:182:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32680:70:22",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32702:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32710:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32698:3:22"
},
"nodeType": "YulFunctionCall",
"src": "32698:14:22"
},
{
"hexValue": "444f4e54204749564520594f555220544f4b454e532041574159",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32714:28:22",
"type": "",
"value": "DONT GIVE YOUR TOKENS AWAY"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32691:6:22"
},
"nodeType": "YulFunctionCall",
"src": "32691:52:22"
},
"nodeType": "YulExpressionStatement",
"src": "32691:52:22"
}
]
},
"name": "store_literal_in_memory_bfa119aedd29ad111c5c0b27aef45bcf6598aad4dca6f1ee9742c2c7fb594896",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "32672:6:22",
"type": ""
}
],
"src": "32574:176:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32862:8:22",
"statements": []
},
"name": "store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "32854:6:22",
"type": ""
}
],
"src": "32756:114:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32982:57:22",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33004:6:22"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33012:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33000:3:22"
},
"nodeType": "YulFunctionCall",
"src": "33000:14:22"
},
{
"hexValue": "41494e5420594f20544f4b454e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "33016:15:22",
"type": "",
"value": "AINT YO TOKEN"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32993:6:22"
},
"nodeType": "YulFunctionCall",
"src": "32993:39:22"
},
"nodeType": "YulExpressionStatement",
"src": "32993:39:22"
}
]
},
"name": "store_literal_in_memory_ecf9aedd6ac346fea1d629ae44723c1fa8ccb4a8f4571e6d9d4c6d3096948e0f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "32974:6:22",
"type": ""
}
],
"src": "32876:163:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33088:79:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "33145:16:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33154:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33157:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "33147:6:22"
},
"nodeType": "YulFunctionCall",
"src": "33147:12:22"
},
"nodeType": "YulExpressionStatement",
"src": "33147:12:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33111:5:22"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33136:5:22"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "33118:17:22"
},
"nodeType": "YulFunctionCall",
"src": "33118:24:22"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "33108:2:22"
},
"nodeType": "YulFunctionCall",
"src": "33108:35:22"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "33101:6:22"
},
"nodeType": "YulFunctionCall",
"src": "33101:43:22"
},
"nodeType": "YulIf",
"src": "33098:63:22"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "33081:5:22",
"type": ""
}
],
"src": "33045:122:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33213:76:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "33267:16:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33276:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33279:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "33269:6:22"
},
"nodeType": "YulFunctionCall",
"src": "33269:12:22"
},
"nodeType": "YulExpressionStatement",
"src": "33269:12:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33236:5:22"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33258:5:22"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "33243:14:22"
},
"nodeType": "YulFunctionCall",
"src": "33243:21:22"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "33233:2:22"
},
"nodeType": "YulFunctionCall",
"src": "33233:32:22"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "33226:6:22"
},
"nodeType": "YulFunctionCall",
"src": "33226:40:22"
},
"nodeType": "YulIf",
"src": "33223:60:22"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "33206:5:22",
"type": ""
}
],
"src": "33173:116:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33337:78:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "33393:16:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33402:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33405:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "33395:6:22"
},
"nodeType": "YulFunctionCall",
"src": "33395:12:22"
},
"nodeType": "YulExpressionStatement",
"src": "33395:12:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33360:5:22"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33384:5:22"
}
],
"functionName": {
"name": "cleanup_t_uint16",
"nodeType": "YulIdentifier",
"src": "33367:16:22"
},
"nodeType": "YulFunctionCall",
"src": "33367:23:22"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "33357:2:22"
},
"nodeType": "YulFunctionCall",
"src": "33357:34:22"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "33350:6:22"
},
"nodeType": "YulFunctionCall",
"src": "33350:42:22"
},
"nodeType": "YulIf",
"src": "33347:62:22"
}
]
},
"name": "validator_revert_t_uint16",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "33330:5:22",
"type": ""
}
],
"src": "33295:120:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33464:79:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "33521:16:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33530:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33533:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "33523:6:22"
},
"nodeType": "YulFunctionCall",
"src": "33523:12:22"
},
"nodeType": "YulExpressionStatement",
"src": "33523:12:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33487:5:22"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33512:5:22"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "33494:17:22"
},
"nodeType": "YulFunctionCall",
"src": "33494:24:22"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "33484:2:22"
},
"nodeType": "YulFunctionCall",
"src": "33484:35:22"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "33477:6:22"
},
"nodeType": "YulFunctionCall",
"src": "33477:43:22"
},
"nodeType": "YulIf",
"src": "33474:63:22"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "33457:5:22",
"type": ""
}
],
"src": "33421:122:22"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33590:77:22",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "33645:16:22",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33654:1:22",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33657:1:22",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "33647:6:22"
},
"nodeType": "YulFunctionCall",
"src": "33647:12:22"
},
"nodeType": "YulExpressionStatement",
"src": "33647:12:22"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33613:5:22"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33636:5:22"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "33620:15:22"
},
"nodeType": "YulFunctionCall",
"src": "33620:22:22"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "33610:2:22"
},
"nodeType": "YulFunctionCall",
"src": "33610:33:22"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "33603:6:22"
},
"nodeType": "YulFunctionCall",
"src": "33603:41:22"
},
"nodeType": "YulIf",
"src": "33600:61:22"
}
]
},
"name": "validator_revert_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "33583:5:22",
"type": ""
}
],
"src": "33549:118:22"
}
]
},
"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_address_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_address(value)\n }\n\n // uint16[]\n function abi_decode_t_array$_t_uint16_$dyn_calldata_ptr(offset, end) -> arrayPos, length {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n length := calldataload(offset)\n if gt(length, 0xffffffffffffffff) { revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() }\n arrayPos := add(offset, 0x20)\n if gt(add(arrayPos, mul(length, 0x20)), end) { revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() }\n }\n\n // uint256[]\n function abi_decode_t_array$_t_uint256_$dyn_calldata_ptr(offset, end) -> arrayPos, length {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n length := calldataload(offset)\n if gt(length, 0xffffffffffffffff) { revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() }\n arrayPos := add(offset, 0x20)\n if gt(add(arrayPos, mul(length, 0x20)), end) { revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() }\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_t_bool_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bool(value)\n }\n\n // bytes\n function abi_decode_t_bytes_calldata_ptr(offset, end) -> arrayPos, length {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n length := calldataload(offset)\n if gt(length, 0xffffffffffffffff) { revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() }\n arrayPos := add(offset, 0x20)\n if gt(add(arrayPos, mul(length, 0x01)), end) { revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() }\n }\n\n function abi_decode_t_uint16(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint16(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_t_uint8_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint8(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_address_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3, value4 := abi_decode_t_bytes_calldata_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_array$_t_uint16_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1, value2 := abi_decode_t_array$_t_uint16_$dyn_calldata_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_array$_t_uint16_$dyn_calldata_ptrt_bool(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0, value1 := abi_decode_t_array$_t_uint16_$dyn_calldata_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value2 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_array$_t_uint256_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0, value1 := abi_decode_t_array$_t_uint256_$dyn_calldata_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bool(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_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_boolt_uint8t_uint8t_uint8t_uint8t_uint8t_uint8t_uint8t_uint8t_uint8_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6, value7, value8, value9 {\n if slt(sub(dataEnd, headStart), 320) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bool_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint8_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint8_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint8_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_uint8_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 160\n\n value5 := abi_decode_t_uint8_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 192\n\n value6 := abi_decode_t_uint8_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 224\n\n value7 := abi_decode_t_uint8_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 256\n\n value8 := abi_decode_t_uint8_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 288\n\n value9 := abi_decode_t_uint8_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint16(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_uint16(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256t_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_uint256(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_address_to_t_address_nonPadded_inplace_fromStack(value, pos) {\n mstore(pos, leftAlign_t_address(cleanup_t_address(value)))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack(value, pos) {\n mstore(pos, leftAlign_t_bytes32(cleanup_t_bytes32(value)))\n }\n\n function abi_encode_t_bytes4_to_t_bytes4_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes4(value))\n }\n\n function abi_encode_t_rational_0_by_1_to_t_uint256_fromStack(value, pos) {\n mstore(pos, convert_t_rational_0_by_1_to_t_uint256(value))\n }\n\n function abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_1e7292b082f3036cc2b242b13fb6ddd7676e4286eccda978ca4217fb6f525c0d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 23)\n store_literal_in_memory_1e7292b082f3036cc2b242b13fb6ddd7676e4286eccda978ca4217fb6f525c0d(pos)\n end := add(pos, 32)\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_3627869cbfbe47c04407c26ad3c50752ee4de310fc5c078427516c3010a4dded_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 15)\n store_literal_in_memory_3627869cbfbe47c04407c26ad3c50752ee4de310fc5c078427516c3010a4dded(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_5a993494cb95a3b702ba42fc8c6e4dd357d6fab0b0ae3d8178fe5bb95577142f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_5a993494cb95a3b702ba42fc8c6e4dd357d6fab0b0ae3d8178fe5bb95577142f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_653c04d3397d6f715d1629316c08451dddb4151ebeec4cfcffa5b5e49763a7b8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 18)\n store_literal_in_memory_653c04d3397d6f715d1629316c08451dddb4151ebeec4cfcffa5b5e49763a7b8(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_6ccb350b77038131fd82d0643bb472d3a648c0583f20a0e746f08be5b652e50d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_6ccb350b77038131fd82d0643bb472d3a648c0583f20a0e746f08be5b652e50d(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_bfa119aedd29ad111c5c0b27aef45bcf6598aad4dca6f1ee9742c2c7fb594896_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 26)\n store_literal_in_memory_bfa119aedd29ad111c5c0b27aef45bcf6598aad4dca6f1ee9742c2c7fb594896(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, 0)\n store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470(pos)\n end := add(pos, 0)\n }\n\n function abi_encode_t_stringliteral_ecf9aedd6ac346fea1d629ae44723c1fa8ccb4a8f4571e6d9d4c6d3096948e0f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 13)\n store_literal_in_memory_ecf9aedd6ac346fea1d629ae44723c1fa8ccb4a8f4571e6d9d4c6d3096948e0f(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint16_to_t_uint16_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint16(value))\n }\n\n function abi_encode_t_uint16_to_t_uint256_fromStack(value, pos) {\n mstore(pos, convert_t_uint16_to_t_uint256(value))\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_uint256_to_t_uint256_nonPadded_inplace_fromStack(value, pos) {\n mstore(pos, leftAlign_t_uint256(cleanup_t_uint256(value)))\n }\n\n function abi_encode_t_uint80_to_t_uint80_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint80(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_packed_t_address_t_bytes32_t_uint256_t_uint256__to_t_address_t_bytes32_t_uint256_t_uint256__nonPadded_inplace_fromStack_reversed(pos , value3, value2, value1, value0) -> end {\n\n abi_encode_t_address_to_t_address_nonPadded_inplace_fromStack(value0, pos)\n pos := add(pos, 20)\n\n abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack(value1, pos)\n pos := add(pos, 32)\n\n abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value2, pos)\n pos := add(pos, 32)\n\n abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value3, pos)\n pos := add(pos, 32)\n\n end := pos\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint16__to_t_address_t_address_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint16_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\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_bytes4__to_t_bytes4__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes4_to_t_bytes4_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__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_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_1e7292b082f3036cc2b242b13fb6ddd7676e4286eccda978ca4217fb6f525c0d__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_1e7292b082f3036cc2b242b13fb6ddd7676e4286eccda978ca4217fb6f525c0d_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_3627869cbfbe47c04407c26ad3c50752ee4de310fc5c078427516c3010a4dded__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_3627869cbfbe47c04407c26ad3c50752ee4de310fc5c078427516c3010a4dded_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_5a993494cb95a3b702ba42fc8c6e4dd357d6fab0b0ae3d8178fe5bb95577142f__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_5a993494cb95a3b702ba42fc8c6e4dd357d6fab0b0ae3d8178fe5bb95577142f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_653c04d3397d6f715d1629316c08451dddb4151ebeec4cfcffa5b5e49763a7b8__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_653c04d3397d6f715d1629316c08451dddb4151ebeec4cfcffa5b5e49763a7b8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__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_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_6ccb350b77038131fd82d0643bb472d3a648c0583f20a0e746f08be5b652e50d__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_6ccb350b77038131fd82d0643bb472d3a648c0583f20a0e746f08be5b652e50d_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_bfa119aedd29ad111c5c0b27aef45bcf6598aad4dca6f1ee9742c2c7fb594896__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_bfa119aedd29ad111c5c0b27aef45bcf6598aad4dca6f1ee9742c2c7fb594896_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_ecf9aedd6ac346fea1d629ae44723c1fa8ccb4a8f4571e6d9d4c6d3096948e0f__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_ecf9aedd6ac346fea1d629ae44723c1fa8ccb4a8f4571e6d9d4c6d3096948e0f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint16__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint16_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint16_t_uint80_t_address__to_t_uint16_t_uint80_t_address__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_uint16_to_t_uint16_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint80_to_t_uint80_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_address_to_t_address_fromStack(value2, add(headStart, 64))\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_uint256_t_rational_0_by_1_t_bool__to_t_uint256_t_uint256_t_bool__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_rational_0_by_1_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_bool_to_t_bool_fromStack(value2, add(headStart, 64))\n\n }\n\n function abi_encode_tuple_t_uint256_t_uint256_t_bool__to_t_uint256_t_uint256_t_bool__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_bool_to_t_bool_fromStack(value2, add(headStart, 64))\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_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(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 checked_sub_t_uint8(x, y) -> diff {\n x := cleanup_t_uint8(x)\n y := cleanup_t_uint8(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_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_uint16(value) -> cleaned {\n cleaned := and(value, 0xffff)\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 cleanup_t_uint80(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffff)\n }\n\n function convert_t_rational_0_by_1_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(value)\n }\n\n function convert_t_uint16_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint16(value)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function leftAlign_t_address(value) -> aligned {\n aligned := leftAlign_t_uint160(value)\n }\n\n function leftAlign_t_bytes32(value) -> aligned {\n aligned := value\n }\n\n function leftAlign_t_uint160(value) -> aligned {\n aligned := shift_left_96(value)\n }\n\n function leftAlign_t_uint256(value) -> aligned {\n aligned := value\n }\n\n function mod_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function panic_error_0x31() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x31)\n revert(0, 0x24)\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() {\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 shift_left_96(value) -> newValue {\n newValue :=\n\n shl(96, value)\n\n }\n\n function store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: not paused\")\n\n }\n\n function store_literal_in_memory_1e7292b082f3036cc2b242b13fb6ddd7676e4286eccda978ca4217fb6f525c0d(memPtr) {\n\n mstore(add(memPtr, 0), \"AINT A PART OF THE PACK\")\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_3627869cbfbe47c04407c26ad3c50752ee4de310fc5c078427516c3010a4dded(memPtr) {\n\n mstore(add(memPtr, 0), \"RESCUE DISABLED\")\n\n }\n\n function store_literal_in_memory_5a993494cb95a3b702ba42fc8c6e4dd357d6fab0b0ae3d8178fe5bb95577142f(memPtr) {\n\n mstore(add(memPtr, 0), \"Cannot send tokens to Barn direc\")\n\n mstore(add(memPtr, 32), \"tly\")\n\n }\n\n function store_literal_in_memory_653c04d3397d6f715d1629316c08451dddb4151ebeec4cfcffa5b5e49763a7b8(memPtr) {\n\n mstore(add(memPtr, 0), \"SWIPER, NO SWIPING\")\n\n }\n\n function store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: paused\")\n\n }\n\n function store_literal_in_memory_6ccb350b77038131fd82d0643bb472d3a648c0583f20a0e746f08be5b652e50d(memPtr) {\n\n mstore(add(memPtr, 0), \"GONNA BE COLD WITHOUT TWO DAY'S \")\n\n mstore(add(memPtr, 32), \"WOOL\")\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_bfa119aedd29ad111c5c0b27aef45bcf6598aad4dca6f1ee9742c2c7fb594896(memPtr) {\n\n mstore(add(memPtr, 0), \"DONT GIVE YOUR TOKENS AWAY\")\n\n }\n\n function store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470(memPtr) {\n\n }\n\n function store_literal_in_memory_ecf9aedd6ac346fea1d629ae44723c1fa8ccb4a8f4571e6d9d4c6d3096948e0f(memPtr) {\n\n mstore(add(memPtr, 0), \"AINT YO TOKEN\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint16(value) {\n if iszero(eq(value, cleanup_t_uint16(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 function validator_revert_t_uint8(value) {\n if iszero(eq(value, cleanup_t_uint8(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 22,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106101a95760003560e01c80636a3ef057116100f957806388ff498b11610097578063db796b8911610071578063db796b891461048c578063dd55fcb3146104aa578063de54625d146104dc578063f2fde38b1461050c576101a9565b806388ff498b146104325780638da5cb5b14610450578063c0c472c01461046e576101a9565b8063715018a6116100d3578063715018a6146103d257806376531008146103dc57806376fbe719146103f857806381d449c114610416576101a9565b80636a3ef057146103685780636f234fb5146103845780636f257875146103b4576101a9565b806337a386b9116101665780633c989e6a116101405780633c989e6a146102de578063512114361461030e5780635c975abb1461032c578063607af3971461034a576101a9565b806337a386b914610270578063387f8bdd1461028e57806339db714f146102c0576101a9565b806313324aa9146101ae578063150b7a02146101ca57806316c38b3c146101fa578063201ef2a4146102165780632435d6511461023457806328b3e69714610252575b600080fd5b6101c860048036038101906101c391906132d1565b610528565b005b6101e460048036038101906101df91906131e9565b610776565b6040516101f191906138f9565b60405180910390f35b610214600480360381019061020f919061337e565b6107f9565b005b61021e610894565b60405161022b9190613b4f565b60405180910390f35b61023c610899565b6040516102499190613ac6565b60405180910390f35b61025a6108a7565b6040516102679190613ac6565b60405180910390f35b6102786108ac565b6040516102859190613ac6565b60405180910390f35b6102a860048036038101906102a391906134b7565b6108b3565b6040516102b793929190613a8f565b60405180910390f35b6102c8610921565b6040516102d591906138de565b60405180910390f35b6102f860048036038101906102f391906134b7565b610934565b60405161030591906137e2565b60405180910390f35b610316610a64565b6040516103239190613ac6565b60405180910390f35b610334610a6a565b60405161034191906138de565b60405180910390f35b610352610a80565b60405161035f9190613ac6565b60405180910390f35b610382600480360381019061037d9190613331565b610a86565b005b61039e600480360381019061039991906134b7565b611327565b6040516103ab9190613ac6565b60405180910390f35b6103bc61133f565b6040516103c99190613ac6565b60405180910390f35b6103da611345565b005b6103f660048036038101906103f1919061337e565b6113cd565b005b610400611466565b60405161040d9190613ac6565b60405180910390f35b610430600480360381019061042b9190613271565b61146c565b005b61043a6118b1565b6040516104479190613ac6565b60405180910390f35b6104586118c1565b60405161046591906137e2565b60405180910390f35b6104766118ea565b6040516104839190613ac6565b60405180910390f35b6104946118f0565b6040516104a19190613ac6565b60405180910390f35b6104c460048036038101906104bf91906134e4565b6118f6565b6040516104d393929190613a8f565b60405180910390f35b6104f660048036038101906104f191906134b7565b61197d565b60405161050391906138de565b60405180910390f35b6105266004803603810190610521919061318f565b611a61565b005b610530610a6a565b15610570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610567906139d4565b60405180910390fd5b6b07c13bc4b2c133c56000000060095410156105e4576201518069021e19e0c9bab2400000600a54600b54426105a69190613c6d565b6105b09190613c13565b6105ba9190613c13565b6105c49190613be2565b600960008282546105d59190613b8c565b9250508190555042600b819055505b6000805b848490508110156106c95761062785858381811061060957610608613ee7565b5b905060200201602081019061061e919061348a565b61ffff1661197d565b156106735761066185858381811061064257610641613ee7565b5b9050602002016020810190610657919061348a565b61ffff1684611b59565b8261066c9190613b8c565b91506106b6565b6106a885858381811061068957610688613ee7565b5b905060200201602081019061069e919061348a565b61ffff16846120a4565b826106b39190613b8c565b91505b80806106c190613da8565b9150506105e8565b5060008114156106d95750610771565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1961071f61286a565b836040518363ffffffff1660e01b815260040161073d92919061387e565b600060405180830381600087803b15801561075757600080fd5b505af115801561076b573d6000803e3d6000fd5b50505050505b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146107e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dd90613994565b60405180910390fd5b63150b7a0260e01b905095945050505050565b61080161286a565b73ffffffffffffffffffffffffffffffffffffffff1661081f6118c1565b73ffffffffffffffffffffffffffffffffffffffff1614610875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086c90613a14565b60405180910390fd5b801561088857610883612872565b610891565b610890612915565b5b50565b600881565b69021e19e0c9bab240000081565b601481565b6202a30081565b60036020528060005260406000206000915090508060000160009054906101000a900461ffff16908060000160029054906101000a900469ffffffffffffffffffff169080600001600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905083565b600c60009054906101000a900460ff1681565b60008060065414156109495760009050610a5f565b600060065463ffffffff841661095f9190613e29565b90506000602084901c935060006003600861097a9190613ca1565b60ff1690505b600860ff168111610a57578060046000838152602001908152602001600020805490506109ad9190613c13565b826109b89190613b8c565b91508183106109c657610a44565b600460008281526020019081526020016000206004600083815260200190815260200160002080549050866109fb9190613e29565b81548110610a0c57610a0b613ee7565b5b90600052602060002001600001600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169350505050610a5f565b8080610a4f90613da8565b915050610980565b506000925050505b919050565b60095481565b60008060149054906101000a900460ff16905090565b600b5481565b600c60009054906101000a900460ff16610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90613974565b60405180910390fd5b6000610adf612fb3565b610ae7612fb3565b600080600090505b8686905081101561131e57868682818110610b0d57610b0c613ee7565b5b905060200201359450610b1f8561197d565b15610dce57600360008681526020019081526020016000206040518060600160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900469ffffffffffffffffffff1669ffffffffffffffffffff1669ffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509350610bfa61286a565b73ffffffffffffffffffffffffffffffffffffffff16846040015173ffffffffffffffffffffffffffffffffffffffff1614610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c62906139b4565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde30610cb261286a565b886040518463ffffffff1660e01b8152600401610cd193929190613834565b600060405180830381600087803b158015610ceb57600080fd5b505af1158015610cff573d6000803e3d6000fd5b5050505060036000868152602001908152602001600020600080820160006101000a81549061ffff02191690556000820160026101000a81549069ffffffffffffffffffff021916905560008201600c6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550506001600a6000828254610d859190613c6d565b925050819055507fe9d8194f830c159f3fa36a3722d86930569b5a9ce5265dda89fd43f4880761658560006001604051610dc193929190613ae1565b60405180910390a161130b565b610dd7856129b6565b60ff16915060046000838152602001908152602001600020600560008781526020019081526020016000205481548110610e1457610e13613ee7565b5b906000526020600020016040518060600160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900469ffffffffffffffffffff1669ffffffffffffffffffff1669ffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509350610ee161286a565b73ffffffffffffffffffffffffffffffffffffffff16846040015173ffffffffffffffffffffffffffffffffffffffff1614610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f49906139b4565b60405180910390fd5b8160066000828254610f649190613c6d565b92505081905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde30610fb261286a565b886040518463ffffffff1660e01b8152600401610fd193929190613834565b600060405180830381600087803b158015610feb57600080fd5b505af1158015610fff573d6000803e3d6000fd5b5050505060046000838152602001908152602001600020600160046000858152602001908152602001600020805490506110399190613c6d565b8154811061104a57611049613ee7565b5b906000526020600020016040518060600160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900469ffffffffffffffffffff1669ffffffffffffffffffff1669ffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509250826004600084815260200190815260200160002060056000888152602001908152602001600020548154811061114857611147613ee7565b5b9060005260206000200160008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548169ffffffffffffffffffff021916908369ffffffffffffffffffff160217905550604082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050600560008681526020019081526020016000205460056000856000015161ffff168152602001908152602001600020819055506004600083815260200190815260200160002080548061124857611247613eb8565b5b60019003818190600052602060002001600080820160006101000a81549061ffff02191690556000820160026101000a81549069ffffffffffffffffffff021916905560008201600c6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555050905560056000868152602001908152602001600020600090557ff65d435564b020fcb9d6f56608c9333a6cf42914eeddfbac41a764da73667de1856000600160405161130293929190613ae1565b60405180910390a15b808061131690613da8565b915050610aef565b50505050505050565b60056020528060005260406000206000915090505481565b60065481565b61134d61286a565b73ffffffffffffffffffffffffffffffffffffffff1661136b6118c1565b73ffffffffffffffffffffffffffffffffffffffff16146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890613a14565b60405180910390fd5b6113cb6000612a85565b565b6113d561286a565b73ffffffffffffffffffffffffffffffffffffffff166113f36118c1565b73ffffffffffffffffffffffffffffffffffffffff1614611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090613a14565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b600a5481565b61147461286a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115015750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114e961286a565b73ffffffffffffffffffffffffffffffffffffffff16145b611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790613a34565b60405180910390fd5b60005b828290508110156118ab57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661158f61286a565b73ffffffffffffffffffffffffffffffffffffffff16146117b4576115b261286a565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e85858581811061161957611618613ee7565b5b905060200201602081019061162e919061348a565b6040518263ffffffff1660e01b815260040161164a9190613a74565b60206040518083038186803b15801561166257600080fd5b505afa158015611676573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169a91906131bc565b73ffffffffffffffffffffffffffffffffffffffff16146116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e790613a54565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd61173661286a565b3086868681811061174a57611749613ee7565b5b905060200201602081019061175f919061348a565b6040518463ffffffff1660e01b815260040161177d939291906137fd565b600060405180830381600087803b15801561179757600080fd5b505af11580156117ab573d6000803e3d6000fd5b505050506117ee565b60008383838181106117c9576117c8613ee7565b5b90506020020160208101906117de919061348a565b61ffff1614156117ed57611898565b5b61182283838381811061180457611803613ee7565b5b9050602002016020810190611819919061348a565b61ffff1661197d565b156118615761185c8484848481811061183e5761183d613ee7565b5b9050602002016020810190611853919061348a565b61ffff16612b49565b611897565b6118968484848481811061187857611877613ee7565b5b905060200201602081019061188d919061348a565b61ffff16612d52565b5b5b80806118a390613da8565b915050611543565b50505050565b6b07c13bc4b2c133c56000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075481565b60085481565b6004602052816000526040600020818154811061191257600080fd5b90600052602060002001600091509150508060000160009054906101000a900461ffff16908060000160029054906101000a900469ffffffffffffffffffff169080600001600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905083565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e05c57bf836040518263ffffffff1660e01b81526004016119da9190613ac6565b6101406040518083038186803b1580156119f357600080fd5b505afa158015611a07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2b91906133ab565b90919293949596975090919293949596509091929394955090919293945090919293509091925090915090505080915050919050565b611a6961286a565b73ffffffffffffffffffffffffffffffffffffffff16611a876118c1565b73ffffffffffffffffffffffffffffffffffffffff1614611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad490613a14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490613954565b60405180910390fd5b611b5681612a85565b50565b600080600360008581526020019081526020016000206040518060600160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900469ffffffffffffffffffff1669ffffffffffffffffffff1669ffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050611c3261286a565b73ffffffffffffffffffffffffffffffffffffffff16816040015173ffffffffffffffffffffffffffffffffffffffff1614611ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9a906139b4565b60405180910390fd5b828015611ccd57506202a300816020015169ffffffffffffffffffff1642611ccb9190613c6d565b105b15611d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d04906139f4565b60405180910390fd5b6b07c13bc4b2c133c5600000006009541015611d69576201518069021e19e0c9bab2400000826020015169ffffffffffffffffffff1642611d4e9190613c6d565b611d589190613c13565b611d629190613be2565b9150611dd1565b600b54816020015169ffffffffffffffffffff161115611d8c5760009150611dd0565b6201518069021e19e0c9bab2400000826020015169ffffffffffffffffffff16600b54611db99190613c6d565b611dc39190613c13565b611dcd9190613be2565b91505b5b8215611f1e57600180611de386612f05565b161415611df857611df382612f4b565b600091505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde30611e3f61286a565b876040518463ffffffff1660e01b8152600401611e5e93929190613834565b600060405180830381600087803b158015611e7857600080fd5b505af1158015611e8c573d6000803e3d6000fd5b5050505060036000858152602001908152602001600020600080820160006101000a81549061ffff02191690556000820160026101000a81549069ffffffffffffffffffff021916905560008201600c6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550506001600a6000828254611f129190613c6d565b92505081905550612062565b611f3f6064601484611f309190613c13565b611f3a9190613be2565b612f4b565b606460146064611f4f9190613c6d565b83611f5a9190613c13565b611f649190613be2565b915060405180606001604052808561ffff1681526020014269ffffffffffffffffffff168152602001611f9561286a565b73ffffffffffffffffffffffffffffffffffffffff168152506003600086815260200190815260200160002060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548169ffffffffffffffffffff021916908369ffffffffffffffffffff160217905550604082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050505b7fe9d8194f830c159f3fa36a3722d86930569b5a9ce5265dda89fd43f48807616584838560405161209593929190613b18565b60405180910390a15092915050565b60003073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b81526004016121189190613ac6565b60206040518083038186803b15801561213057600080fd5b505afa158015612144573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061216891906131bc565b73ffffffffffffffffffffffffffffffffffffffff16146121be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b590613934565b60405180910390fd5b60006121c9846129b6565b60ff16905060006004600083815260200190815260200160002060056000878152602001908152602001600020548154811061220857612207613ee7565b5b906000526020600020016040518060600160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900469ffffffffffffffffffff1669ffffffffffffffffffff1669ffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505090506122d561286a565b73ffffffffffffffffffffffffffffffffffffffff16816040015173ffffffffffffffffffffffffffffffffffffffff1614612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233d906139b4565b60405180910390fd5b806020015169ffffffffffffffffffff166008546123649190613c6d565b8261236f9190613c13565b925083156126fa5781600660008282546123899190613c6d565b92505081905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde306123d761286a565b886040518463ffffffff1660e01b81526004016123f693929190613834565b600060405180830381600087803b15801561241057600080fd5b505af1158015612424573d6000803e3d6000fd5b50505050600060046000848152602001908152602001600020600160046000868152602001908152602001600020805490506124609190613c6d565b8154811061247157612470613ee7565b5b906000526020600020016040518060600160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900469ffffffffffffffffffff1669ffffffffffffffffffff1669ffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050806004600085815260200190815260200160002060056000898152602001908152602001600020548154811061256f5761256e613ee7565b5b9060005260206000200160008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548169ffffffffffffffffffff021916908369ffffffffffffffffffff160217905550604082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050600560008781526020019081526020016000205460056000836000015161ffff168152602001908152602001600020819055506004600084815260200190815260200160002080548061266f5761266e613eb8565b5b60019003818190600052602060002001600080820160006101000a81549061ffff02191690556000820160026101000a81549069ffffffffffffffffffff021916905560008201600c6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550509055600560008781526020019081526020016000206000905550612827565b60405180606001604052808661ffff16815260200160085469ffffffffffffffffffff16815260200161272b61286a565b73ffffffffffffffffffffffffffffffffffffffff168152506004600084815260200190815260200160002060056000888152602001908152602001600020548154811061277c5761277b613ee7565b5b9060005260206000200160008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548169ffffffffffffffffffff021916908369ffffffffffffffffffff160217905550604082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050505b7ff65d435564b020fcb9d6f56608c9333a6cf42914eeddfbac41a764da73667de185848660405161285a93929190613b18565b60405180910390a1505092915050565b600033905090565b61287a610a6a565b156128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b1906139d4565b60405180910390fd5b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586128fe61286a565b60405161290b91906137e2565b60405180910390a1565b61291d610a6a565b61295c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295390613914565b60405180910390fd5b60008060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61299f61286a565b6040516129ac91906137e2565b60405180910390a1565b600080600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e05c57bf846040518263ffffffff1660e01b8152600401612a149190613ac6565b6101406040518083038186803b158015612a2d57600080fd5b505afa158015612a41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a6591906133ab565b9950505050505050505050806008612a7d9190613ca1565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b51610a6a565b15612b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b88906139d4565b60405180910390fd5b6b07c13bc4b2c133c5600000006009541015612c05576201518069021e19e0c9bab2400000600a54600b5442612bc79190613c6d565b612bd19190613c13565b612bdb9190613c13565b612be59190613be2565b60096000828254612bf69190613b8c565b9250508190555042600b819055505b60405180606001604052808261ffff1681526020014269ffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548169ffffffffffffffffffff021916908369ffffffffffffffffffff160217905550604082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050506001600a6000828254612d0c9190613b8c565b925050819055507f6173e4d2d9dd52aae0ed37afed3adcf924a490639b759ca93d32dc43366c17d2828242604051612d46939291906138a7565b60405180910390a15050565b6000612d5d826129b6565b60ff1690508060066000828254612d749190613b8c565b92505081905550600460008281526020019081526020016000208054905060056000848152602001908152602001600020819055506004600082815260200190815260200160002060405180606001604052808461ffff16815260200160085469ffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548169ffffffffffffffffffff021916908369ffffffffffffffffffff160217905550604082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050507f6173e4d2d9dd52aae0ed37afed3adcf924a490639b759ca93d32dc43366c17d28383600854604051612ef8939291906138a7565b60405180910390a1505050565b600032600143612f159190613c6d565b404284604051602001612f2b9493929190613794565b6040516020818303038152906040528051906020012060001c9050919050565b60006006541415612f74578060076000828254612f689190613b8c565b92505081905550612fb0565b60065460075482612f859190613b8c565b612f8f9190613be2565b60086000828254612fa09190613b8c565b9250508190555060006007819055505b50565b6040518060600160405280600061ffff168152602001600069ffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b60008135905061300981614174565b92915050565b60008151905061301e81614174565b92915050565b60008083601f84011261303a57613039613f1b565b5b8235905067ffffffffffffffff81111561305757613056613f16565b5b60208301915083602082028301111561307357613072613f20565b5b9250929050565b60008083601f8401126130905761308f613f1b565b5b8235905067ffffffffffffffff8111156130ad576130ac613f16565b5b6020830191508360208202830111156130c9576130c8613f20565b5b9250929050565b6000813590506130df8161418b565b92915050565b6000815190506130f48161418b565b92915050565b60008083601f8401126131105761310f613f1b565b5b8235905067ffffffffffffffff81111561312d5761312c613f16565b5b60208301915083600182028301111561314957613148613f20565b5b9250929050565b60008135905061315f816141a2565b92915050565b600081359050613174816141b9565b92915050565b600081519050613189816141d0565b92915050565b6000602082840312156131a5576131a4613f2a565b5b60006131b384828501612ffa565b91505092915050565b6000602082840312156131d2576131d1613f2a565b5b60006131e08482850161300f565b91505092915050565b60008060008060006080868803121561320557613204613f2a565b5b600061321388828901612ffa565b955050602061322488828901612ffa565b945050604061323588828901613165565b935050606086013567ffffffffffffffff81111561325657613255613f25565b5b613262888289016130fa565b92509250509295509295909350565b60008060006040848603121561328a57613289613f2a565b5b600061329886828701612ffa565b935050602084013567ffffffffffffffff8111156132b9576132b8613f25565b5b6132c586828701613024565b92509250509250925092565b6000806000604084860312156132ea576132e9613f2a565b5b600084013567ffffffffffffffff81111561330857613307613f25565b5b61331486828701613024565b93509350506020613327868287016130d0565b9150509250925092565b6000806020838503121561334857613347613f2a565b5b600083013567ffffffffffffffff81111561336657613365613f25565b5b6133728582860161307a565b92509250509250929050565b60006020828403121561339457613393613f2a565b5b60006133a2848285016130d0565b91505092915050565b6000806000806000806000806000806101408b8d0312156133cf576133ce613f2a565b5b60006133dd8d828e016130e5565b9a505060206133ee8d828e0161317a565b99505060406133ff8d828e0161317a565b98505060606134108d828e0161317a565b97505060806134218d828e0161317a565b96505060a06134328d828e0161317a565b95505060c06134438d828e0161317a565b94505060e06134548d828e0161317a565b9350506101006134668d828e0161317a565b9250506101206134788d828e0161317a565b9150509295989b9194979a5092959850565b6000602082840312156134a05761349f613f2a565b5b60006134ae84828501613150565b91505092915050565b6000602082840312156134cd576134cc613f2a565b5b60006134db84828501613165565b91505092915050565b600080604083850312156134fb576134fa613f2a565b5b600061350985828601613165565b925050602061351a85828601613165565b9150509250929050565b61352d81613cd5565b82525050565b61354461353f82613cd5565b613df1565b82525050565b61355381613ce7565b82525050565b61356a61356582613cf3565b613e03565b82525050565b61357981613cfd565b82525050565b61358881613d84565b82525050565b600061359b601483613b7b565b91506135a682613f3c565b602082019050919050565b60006135be601783613b7b565b91506135c982613f65565b602082019050919050565b60006135e1602683613b7b565b91506135ec82613f8e565b604082019050919050565b6000613604600f83613b7b565b915061360f82613fdd565b602082019050919050565b6000613627602383613b7b565b915061363282614006565b604082019050919050565b600061364a601283613b7b565b915061365582614055565b602082019050919050565b600061366d601083613b7b565b91506136788261407e565b602082019050919050565b6000613690602483613b7b565b915061369b826140a7565b604082019050919050565b60006136b3602083613b7b565b91506136be826140f6565b602082019050919050565b60006136d6601a83613b7b565b91506136e18261411f565b602082019050919050565b60006136f9600083613b6a565b915061370482614148565b600082019050919050565b600061371c600d83613b7b565b91506137278261414b565b602082019050919050565b61373b81613d29565b82525050565b61374a81613d96565b82525050565b61375981613d57565b82525050565b61377061376b82613d57565b613e1f565b82525050565b61377f81613d6e565b82525050565b61378e81613d61565b82525050565b60006137a08287613533565b6014820191506137b08286613559565b6020820191506137c0828561375f565b6020820191506137d0828461375f565b60208201915081905095945050505050565b60006020820190506137f76000830184613524565b92915050565b60006060820190506138126000830186613524565b61381f6020830185613524565b61382c6040830184613741565b949350505050565b60006080820190506138496000830186613524565b6138566020830185613524565b6138636040830184613750565b8181036060830152613874816136ec565b9050949350505050565b60006040820190506138936000830185613524565b6138a06020830184613750565b9392505050565b60006060820190506138bc6000830186613524565b6138c96020830185613750565b6138d66040830184613750565b949350505050565b60006020820190506138f3600083018461354a565b92915050565b600060208201905061390e6000830184613570565b92915050565b6000602082019050818103600083015261392d8161358e565b9050919050565b6000602082019050818103600083015261394d816135b1565b9050919050565b6000602082019050818103600083015261396d816135d4565b9050919050565b6000602082019050818103600083015261398d816135f7565b9050919050565b600060208201905081810360008301526139ad8161361a565b9050919050565b600060208201905081810360008301526139cd8161363d565b9050919050565b600060208201905081810360008301526139ed81613660565b9050919050565b60006020820190508181036000830152613a0d81613683565b9050919050565b60006020820190508181036000830152613a2d816136a6565b9050919050565b60006020820190508181036000830152613a4d816136c9565b9050919050565b60006020820190508181036000830152613a6d8161370f565b9050919050565b6000602082019050613a896000830184613741565b92915050565b6000606082019050613aa46000830186613732565b613ab16020830185613776565b613abe6040830184613524565b949350505050565b6000602082019050613adb6000830184613750565b92915050565b6000606082019050613af66000830186613750565b613b03602083018561357f565b613b10604083018461354a565b949350505050565b6000606082019050613b2d6000830186613750565b613b3a6020830185613750565b613b47604083018461354a565b949350505050565b6000602082019050613b646000830184613785565b92915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613b9782613d57565b9150613ba283613d57565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bd757613bd6613e5a565b5b828201905092915050565b6000613bed82613d57565b9150613bf883613d57565b925082613c0857613c07613e89565b5b828204905092915050565b6000613c1e82613d57565b9150613c2983613d57565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c6257613c61613e5a565b5b828202905092915050565b6000613c7882613d57565b9150613c8383613d57565b925082821015613c9657613c95613e5a565b5b828203905092915050565b6000613cac82613d61565b9150613cb783613d61565b925082821015613cca57613cc9613e5a565b5b828203905092915050565b6000613ce082613d37565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600069ffffffffffffffffffff82169050919050565b6000613d8f82613d57565b9050919050565b6000613da182613d29565b9050919050565b6000613db382613d57565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613de657613de5613e5a565b5b600182019050919050565b6000613dfc82613e0d565b9050919050565b6000819050919050565b6000613e1882613f2f565b9050919050565b6000819050919050565b6000613e3482613d57565b9150613e3f83613d57565b925082613e4f57613e4e613e89565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f41494e5420412050415254204f4620544845205041434b000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5245534355452044495341424c45440000000000000000000000000000000000600082015250565b7f43616e6e6f742073656e6420746f6b656e7320746f204261726e20646972656360008201527f746c790000000000000000000000000000000000000000000000000000000000602082015250565b7f5357495045522c204e4f2053574950494e470000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f474f4e4e4120424520434f4c4420574954484f55542054574f2044415927532060008201527f574f4f4c00000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f444f4e54204749564520594f555220544f4b454e532041574159000000000000600082015250565b50565b7f41494e5420594f20544f4b454e00000000000000000000000000000000000000600082015250565b61417d81613cd5565b811461418857600080fd5b50565b61419481613ce7565b811461419f57600080fd5b50565b6141ab81613d29565b81146141b657600080fd5b50565b6141c281613d57565b81146141cd57600080fd5b50565b6141d981613d61565b81146141e457600080fd5b5056fea2646970667358221220105bba3044aabdaa7acef578b27cc0ff0e7a1a36ea1a2dc980b795594668657864736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1A9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6A3EF057 GT PUSH2 0xF9 JUMPI DUP1 PUSH4 0x88FF498B GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xDB796B89 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xDB796B89 EQ PUSH2 0x48C JUMPI DUP1 PUSH4 0xDD55FCB3 EQ PUSH2 0x4AA JUMPI DUP1 PUSH4 0xDE54625D EQ PUSH2 0x4DC JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x50C JUMPI PUSH2 0x1A9 JUMP JUMPDEST DUP1 PUSH4 0x88FF498B EQ PUSH2 0x432 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x450 JUMPI DUP1 PUSH4 0xC0C472C0 EQ PUSH2 0x46E JUMPI PUSH2 0x1A9 JUMP JUMPDEST DUP1 PUSH4 0x715018A6 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x3D2 JUMPI DUP1 PUSH4 0x76531008 EQ PUSH2 0x3DC JUMPI DUP1 PUSH4 0x76FBE719 EQ PUSH2 0x3F8 JUMPI DUP1 PUSH4 0x81D449C1 EQ PUSH2 0x416 JUMPI PUSH2 0x1A9 JUMP JUMPDEST DUP1 PUSH4 0x6A3EF057 EQ PUSH2 0x368 JUMPI DUP1 PUSH4 0x6F234FB5 EQ PUSH2 0x384 JUMPI DUP1 PUSH4 0x6F257875 EQ PUSH2 0x3B4 JUMPI PUSH2 0x1A9 JUMP JUMPDEST DUP1 PUSH4 0x37A386B9 GT PUSH2 0x166 JUMPI DUP1 PUSH4 0x3C989E6A GT PUSH2 0x140 JUMPI DUP1 PUSH4 0x3C989E6A EQ PUSH2 0x2DE JUMPI DUP1 PUSH4 0x51211436 EQ PUSH2 0x30E JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x32C JUMPI DUP1 PUSH4 0x607AF397 EQ PUSH2 0x34A JUMPI PUSH2 0x1A9 JUMP JUMPDEST DUP1 PUSH4 0x37A386B9 EQ PUSH2 0x270 JUMPI DUP1 PUSH4 0x387F8BDD EQ PUSH2 0x28E JUMPI DUP1 PUSH4 0x39DB714F EQ PUSH2 0x2C0 JUMPI PUSH2 0x1A9 JUMP JUMPDEST DUP1 PUSH4 0x13324AA9 EQ PUSH2 0x1AE JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0x16C38B3C EQ PUSH2 0x1FA JUMPI DUP1 PUSH4 0x201EF2A4 EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0x2435D651 EQ PUSH2 0x234 JUMPI DUP1 PUSH4 0x28B3E697 EQ PUSH2 0x252 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1C8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C3 SWAP2 SWAP1 PUSH2 0x32D1 JUMP JUMPDEST PUSH2 0x528 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1E4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DF SWAP2 SWAP1 PUSH2 0x31E9 JUMP JUMPDEST PUSH2 0x776 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F1 SWAP2 SWAP1 PUSH2 0x38F9 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 0x337E JUMP JUMPDEST PUSH2 0x7F9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x21E PUSH2 0x894 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x22B SWAP2 SWAP1 PUSH2 0x3B4F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23C PUSH2 0x899 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x249 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x25A PUSH2 0x8A7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x267 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x278 PUSH2 0x8AC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x285 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A3 SWAP2 SWAP1 PUSH2 0x34B7 JUMP JUMPDEST PUSH2 0x8B3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B7 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3A8F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C8 PUSH2 0x921 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D5 SWAP2 SWAP1 PUSH2 0x38DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F3 SWAP2 SWAP1 PUSH2 0x34B7 JUMP JUMPDEST PUSH2 0x934 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x305 SWAP2 SWAP1 PUSH2 0x37E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x316 PUSH2 0xA64 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x323 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x334 PUSH2 0xA6A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x341 SWAP2 SWAP1 PUSH2 0x38DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x352 PUSH2 0xA80 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x35F SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x382 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x37D SWAP2 SWAP1 PUSH2 0x3331 JUMP JUMPDEST PUSH2 0xA86 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x39E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x399 SWAP2 SWAP1 PUSH2 0x34B7 JUMP JUMPDEST PUSH2 0x1327 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3AB SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3BC PUSH2 0x133F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3C9 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3DA PUSH2 0x1345 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3F6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3F1 SWAP2 SWAP1 PUSH2 0x337E JUMP JUMPDEST PUSH2 0x13CD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x400 PUSH2 0x1466 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x40D SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x430 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x42B SWAP2 SWAP1 PUSH2 0x3271 JUMP JUMPDEST PUSH2 0x146C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x43A PUSH2 0x18B1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x447 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x458 PUSH2 0x18C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x465 SWAP2 SWAP1 PUSH2 0x37E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x476 PUSH2 0x18EA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x483 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x494 PUSH2 0x18F0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4A1 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4C4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4BF SWAP2 SWAP1 PUSH2 0x34E4 JUMP JUMPDEST PUSH2 0x18F6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D3 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3A8F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4F6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4F1 SWAP2 SWAP1 PUSH2 0x34B7 JUMP JUMPDEST PUSH2 0x197D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x503 SWAP2 SWAP1 PUSH2 0x38DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x526 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x521 SWAP2 SWAP1 PUSH2 0x318F JUMP JUMPDEST PUSH2 0x1A61 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x530 PUSH2 0xA6A JUMP JUMPDEST ISZERO PUSH2 0x570 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x567 SWAP1 PUSH2 0x39D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH12 0x7C13BC4B2C133C560000000 PUSH1 0x9 SLOAD LT ISZERO PUSH2 0x5E4 JUMPI PUSH3 0x15180 PUSH10 0x21E19E0C9BAB2400000 PUSH1 0xA SLOAD PUSH1 0xB SLOAD TIMESTAMP PUSH2 0x5A6 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST PUSH2 0x5B0 SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST PUSH2 0x5BA SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST PUSH2 0x5C4 SWAP2 SWAP1 PUSH2 0x3BE2 JUMP JUMPDEST PUSH1 0x9 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x5D5 SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP TIMESTAMP PUSH1 0xB DUP2 SWAP1 SSTORE POP JUMPDEST PUSH1 0x0 DUP1 JUMPDEST DUP5 DUP5 SWAP1 POP DUP2 LT ISZERO PUSH2 0x6C9 JUMPI PUSH2 0x627 DUP6 DUP6 DUP4 DUP2 DUP2 LT PUSH2 0x609 JUMPI PUSH2 0x608 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x61E SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH2 0xFFFF AND PUSH2 0x197D JUMP JUMPDEST ISZERO PUSH2 0x673 JUMPI PUSH2 0x661 DUP6 DUP6 DUP4 DUP2 DUP2 LT PUSH2 0x642 JUMPI PUSH2 0x641 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x657 SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH2 0xFFFF AND DUP5 PUSH2 0x1B59 JUMP JUMPDEST DUP3 PUSH2 0x66C SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP2 POP PUSH2 0x6B6 JUMP JUMPDEST PUSH2 0x6A8 DUP6 DUP6 DUP4 DUP2 DUP2 LT PUSH2 0x689 JUMPI PUSH2 0x688 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x69E SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH2 0xFFFF AND DUP5 PUSH2 0x20A4 JUMP JUMPDEST DUP3 PUSH2 0x6B3 SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP2 POP JUMPDEST DUP1 DUP1 PUSH2 0x6C1 SWAP1 PUSH2 0x3DA8 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x5E8 JUMP JUMPDEST POP PUSH1 0x0 DUP2 EQ ISZERO PUSH2 0x6D9 JUMPI POP PUSH2 0x771 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x40C10F19 PUSH2 0x71F PUSH2 0x286A JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x73D SWAP3 SWAP2 SWAP1 PUSH2 0x387E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x757 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x76B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x7E6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7DD SWAP1 PUSH2 0x3994 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x801 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x81F PUSH2 0x18C1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x875 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x86C SWAP1 PUSH2 0x3A14 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 ISZERO PUSH2 0x888 JUMPI PUSH2 0x883 PUSH2 0x2872 JUMP JUMPDEST PUSH2 0x891 JUMP JUMPDEST PUSH2 0x890 PUSH2 0x2915 JUMP JUMPDEST JUMPDEST POP JUMP JUMPDEST PUSH1 0x8 DUP2 JUMP JUMPDEST PUSH10 0x21E19E0C9BAB2400000 DUP2 JUMP JUMPDEST PUSH1 0x14 DUP2 JUMP JUMPDEST PUSH3 0x2A300 DUP2 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH2 0xFFFF AND SWAP1 DUP1 PUSH1 0x0 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x0 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP4 JUMP JUMPDEST PUSH1 0xC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x6 SLOAD EQ ISZERO PUSH2 0x949 JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0xA5F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x6 SLOAD PUSH4 0xFFFFFFFF DUP5 AND PUSH2 0x95F SWAP2 SWAP1 PUSH2 0x3E29 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x20 DUP5 SWAP1 SHR SWAP4 POP PUSH1 0x0 PUSH1 0x3 PUSH1 0x8 PUSH2 0x97A SWAP2 SWAP1 PUSH2 0x3CA1 JUMP JUMPDEST PUSH1 0xFF AND SWAP1 POP JUMPDEST PUSH1 0x8 PUSH1 0xFF AND DUP2 GT PUSH2 0xA57 JUMPI DUP1 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 POP PUSH2 0x9AD SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST DUP3 PUSH2 0x9B8 SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP2 POP DUP2 DUP4 LT PUSH2 0x9C6 JUMPI PUSH2 0xA44 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 POP DUP7 PUSH2 0x9FB SWAP2 SWAP1 PUSH2 0x3E29 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0xA0C JUMPI PUSH2 0xA0B PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP4 POP POP POP POP PUSH2 0xA5F JUMP JUMPDEST DUP1 DUP1 PUSH2 0xA4F SWAP1 PUSH2 0x3DA8 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x980 JUMP JUMPDEST POP PUSH1 0x0 SWAP3 POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0xB SLOAD DUP2 JUMP JUMPDEST PUSH1 0xC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0xAD5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xACC SWAP1 PUSH2 0x3974 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xADF PUSH2 0x2FB3 JUMP JUMPDEST PUSH2 0xAE7 PUSH2 0x2FB3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 POP JUMPDEST DUP7 DUP7 SWAP1 POP DUP2 LT ISZERO PUSH2 0x131E JUMPI DUP7 DUP7 DUP3 DUP2 DUP2 LT PUSH2 0xB0D JUMPI PUSH2 0xB0C PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD SWAP5 POP PUSH2 0xB1F DUP6 PUSH2 0x197D JUMP JUMPDEST ISZERO PUSH2 0xDCE JUMPI PUSH1 0x3 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0xFFFF AND PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP SWAP4 POP PUSH2 0xBFA PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x40 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xC6B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC62 SWAP1 PUSH2 0x39B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xB88D4FDE ADDRESS PUSH2 0xCB2 PUSH2 0x286A JUMP JUMPDEST DUP9 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCD1 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xCEB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xCFF JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x3 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH2 0xFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x0 DUP3 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x0 DUP3 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE POP POP PUSH1 0x1 PUSH1 0xA PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xD85 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH32 0xE9D8194F830C159F3FA36A3722D86930569B5A9CE5265DDA89FD43F488076165 DUP6 PUSH1 0x0 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0xDC1 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3AE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0x130B JUMP JUMPDEST PUSH2 0xDD7 DUP6 PUSH2 0x29B6 JUMP JUMPDEST PUSH1 0xFF AND SWAP2 POP PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0xE14 JUMPI PUSH2 0xE13 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0xFFFF AND PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP SWAP4 POP PUSH2 0xEE1 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x40 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xF52 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF49 SWAP1 PUSH2 0x39B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x6 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xF64 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xB88D4FDE ADDRESS PUSH2 0xFB2 PUSH2 0x286A JUMP JUMPDEST DUP9 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFD1 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xFEB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xFFF JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0x4 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 POP PUSH2 0x1039 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x104A JUMPI PUSH2 0x1049 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0xFFFF AND PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP SWAP3 POP DUP3 PUSH1 0x4 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x1148 JUMPI PUSH2 0x1147 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP PUSH1 0x5 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x5 PUSH1 0x0 DUP6 PUSH1 0x0 ADD MLOAD PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD DUP1 PUSH2 0x1248 JUMPI PUSH2 0x1247 PUSH2 0x3EB8 JUMP JUMPDEST JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH2 0xFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x0 DUP3 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x0 DUP3 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE POP POP SWAP1 SSTORE PUSH1 0x5 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH32 0xF65D435564B020FCB9D6F56608C9333A6CF42914EEDDFBAC41A764DA73667DE1 DUP6 PUSH1 0x0 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x1302 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3AE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST DUP1 DUP1 PUSH2 0x1316 SWAP1 PUSH2 0x3DA8 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xAEF JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x5 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x134D PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x136B PUSH2 0x18C1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x13C1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13B8 SWAP1 PUSH2 0x3A14 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x13CB PUSH1 0x0 PUSH2 0x2A85 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x13D5 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x13F3 PUSH2 0x18C1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1449 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1440 SWAP1 PUSH2 0x3A14 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xC 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 0xA SLOAD DUP2 JUMP JUMPDEST PUSH2 0x1474 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x1501 JUMPI POP PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x14E9 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST PUSH2 0x1540 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1537 SWAP1 PUSH2 0x3A34 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP3 SWAP1 POP DUP2 LT ISZERO PUSH2 0x18AB JUMPI PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x158F PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x17B4 JUMPI PUSH2 0x15B2 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x6352211E DUP6 DUP6 DUP6 DUP2 DUP2 LT PUSH2 0x1619 JUMPI PUSH2 0x1618 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x162E SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x164A SWAP2 SWAP1 PUSH2 0x3A74 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1662 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1676 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x169A SWAP2 SWAP1 PUSH2 0x31BC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x16F0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16E7 SWAP1 PUSH2 0x3A54 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD PUSH2 0x1736 PUSH2 0x286A JUMP JUMPDEST ADDRESS DUP7 DUP7 DUP7 DUP2 DUP2 LT PUSH2 0x174A JUMPI PUSH2 0x1749 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x175F SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x177D SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x37FD JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1797 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x17AB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH2 0x17EE JUMP JUMPDEST PUSH1 0x0 DUP4 DUP4 DUP4 DUP2 DUP2 LT PUSH2 0x17C9 JUMPI PUSH2 0x17C8 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x17DE SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH2 0xFFFF AND EQ ISZERO PUSH2 0x17ED JUMPI PUSH2 0x1898 JUMP JUMPDEST JUMPDEST PUSH2 0x1822 DUP4 DUP4 DUP4 DUP2 DUP2 LT PUSH2 0x1804 JUMPI PUSH2 0x1803 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1819 SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH2 0xFFFF AND PUSH2 0x197D JUMP JUMPDEST ISZERO PUSH2 0x1861 JUMPI PUSH2 0x185C DUP5 DUP5 DUP5 DUP5 DUP2 DUP2 LT PUSH2 0x183E JUMPI PUSH2 0x183D PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1853 SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH2 0xFFFF AND PUSH2 0x2B49 JUMP JUMPDEST PUSH2 0x1897 JUMP JUMPDEST PUSH2 0x1896 DUP5 DUP5 DUP5 DUP5 DUP2 DUP2 LT PUSH2 0x1878 JUMPI PUSH2 0x1877 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x188D SWAP2 SWAP1 PUSH2 0x348A JUMP JUMPDEST PUSH2 0xFFFF AND PUSH2 0x2D52 JUMP JUMPDEST JUMPDEST JUMPDEST DUP1 DUP1 PUSH2 0x18A3 SWAP1 PUSH2 0x3DA8 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1543 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH12 0x7C13BC4B2C133C560000000 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x7 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1912 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP2 POP POP DUP1 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH2 0xFFFF AND SWAP1 DUP1 PUSH1 0x0 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x0 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP4 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xE05C57BF DUP4 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19DA SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH2 0x140 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x19F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1A07 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1A2B SWAP2 SWAP1 PUSH2 0x33AB JUMP JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 SWAP7 SWAP8 POP SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 SWAP7 POP SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 POP SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 POP SWAP1 SWAP2 SWAP3 SWAP4 POP SWAP1 SWAP2 SWAP3 POP SWAP1 SWAP2 POP SWAP1 POP POP DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1A69 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1A87 PUSH2 0x18C1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1ADD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AD4 SWAP1 PUSH2 0x3A14 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1B4D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B44 SWAP1 PUSH2 0x3954 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1B56 DUP2 PUSH2 0x2A85 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x3 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0xFFFF AND PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP SWAP1 POP PUSH2 0x1C32 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x40 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1CA3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C9A SWAP1 PUSH2 0x39B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 DUP1 ISZERO PUSH2 0x1CCD JUMPI POP PUSH3 0x2A300 DUP2 PUSH1 0x20 ADD MLOAD PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND TIMESTAMP PUSH2 0x1CCB SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST LT JUMPDEST ISZERO PUSH2 0x1D0D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D04 SWAP1 PUSH2 0x39F4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH12 0x7C13BC4B2C133C560000000 PUSH1 0x9 SLOAD LT ISZERO PUSH2 0x1D69 JUMPI PUSH3 0x15180 PUSH10 0x21E19E0C9BAB2400000 DUP3 PUSH1 0x20 ADD MLOAD PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND TIMESTAMP PUSH2 0x1D4E SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST PUSH2 0x1D58 SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST PUSH2 0x1D62 SWAP2 SWAP1 PUSH2 0x3BE2 JUMP JUMPDEST SWAP2 POP PUSH2 0x1DD1 JUMP JUMPDEST PUSH1 0xB SLOAD DUP2 PUSH1 0x20 ADD MLOAD PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND GT ISZERO PUSH2 0x1D8C JUMPI PUSH1 0x0 SWAP2 POP PUSH2 0x1DD0 JUMP JUMPDEST PUSH3 0x15180 PUSH10 0x21E19E0C9BAB2400000 DUP3 PUSH1 0x20 ADD MLOAD PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xB SLOAD PUSH2 0x1DB9 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST PUSH2 0x1DC3 SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST PUSH2 0x1DCD SWAP2 SWAP1 PUSH2 0x3BE2 JUMP JUMPDEST SWAP2 POP JUMPDEST JUMPDEST DUP3 ISZERO PUSH2 0x1F1E JUMPI PUSH1 0x1 DUP1 PUSH2 0x1DE3 DUP7 PUSH2 0x2F05 JUMP JUMPDEST AND EQ ISZERO PUSH2 0x1DF8 JUMPI PUSH2 0x1DF3 DUP3 PUSH2 0x2F4B JUMP JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xB88D4FDE ADDRESS PUSH2 0x1E3F PUSH2 0x286A JUMP JUMPDEST DUP8 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E5E SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1E78 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1E8C JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x3 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH2 0xFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x0 DUP3 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x0 DUP3 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE POP POP PUSH1 0x1 PUSH1 0xA PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1F12 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0x2062 JUMP JUMPDEST PUSH2 0x1F3F PUSH1 0x64 PUSH1 0x14 DUP5 PUSH2 0x1F30 SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST PUSH2 0x1F3A SWAP2 SWAP1 PUSH2 0x3BE2 JUMP JUMPDEST PUSH2 0x2F4B JUMP JUMPDEST PUSH1 0x64 PUSH1 0x14 PUSH1 0x64 PUSH2 0x1F4F SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST DUP4 PUSH2 0x1F5A SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST PUSH2 0x1F64 SWAP2 SWAP1 PUSH2 0x3BE2 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP6 PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F95 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x3 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP JUMPDEST PUSH32 0xE9D8194F830C159F3FA36A3722D86930569B5A9CE5265DDA89FD43F488076165 DUP5 DUP4 DUP6 PUSH1 0x40 MLOAD PUSH2 0x2095 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3B18 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x6352211E DUP6 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2118 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2130 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2144 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2168 SWAP2 SWAP1 PUSH2 0x31BC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x21BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x21B5 SWAP1 PUSH2 0x3934 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x21C9 DUP5 PUSH2 0x29B6 JUMP JUMPDEST PUSH1 0xFF AND SWAP1 POP PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x2208 JUMPI PUSH2 0x2207 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0xFFFF AND PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP SWAP1 POP PUSH2 0x22D5 PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x40 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2346 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x233D SWAP1 PUSH2 0x39B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x20 ADD MLOAD PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x8 SLOAD PUSH2 0x2364 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST DUP3 PUSH2 0x236F SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST SWAP3 POP DUP4 ISZERO PUSH2 0x26FA JUMPI DUP2 PUSH1 0x6 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2389 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xB88D4FDE ADDRESS PUSH2 0x23D7 PUSH2 0x286A JUMP JUMPDEST DUP9 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x23F6 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2410 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2424 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH1 0x4 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 POP PUSH2 0x2460 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x2471 JUMPI PUSH2 0x2470 PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0xFFFF AND PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0xC SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP SWAP1 POP DUP1 PUSH1 0x4 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x256F JUMPI PUSH2 0x256E PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP PUSH1 0x5 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x5 PUSH1 0x0 DUP4 PUSH1 0x0 ADD MLOAD PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x4 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD DUP1 PUSH2 0x266F JUMPI PUSH2 0x266E PUSH2 0x3EB8 JUMP JUMPDEST JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH2 0xFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x0 DUP3 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x0 DUP3 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE POP POP SWAP1 SSTORE PUSH1 0x5 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE POP PUSH2 0x2827 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP7 PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x8 SLOAD PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x272B PUSH2 0x286A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x4 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x277C JUMPI PUSH2 0x277B PUSH2 0x3EE7 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP JUMPDEST PUSH32 0xF65D435564B020FCB9D6F56608C9333A6CF42914EEDDFBAC41A764DA73667DE1 DUP6 DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0x285A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3B18 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x287A PUSH2 0xA6A JUMP JUMPDEST ISZERO PUSH2 0x28BA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x28B1 SWAP1 PUSH2 0x39D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x28FE PUSH2 0x286A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x290B SWAP2 SWAP1 PUSH2 0x37E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0x291D PUSH2 0xA6A JUMP JUMPDEST PUSH2 0x295C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2953 SWAP1 PUSH2 0x3914 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x299F PUSH2 0x286A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29AC SWAP2 SWAP1 PUSH2 0x37E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xE05C57BF DUP5 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2A14 SWAP2 SWAP1 PUSH2 0x3AC6 JUMP JUMPDEST PUSH2 0x140 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2A2D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2A41 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2A65 SWAP2 SWAP1 PUSH2 0x33AB JUMP JUMPDEST SWAP10 POP POP POP POP POP POP POP POP POP POP DUP1 PUSH1 0x8 PUSH2 0x2A7D SWAP2 SWAP1 PUSH2 0x3CA1 JUMP JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 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 PUSH2 0x2B51 PUSH2 0xA6A JUMP JUMPDEST ISZERO PUSH2 0x2B91 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2B88 SWAP1 PUSH2 0x39D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH12 0x7C13BC4B2C133C560000000 PUSH1 0x9 SLOAD LT ISZERO PUSH2 0x2C05 JUMPI PUSH3 0x15180 PUSH10 0x21E19E0C9BAB2400000 PUSH1 0xA SLOAD PUSH1 0xB SLOAD TIMESTAMP PUSH2 0x2BC7 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST PUSH2 0x2BD1 SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST PUSH2 0x2BDB SWAP2 SWAP1 PUSH2 0x3C13 JUMP JUMPDEST PUSH2 0x2BE5 SWAP2 SWAP1 PUSH2 0x3BE2 JUMP JUMPDEST PUSH1 0x9 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2BF6 SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP TIMESTAMP PUSH1 0xB DUP2 SWAP1 SSTORE POP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x3 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP PUSH1 0x1 PUSH1 0xA PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2D0C SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH32 0x6173E4D2D9DD52AAE0ED37AFED3ADCF924A490639B759CA93D32DC43366C17D2 DUP3 DUP3 TIMESTAMP PUSH1 0x40 MLOAD PUSH2 0x2D46 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x38A7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D5D DUP3 PUSH2 0x29B6 JUMP JUMPDEST PUSH1 0xFF AND SWAP1 POP DUP1 PUSH1 0x6 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2D74 SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x4 PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 POP PUSH1 0x5 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x4 PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP5 PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x8 SLOAD PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH10 0xFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP POP PUSH32 0x6173E4D2D9DD52AAE0ED37AFED3ADCF924A490639B759CA93D32DC43366C17D2 DUP4 DUP4 PUSH1 0x8 SLOAD PUSH1 0x40 MLOAD PUSH2 0x2EF8 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x38A7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH1 0x0 ORIGIN PUSH1 0x1 NUMBER PUSH2 0x2F15 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST BLOCKHASH TIMESTAMP DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2F2B SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3794 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x6 SLOAD EQ ISZERO PUSH2 0x2F74 JUMPI DUP1 PUSH1 0x7 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2F68 SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0x2FB0 JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH1 0x7 SLOAD DUP3 PUSH2 0x2F85 SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST PUSH2 0x2F8F SWAP2 SWAP1 PUSH2 0x3BE2 JUMP JUMPDEST PUSH1 0x8 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2FA0 SWAP2 SWAP1 PUSH2 0x3B8C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x7 DUP2 SWAP1 SSTORE POP JUMPDEST POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH10 0xFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3009 DUP2 PUSH2 0x4174 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x301E DUP2 PUSH2 0x4174 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x303A JUMPI PUSH2 0x3039 PUSH2 0x3F1B JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3057 JUMPI PUSH2 0x3056 PUSH2 0x3F16 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x3073 JUMPI PUSH2 0x3072 PUSH2 0x3F20 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x3090 JUMPI PUSH2 0x308F PUSH2 0x3F1B JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x30AD JUMPI PUSH2 0x30AC PUSH2 0x3F16 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x30C9 JUMPI PUSH2 0x30C8 PUSH2 0x3F20 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x30DF DUP2 PUSH2 0x418B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x30F4 DUP2 PUSH2 0x418B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x3110 JUMPI PUSH2 0x310F PUSH2 0x3F1B JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x312D JUMPI PUSH2 0x312C PUSH2 0x3F16 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x3149 JUMPI PUSH2 0x3148 PUSH2 0x3F20 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x315F DUP2 PUSH2 0x41A2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3174 DUP2 PUSH2 0x41B9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x3189 DUP2 PUSH2 0x41D0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x31A5 JUMPI PUSH2 0x31A4 PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x31B3 DUP5 DUP3 DUP6 ADD PUSH2 0x2FFA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x31D2 JUMPI PUSH2 0x31D1 PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x31E0 DUP5 DUP3 DUP6 ADD PUSH2 0x300F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x3205 JUMPI PUSH2 0x3204 PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3213 DUP9 DUP3 DUP10 ADD PUSH2 0x2FFA JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x3224 DUP9 DUP3 DUP10 ADD PUSH2 0x2FFA JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0x3235 DUP9 DUP3 DUP10 ADD PUSH2 0x3165 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3256 JUMPI PUSH2 0x3255 PUSH2 0x3F25 JUMP JUMPDEST JUMPDEST PUSH2 0x3262 DUP9 DUP3 DUP10 ADD PUSH2 0x30FA JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x328A JUMPI PUSH2 0x3289 PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3298 DUP7 DUP3 DUP8 ADD PUSH2 0x2FFA JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x32B9 JUMPI PUSH2 0x32B8 PUSH2 0x3F25 JUMP JUMPDEST JUMPDEST PUSH2 0x32C5 DUP7 DUP3 DUP8 ADD PUSH2 0x3024 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x32EA JUMPI PUSH2 0x32E9 PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3308 JUMPI PUSH2 0x3307 PUSH2 0x3F25 JUMP JUMPDEST JUMPDEST PUSH2 0x3314 DUP7 DUP3 DUP8 ADD PUSH2 0x3024 JUMP JUMPDEST SWAP4 POP SWAP4 POP POP PUSH1 0x20 PUSH2 0x3327 DUP7 DUP3 DUP8 ADD PUSH2 0x30D0 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3348 JUMPI PUSH2 0x3347 PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3366 JUMPI PUSH2 0x3365 PUSH2 0x3F25 JUMP JUMPDEST JUMPDEST PUSH2 0x3372 DUP6 DUP3 DUP7 ADD PUSH2 0x307A JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3394 JUMPI PUSH2 0x3393 PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x33A2 DUP5 DUP3 DUP6 ADD PUSH2 0x30D0 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x140 DUP12 DUP14 SUB SLT ISZERO PUSH2 0x33CF JUMPI PUSH2 0x33CE PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x33DD DUP14 DUP3 DUP15 ADD PUSH2 0x30E5 JUMP JUMPDEST SWAP11 POP POP PUSH1 0x20 PUSH2 0x33EE DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP10 POP POP PUSH1 0x40 PUSH2 0x33FF DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP9 POP POP PUSH1 0x60 PUSH2 0x3410 DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP8 POP POP PUSH1 0x80 PUSH2 0x3421 DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP7 POP POP PUSH1 0xA0 PUSH2 0x3432 DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP6 POP POP PUSH1 0xC0 PUSH2 0x3443 DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP5 POP POP PUSH1 0xE0 PUSH2 0x3454 DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP4 POP POP PUSH2 0x100 PUSH2 0x3466 DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP3 POP POP PUSH2 0x120 PUSH2 0x3478 DUP14 DUP3 DUP15 ADD PUSH2 0x317A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP9 SWAP12 SWAP2 SWAP5 SWAP8 SWAP11 POP SWAP3 SWAP6 SWAP9 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x34A0 JUMPI PUSH2 0x349F PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x34AE DUP5 DUP3 DUP6 ADD PUSH2 0x3150 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x34CD JUMPI PUSH2 0x34CC PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x34DB DUP5 DUP3 DUP6 ADD PUSH2 0x3165 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x34FB JUMPI PUSH2 0x34FA PUSH2 0x3F2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3509 DUP6 DUP3 DUP7 ADD PUSH2 0x3165 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x351A DUP6 DUP3 DUP7 ADD PUSH2 0x3165 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x352D DUP2 PUSH2 0x3CD5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3544 PUSH2 0x353F DUP3 PUSH2 0x3CD5 JUMP JUMPDEST PUSH2 0x3DF1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3553 DUP2 PUSH2 0x3CE7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x356A PUSH2 0x3565 DUP3 PUSH2 0x3CF3 JUMP JUMPDEST PUSH2 0x3E03 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3579 DUP2 PUSH2 0x3CFD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3588 DUP2 PUSH2 0x3D84 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x359B PUSH1 0x14 DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x35A6 DUP3 PUSH2 0x3F3C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35BE PUSH1 0x17 DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x35C9 DUP3 PUSH2 0x3F65 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35E1 PUSH1 0x26 DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x35EC DUP3 PUSH2 0x3F8E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3604 PUSH1 0xF DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x360F DUP3 PUSH2 0x3FDD JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3627 PUSH1 0x23 DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x3632 DUP3 PUSH2 0x4006 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x364A PUSH1 0x12 DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x3655 DUP3 PUSH2 0x4055 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x366D PUSH1 0x10 DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x3678 DUP3 PUSH2 0x407E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3690 PUSH1 0x24 DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x369B DUP3 PUSH2 0x40A7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36B3 PUSH1 0x20 DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x36BE DUP3 PUSH2 0x40F6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36D6 PUSH1 0x1A DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x36E1 DUP3 PUSH2 0x411F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36F9 PUSH1 0x0 DUP4 PUSH2 0x3B6A JUMP JUMPDEST SWAP2 POP PUSH2 0x3704 DUP3 PUSH2 0x4148 JUMP JUMPDEST PUSH1 0x0 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x371C PUSH1 0xD DUP4 PUSH2 0x3B7B JUMP JUMPDEST SWAP2 POP PUSH2 0x3727 DUP3 PUSH2 0x414B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x373B DUP2 PUSH2 0x3D29 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x374A DUP2 PUSH2 0x3D96 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3759 DUP2 PUSH2 0x3D57 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3770 PUSH2 0x376B DUP3 PUSH2 0x3D57 JUMP JUMPDEST PUSH2 0x3E1F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x377F DUP2 PUSH2 0x3D6E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x378E DUP2 PUSH2 0x3D61 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37A0 DUP3 DUP8 PUSH2 0x3533 JUMP JUMPDEST PUSH1 0x14 DUP3 ADD SWAP2 POP PUSH2 0x37B0 DUP3 DUP7 PUSH2 0x3559 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x37C0 DUP3 DUP6 PUSH2 0x375F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x37D0 DUP3 DUP5 PUSH2 0x375F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP DUP2 SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x37F7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3524 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3812 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x3524 JUMP JUMPDEST PUSH2 0x381F PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3524 JUMP JUMPDEST PUSH2 0x382C PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3741 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x3849 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x3524 JUMP JUMPDEST PUSH2 0x3856 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3524 JUMP JUMPDEST PUSH2 0x3863 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3750 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x3874 DUP2 PUSH2 0x36EC JUMP JUMPDEST SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3893 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x3524 JUMP JUMPDEST PUSH2 0x38A0 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3750 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x38BC PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x3524 JUMP JUMPDEST PUSH2 0x38C9 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3750 JUMP JUMPDEST PUSH2 0x38D6 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3750 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x38F3 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x354A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x390E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3570 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 0x392D DUP2 PUSH2 0x358E 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 0x394D DUP2 PUSH2 0x35B1 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 0x396D DUP2 PUSH2 0x35D4 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 0x398D DUP2 PUSH2 0x35F7 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 0x39AD DUP2 PUSH2 0x361A 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 0x39CD DUP2 PUSH2 0x363D 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 0x39ED DUP2 PUSH2 0x3660 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 0x3A0D DUP2 PUSH2 0x3683 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 0x3A2D DUP2 PUSH2 0x36A6 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 0x3A4D DUP2 PUSH2 0x36C9 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 0x3A6D DUP2 PUSH2 0x370F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3A89 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3741 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3AA4 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x3732 JUMP JUMPDEST PUSH2 0x3AB1 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3776 JUMP JUMPDEST PUSH2 0x3ABE PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3524 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3ADB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3750 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3AF6 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x3750 JUMP JUMPDEST PUSH2 0x3B03 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x357F JUMP JUMPDEST PUSH2 0x3B10 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x354A JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3B2D PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x3750 JUMP JUMPDEST PUSH2 0x3B3A PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3750 JUMP JUMPDEST PUSH2 0x3B47 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x354A JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3B64 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3785 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B97 DUP3 PUSH2 0x3D57 JUMP JUMPDEST SWAP2 POP PUSH2 0x3BA2 DUP4 PUSH2 0x3D57 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x3BD7 JUMPI PUSH2 0x3BD6 PUSH2 0x3E5A JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BED DUP3 PUSH2 0x3D57 JUMP JUMPDEST SWAP2 POP PUSH2 0x3BF8 DUP4 PUSH2 0x3D57 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3C08 JUMPI PUSH2 0x3C07 PUSH2 0x3E89 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C1E DUP3 PUSH2 0x3D57 JUMP JUMPDEST SWAP2 POP PUSH2 0x3C29 DUP4 PUSH2 0x3D57 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x3C62 JUMPI PUSH2 0x3C61 PUSH2 0x3E5A JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C78 DUP3 PUSH2 0x3D57 JUMP JUMPDEST SWAP2 POP PUSH2 0x3C83 DUP4 PUSH2 0x3D57 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x3C96 JUMPI PUSH2 0x3C95 PUSH2 0x3E5A JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3CAC DUP3 PUSH2 0x3D61 JUMP JUMPDEST SWAP2 POP PUSH2 0x3CB7 DUP4 PUSH2 0x3D61 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x3CCA JUMPI PUSH2 0x3CC9 PUSH2 0x3E5A JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3CE0 DUP3 PUSH2 0x3D37 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFFFF 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 PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH10 0xFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D8F DUP3 PUSH2 0x3D57 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DA1 DUP3 PUSH2 0x3D29 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DB3 DUP3 PUSH2 0x3D57 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x3DE6 JUMPI PUSH2 0x3DE5 PUSH2 0x3E5A JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DFC DUP3 PUSH2 0x3E0D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E18 DUP3 PUSH2 0x3F2F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E34 DUP3 PUSH2 0x3D57 JUMP JUMPDEST SWAP2 POP PUSH2 0x3E3F DUP4 PUSH2 0x3D57 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3E4F JUMPI PUSH2 0x3E4E PUSH2 0x3E89 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 0x31 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 PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x60 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x41494E5420412050415254204F4620544845205041434B000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5245534355452044495341424C45440000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x43616E6E6F742073656E6420746F6B656E7320746F204261726E206469726563 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x746C790000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5357495045522C204E4F2053574950494E470000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x474F4E4E4120424520434F4C4420574954484F55542054574F20444159275320 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x574F4F4C00000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x444F4E54204749564520594F555220544F4B454E532041574159000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST POP JUMP JUMPDEST PUSH32 0x41494E5420594F20544F4B454E00000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x417D DUP2 PUSH2 0x3CD5 JUMP JUMPDEST DUP2 EQ PUSH2 0x4188 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x4194 DUP2 PUSH2 0x3CE7 JUMP JUMPDEST DUP2 EQ PUSH2 0x419F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x41AB DUP2 PUSH2 0x3D29 JUMP JUMPDEST DUP2 EQ PUSH2 0x41B6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x41C2 DUP2 PUSH2 0x3D57 JUMP JUMPDEST DUP2 EQ PUSH2 0x41CD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x41D9 DUP2 PUSH2 0x3D61 JUMP JUMPDEST DUP2 EQ PUSH2 0x41E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LT JUMPDEST 0xBA ADDRESS DIFFICULTY 0xAA 0xBD 0xAA PUSH27 0xCEF578B27CC0FF0E7A1A36EA1A2DC980B795594668657864736F6C PUSH4 0x43000807 STOP CALLER ",
"sourceMap": "233:13170:16:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4788:419;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13106:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11044:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;328:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1404:53;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1637:54;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1537:48;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;880:37;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;2139:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12023:692;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1877:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1098:84:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2023:33:16;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8580:1319;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1059:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1141:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:0;;;:::i;:::-;;10887:95:16;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1951:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2581:735;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1775:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1036:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1236:37:16;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1331:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;973:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;11323:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4788:419:16;1412:8:1;:6;:8::i;:::-;1411:9;1403:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1821:16:16::1;10511:15;;:37;10507:231;;;10680:6;1446:11;10635:16;;10605:18;;10587:15;:36;;;;:::i;:::-;10586:65;;;;:::i;:::-;:91;;;;:::i;:::-;:100;;;;:::i;:::-;10558:15;;:128;;;;;;;:::i;:::-;;;;;;;;10716:15;10695:18;:36;;;;10507:231;4909:12:::2;4936:6:::0;4931:210:::2;4952:8;;:15;;4948:1;:19;4931:210;;;4986:20;4994:8;;5003:1;4994:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4986:20;;:7;:20::i;:::-;4982:152;;;5024:41;5044:8;;5053:1;5044:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;5024:41;;5057:7;5024:19;:41::i;:::-;5016:49;;;;;:::i;:::-;;;4982:152;;;5094:40;5113:8;;5122:1;5113:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;5094:40;;5126:7;5094:18;:40::i;:::-;5086:48;;;;;:::i;:::-;;;4982:152;4969:3;;;;;:::i;:::-;;;;4931:210;;;;5158:1;5150:4;:9;5146:22;;;5161:7;;;5146:22;5173:4;;;;;;;;;;;:9;;;5183:12;:10;:12::i;:::-;5197:4;5173:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;4903:304;10743:1;4788:419:::0;;;:::o;13106:291::-;13250:6;13290:3;13274:20;;:4;:20;;;13266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13349:41;;;13342:48;;13106:291;;;;;;;:::o;11044:105::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11106:7:16::1;11102:42;;;11115:8;:6;:8::i;:::-;11102:42;;;11134:10;:8;:10::i;:::-;11102:42;11044:105:::0;:::o;328:35::-;362:1;328:35;:::o;1404:53::-;1446:11;1404:53;:::o;1637:54::-;1689:2;1637:54;:::o;1537:48::-;1579:6;1537:48;:::o;880:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2139:33::-;;;;;;;;;;;;;:::o;12023:692::-;12085:7;12124:1;12104:16;;:21;12100:46;;;12142:3;12127:19;;;;12100:46;12152:14;12191:16;;12177:10;12170:4;:17;12169:38;;;;:::i;:::-;12152:55;;12260:18;12293:2;12284:11;;;;;12374:6;12395:1;362;12383:13;;;;:::i;:::-;12374:22;;;;12369:317;362:1;12398:14;;:1;:14;12369:317;;12458:1;12441:4;:7;12446:1;12441:7;;;;;;;;;;;:14;;;;:18;;;;:::i;:::-;12427:32;;;;;:::i;:::-;;;12544:10;12534:6;:20;12530:34;;12556:8;;12530:34;12643:4;:7;12648:1;12643:7;;;;;;;;;;;12658:4;:7;12663:1;12658:7;;;;;;;;;;;:14;;;;12651:4;:21;;;;:::i;:::-;12643:30;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;;;;;;;;;12636:43;;;;;;;12369:317;12414:3;;;;;:::i;:::-;;;;12369:317;;;;12706:3;12691:19;;;;12023:692;;;;:::o;1877:30::-;;;;:::o;1098:84:1:-;1145:4;1168:7;;;;;;;;;;;1161:14;;1098:84;:::o;2023:33:16:-;;;;:::o;8580:1319::-;8648:13;;;;;;;;;;;8640:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;8687:15;8708:18;;:::i;:::-;8732:22;;:::i;:::-;8760:13;8784:6;8793:1;8784:10;;8779:1116;8800:8;;:15;;8796:1;:19;8779:1116;;;8840:8;;8849:1;8840:11;;;;;;;:::i;:::-;;;;;;;;8830:21;;8863:16;8871:7;8863;:16::i;:::-;8859:1030;;;8899:4;:13;8904:7;8899:13;;;;;;;;;;;8891:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8945:12;:10;:12::i;:::-;8930:27;;:5;:11;;;:27;;;8922:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;8990:5;;;;;;;;;;;:22;;;9021:4;9028:12;:10;:12::i;:::-;9042:7;8990:64;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9090:4;:13;9095:7;9090:13;;;;;;;;;;;;9083:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9133:1;9113:16;;:21;;;;;;;:::i;:::-;;;;;;;;9149:30;9162:7;9171:1;9174:4;9149:30;;;;;;;;:::i;:::-;;;;;;;;8859:1030;;;9212:22;9226:7;9212:13;:22::i;:::-;9204:30;;;;9252:4;:11;9257:5;9252:11;;;;;;;;;;;9264;:20;9276:7;9264:20;;;;;;;;;;;;9252:33;;;;;;;;:::i;:::-;;;;;;;;;9244:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9318:12;:10;:12::i;:::-;9303:27;;:5;:11;;;:27;;;9295:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9383:5;9363:16;;:25;;;;;;;:::i;:::-;;;;;;;;9432:5;;;;;;;;;;;:22;;;9463:4;9470:12;:10;:12::i;:::-;9484:7;9432:64;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9536:4;:11;9541:5;9536:11;;;;;;;;;;;9569:1;9548:4;:11;9553:5;9548:11;;;;;;;;;;;:18;;;;:22;;;;:::i;:::-;9536:35;;;;;;;;:::i;:::-;;;;;;;;;9524:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9617:9;9581:4;:11;9586:5;9581:11;;;;;;;;;;;9593;:20;9605:7;9593:20;;;;;;;;;;;;9581:33;;;;;;;;:::i;:::-;;;;;;;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9710:11;:20;9722:7;9710:20;;;;;;;;;;;;9677:11;:30;9689:9;:17;;;9677:30;;;;;;;;;;;;;:53;;;;9740:4;:11;9745:5;9740:11;;;;;;;;;;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9794:11;:20;9806:7;9794:20;;;;;;;;;;;9787:27;;;9851:29;9863:7;9872:1;9875:4;9851:29;;;;;;;;:::i;:::-;;;;;;;;8859:1030;8817:3;;;;;:::i;:::-;;;;8779:1116;;;;8634:1265;;;;8580:1319;;:::o;1059:46::-;;;;;;;;;;;;;;;;;:::o;1141:35::-;;;;:::o;1668:101:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;10887:95:16:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10969:8:16::1;10953:13;;:24;;;;;;;;;;;;;;;;;;10887:95:::0;:::o;1951:31::-;;;;:::o;2581:735::-;2690:12;:10;:12::i;:::-;2679:23;;:7;:23;;;:57;;;;2730:5;;;;;;;;;;;2706:30;;:12;:10;:12::i;:::-;:30;;;2679:57;2671:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;2778:6;2773:539;2794:8;;:15;;2790:1;:19;2773:539;;;2852:5;;;;;;;;;;;2828:30;;:12;:10;:12::i;:::-;:30;;;2824:343;;2951:12;:10;:12::i;:::-;2921:42;;:5;;;;;;;;;;;:13;;;2935:8;;2944:1;2935:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2921:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:42;;;2913:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2991:5;;;;;;;;;;;:18;;;3010:12;:10;:12::i;:::-;3032:4;3039:8;;3048:1;3039:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2991:60;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2824:343;;;3085:1;3070:8;;3079:1;3070:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:16;;;3066:101;;;3098:8;;3066:101;2824:343;3179:20;3187:8;;3196:1;3187:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3179:20;;:7;:20::i;:::-;3175:130;;;3210:37;3226:7;3235:8;;3244:1;3235:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3210:37;;:15;:37::i;:::-;3175:130;;;3269:36;3284:7;3293:8;;3302:1;3293:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3269:36;;:14;:36::i;:::-;3175:130;2773:539;2811:3;;;;;:::i;:::-;;;;2773:539;;;;2581:735;;;:::o;1775:62::-;1821:16;1775:62;:::o;1036:85:0:-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;1236:37:16:-;;;;:::o;1331:31::-;;;;:::o;973:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11323:132::-;11378:10;11424:5;;;;;;;;;;;:17;;;11442:7;11424:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11396:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11323:132;;;:::o;1918:198:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;5581:1397:16:-;5659:12;5679:18;5700:4;:13;5705:7;5700:13;;;;;;;;;;;5679:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5742:12;:10;:12::i;:::-;5727:27;;:5;:11;;;:27;;;5719:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;5793:7;:58;;;;;1579:6;5822:5;:11;;;5804:29;;:15;:29;;;;:::i;:::-;:47;5793:58;5791:61;5783:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;1821:16;5903:15;;:37;5899:372;;;6009:6;1446:11;5976:5;:11;;;5958:29;;:15;:29;;;;:::i;:::-;5957:49;;;;:::i;:::-;:58;;;;:::i;:::-;5950:65;;5899:372;;;6046:18;;6032:5;:11;;;:32;;;6028:243;;;6081:1;6074:8;;6028:243;;;6201:6;1446:11;6168:5;:11;;;6147:32;;:18;;:32;;;;:::i;:::-;6146:52;;;;:::i;:::-;:61;;;;:::i;:::-;6139:68;;6028:243;5899:372;6280:7;6276:651;;;6324:1;6319;6301:15;6308:7;6301:6;:15::i;:::-;:19;:24;6297:118;;;6371:17;6383:4;6371:11;:17::i;:::-;6405:1;6398:8;;6297:118;6422:5;;;;;;;;;;;:22;;;6453:4;6460:12;:10;:12::i;:::-;6474:7;6422:64;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6520:4;:13;6525:7;6520:13;;;;;;;;;;;;6513:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6561:1;6541:16;;:21;;;;;;;:::i;:::-;;;;;;;;6276:651;;;6583:51;6630:3;1689:2;6595:4;:32;;;;:::i;:::-;:38;;;;:::i;:::-;6583:11;:51::i;:::-;6727:3;1689:2;6692:3;:31;;;;:::i;:::-;6684:4;:40;;;;:::i;:::-;:46;;;;:::i;:::-;6677:53;;6787:118;;;;;;;;6848:7;6787:118;;;;;;6880:15;6787:118;;;;;;6810:12;:10;:12::i;:::-;6787:118;;;;;6771:4;:13;6776:7;6771:13;;;;;;;;;;;:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6276:651;6937:36;6950:7;6959:4;6965:7;6937:36;;;;;;;;:::i;:::-;;;;;;;;5673:1305;5581:1397;;;;:::o;7286:1182::-;7363:12;7425:4;7391:39;;:5;;;;;;;;;;;:13;;;7405:7;7391:22;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;;;7383:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;7464:13;7480:22;7494:7;7480:13;:22::i;:::-;7464:38;;;;7508:18;7529:4;:11;7534:5;7529:11;;;;;;;;;;;7541;:20;7553:7;7541:20;;;;;;;;;;;;7529:33;;;;;;;;:::i;:::-;;;;;;;;;7508:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7591:12;:10;:12::i;:::-;7576:27;;:5;:11;;;:27;;;7568:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;7665:5;:11;;;7650:26;;:12;;:26;;;;:::i;:::-;7640:5;7639:38;;;;:::i;:::-;7632:45;;7733:7;7729:689;;;7770:5;7750:16;;:25;;;;;;;:::i;:::-;;;;;;;;7817:5;;;;;;;;;;;:22;;;7848:4;7855:12;:10;:12::i;:::-;7869:7;7817:64;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7907:22;7932:4;:11;7937:5;7932:11;;;;;;;;;;;7965:1;7944:4;:11;7949:5;7944:11;;;;;;;;;;;:18;;;;:22;;;;:::i;:::-;7932:35;;;;;;;;:::i;:::-;;;;;;;;;7907:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8011:9;7975:4;:11;7980:5;7975:11;;;;;;;;;;;7987;:20;7999:7;7987:20;;;;;;;;;;;;7975:33;;;;;;;;:::i;:::-;;;;;;;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8102:11;:20;8114:7;8102:20;;;;;;;;;;;;8069:11;:30;8081:9;:17;;;8069:30;;;;;;;;;;;;;:53;;;;8130:4;:11;8135:5;8130:11;;;;;;;;;;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8182:11;:20;8194:7;8182:20;;;;;;;;;;;8175:27;;;7742:489;7729:689;;;8281:115;;;;;;;;8342:7;8281:115;;;;;;8374:12;;8281:115;;;;;;8304:12;:10;:12::i;:::-;8281:115;;;;;8245:4;:11;8250:5;8245:11;;;;;;;;;;;8257;:20;8269:7;8257:20;;;;;;;;;;;;8245:33;;;;;;;;:::i;:::-;;;;;;;;;:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7729:689;8428:35;8440:7;8449:4;8455:7;8428:35;;;;;;;;:::i;:::-;;;;;;;;7377:1091;;7286:1182;;;;:::o;640:96:12:-;693:7;719:10;712:17;;640:96;:::o;1863:115:1:-;1412:8;:6;:8::i;:::-;1411:9;1403:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1932:4:::1;1922:7;;:14;;;;;;;;;;;;;;;;;;1951:20;1958:12;:10;:12::i;:::-;1951:20;;;;;;:::i;:::-;;;;;;;;1863:115::o:0;2110:117::-;1677:8;:6;:8::i;:::-;1669:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2178:5:::1;2168:7:::0;::::1;:15;;;;;;;;;;;;;;;;;;2198:22;2207:12;:10;:12::i;:::-;2198:22;;;;;;:::i;:::-;;;;;;;;2110:117::o:0;11621:204:16:-;11684:5;11717:16;11737:5;;;;;;;;;;;:17;;;11755:7;11737:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11697:66;;;;;;;;;;;11788:10;362:1;11776:22;;;;:::i;:::-;11769:29;;;11621:204;;;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;3474:314:16:-;1412:8:1;:6;:8::i;:::-;1411:9;1403:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1821:16:16::1;10511:15;;:37;10507:231;;;10680:6;1446:11;10635:16;;10605:18;;10587:15;:36;;;;:::i;:::-;10586:65;;;;:::i;:::-;:91;;;;:::i;:::-;:100;;;;:::i;:::-;10558:15;;:128;;;;;;;:::i;:::-;;;;;;;;10716:15;10695:18;:36;;;;10507:231;3594:105:::2;;;;;;;;3646:7;3594:105;;;;;;3676:15;3594:105;;;;;;3615:7;3594:105;;;;::::0;3578:4:::2;:13;3583:7;3578:13;;;;;;;;;;;:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3725:1;3705:16;;:21;;;;;;;:::i;:::-;;;;;;;;3737:46;3749:7;3758;3767:15;3737:46;;;;;;;;:::i;:::-;;;;;;;;3474:314:::0;;:::o;3944:490::-;4017:13;4033:22;4047:7;4033:13;:22::i;:::-;4017:38;;;;4081:5;4061:16;;:25;;;;;;;:::i;:::-;;;;;;;;4157:4;:11;4162:5;4157:11;;;;;;;;;;;:18;;;;4134:11;:20;4146:7;4134:20;;;;;;;;;;;:41;;;;4227:4;:11;4232:5;4227:11;;;;;;;;;;;4244:102;;;;;;;;4296:7;4244:102;;;;;;4326:12;;4244:102;;;;;;4265:7;4244:102;;;;;4227:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4386:43;4398:7;4407;4416:12;;4386:43;;;;;;;;:::i;:::-;;;;;;;;4011:423;3944:490;;:::o;12893:209::-;12946:7;13010:9;13052:1;13037:12;:16;;;;:::i;:::-;13027:27;13062:15;13085:4;12986:109;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;12976:120;;;;;;12968:129;;12961:136;;12893:209;;;:::o;10025:358::-;10101:1;10081:16;;:21;10077:152;;;10165:6;10143:18;;:28;;;;;;;:::i;:::-;;;;;;;;10216:7;;10077:152;10334:16;;10312:18;;10303:6;:27;;;;:::i;:::-;10302:48;;;;:::i;:::-;10286:12;;:64;;;;;;;:::i;:::-;;;;;;;;10377:1;10356:18;:22;;;;10025:358;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:139:22:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:143::-;209:5;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;152:143;;;;:::o;317:567::-;389:8;399:6;449:3;442:4;434:6;430:17;426:27;416:122;;457:79;;:::i;:::-;416:122;570:6;557:20;547:30;;600:18;592:6;589:30;586:117;;;622:79;;:::i;:::-;586:117;736:4;728:6;724:17;712:29;;790:3;782:4;774:6;770:17;760:8;756:32;753:41;750:128;;;797:79;;:::i;:::-;750:128;317:567;;;;;:::o;907:568::-;980:8;990:6;1040:3;1033:4;1025:6;1021:17;1017:27;1007:122;;1048:79;;:::i;:::-;1007:122;1161:6;1148:20;1138:30;;1191:18;1183:6;1180:30;1177:117;;;1213:79;;:::i;:::-;1177:117;1327:4;1319:6;1315:17;1303:29;;1381:3;1373:4;1365:6;1361:17;1351:8;1347:32;1344:41;1341:128;;;1388:79;;:::i;:::-;1341:128;907:568;;;;;:::o;1481:133::-;1524:5;1562:6;1549:20;1540:29;;1578:30;1602:5;1578:30;:::i;:::-;1481:133;;;;:::o;1620:137::-;1674:5;1705:6;1699:13;1690:22;;1721:30;1745:5;1721:30;:::i;:::-;1620:137;;;;:::o;1776:552::-;1833:8;1843:6;1893:3;1886:4;1878:6;1874:17;1870:27;1860:122;;1901:79;;:::i;:::-;1860:122;2014:6;2001:20;1991:30;;2044:18;2036:6;2033:30;2030:117;;;2066:79;;:::i;:::-;2030:117;2180:4;2172:6;2168:17;2156:29;;2234:3;2226:4;2218:6;2214:17;2204:8;2200:32;2197:41;2194:128;;;2241:79;;:::i;:::-;2194:128;1776:552;;;;;:::o;2334:137::-;2379:5;2417:6;2404:20;2395:29;;2433:32;2459:5;2433:32;:::i;:::-;2334:137;;;;:::o;2477:139::-;2523:5;2561:6;2548:20;2539:29;;2577:33;2604:5;2577:33;:::i;:::-;2477:139;;;;:::o;2622:::-;2677:5;2708:6;2702:13;2693:22;;2724:31;2749:5;2724:31;:::i;:::-;2622:139;;;;:::o;2767:329::-;2826:6;2875:2;2863:9;2854:7;2850:23;2846:32;2843:119;;;2881:79;;:::i;:::-;2843:119;3001:1;3026:53;3071:7;3062:6;3051:9;3047:22;3026:53;:::i;:::-;3016:63;;2972:117;2767:329;;;;:::o;3102:351::-;3172:6;3221:2;3209:9;3200:7;3196:23;3192:32;3189:119;;;3227:79;;:::i;:::-;3189:119;3347:1;3372:64;3428:7;3419:6;3408:9;3404:22;3372:64;:::i;:::-;3362:74;;3318:128;3102:351;;;;:::o;3459:963::-;3556:6;3564;3572;3580;3588;3637:3;3625:9;3616:7;3612:23;3608:33;3605:120;;;3644:79;;:::i;:::-;3605:120;3764:1;3789:53;3834:7;3825:6;3814:9;3810:22;3789:53;:::i;:::-;3779:63;;3735:117;3891:2;3917:53;3962:7;3953:6;3942:9;3938:22;3917:53;:::i;:::-;3907:63;;3862:118;4019:2;4045:53;4090:7;4081:6;4070:9;4066:22;4045:53;:::i;:::-;4035:63;;3990:118;4175:2;4164:9;4160:18;4147:32;4206:18;4198:6;4195:30;4192:117;;;4228:79;;:::i;:::-;4192:117;4341:64;4397:7;4388:6;4377:9;4373:22;4341:64;:::i;:::-;4323:82;;;;4118:297;3459:963;;;;;;;;:::o;4428:702::-;4522:6;4530;4538;4587:2;4575:9;4566:7;4562:23;4558:32;4555:119;;;4593:79;;:::i;:::-;4555:119;4713:1;4738:53;4783:7;4774:6;4763:9;4759:22;4738:53;:::i;:::-;4728:63;;4684:117;4868:2;4857:9;4853:18;4840:32;4899:18;4891:6;4888:30;4885:117;;;4921:79;;:::i;:::-;4885:117;5034:79;5105:7;5096:6;5085:9;5081:22;5034:79;:::i;:::-;5016:97;;;;4811:312;4428:702;;;;;:::o;5136:696::-;5227:6;5235;5243;5292:2;5280:9;5271:7;5267:23;5263:32;5260:119;;;5298:79;;:::i;:::-;5260:119;5446:1;5435:9;5431:17;5418:31;5476:18;5468:6;5465:30;5462:117;;;5498:79;;:::i;:::-;5462:117;5611:79;5682:7;5673:6;5662:9;5658:22;5611:79;:::i;:::-;5593:97;;;;5389:311;5739:2;5765:50;5807:7;5798:6;5787:9;5783:22;5765:50;:::i;:::-;5755:60;;5710:115;5136:696;;;;;:::o;5838:559::-;5924:6;5932;5981:2;5969:9;5960:7;5956:23;5952:32;5949:119;;;5987:79;;:::i;:::-;5949:119;6135:1;6124:9;6120:17;6107:31;6165:18;6157:6;6154:30;6151:117;;;6187:79;;:::i;:::-;6151:117;6300:80;6372:7;6363:6;6352:9;6348:22;6300:80;:::i;:::-;6282:98;;;;6078:312;5838:559;;;;;:::o;6403:323::-;6459:6;6508:2;6496:9;6487:7;6483:23;6479:32;6476:119;;;6514:79;;:::i;:::-;6476:119;6634:1;6659:50;6701:7;6692:6;6681:9;6677:22;6659:50;:::i;:::-;6649:60;;6605:114;6403:323;;;;:::o;6732:1720::-;6862:6;6870;6878;6886;6894;6902;6910;6918;6926;6934;6983:3;6971:9;6962:7;6958:23;6954:33;6951:120;;;6990:79;;:::i;:::-;6951:120;7110:1;7135:61;7188:7;7179:6;7168:9;7164:22;7135:61;:::i;:::-;7125:71;;7081:125;7245:2;7271:62;7325:7;7316:6;7305:9;7301:22;7271:62;:::i;:::-;7261:72;;7216:127;7382:2;7408:62;7462:7;7453:6;7442:9;7438:22;7408:62;:::i;:::-;7398:72;;7353:127;7519:2;7545:62;7599:7;7590:6;7579:9;7575:22;7545:62;:::i;:::-;7535:72;;7490:127;7656:3;7683:62;7737:7;7728:6;7717:9;7713:22;7683:62;:::i;:::-;7673:72;;7627:128;7794:3;7821:62;7875:7;7866:6;7855:9;7851:22;7821:62;:::i;:::-;7811:72;;7765:128;7932:3;7959:62;8013:7;8004:6;7993:9;7989:22;7959:62;:::i;:::-;7949:72;;7903:128;8070:3;8097:62;8151:7;8142:6;8131:9;8127:22;8097:62;:::i;:::-;8087:72;;8041:128;8208:3;8235:62;8289:7;8280:6;8269:9;8265:22;8235:62;:::i;:::-;8225:72;;8179:128;8346:3;8373:62;8427:7;8418:6;8407:9;8403:22;8373:62;:::i;:::-;8363:72;;8317:128;6732:1720;;;;;;;;;;;;;:::o;8458:327::-;8516:6;8565:2;8553:9;8544:7;8540:23;8536:32;8533:119;;;8571:79;;:::i;:::-;8533:119;8691:1;8716:52;8760:7;8751:6;8740:9;8736:22;8716:52;:::i;:::-;8706:62;;8662:116;8458:327;;;;:::o;8791:329::-;8850:6;8899:2;8887:9;8878:7;8874:23;8870:32;8867:119;;;8905:79;;:::i;:::-;8867:119;9025:1;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8996:117;8791:329;;;;:::o;9126:474::-;9194:6;9202;9251:2;9239:9;9230:7;9226:23;9222:32;9219:119;;;9257:79;;:::i;:::-;9219:119;9377:1;9402:53;9447:7;9438:6;9427:9;9423:22;9402:53;:::i;:::-;9392:63;;9348:117;9504:2;9530:53;9575:7;9566:6;9555:9;9551:22;9530:53;:::i;:::-;9520:63;;9475:118;9126:474;;;;;:::o;9606:118::-;9693:24;9711:5;9693:24;:::i;:::-;9688:3;9681:37;9606:118;;:::o;9730:157::-;9835:45;9855:24;9873:5;9855:24;:::i;:::-;9835:45;:::i;:::-;9830:3;9823:58;9730:157;;:::o;9893:109::-;9974:21;9989:5;9974:21;:::i;:::-;9969:3;9962:34;9893:109;;:::o;10008:157::-;10113:45;10133:24;10151:5;10133:24;:::i;:::-;10113:45;:::i;:::-;10108:3;10101:58;10008:157;;:::o;10171:115::-;10256:23;10273:5;10256:23;:::i;:::-;10251:3;10244:36;10171:115;;:::o;10292:147::-;10387:45;10426:5;10387:45;:::i;:::-;10382:3;10375:58;10292:147;;:::o;10445:366::-;10587:3;10608:67;10672:2;10667:3;10608:67;:::i;:::-;10601:74;;10684:93;10773:3;10684:93;:::i;:::-;10802:2;10797:3;10793:12;10786:19;;10445:366;;;:::o;10817:::-;10959:3;10980:67;11044:2;11039:3;10980:67;:::i;:::-;10973:74;;11056:93;11145:3;11056:93;:::i;:::-;11174:2;11169:3;11165:12;11158:19;;10817:366;;;:::o;11189:::-;11331:3;11352:67;11416:2;11411:3;11352:67;:::i;:::-;11345:74;;11428:93;11517:3;11428:93;:::i;:::-;11546:2;11541:3;11537:12;11530:19;;11189:366;;;:::o;11561:::-;11703:3;11724:67;11788:2;11783:3;11724:67;:::i;:::-;11717:74;;11800:93;11889:3;11800:93;:::i;:::-;11918:2;11913:3;11909:12;11902:19;;11561:366;;;:::o;11933:::-;12075:3;12096:67;12160:2;12155:3;12096:67;:::i;:::-;12089:74;;12172:93;12261:3;12172:93;:::i;:::-;12290:2;12285:3;12281:12;12274:19;;11933:366;;;:::o;12305:::-;12447:3;12468:67;12532:2;12527:3;12468:67;:::i;:::-;12461:74;;12544:93;12633:3;12544:93;:::i;:::-;12662:2;12657:3;12653:12;12646:19;;12305:366;;;:::o;12677:::-;12819:3;12840:67;12904:2;12899:3;12840:67;:::i;:::-;12833:74;;12916:93;13005:3;12916:93;:::i;:::-;13034:2;13029:3;13025:12;13018:19;;12677:366;;;:::o;13049:::-;13191:3;13212:67;13276:2;13271:3;13212:67;:::i;:::-;13205:74;;13288:93;13377:3;13288:93;:::i;:::-;13406:2;13401:3;13397:12;13390:19;;13049:366;;;:::o;13421:::-;13563:3;13584:67;13648:2;13643:3;13584:67;:::i;:::-;13577:74;;13660:93;13749:3;13660:93;:::i;:::-;13778:2;13773:3;13769:12;13762:19;;13421:366;;;:::o;13793:::-;13935:3;13956:67;14020:2;14015:3;13956:67;:::i;:::-;13949:74;;14032:93;14121:3;14032:93;:::i;:::-;14150:2;14145:3;14141:12;14134:19;;13793:366;;;:::o;14165:362::-;14306:3;14327:65;14390:1;14385:3;14327:65;:::i;:::-;14320:72;;14401:93;14490:3;14401:93;:::i;:::-;14519:1;14514:3;14510:11;14503:18;;14165:362;;;:::o;14533:366::-;14675:3;14696:67;14760:2;14755:3;14696:67;:::i;:::-;14689:74;;14772:93;14861:3;14772:93;:::i;:::-;14890:2;14885:3;14881:12;14874:19;;14533:366;;;:::o;14905:115::-;14990:23;15007:5;14990:23;:::i;:::-;14985:3;14978:36;14905:115;;:::o;15026:129::-;15112:36;15142:5;15112:36;:::i;:::-;15107:3;15100:49;15026:129;;:::o;15161:118::-;15248:24;15266:5;15248:24;:::i;:::-;15243:3;15236:37;15161:118;;:::o;15285:157::-;15390:45;15410:24;15428:5;15410:24;:::i;:::-;15390:45;:::i;:::-;15385:3;15378:58;15285:157;;:::o;15448:115::-;15533:23;15550:5;15533:23;:::i;:::-;15528:3;15521:36;15448:115;;:::o;15569:112::-;15652:22;15668:5;15652:22;:::i;:::-;15647:3;15640:35;15569:112;;:::o;15687:679::-;15883:3;15898:75;15969:3;15960:6;15898:75;:::i;:::-;15998:2;15993:3;15989:12;15982:19;;16011:75;16082:3;16073:6;16011:75;:::i;:::-;16111:2;16106:3;16102:12;16095:19;;16124:75;16195:3;16186:6;16124:75;:::i;:::-;16224:2;16219:3;16215:12;16208:19;;16237:75;16308:3;16299:6;16237:75;:::i;:::-;16337:2;16332:3;16328:12;16321:19;;16357:3;16350:10;;15687:679;;;;;;;:::o;16372:222::-;16465:4;16503:2;16492:9;16488:18;16480:26;;16516:71;16584:1;16573:9;16569:17;16560:6;16516:71;:::i;:::-;16372:222;;;;:::o;16600:440::-;16748:4;16786:2;16775:9;16771:18;16763:26;;16799:71;16867:1;16856:9;16852:17;16843:6;16799:71;:::i;:::-;16880:72;16948:2;16937:9;16933:18;16924:6;16880:72;:::i;:::-;16962:71;17029:2;17018:9;17014:18;17005:6;16962:71;:::i;:::-;16600:440;;;;;;:::o;17046:748::-;17295:4;17333:3;17322:9;17318:19;17310:27;;17347:71;17415:1;17404:9;17400:17;17391:6;17347:71;:::i;:::-;17428:72;17496:2;17485:9;17481:18;17472:6;17428:72;:::i;:::-;17510;17578:2;17567:9;17563:18;17554:6;17510:72;:::i;:::-;17629:9;17623:4;17619:20;17614:2;17603:9;17599:18;17592:48;17657:130;17782:4;17657:130;:::i;:::-;17649:138;;17046:748;;;;;;:::o;17800:332::-;17921:4;17959:2;17948:9;17944:18;17936:26;;17972:71;18040:1;18029:9;18025:17;18016:6;17972:71;:::i;:::-;18053:72;18121:2;18110:9;18106:18;18097:6;18053:72;:::i;:::-;17800:332;;;;;:::o;18138:442::-;18287:4;18325:2;18314:9;18310:18;18302:26;;18338:71;18406:1;18395:9;18391:17;18382:6;18338:71;:::i;:::-;18419:72;18487:2;18476:9;18472:18;18463:6;18419:72;:::i;:::-;18501;18569:2;18558:9;18554:18;18545:6;18501:72;:::i;:::-;18138:442;;;;;;:::o;18586:210::-;18673:4;18711:2;18700:9;18696:18;18688:26;;18724:65;18786:1;18775:9;18771:17;18762:6;18724:65;:::i;:::-;18586:210;;;;:::o;18802:218::-;18893:4;18931:2;18920:9;18916:18;18908:26;;18944:69;19010:1;18999:9;18995:17;18986:6;18944:69;:::i;:::-;18802:218;;;;:::o;19026:419::-;19192:4;19230:2;19219:9;19215:18;19207:26;;19279:9;19273:4;19269:20;19265:1;19254:9;19250:17;19243:47;19307:131;19433:4;19307:131;:::i;:::-;19299:139;;19026:419;;;:::o;19451:::-;19617:4;19655:2;19644:9;19640:18;19632:26;;19704:9;19698:4;19694:20;19690:1;19679:9;19675:17;19668:47;19732:131;19858:4;19732:131;:::i;:::-;19724:139;;19451:419;;;:::o;19876:::-;20042:4;20080:2;20069:9;20065:18;20057:26;;20129:9;20123:4;20119:20;20115:1;20104:9;20100:17;20093:47;20157:131;20283:4;20157:131;:::i;:::-;20149:139;;19876:419;;;:::o;20301:::-;20467:4;20505:2;20494:9;20490:18;20482:26;;20554:9;20548:4;20544:20;20540:1;20529:9;20525:17;20518:47;20582:131;20708:4;20582:131;:::i;:::-;20574:139;;20301:419;;;:::o;20726:::-;20892:4;20930:2;20919:9;20915:18;20907:26;;20979:9;20973:4;20969:20;20965:1;20954:9;20950:17;20943:47;21007:131;21133:4;21007:131;:::i;:::-;20999:139;;20726:419;;;:::o;21151:::-;21317:4;21355:2;21344:9;21340:18;21332:26;;21404:9;21398:4;21394:20;21390:1;21379:9;21375:17;21368:47;21432:131;21558:4;21432:131;:::i;:::-;21424:139;;21151:419;;;:::o;21576:::-;21742:4;21780:2;21769:9;21765:18;21757:26;;21829:9;21823:4;21819:20;21815:1;21804:9;21800:17;21793:47;21857:131;21983:4;21857:131;:::i;:::-;21849:139;;21576:419;;;:::o;22001:::-;22167:4;22205:2;22194:9;22190:18;22182:26;;22254:9;22248:4;22244:20;22240:1;22229:9;22225:17;22218:47;22282:131;22408:4;22282:131;:::i;:::-;22274:139;;22001:419;;;:::o;22426:::-;22592:4;22630:2;22619:9;22615:18;22607:26;;22679:9;22673:4;22669:20;22665:1;22654:9;22650:17;22643:47;22707:131;22833:4;22707:131;:::i;:::-;22699:139;;22426:419;;;:::o;22851:::-;23017:4;23055:2;23044:9;23040:18;23032:26;;23104:9;23098:4;23094:20;23090:1;23079:9;23075:17;23068:47;23132:131;23258:4;23132:131;:::i;:::-;23124:139;;22851:419;;;:::o;23276:::-;23442:4;23480:2;23469:9;23465:18;23457:26;;23529:9;23523:4;23519:20;23515:1;23504:9;23500:17;23493:47;23557:131;23683:4;23557:131;:::i;:::-;23549:139;;23276:419;;;:::o;23701:220::-;23793:4;23831:2;23820:9;23816:18;23808:26;;23844:70;23911:1;23900:9;23896:17;23887:6;23844:70;:::i;:::-;23701:220;;;;:::o;23927:434::-;24072:4;24110:2;24099:9;24095:18;24087:26;;24123:69;24189:1;24178:9;24174:17;24165:6;24123:69;:::i;:::-;24202:70;24268:2;24257:9;24253:18;24244:6;24202:70;:::i;:::-;24282:72;24350:2;24339:9;24335:18;24326:6;24282:72;:::i;:::-;23927:434;;;;;;:::o;24367:222::-;24460:4;24498:2;24487:9;24483:18;24475:26;;24511:71;24579:1;24568:9;24564:17;24555:6;24511:71;:::i;:::-;24367:222;;;;:::o;24595:446::-;24746:4;24784:2;24773:9;24769:18;24761:26;;24797:71;24865:1;24854:9;24850:17;24841:6;24797:71;:::i;:::-;24878:80;24954:2;24943:9;24939:18;24930:6;24878:80;:::i;:::-;24968:66;25030:2;25019:9;25015:18;25006:6;24968:66;:::i;:::-;24595:446;;;;;;:::o;25047:430::-;25190:4;25228:2;25217:9;25213:18;25205:26;;25241:71;25309:1;25298:9;25294:17;25285:6;25241:71;:::i;:::-;25322:72;25390:2;25379:9;25375:18;25366:6;25322:72;:::i;:::-;25404:66;25466:2;25455:9;25451:18;25442:6;25404:66;:::i;:::-;25047:430;;;;;;:::o;25483:214::-;25572:4;25610:2;25599:9;25595:18;25587:26;;25623:67;25687:1;25676:9;25672:17;25663:6;25623:67;:::i;:::-;25483:214;;;;:::o;25784:168::-;25867:11;25901:6;25896:3;25889:19;25941:4;25936:3;25932:14;25917:29;;25784:168;;;;:::o;25958:169::-;26042:11;26076:6;26071:3;26064:19;26116:4;26111:3;26107:14;26092:29;;25958:169;;;;:::o;26133:305::-;26173:3;26192:20;26210:1;26192:20;:::i;:::-;26187:25;;26226:20;26244:1;26226:20;:::i;:::-;26221:25;;26380:1;26312:66;26308:74;26305:1;26302:81;26299:107;;;26386:18;;:::i;:::-;26299:107;26430:1;26427;26423:9;26416:16;;26133:305;;;;:::o;26444:185::-;26484:1;26501:20;26519:1;26501:20;:::i;:::-;26496:25;;26535:20;26553:1;26535:20;:::i;:::-;26530:25;;26574:1;26564:35;;26579:18;;:::i;:::-;26564:35;26621:1;26618;26614:9;26609:14;;26444:185;;;;:::o;26635:348::-;26675:7;26698:20;26716:1;26698:20;:::i;:::-;26693:25;;26732:20;26750:1;26732:20;:::i;:::-;26727:25;;26920:1;26852:66;26848:74;26845:1;26842:81;26837:1;26830:9;26823:17;26819:105;26816:131;;;26927:18;;:::i;:::-;26816:131;26975:1;26972;26968:9;26957:20;;26635:348;;;;:::o;26989:191::-;27029:4;27049:20;27067:1;27049:20;:::i;:::-;27044:25;;27083:20;27101:1;27083:20;:::i;:::-;27078:25;;27122:1;27119;27116:8;27113:34;;;27127:18;;:::i;:::-;27113:34;27172:1;27169;27165:9;27157:17;;26989:191;;;;:::o;27186:185::-;27224:4;27244:18;27260:1;27244:18;:::i;:::-;27239:23;;27276:18;27292:1;27276:18;:::i;:::-;27271:23;;27313:1;27310;27307:8;27304:34;;;27318:18;;:::i;:::-;27304:34;27363:1;27360;27356:9;27348:17;;27186:185;;;;:::o;27377:96::-;27414:7;27443:24;27461:5;27443:24;:::i;:::-;27432:35;;27377:96;;;:::o;27479:90::-;27513:7;27556:5;27549:13;27542:21;27531:32;;27479:90;;;:::o;27575:77::-;27612:7;27641:5;27630:16;;27575:77;;;:::o;27658:149::-;27694:7;27734:66;27727:5;27723:78;27712:89;;27658:149;;;:::o;27813:89::-;27849:7;27889:6;27882:5;27878:18;27867:29;;27813:89;;;:::o;27908:126::-;27945:7;27985:42;27978:5;27974:54;27963:65;;27908:126;;;:::o;28040:77::-;28077:7;28106:5;28095:16;;28040:77;;;:::o;28123:86::-;28158:7;28198:4;28191:5;28187:16;28176:27;;28123:86;;;:::o;28215:105::-;28251:7;28291:22;28284:5;28280:34;28269:45;;28215:105;;;:::o;28326:121::-;28384:9;28417:24;28435:5;28417:24;:::i;:::-;28404:37;;28326:121;;;:::o;28453:111::-;28502:9;28535:23;28552:5;28535:23;:::i;:::-;28522:36;;28453:111;;;:::o;28570:233::-;28609:3;28632:24;28650:5;28632:24;:::i;:::-;28623:33;;28678:66;28671:5;28668:77;28665:103;;;28748:18;;:::i;:::-;28665:103;28795:1;28788:5;28784:13;28777:20;;28570:233;;;:::o;28809:100::-;28848:7;28877:26;28897:5;28877:26;:::i;:::-;28866:37;;28809:100;;;:::o;28915:79::-;28954:7;28983:5;28972:16;;28915:79;;;:::o;29000:94::-;29039:7;29068:20;29082:5;29068:20;:::i;:::-;29057:31;;29000:94;;;:::o;29100:79::-;29139:7;29168:5;29157:16;;29100:79;;;:::o;29185:176::-;29217:1;29234:20;29252:1;29234:20;:::i;:::-;29229:25;;29268:20;29286:1;29268:20;:::i;:::-;29263:25;;29307:1;29297:35;;29312:18;;:::i;:::-;29297:35;29353:1;29350;29346:9;29341:14;;29185:176;;;;:::o;29367:180::-;29415:77;29412:1;29405:88;29512:4;29509:1;29502:15;29536:4;29533:1;29526:15;29553:180;29601:77;29598:1;29591:88;29698:4;29695:1;29688:15;29722:4;29719:1;29712:15;29739:180;29787:77;29784:1;29777:88;29884:4;29881:1;29874:15;29908:4;29905:1;29898:15;29925:180;29973:77;29970:1;29963:88;30070:4;30067:1;30060:15;30094:4;30091:1;30084:15;30111:117;30220:1;30217;30210:12;30234:117;30343:1;30340;30333:12;30357:117;30466:1;30463;30456:12;30480:117;30589:1;30586;30579:12;30603:117;30712:1;30709;30702:12;30726:94;30759:8;30807:5;30803:2;30799:14;30778:35;;30726:94;;;:::o;30826:170::-;30966:22;30962:1;30954:6;30950:14;30943:46;30826:170;:::o;31002:173::-;31142:25;31138:1;31130:6;31126:14;31119:49;31002:173;:::o;31181:225::-;31321:34;31317:1;31309:6;31305:14;31298:58;31390:8;31385:2;31377:6;31373:15;31366:33;31181:225;:::o;31412:165::-;31552:17;31548:1;31540:6;31536:14;31529:41;31412:165;:::o;31583:222::-;31723:34;31719:1;31711:6;31707:14;31700:58;31792:5;31787:2;31779:6;31775:15;31768:30;31583:222;:::o;31811:168::-;31951:20;31947:1;31939:6;31935:14;31928:44;31811:168;:::o;31985:166::-;32125:18;32121:1;32113:6;32109:14;32102:42;31985:166;:::o;32157:223::-;32297:34;32293:1;32285:6;32281:14;32274:58;32366:6;32361:2;32353:6;32349:15;32342:31;32157:223;:::o;32386:182::-;32526:34;32522:1;32514:6;32510:14;32503:58;32386:182;:::o;32574:176::-;32714:28;32710:1;32702:6;32698:14;32691:52;32574:176;:::o;32756:114::-;;:::o;32876:163::-;33016:15;33012:1;33004:6;33000:14;32993:39;32876:163;:::o;33045:122::-;33118:24;33136:5;33118:24;:::i;:::-;33111:5;33108:35;33098:63;;33157:1;33154;33147:12;33098:63;33045:122;:::o;33173:116::-;33243:21;33258:5;33243:21;:::i;:::-;33236:5;33233:32;33223:60;;33279:1;33276;33269:12;33223:60;33173:116;:::o;33295:120::-;33367:23;33384:5;33367:23;:::i;:::-;33360:5;33357:34;33347:62;;33405:1;33402;33395:12;33347:62;33295:120;:::o;33421:122::-;33494:24;33512:5;33494:24;:::i;:::-;33487:5;33484:35;33474:63;;33533:1;33530;33523:12;33474:63;33421:122;:::o;33549:118::-;33620:22;33636:5;33620:22;:::i;:::-;33613:5;33610:33;33600:61;;33657:1;33654;33647:12;33600:61;33549:118;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "3385000",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"DAILY_WOOL_RATE()": "441",
"MAXIMUM_GLOBAL_WOOL()": "374",
"MAX_ALPHA()": "425",
"MINIMUM_TO_EXIT()": "375",
"WOOL_CLAIM_TAX_PERCENTAGE()": "463",
"addManyToBarnAndPack(address,uint16[])": "infinite",
"barn(uint256)": "7540",
"claimManyFromBarnAndPack(uint16[],bool)": "infinite",
"isSheep(uint256)": "infinite",
"lastClaimTimestamp()": "2540",
"onERC721Received(address,address,uint256,bytes)": "infinite",
"owner()": "2589",
"pack(uint256,uint256)": "infinite",
"packIndices(uint256)": "infinite",
"paused()": "2618",
"randomWolfOwner(uint256)": "infinite",
"renounceOwnership()": "30419",
"rescue(uint256[])": "infinite",
"rescueEnabled()": "2561",
"setPaused(bool)": "infinite",
"setRescueEnabled(bool)": "26986",
"totalAlphaStaked()": "2519",
"totalSheepStaked()": "2518",
"totalWoolEarned()": "2496",
"transferOwnership(address)": "30833",
"unaccountedRewards()": "2518",
"woolPerAlpha()": "2473"
},
"internal": {
"_addSheepToBarn(address,uint256)": "infinite",
"_addWolfToPack(address,uint256)": "infinite",
"_alphaForWolf(uint256)": "infinite",
"_claimSheepFromBarn(uint256,bool)": "infinite",
"_claimWolfFromPack(uint256,bool)": "infinite",
"_payWolfTax(uint256)": "infinite",
"random(uint256)": "infinite"
}
},
"methodIdentifiers": {
"DAILY_WOOL_RATE()": "2435d651",
"MAXIMUM_GLOBAL_WOOL()": "88ff498b",
"MAX_ALPHA()": "201ef2a4",
"MINIMUM_TO_EXIT()": "37a386b9",
"WOOL_CLAIM_TAX_PERCENTAGE()": "28b3e697",
"addManyToBarnAndPack(address,uint16[])": "81d449c1",
"barn(uint256)": "387f8bdd",
"claimManyFromBarnAndPack(uint16[],bool)": "13324aa9",
"isSheep(uint256)": "de54625d",
"lastClaimTimestamp()": "607af397",
"onERC721Received(address,address,uint256,bytes)": "150b7a02",
"owner()": "8da5cb5b",
"pack(uint256,uint256)": "dd55fcb3",
"packIndices(uint256)": "6f234fb5",
"paused()": "5c975abb",
"randomWolfOwner(uint256)": "3c989e6a",
"renounceOwnership()": "715018a6",
"rescue(uint256[])": "6a3ef057",
"rescueEnabled()": "39db714f",
"setPaused(bool)": "16c38b3c",
"setRescueEnabled(bool)": "76531008",
"totalAlphaStaked()": "6f257875",
"totalSheepStaked()": "76fbe719",
"totalWoolEarned()": "51211436",
"transferOwnership(address)": "f2fde38b",
"unaccountedRewards()": "c0c472c0",
"woolPerAlpha()": "db796b89"
}
},
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_woolf",
"type": "address"
},
{
"internalType": "address",
"name": "_wool",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"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": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "earned",
"type": "uint256"
},
{
"indexed": false,
"internalType": "bool",
"name": "unstaked",
"type": "bool"
}
],
"name": "SheepClaimed",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "TokenStaked",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "earned",
"type": "uint256"
},
{
"indexed": false,
"internalType": "bool",
"name": "unstaked",
"type": "bool"
}
],
"name": "WolfClaimed",
"type": "event"
},
{
"inputs": [],
"name": "DAILY_WOOL_RATE",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MAXIMUM_GLOBAL_WOOL",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MAX_ALPHA",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MINIMUM_TO_EXIT",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "WOOL_CLAIM_TAX_PERCENTAGE",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint16[]",
"name": "tokenIds",
"type": "uint16[]"
}
],
"name": "addManyToBarnAndPack",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "barn",
"outputs": [
{
"internalType": "uint16",
"name": "tokenId",
"type": "uint16"
},
{
"internalType": "uint80",
"name": "value",
"type": "uint80"
},
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint16[]",
"name": "tokenIds",
"type": "uint16[]"
},
{
"internalType": "bool",
"name": "unstake",
"type": "bool"
}
],
"name": "claimManyFromBarnAndPack",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "isSheep",
"outputs": [
{
"internalType": "bool",
"name": "sheep",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "lastClaimTimestamp",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
},
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "uint256",
"name": "",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "",
"type": "bytes"
}
],
"name": "onERC721Received",
"outputs": [
{
"internalType": "bytes4",
"name": "",
"type": "bytes4"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "pack",
"outputs": [
{
"internalType": "uint16",
"name": "tokenId",
"type": "uint16"
},
{
"internalType": "uint80",
"name": "value",
"type": "uint80"
},
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "packIndices",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "seed",
"type": "uint256"
}
],
"name": "randomWolfOwner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256[]",
"name": "tokenIds",
"type": "uint256[]"
}
],
"name": "rescue",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "rescueEnabled",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bool",
"name": "_paused",
"type": "bool"
}
],
"name": "setPaused",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bool",
"name": "_enabled",
"type": "bool"
}
],
"name": "setRescueEnabled",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "totalAlphaStaked",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSheepStaked",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalWoolEarned",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unaccountedRewards",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "woolPerAlpha",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_woolf",
"type": "address"
},
{
"internalType": "address",
"name": "_wool",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"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": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "earned",
"type": "uint256"
},
{
"indexed": false,
"internalType": "bool",
"name": "unstaked",
"type": "bool"
}
],
"name": "SheepClaimed",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "TokenStaked",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "earned",
"type": "uint256"
},
{
"indexed": false,
"internalType": "bool",
"name": "unstaked",
"type": "bool"
}
],
"name": "WolfClaimed",
"type": "event"
},
{
"inputs": [],
"name": "DAILY_WOOL_RATE",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MAXIMUM_GLOBAL_WOOL",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MAX_ALPHA",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MINIMUM_TO_EXIT",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "WOOL_CLAIM_TAX_PERCENTAGE",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint16[]",
"name": "tokenIds",
"type": "uint16[]"
}
],
"name": "addManyToBarnAndPack",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "barn",
"outputs": [
{
"internalType": "uint16",
"name": "tokenId",
"type": "uint16"
},
{
"internalType": "uint80",
"name": "value",
"type": "uint80"
},
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint16[]",
"name": "tokenIds",
"type": "uint16[]"
},
{
"internalType": "bool",
"name": "unstake",
"type": "bool"
}
],
"name": "claimManyFromBarnAndPack",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "isSheep",
"outputs": [
{
"internalType": "bool",
"name": "sheep",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "lastClaimTimestamp",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
},
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "uint256",
"name": "",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "",
"type": "bytes"
}
],
"name": "onERC721Received",
"outputs": [
{
"internalType": "bytes4",
"name": "",
"type": "bytes4"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "pack",
"outputs": [
{
"internalType": "uint16",
"name": "tokenId",
"type": "uint16"
},
{
"internalType": "uint80",
"name": "value",
"type": "uint80"
},
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "packIndices",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "seed",
"type": "uint256"
}
],
"name": "randomWolfOwner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256[]",
"name": "tokenIds",
"type": "uint256[]"
}
],
"name": "rescue",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "rescueEnabled",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bool",
"name": "_paused",
"type": "bool"
}
],
"name": "setPaused",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bool",
"name": "_enabled",
"type": "bool"
}
],
"name": "setRescueEnabled",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "totalAlphaStaked",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSheepStaked",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalWoolEarned",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unaccountedRewards",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "woolPerAlpha",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"addManyToBarnAndPack(address,uint16[])": {
"params": {
"account": "the address of the staker",
"tokenIds": "the IDs of the Sheep and Wolves to stake"
}
},
"claimManyFromBarnAndPack(uint16[],bool)": {
"params": {
"tokenIds": "the IDs of the tokens to claim earnings from",
"unstake": "whether or not to unstake ALL of the tokens listed in tokenIds"
}
},
"constructor": {
"params": {
"_wool": "reference to the $WOOL token",
"_woolf": "reference to the Woolf NFT contract"
}
},
"isSheep(uint256)": {
"params": {
"tokenId": "the ID of the token to check"
},
"returns": {
"sheep": "- whether or not a token is a Sheep"
}
},
"owner()": {
"details": "Returns the address of the current owner."
},
"paused()": {
"details": "Returns true if the contract is paused, and false otherwise."
},
"randomWolfOwner(uint256)": {
"params": {
"seed": "a random value to choose a Wolf from"
},
"returns": {
"_0": "the owner of the randomly selected Wolf thief"
}
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"rescue(uint256[])": {
"params": {
"tokenIds": "the IDs of the tokens to claim earnings from"
}
},
"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": {
"addManyToBarnAndPack(address,uint16[])": {
"notice": "adds Sheep and Wolves to the Barn and Pack"
},
"claimManyFromBarnAndPack(uint16[],bool)": {
"notice": "realize $WOOL earnings and optionally unstake tokens from the Barn / Pack to unstake a Sheep it will require it has 2 days worth of $WOOL unclaimed"
},
"isSheep(uint256)": {
"notice": "checks if a token is a Sheep"
},
"randomWolfOwner(uint256)": {
"notice": "chooses a random Wolf thief when a newly minted token is stolen"
},
"rescue(uint256[])": {
"notice": "emergency unstake tokens"
},
"setPaused(bool)": {
"notice": "enables owner to pause / unpause minting"
},
"setRescueEnabled(bool)": {
"notice": "allows owner to enable \"rescue mode\" simplifies accounting, prioritizes tokens out in emergency"
}
},
"version": 1
}
},
"settings": {
"compilationTarget": {
"gist-d40faac96075963e549444b1e101bd8c/contracts/Barn.sol": "Barn"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0xa1b27b3f44ff825974e5268e8f63ad3b03add5b464880d860fbb8cae043e17f7",
"license": "MIT",
"urls": [
"bzz-raw://ad0fb4425453220f15bdb8c4e009052839804bb725797b6d8c02ee2271bc3c23",
"dweb:/ipfs/QmPtjdMxzEifPUEUa6cKX1yfTWjaZV6QtdwMdN6bEL9FBM"
]
},
"@openzeppelin/contracts/security/Pausable.sol": {
"keccak256": "0x6881efb8fa7b41a7a7c2e6e5b31f0f19d0735a6485f2912f8db5802546aeaf16",
"license": "MIT",
"urls": [
"bzz-raw://7ea683961a55304e67ed64586cd13a2dcc234389ade23da1e208c5fd35f309a8",
"dweb:/ipfs/QmScxia6XH7xZJESgniHCF3VuxLYBCncBadFtA1kVRZ2vh"
]
},
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0x53a0bb51b8a505e04aaf065de27c0e31cadf38194f8a9a6ec92b7bcd3c5826e6",
"license": "MIT",
"urls": [
"bzz-raw://d7d7019db0d8c1256995eb44b2aabf1189120c0bd01efa653e0eabdbc8cf4742",
"dweb:/ipfs/QmZRiFEksts7Z2r1xnHb9Jqu4udHyTM6tQVTCyFosMXQAy"
]
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0xc1452b054778f1926419196ef12ae200758a4ee728df69ae1cd13e5c16ca7df7",
"license": "MIT",
"urls": [
"bzz-raw://4cb252ec7657ba7a91be688cbd263090aa5379e504f488a62d06198e0d630322",
"dweb:/ipfs/QmW56fDiDirhWfWiKrycXE5UY6tTNtFrYx39ipnSs8mkYb"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0x842c66d5965ed0bf77f274732c2a93a7e2223d53171ec9cccc473bde75104ead",
"license": "MIT",
"urls": [
"bzz-raw://8cc9f9a6d9c1e2ca9cd191840c0e6017d22bf99d88b368137e43c67f63d17d1c",
"dweb:/ipfs/Qmd3vUSxY4fRi4AUFMkerjrMFEKRLGVJUGFmxazR1wnPXP"
]
},
"@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"keccak256": "0x1ba5cf152c15dc0c785310feeb61e1f74387fc7bdc2aba5d90733f791606d4bf",
"license": "MIT",
"urls": [
"bzz-raw://38db14c62d6431df042a7ca07fd021ea52ccdbd03f0be2b5c4ab034a56126d38",
"dweb:/ipfs/QmbCHTCLP6bz8omQXrP8VuxFGdK9Hh3jqfrSTr38WNpTk4"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"keccak256": "0x872ba21af7c1f0ae04a715beca31e8fcac764d6c8762940b0fe1bfb6ed8e86f4",
"license": "MIT",
"urls": [
"bzz-raw://497017741d74878b56a67ad51e98061bd9ec0e6e4fdbfef0e2ab51523f4c16de",
"dweb:/ipfs/QmWfkpRHksy8jFywqYxdmMqdkQ1hxrGTPoNBXbZ48zTvyv"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0x483b106386dd309f168672928252a19f30c30efb4d17d4b8e2b0f587ca784a11",
"license": "MIT",
"urls": [
"bzz-raw://189a39d066c6886ddbe86c79bb36d6cbe66e98bc6a94956e28f5503dae4ad406",
"dweb:/ipfs/QmT3s3PwCdXqHLJk26kcnedrRGTC9T18z52i9Be7PV9ppc"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol": {
"keccak256": "0x683793c78df81fc9033105d5c5e7173a3a295f94b55435129a385514213637e2",
"license": "MIT",
"urls": [
"bzz-raw://02d4dc9c619d54284ee14261f5f2a3edc03ad654f8b6fe16f257789d5d58475b",
"dweb:/ipfs/QmTuGzVWvDKSmNAXUNKRFWTDv86QBpwmi2vbCCqjctvc8h"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol": {
"keccak256": "0x42c041cfe2fba75264baa64c4c3c55b128e6667b54331df87028cc4da0a9606e",
"license": "MIT",
"urls": [
"bzz-raw://ed91e7e168e51bce00363a70677e368528179e6f29105b1b3d38f8948e670a01",
"dweb:/ipfs/QmPr58W3vqF9EMQyh5yzweRW5M1jtpS4UEjSxreYqMWtzA"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0x6052c25b1021f2b0e733fb52ca11948cb2f08cb66076397507243a6e8a8d7776",
"license": "MIT",
"urls": [
"bzz-raw://32ac4547a76b28021a007853958284aa8a15a64f1aeec83cb797b7fd60a46b56",
"dweb:/ipfs/QmTJWQF8j586oaYNpdZv55xnzyHVQc68XN4eBNeiLbKX8d"
]
},
"@openzeppelin/contracts/utils/Address.sol": {
"keccak256": "0x9944d1038f27dcebff810d7ba16b3b8058b967173d76874fb72dd7cd84129656",
"license": "MIT",
"urls": [
"bzz-raw://7c455cda07c5f8978c57e545ddde382552d3a55b6e3682e0f809ed07ec7defbe",
"dweb:/ipfs/QmXkoKbxyMcMzjYdkXi5t4t3ZjBQ81pj7AaanS9jhePxyt"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0x7736c187e6f1358c1ea9350a2a21aa8528dec1c2f43b374a9067465a3a51f5d3",
"license": "MIT",
"urls": [
"bzz-raw://4fd625dca17657403af518cc6c8ab5c54c58898cf6e912ca2e1b0f3194ad0405",
"dweb:/ipfs/QmQVv7YeeKmaS11bg7YDTeeGDk6i7sV8LMMfohaLM4SiRu"
]
},
"@openzeppelin/contracts/utils/Strings.sol": {
"keccak256": "0x5fa25f305839292fab713256214f2868e0257d29826b14282bbd7f1e34f5af38",
"license": "MIT",
"urls": [
"bzz-raw://b3de4074848249e00e1336db857e3fa8f78b4fe11d4a887f71050c22023b2132",
"dweb:/ipfs/QmbL6k2zFGndQPNPG7vCDivtjKam3quJSrEbRuVsNo4hBw"
]
},
"@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"keccak256": "0x905cd0ecd91d1de79a4679d745b79cf852ca8ccda5d25d1c49c6bd17a5edc0cf",
"license": "MIT",
"urls": [
"bzz-raw://8dd1601fcd370546d8c06ea1902d7e7364fc490fbf0ebc3004230ef1f5db473c",
"dweb:/ipfs/Qmb8zbC3TjWFtcuyP3KEEaegMkPcfeKAcPrwzvkAoMR3cZ"
]
},
"@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"keccak256": "0x6aa521718bf139b44ce56f194f6aea1d590cacef995b5a84703fb1579fa49be9",
"license": "MIT",
"urls": [
"bzz-raw://100f8d367b5e94eb9cb991914f1de133cf272654c0708faa893bbc17a5b35b93",
"dweb:/ipfs/QmZeBojmgXq821dL1TJKFb58B1FogM9jL3u7hXQ8hTEBKT"
]
},
"gist-d40faac96075963e549444b1e101bd8c/contracts/Barn.sol": {
"keccak256": "0x416416ba4224bcf763306ac34d494eade357a6b41f09b6bfd39ad146892e1de5",
"license": "MIT LICENSE",
"urls": [
"bzz-raw://cb3a679f31d37c60833dc16c21a47473ae55c5103315f00b8a020e6a44ca194a",
"dweb:/ipfs/QmNuxo5VPhvS55pKVh7ah2dxk9SV3AomP9rwLRPTQwe8CU"
]
},
"gist-d40faac96075963e549444b1e101bd8c/contracts/IBarn.sol": {
"keccak256": "0x18f5f94288607ef1d5912f55e84e6c88da32c482de95532ff267edb4dd7b7a51",
"license": "MIT LICENSE",
"urls": [
"bzz-raw://56c3fb236c46096afef8511aea79226db427c40a509dbbd6419ef65e93ccd59c",
"dweb:/ipfs/QmPRDbwDQWfLoxq9NqS5MDxPhgsBD86NUrxQtL8ndAGjfX"
]
},
"gist-d40faac96075963e549444b1e101bd8c/contracts/ITraits.sol": {
"keccak256": "0x5cc816abe59a704ec2a887d644aa058a5f95aa2738c9ca8b3f775cba8201f24a",
"license": "MIT LICENSE",
"urls": [
"bzz-raw://524c45d8e9a90981ea595510202ecb7243b8500316bb80ac3b1c7a627af5fec4",
"dweb:/ipfs/QmZFiPoNuZXx6NELkVd1DX7DLVLe9JRaAZ4UQij5ebvY5M"
]
},
"gist-d40faac96075963e549444b1e101bd8c/contracts/IWoolf.sol": {
"keccak256": "0xcfca7d702015af92ae0911ce95bade7c891189125a64d37ed8c26e15a21615a0",
"license": "MIT LICENSE",
"urls": [
"bzz-raw://be10b89d0820d6bf220cbec6518612705428a0a040df03ee1c4d7509b2a28e93",
"dweb:/ipfs/QmZ6PGbrKk6bsFGjCQypqV6HWVHwaapu7gR7ji1AmJWA4D"
]
},
"gist-d40faac96075963e549444b1e101bd8c/contracts/WOOL.sol": {
"keccak256": "0x784731f3794ed1501fc54aab91f498aebc8e6ca2cbd70668429351719744f14a",
"license": "MIT",
"urls": [
"bzz-raw://ae9d93c86c4ceff0c34fb74ecddc02e43f00ae385259ccd4bcccdd8b135e426e",
"dweb:/ipfs/QmeYjmVQ8hAjYoiTkK3aE4xX3dXcXm6jb4pKx5kuJd2A2w"
]
},
"gist-d40faac96075963e549444b1e101bd8c/contracts/Woolf.sol": {
"keccak256": "0xed5adf4a90af72ee628910d31624c39aa6dbd329b5cb45796ada32057737cdab",
"license": "MIT LICENSE",
"urls": [
"bzz-raw://84da8bab5589972670ebfdb028f91a4af77e722fe96e380bb0051c91bc13c12f",
"dweb:/ipfs/QmSJ4z4sS7fKFttyCA4TzaaqSJxQYunrRkQCBK8wTT9wgZ"
]
}
},
"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": {
"addManyToBarnAndPack(address,uint16[])": "81d449c1",
"randomWolfOwner(uint256)": "3c989e6a"
}
},
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint16[]",
"name": "tokenIds",
"type": "uint16[]"
}
],
"name": "addManyToBarnAndPack",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "seed",
"type": "uint256"
}
],
"name": "randomWolfOwner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint16[]",
"name": "tokenIds",
"type": "uint16[]"
}
],
"name": "addManyToBarnAndPack",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "seed",
"type": "uint256"
}
],
"name": "randomWolfOwner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"gist-d40faac96075963e549444b1e101bd8c/contracts/IBarn.sol": "IBarn"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"gist-d40faac96075963e549444b1e101bd8c/contracts/IBarn.sol": {
"keccak256": "0x18f5f94288607ef1d5912f55e84e6c88da32c482de95532ff267edb4dd7b7a51",
"license": "MIT LICENSE",
"urls": [
"bzz-raw://56c3fb236c46096afef8511aea79226db427c40a509dbbd6419ef65e93ccd59c",
"dweb:/ipfs/QmPRDbwDQWfLoxq9NqS5MDxPhgsBD86NUrxQtL8ndAGjfX"
]
}
},
"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": {
"tokenURI(uint256)": "c87b56dd"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"gist-d40faac96075963e549444b1e101bd8c/contracts/ITraits.sol": "ITraits"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"gist-d40faac96075963e549444b1e101bd8c/contracts/ITraits.sol": {
"keccak256": "0x5cc816abe59a704ec2a887d644aa058a5f95aa2738c9ca8b3f775cba8201f24a",
"license": "MIT LICENSE",
"urls": [
"bzz-raw://524c45d8e9a90981ea595510202ecb7243b8500316bb80ac3b1c7a627af5fec4",
"dweb:/ipfs/QmZFiPoNuZXx6NELkVd1DX7DLVLe9JRaAZ4UQij5ebvY5M"
]
}
},
"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": {
"getPaidTokens()": "4018b1f8",
"getTokenTraits(uint256)": "94e56847"
}
},
"abi": [
{
"inputs": [],
"name": "getPaidTokens",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getTokenTraits",
"outputs": [
{
"components": [
{
"internalType": "bool",
"name": "isSheep",
"type": "bool"
},
{
"internalType": "uint8",
"name": "fur",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "head",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "ears",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "eyes",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "nose",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "mouth",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "neck",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "feet",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "alphaIndex",
"type": "uint8"
}
],
"internalType": "struct IWoolf.SheepWolf",
"name": "",
"type": "tuple"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "getPaidTokens",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getTokenTraits",
"outputs": [
{
"components": [
{
"internalType": "bool",
"name": "isSheep",
"type": "bool"
},
{
"internalType": "uint8",
"name": "fur",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "head",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "ears",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "eyes",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "nose",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "mouth",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "neck",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "feet",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "alphaIndex",
"type": "uint8"
}
],
"internalType": "struct IWoolf.SheepWolf",
"name": "",
"type": "tuple"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"gist-d40faac96075963e549444b1e101bd8c/contracts/IWoolf.sol": "IWoolf"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"gist-d40faac96075963e549444b1e101bd8c/contracts/IWoolf.sol": {
"keccak256": "0xcfca7d702015af92ae0911ce95bade7c891189125a64d37ed8c26e15a21615a0",
"license": "MIT LICENSE",
"urls": [
"bzz-raw://be10b89d0820d6bf220cbec6518612705428a0a040df03ee1c4d7509b2a28e93",
"dweb:/ipfs/QmZ6PGbrKk6bsFGjCQypqV6HWVHwaapu7gR7ji1AmJWA4D"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "./Woolf.sol";
import "./WOOL.sol";
contract Barn is Ownable, IERC721Receiver, Pausable {
// maximum alpha score for a Wolf
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 SheepClaimed(uint256 tokenId, uint256 earned, bool unstaked);
event WolfClaimed(uint256 tokenId, uint256 earned, bool unstaked);
// reference to the Woolf NFT contract
Woolf woolf;
// reference to the $WOOL contract for minting $WOOL earnings
WOOL wool;
// maps tokenId to stake
mapping(uint256 => Stake) public barn;
// maps alpha to all Wolf stakes with that alpha
mapping(uint256 => Stake[]) public pack;
// tracks location of each Wolf 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 $WOOL due for each alpha point staked
uint256 public woolPerAlpha = 0;
// sheep earn 10000 $WOOL per day
uint256 public constant DAILY_WOOL_RATE = 10000 ether;
// sheep must have 2 days worth of $WOOL to unstake or else it's too cold
uint256 public constant MINIMUM_TO_EXIT = 2 days;
// wolves take a 20% tax on all $WOOL claimed
uint256 public constant WOOL_CLAIM_TAX_PERCENTAGE = 20;
// there will only ever be (roughly) 2.4 billion $WOOL earned through staking
uint256 public constant MAXIMUM_GLOBAL_WOOL = 2400000000 ether;
// amount of $WOOL earned so far
uint256 public totalWoolEarned;
// number of Sheep staked in the Barn
uint256 public totalSheepStaked;
// the last time $WOOL was claimed
uint256 public lastClaimTimestamp;
// emergency rescue to allow unstaking without any checks but without $WOOL
bool public rescueEnabled = false;
/**
* @param _woolf reference to the Woolf NFT contract
* @param _wool reference to the $WOOL token
*/
constructor(address _woolf, address _wool) {
woolf = Woolf(_woolf);
wool = WOOL(_wool);
}
/** STAKING */
/**
* adds Sheep and Wolves to the Barn and Pack
* @param account the address of the staker
* @param tokenIds the IDs of the Sheep and Wolves to stake
*/
function addManyToBarnAndPack(address account, uint16[] calldata tokenIds) external {
require(account == _msgSender() || _msgSender() == address(woolf), "DONT GIVE YOUR TOKENS AWAY");
for (uint i = 0; i < tokenIds.length; i++) {
if (_msgSender() != address(woolf)) { // dont do this step if its a mint + stake
require(woolf.ownerOf(tokenIds[i]) == _msgSender(), "AINT YO TOKEN");
woolf.transferFrom(_msgSender(), address(this), tokenIds[i]);
} else if (tokenIds[i] == 0) {
continue; // there may be gaps in the array for stolen tokens
}
if (isSheep(tokenIds[i]))
_addSheepToBarn(account, tokenIds[i]);
else
_addWolfToPack(account, tokenIds[i]);
}
}
/**
* adds a single Sheep to the Barn
* @param account the address of the staker
* @param tokenId the ID of the Sheep to add to the Barn
*/
function _addSheepToBarn(address account, uint256 tokenId) internal whenNotPaused _updateEarnings {
barn[tokenId] = Stake({
owner: account,
tokenId: uint16(tokenId),
value: uint80(block.timestamp)
});
totalSheepStaked += 1;
emit TokenStaked(account, tokenId, block.timestamp);
}
/**
* adds a single Wolf to the Pack
* @param account the address of the staker
* @param tokenId the ID of the Wolf to add to the Pack
*/
function _addWolfToPack(address account, uint256 tokenId) internal {
uint256 alpha = _alphaForWolf(tokenId);
totalAlphaStaked += alpha; // Portion of earnings ranges from 8 to 5
packIndices[tokenId] = pack[alpha].length; // Store the location of the wolf in the Pack
pack[alpha].push(Stake({
owner: account,
tokenId: uint16(tokenId),
value: uint80(woolPerAlpha)
})); // Add the wolf to the Pack
emit TokenStaked(account, tokenId, woolPerAlpha);
}
/** CLAIMING / UNSTAKING */
/**
* realize $WOOL earnings and optionally unstake tokens from the Barn / Pack
* to unstake a Sheep it will require it has 2 days worth of $WOOL 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 claimManyFromBarnAndPack(uint16[] calldata tokenIds, bool unstake) external whenNotPaused _updateEarnings {
uint256 owed = 0;
for (uint i = 0; i < tokenIds.length; i++) {
if (isSheep(tokenIds[i]))
owed += _claimSheepFromBarn(tokenIds[i], unstake);
else
owed += _claimWolfFromPack(tokenIds[i], unstake);
}
if (owed == 0) return;
wool.mint(_msgSender(), owed);
}
/**
* realize $WOOL earnings for a single Sheep and optionally unstake it
* if not unstaking, pay a 20% tax to the staked Wolves
* if unstaking, there is a 50% chance all $WOOL is stolen
* @param tokenId the ID of the Sheep to claim earnings from
* @param unstake whether or not to unstake the Sheep
* @return owed - the amount of $WOOL earned
*/
function _claimSheepFromBarn(uint256 tokenId, bool unstake) internal returns (uint256 owed) {
Stake memory stake = barn[tokenId];
require(stake.owner == _msgSender(), "SWIPER, NO SWIPING");
require(!(unstake && block.timestamp - stake.value < MINIMUM_TO_EXIT), "GONNA BE COLD WITHOUT TWO DAY'S WOOL");
if (totalWoolEarned < MAXIMUM_GLOBAL_WOOL) {
owed = (block.timestamp - stake.value) * DAILY_WOOL_RATE / 1 days;
} else if (stake.value > lastClaimTimestamp) {
owed = 0; // $WOOL production stopped already
} else {
owed = (lastClaimTimestamp - stake.value) * DAILY_WOOL_RATE / 1 days; // stop earning additional $WOOL if it's all been earned
}
if (unstake) {
if (random(tokenId) & 1 == 1) { // 50% chance of all $WOOL stolen
_payWolfTax(owed);
owed = 0;
}
woolf.safeTransferFrom(address(this), _msgSender(), tokenId, ""); // send back Sheep
delete barn[tokenId];
totalSheepStaked -= 1;
} else {
_payWolfTax(owed * WOOL_CLAIM_TAX_PERCENTAGE / 100); // percentage tax to staked wolves
owed = owed * (100 - WOOL_CLAIM_TAX_PERCENTAGE) / 100; // remainder goes to Sheep owner
barn[tokenId] = Stake({
owner: _msgSender(),
tokenId: uint16(tokenId),
value: uint80(block.timestamp)
}); // reset stake
}
emit SheepClaimed(tokenId, owed, unstake);
}
/**
* realize $WOOL earnings for a single Wolf and optionally unstake it
* Wolves earn $WOOL proportional to their Alpha rank
* @param tokenId the ID of the Wolf to claim earnings from
* @param unstake whether or not to unstake the Wolf
* @return owed - the amount of $WOOL earned
*/
function _claimWolfFromPack(uint256 tokenId, bool unstake) internal returns (uint256 owed) {
require(woolf.ownerOf(tokenId) == address(this), "AINT A PART OF THE PACK");
uint256 alpha = _alphaForWolf(tokenId);
Stake memory stake = pack[alpha][packIndices[tokenId]];
require(stake.owner == _msgSender(), "SWIPER, NO SWIPING");
owed = (alpha) * (woolPerAlpha - stake.value); // Calculate portion of tokens based on Alpha
if (unstake) {
totalAlphaStaked -= alpha; // Remove Alpha from total staked
woolf.safeTransferFrom(address(this), _msgSender(), tokenId, ""); // Send back Wolf
Stake memory lastStake = pack[alpha][pack[alpha].length - 1];
pack[alpha][packIndices[tokenId]] = lastStake; // Shuffle last Wolf 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(woolPerAlpha)
}); // reset stake
}
emit WolfClaimed(tokenId, owed, unstake);
}
/**
* emergency unstake tokens
* @param tokenIds the IDs of the tokens to claim earnings from
*/
function rescue(uint256[] calldata tokenIds) external {
require(rescueEnabled, "RESCUE DISABLED");
uint256 tokenId;
Stake memory stake;
Stake memory lastStake;
uint256 alpha;
for (uint i = 0; i < tokenIds.length; i++) {
tokenId = tokenIds[i];
if (isSheep(tokenId)) {
stake = barn[tokenId];
require(stake.owner == _msgSender(), "SWIPER, NO SWIPING");
woolf.safeTransferFrom(address(this), _msgSender(), tokenId, ""); // send back Sheep
delete barn[tokenId];
totalSheepStaked -= 1;
emit SheepClaimed(tokenId, 0, true);
} else {
alpha = _alphaForWolf(tokenId);
stake = pack[alpha][packIndices[tokenId]];
require(stake.owner == _msgSender(), "SWIPER, NO SWIPING");
totalAlphaStaked -= alpha; // Remove Alpha from total staked
woolf.safeTransferFrom(address(this), _msgSender(), tokenId, ""); // Send back Wolf
lastStake = pack[alpha][pack[alpha].length - 1];
pack[alpha][packIndices[tokenId]] = lastStake; // Shuffle last Wolf to current position
packIndices[lastStake.tokenId] = packIndices[tokenId];
pack[alpha].pop(); // Remove duplicate
delete packIndices[tokenId]; // Delete old mapping
emit WolfClaimed(tokenId, 0, true);
}
}
}
/** ACCOUNTING */
/**
* add $WOOL to claimable pot for the Pack
* @param amount $WOOL to add to the pot
*/
function _payWolfTax(uint256 amount) internal {
if (totalAlphaStaked == 0) { // if there's no staked wolves
unaccountedRewards += amount; // keep track of $WOOL due to wolves
return;
}
// makes sure to include any unaccounted $WOOL
woolPerAlpha += (amount + unaccountedRewards) / totalAlphaStaked;
unaccountedRewards = 0;
}
/**
* tracks $WOOL earnings to ensure it stops once 2.4 billion is eclipsed
*/
modifier _updateEarnings() {
if (totalWoolEarned < MAXIMUM_GLOBAL_WOOL) {
totalWoolEarned +=
(block.timestamp - lastClaimTimestamp)
* totalSheepStaked
* DAILY_WOOL_RATE / 1 days;
lastClaimTimestamp = block.timestamp;
}
_;
}
/** ADMIN */
/**
* 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 Sheep
* @param tokenId the ID of the token to check
* @return sheep - whether or not a token is a Sheep
*/
function isSheep(uint256 tokenId) public view returns (bool sheep) {
(sheep, , , , , , , , , ) = woolf.tokenTraits(tokenId);
}
/**
* gets the alpha score for a Wolf
* @param tokenId the ID of the Wolf to get the alpha score for
* @return the alpha score of the Wolf (5-8)
*/
function _alphaForWolf(uint256 tokenId) internal view returns (uint8) {
( , , , , , , , , , uint8 alphaIndex) = woolf.tokenTraits(tokenId);
return MAX_ALPHA - alphaIndex; // alpha index is 0-3
}
/**
* chooses a random Wolf thief when a newly minted token is stolen
* @param seed a random value to choose a Wolf from
* @return the owner of the randomly selected Wolf thief
*/
function randomWolfOwner(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 Wolves with the same alpha score
for (uint 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 Wolf 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
)));
}
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;
interface IBarn {
function addManyToBarnAndPack(address account, uint16[] calldata tokenIds) external;
function randomWolfOwner(uint256 seed) external view returns (address);
}
// SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.0;
interface ITraits {
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.0;
interface IWoolf {
// struct to store each token's traits
struct SheepWolf {
bool isSheep;
uint8 fur;
uint8 head;
uint8 ears;
uint8 eyes;
uint8 nose;
uint8 mouth;
uint8 neck;
uint8 feet;
uint8 alphaIndex;
}
function getPaidTokens() external view returns (uint256);
function getTokenTraits(uint256 tokenId) external view returns (SheepWolf memory);
}
// SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./ITraits.sol";
import "./IWoolf.sol";
contract Traits is Ownable, ITraits {
using Strings for uint256;
// struct to store each trait's data for metadata and rendering
struct Trait {
string name;
string png;
}
// mapping from trait type (index) to its name
string[9] _traitTypes = [
"Fur",
"Head",
"Ears",
"Eyes",
"Nose",
"Mouth",
"Neck",
"Feet",
"Alpha"
];
// storage of each traits name and base64 PNG data
mapping(uint8 => mapping(uint8 => Trait)) public traitData;
// mapping from alphaIndex to its score
string[4] _alphas = [
"8",
"7",
"6",
"5"
];
IWoolf public woolf;
constructor() {}
/** ADMIN */
function setWoolf(address _woolf) external onlyOwner {
woolf = IWoolf(_woolf);
}
/**
* administrative to upload the names and images associated with each trait
* @param traitType the trait type to upload the traits for (see traitTypes for a mapping)
* @param traits the names and base64 encoded PNGs for each trait
*/
function uploadTraits(uint8 traitType, uint8[] calldata traitIds, Trait[] calldata traits) external onlyOwner {
require(traitIds.length == traits.length, "Mismatched inputs");
for (uint i = 0; i < traits.length; i++) {
traitData[traitType][traitIds[i]] = Trait(
traits[i].name,
traits[i].png
);
}
}
/** RENDER */
/**
* generates an <image> element using base64 encoded PNGs
* @param trait the trait storing the PNG data
* @return the <image> element
*/
function drawTrait(Trait memory trait) internal pure returns (string memory) {
return string(abi.encodePacked(
'<image x="4" y="4" width="32" height="32" image-rendering="pixelated" preserveAspectRatio="xMidYMid" xlink:href="data:image/png;base64,',
trait.png,
'"/>'
));
}
/**
* generates an entire SVG by composing multiple <image> elements of PNGs
* @param tokenId the ID of the token to generate an SVG for
* @return a valid SVG of the Sheep / Wolf
*/
function drawSVG(uint256 tokenId) public view returns (string memory) {
IWoolf.SheepWolf memory s = woolf.getTokenTraits(tokenId);
uint8 shift = s.isSheep ? 0 : 9;
string memory svgString = string(abi.encodePacked(
drawTrait(traitData[0 + shift][s.fur]),
s.isSheep ? drawTrait(traitData[1 + shift][s.head]) : drawTrait(traitData[1 + shift][s.alphaIndex]),
s.isSheep ? drawTrait(traitData[2 + shift][s.ears]) : '',
drawTrait(traitData[3 + shift][s.eyes]),
s.isSheep ? drawTrait(traitData[4 + shift][s.nose]) : '',
drawTrait(traitData[5 + shift][s.mouth]),
s.isSheep ? '' : drawTrait(traitData[6 + shift][s.neck]),
s.isSheep ? drawTrait(traitData[7 + shift][s.feet]) : ''
));
return string(abi.encodePacked(
'<svg id="woolf" width="100%" height="100%" version="1.1" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">',
svgString,
"</svg>"
));
}
/**
* generates an attribute for the attributes array in the ERC721 metadata standard
* @param traitType the trait type to reference as the metadata key
* @param value the token's trait associated with the key
* @return a JSON dictionary for the single attribute
*/
function attributeForTypeAndValue(string memory traitType, string memory value) internal pure returns (string memory) {
return string(abi.encodePacked(
'{"trait_type":"',
traitType,
'","value":"',
value,
'"}'
));
}
/**
* generates an array composed of all the individual traits and values
* @param tokenId the ID of the token to compose the metadata for
* @return a JSON array of all of the attributes for given token ID
*/
function compileAttributes(uint256 tokenId) public view returns (string memory) {
IWoolf.SheepWolf memory s = woolf.getTokenTraits(tokenId);
string memory traits;
if (s.isSheep) {
traits = string(abi.encodePacked(
attributeForTypeAndValue(_traitTypes[0], traitData[0][s.fur].name),',',
attributeForTypeAndValue(_traitTypes[1], traitData[1][s.head].name),',',
attributeForTypeAndValue(_traitTypes[2], traitData[2][s.ears].name),',',
attributeForTypeAndValue(_traitTypes[3], traitData[3][s.eyes].name),',',
attributeForTypeAndValue(_traitTypes[4], traitData[4][s.nose].name),',',
attributeForTypeAndValue(_traitTypes[5], traitData[5][s.mouth].name),',',
attributeForTypeAndValue(_traitTypes[7], traitData[7][s.feet].name),','
));
} else {
traits = string(abi.encodePacked(
attributeForTypeAndValue(_traitTypes[0], traitData[9][s.fur].name),',',
attributeForTypeAndValue(_traitTypes[1], traitData[10][s.alphaIndex].name),',',
attributeForTypeAndValue(_traitTypes[3], traitData[12][s.eyes].name),',',
attributeForTypeAndValue(_traitTypes[5], traitData[14][s.mouth].name),',',
attributeForTypeAndValue(_traitTypes[6], traitData[15][s.neck].name),',',
attributeForTypeAndValue("Alpha Score", _alphas[s.alphaIndex]),','
));
}
return string(abi.encodePacked(
'[',
traits,
'{"trait_type":"Generation","value":',
tokenId <= woolf.getPaidTokens() ? '"Gen 0"' : '"Gen 1"',
'},{"trait_type":"Type","value":',
s.isSheep ? '"Sheep"' : '"Wolf"',
'}]'
));
}
/**
* generates a base64 encoded metadata response without referencing off-chain content
* @param tokenId the ID of the token to generate the metadata for
* @return a base64 encoded JSON dictionary of the token's metadata and SVG
*/
function tokenURI(uint256 tokenId) public view override returns (string memory) {
IWoolf.SheepWolf memory s = woolf.getTokenTraits(tokenId);
string memory metadata = string(abi.encodePacked(
'{"name": "',
s.isSheep ? 'Sheep #' : 'Wolf #',
tokenId.toString(),
'", "description": "Thousands of Sheep and Wolves compete on a farm in the metaverse. A tempting prize of $WOOL awaits, with deadly high stakes. All the metadata and images are generated and stored 100% on-chain. No IPFS. NO API. Just the Ethereum blockchain.", "image": "data:image/svg+xml;base64,',
base64(bytes(drawSVG(tokenId))),
'", "attributes":',
compileAttributes(tokenId),
"}"
));
return string(abi.encodePacked(
"data:application/json;base64,",
base64(bytes(metadata))
));
}
/** BASE 64 - Written by Brech Devos */
string internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
function base64(bytes memory data) internal pure returns (string memory) {
if (data.length == 0) return '';
// load the table into memory
string memory table = TABLE;
// multiply by 4/3 rounded up
uint256 encodedLen = 4 * ((data.length + 2) / 3);
// add some extra buffer at the end required for the writing
string memory result = new string(encodedLen + 32);
assembly {
// set the actual output length
mstore(result, encodedLen)
// prepare the lookup table
let tablePtr := add(table, 1)
// input ptr
let dataPtr := data
let endPtr := add(dataPtr, mload(data))
// result ptr, jump over length
let resultPtr := add(result, 32)
// run over the input, 3 bytes at a time
for {} lt(dataPtr, endPtr) {}
{
dataPtr := add(dataPtr, 3)
// read 3 bytes
let input := mload(dataPtr)
// write 4 characters
mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F)))))
resultPtr := add(resultPtr, 1)
mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F)))))
resultPtr := add(resultPtr, 1)
mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr( 6, input), 0x3F)))))
resultPtr := add(resultPtr, 1)
mstore(resultPtr, shl(248, mload(add(tablePtr, and( input, 0x3F)))))
resultPtr := add(resultPtr, 1)
}
// padding with '='
switch mod(mload(data), 3)
case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
}
return result;
}
}
pragma solidity ^0.8.0;
// SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract WOOL is ERC20, Ownable {
// a mapping from an address to whether or not it can mint / burn
mapping(address => bool) controllers;
constructor() ERC20("WOOL", "WOOL") { }
/**
* mints $WOOL to a recipient
* @param to the recipient of the $WOOL
* @param amount the amount of $WOOL to mint
*/
function mint(address to, uint256 amount) external {
require(controllers[msg.sender], "Only controllers can mint");
_mint(to, amount);
}
/**
* burns $WOOL from a holder
* @param from the holder of the $WOOL
* @param amount the amount of $WOOL 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/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "./IWoolf.sol";
import "./IBarn.sol";
import "./ITraits.sol";
import "./WOOL.sol";
contract Woolf is IWoolf, ERC721Enumerable, Ownable, Pausable {
// mint price
uint256 public constant MINT_PRICE = .069420 ether;
// 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 => SheepWolf) 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;
// list of probabilities for each trait type
// 0 - 9 are associated with Sheep, 10 - 18 are associated with Wolves
uint8[][18] public rarities;
// list of aliases for Walker's Alias algorithm
// 0 - 9 are associated with Sheep, 10 - 18 are associated with Wolves
uint8[][18] public aliases;
// reference to the Barn for choosing random Wolf thieves
IBarn public barn;
// reference to $WOOL for burning on mint
WOOL public wool;
// reference to Traits
ITraits public traits;
/**
* instantiates contract and rarity tables
*/
constructor(address _wool, address _traits, uint256 _maxTokens) ERC721("Wolf Game", 'WGAME') {
wool = WOOL(_wool);
traits = ITraits(_traits);
MAX_TOKENS = _maxTokens;
PAID_TOKENS = _maxTokens / 5;
// I know this looks weird but it saves users gas by making lookup O(1)
// A.J. Walker's Alias Algorithm
// sheep
// fur
rarities[0] = [15, 50, 200, 250, 255];
aliases[0] = [4, 4, 4, 4, 4];
// head
rarities[1] = [190, 215, 240, 100, 110, 135, 160, 185, 80, 210, 235, 240, 80, 80, 100, 100, 100, 245, 250, 255];
aliases[1] = [1, 2, 4, 0, 5, 6, 7, 9, 0, 10, 11, 17, 0, 0, 0, 0, 4, 18, 19, 19];
// ears
rarities[2] = [255, 30, 60, 60, 150, 156];
aliases[2] = [0, 0, 0, 0, 0, 0];
// eyes
rarities[3] = [221, 100, 181, 140, 224, 147, 84, 228, 140, 224, 250, 160, 241, 207, 173, 84, 254, 220, 196, 140, 168, 252, 140, 183, 236, 252, 224, 255];
aliases[3] = [1, 2, 5, 0, 1, 7, 1, 10, 5, 10, 11, 12, 13, 14, 16, 11, 17, 23, 13, 14, 17, 23, 23, 24, 27, 27, 27, 27];
// nose
rarities[4] = [175, 100, 40, 250, 115, 100, 185, 175, 180, 255];
aliases[4] = [3, 0, 4, 6, 6, 7, 8, 8, 9, 9];
// mouth
rarities[5] = [80, 225, 227, 228, 112, 240, 64, 160, 167, 217, 171, 64, 240, 126, 80, 255];
aliases[5] = [1, 2, 3, 8, 2, 8, 8, 9, 9, 10, 13, 10, 13, 15, 13, 15];
// neck
rarities[6] = [255];
aliases[6] = [0];
// feet
rarities[7] = [243, 189, 133, 133, 57, 95, 152, 135, 133, 57, 222, 168, 57, 57, 38, 114, 114, 114, 255];
aliases[7] = [1, 7, 0, 0, 0, 0, 0, 10, 0, 0, 11, 18, 0, 0, 0, 1, 7, 11, 18];
// alphaIndex
rarities[8] = [255];
aliases[8] = [0];
// wolves
// fur
rarities[9] = [210, 90, 9, 9, 9, 150, 9, 255, 9];
aliases[9] = [5, 0, 0, 5, 5, 7, 5, 7, 5];
// head
rarities[10] = [255];
aliases[10] = [0];
// ears
rarities[11] = [255];
aliases[11] = [0];
// eyes
rarities[12] = [135, 177, 219, 141, 183, 225, 147, 189, 231, 135, 135, 135, 135, 246, 150, 150, 156, 165, 171, 180, 186, 195, 201, 210, 243, 252, 255];
aliases[12] = [1, 2, 3, 4, 5, 6, 7, 8, 13, 3, 6, 14, 15, 16, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 26, 26];
// nose
rarities[13] = [255];
aliases[13] = [0];
// mouth
rarities[14] = [239, 244, 249, 234, 234, 234, 234, 234, 234, 234, 130, 255, 247];
aliases[14] = [1, 2, 11, 0, 11, 11, 11, 11, 11, 11, 11, 11, 11];
// neck
rarities[15] = [75, 180, 165, 120, 60, 150, 105, 195, 45, 225, 75, 45, 195, 120, 255];
aliases[15] = [1, 9, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 14, 12, 14];
// feet
rarities[16] = [255];
aliases[16] = [0];
// alphaIndex
rarities[17] = [8, 160, 73, 255];
aliases[17] = [2, 3, 3, 3];
}
/** EXTERNAL */
/**
* mint a token - 90% Sheep, 10% Wolves
* The first 20% are free to claim, the remaining cost $WOOL
*/
function mint(uint256 amount, bool stake) external payable whenNotPaused {
require(tx.origin == _msgSender(), "Only EOA");
require(minted + amount <= MAX_TOKENS, "All tokens minted");
require(amount > 0 && amount <= 10, "Invalid mint amount");
if (minted < PAID_TOKENS) {
require(minted + amount <= PAID_TOKENS, "All tokens on-sale already sold");
require(amount * MINT_PRICE == msg.value, "Invalid payment amount");
} else {
require(msg.value == 0);
}
uint256 totalWoolCost = 0;
uint16[] memory tokenIds = stake ? new uint16[](amount) : new uint16[](0);
uint256 seed;
for (uint i = 0; i < amount; i++) {
minted++;
seed = random(minted);
generate(minted, seed);
address recipient = selectRecipient(seed);
if (!stake || recipient != _msgSender()) {
_safeMint(recipient, minted);
} else {
_safeMint(address(barn), minted);
tokenIds[i] = minted;
}
totalWoolCost += mintCost(minted);
}
if (totalWoolCost > 0) wool.burn(_msgSender(), totalWoolCost);
if (stake) barn.addManyToBarnAndPack(_msgSender(), tokenIds);
}
/**
* the first 20% are paid in ETH
* the next 20% are 20000 $WOOL
* the next 40% are 40000 $WOOL
* the final 20% are 80000 $WOOL
* @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 80000 ether;
}
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
// Hardcode the Barn's approval so that users don't have to waste gas approving
if (_msgSender() != address(barn))
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 (SheepWolf 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) {
uint8 trait = uint8(seed) % uint8(rarities[traitType].length);
if (seed >> 8 < rarities[traitType][trait]) return trait;
return aliases[traitType][trait];
}
/**
* the first 20% (ETH purchases) go to the minter
* the remaining 80% have a 10% chance to be given to a random staked wolf
* @param seed a random value to select a recipient from
* @return the address of the recipient (either the minter or the Wolf 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 = barn.randomWolfOwner(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 (SheepWolf memory t) {
t.isSheep = (seed & 0xFFFF) % 10 != 0;
uint8 shift = t.isSheep ? 0 : 9;
seed >>= 16;
t.fur = selectTrait(uint16(seed & 0xFFFF), 0 + shift);
seed >>= 16;
t.head = selectTrait(uint16(seed & 0xFFFF), 1 + shift);
seed >>= 16;
t.ears = selectTrait(uint16(seed & 0xFFFF), 2 + shift);
seed >>= 16;
t.eyes = selectTrait(uint16(seed & 0xFFFF), 3 + shift);
seed >>= 16;
t.nose = selectTrait(uint16(seed & 0xFFFF), 4 + shift);
seed >>= 16;
t.mouth = selectTrait(uint16(seed & 0xFFFF), 5 + shift);
seed >>= 16;
t.neck = selectTrait(uint16(seed & 0xFFFF), 6 + shift);
seed >>= 16;
t.feet = selectTrait(uint16(seed & 0xFFFF), 7 + shift);
seed >>= 16;
t.alphaIndex = selectTrait(uint16(seed & 0xFFFF), 8 + 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(SheepWolf memory s) internal pure returns (uint256) {
return uint256(bytes32(
abi.encodePacked(
s.isSheep,
s.fur,
s.head,
s.eyes,
s.mouth,
s.neck,
s.ears,
s.feet,
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
)));
}
/** READ */
function getTokenTraits(uint256 tokenId) external view override returns (SheepWolf 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 wolf thieves
* @param _barn the address of the Barn
*/
function setBarn(address _barn) external onlyOwner {
barn = IBarn(_barn);
}
/**
* 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);
}
}
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": {
"@_149": {
"entryPoint": null,
"id": 149,
"parameterSlots": 2,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_795": {
"entryPoint": null,
"id": 795,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_765": {
"entryPoint": 216,
"id": 765,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 224,
"id": 103,
"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": "60806040523480156200001157600080fd5b506040518060400160405280600481526020017f54657374000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5445535400000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620001a6565b508060049080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61211880620002cb6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a7fc7a0711610071578063a7fc7a07146102e3578063a9059cbb146102ff578063dd62ed3e1461032f578063f2fde38b1461035f578063f6a74ed71461037b57610116565b80638da5cb5b1461025b57806395d89b41146102795780639dc29fac14610297578063a457c2d7146102b357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806340c10f191461020557806370a0823114610221578063715018a61461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610397565b604051610130919061190e565b60405180910390f35b610153600480360381019061014e9190611639565b610429565b60405161016091906118f3565b60405180910390f35b610171610447565b60405161017e9190611af0565b60405180910390f35b6101a1600480360381019061019c91906115e6565b610451565b6040516101ae91906118f3565b60405180910390f35b6101bf610549565b6040516101cc9190611b0b565b60405180910390f35b6101ef60048036038101906101ea9190611639565b610552565b6040516101fc91906118f3565b60405180910390f35b61021f600480360381019061021a9190611639565b6105fe565b005b61023b60048036038101906102369190611579565b610698565b6040516102489190611af0565b60405180910390f35b6102596106e0565b005b610263610768565b60405161027091906118d8565b60405180910390f35b610281610792565b60405161028e919061190e565b60405180910390f35b6102b160048036038101906102ac9190611639565b610824565b005b6102cd60048036038101906102c89190611639565b6108be565b6040516102da91906118f3565b60405180910390f35b6102fd60048036038101906102f89190611579565b6109a9565b005b61031960048036038101906103149190611639565b610a80565b60405161032691906118f3565b60405180910390f35b610349600480360381019061034491906115a6565b610a9e565b6040516103569190611af0565b60405180910390f35b61037960048036038101906103749190611579565b610b25565b005b61039560048036038101906103909190611579565b610c1d565b005b6060600380546103a690611c54565b80601f01602080910402602001604051908101604052809291908181526020018280546103d290611c54565b801561041f5780601f106103f45761010080835404028352916020019161041f565b820191906000526020600020905b81548152906001019060200180831161040257829003601f168201915b5050505050905090565b600061043d610436610cf4565b8484610cfc565b6001905092915050565b6000600254905090565b600061045e848484610ec7565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104a9610cf4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052090611a10565b60405180910390fd5b61053d85610535610cf4565b858403610cfc565b60019150509392505050565b60006012905090565b60006105f461055f610cf4565b84846001600061056d610cf4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ef9190611b42565b610cfc565b6001905092915050565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661068a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610681906119d0565b60405180910390fd5b6106948282611148565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106e8610cf4565b73ffffffffffffffffffffffffffffffffffffffff16610706610768565b73ffffffffffffffffffffffffffffffffffffffff161461075c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075390611a30565b60405180910390fd5b61076660006112a8565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107a190611c54565b80601f01602080910402602001604051908101604052809291908181526020018280546107cd90611c54565b801561081a5780601f106107ef5761010080835404028352916020019161081a565b820191906000526020600020905b8154815290600101906020018083116107fd57829003601f168201915b5050505050905090565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a7906119f0565b60405180910390fd5b6108ba828261136e565b5050565b600080600160006108cd610cf4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561098a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098190611ab0565b60405180910390fd5b61099e610995610cf4565b85858403610cfc565b600191505092915050565b6109b1610cf4565b73ffffffffffffffffffffffffffffffffffffffff166109cf610768565b73ffffffffffffffffffffffffffffffffffffffff1614610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90611a30565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610a94610a8d610cf4565b8484610ec7565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b2d610cf4565b73ffffffffffffffffffffffffffffffffffffffff16610b4b610768565b73ffffffffffffffffffffffffffffffffffffffff1614610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890611a30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0890611970565b60405180910390fd5b610c1a816112a8565b50565b610c25610cf4565b73ffffffffffffffffffffffffffffffffffffffff16610c43610768565b73ffffffffffffffffffffffffffffffffffffffff1614610c99576040517f08c379a0000
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