Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Rizary/9dc63209f7ef93a7aaae5df3139b4b32 to your computer and use it in GitHub Desktop.
Save Rizary/9dc63209f7ef93a7aaae5df3139b4b32 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.17+commit.8df45f5f.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import './IERC721A.sol';
/**
* @dev Interface of ERC721 token receiver.
*/
interface ERC721A__IERC721Receiver {
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
/**
* @title ERC721A
*
* @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
* Non-Fungible Token Standard, including the Metadata extension.
* Optimized for lower gas during batch mints.
*
* Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
* starting from `_startTokenId()`.
*
* Assumptions:
*
* - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
* - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is IERC721A {
// Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
struct TokenApprovalRef {
address value;
}
// =============================================================
// CONSTANTS
// =============================================================
// Mask of an entry in packed address data.
uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;
// The bit position of `numberMinted` in packed address data.
uint256 private constant _BITPOS_NUMBER_MINTED = 64;
// The bit position of `numberBurned` in packed address data.
uint256 private constant _BITPOS_NUMBER_BURNED = 128;
// The bit position of `aux` in packed address data.
uint256 private constant _BITPOS_AUX = 192;
// Mask of all 256 bits in packed address data except the 64 bits for `aux`.
uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;
// The bit position of `startTimestamp` in packed ownership.
uint256 private constant _BITPOS_START_TIMESTAMP = 160;
// The bit mask of the `burned` bit in packed ownership.
uint256 private constant _BITMASK_BURNED = 1 << 224;
// The bit position of the `nextInitialized` bit in packed ownership.
uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;
// The bit mask of the `nextInitialized` bit in packed ownership.
uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;
// The bit position of `extraData` in packed ownership.
uint256 private constant _BITPOS_EXTRA_DATA = 232;
// Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;
// The mask of the lower 160 bits for addresses.
uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;
// The maximum `quantity` that can be minted with {_mintERC2309}.
// This limit is to prevent overflows on the address data entries.
// For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
// is required to cause an overflow, which is unrealistic.
uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;
// The `Transfer` event signature is given by:
// `keccak256(bytes("Transfer(address,address,uint256)"))`.
bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;
// =============================================================
// STORAGE
// =============================================================
// The next token ID to be minted.
uint256 private _currentIndex;
// The number of tokens burned.
uint256 private _burnCounter;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned.
// See {_packedOwnershipOf} implementation for details.
//
// Bits Layout:
// - [0..159] `addr`
// - [160..223] `startTimestamp`
// - [224] `burned`
// - [225] `nextInitialized`
// - [232..255] `extraData`
mapping(uint256 => uint256) private _packedOwnerships;
// Mapping owner address to address data.
//
// Bits Layout:
// - [0..63] `balance`
// - [64..127] `numberMinted`
// - [128..191] `numberBurned`
// - [192..255] `aux`
mapping(address => uint256) private _packedAddressData;
// Mapping from token ID to approved address.
mapping(uint256 => TokenApprovalRef) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
// =============================================================
// CONSTRUCTOR
// =============================================================
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
// =============================================================
// TOKEN COUNTING OPERATIONS
// =============================================================
/**
* @dev Returns the starting token ID.
* To change the starting token ID, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Returns the next token ID to be minted.
*/
function _nextTokenId() internal view virtual returns (uint256) {
return _currentIndex;
}
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() public view virtual override returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than `_currentIndex - _startTokenId()` times.
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* @dev Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view virtual returns (uint256) {
// Counter underflow is impossible as `_currentIndex` does not decrement,
// and it is initialized to `_startTokenId()`.
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev Returns the total number of tokens burned.
*/
function _totalBurned() internal view virtual returns (uint256) {
return _burnCounter;
}
// =============================================================
// ADDRESS DATA OPERATIONS
// =============================================================
/**
* @dev Returns the number of tokens in `owner`'s account.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
if (owner == address(0)) _revert(BalanceQueryForZeroAddress.selector);
return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
}
/**
* Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
function _setAux(address owner, uint64 aux) internal virtual {
uint256 packed = _packedAddressData[owner];
uint256 auxCasted;
// Cast `aux` with assembly to avoid redundant masking.
assembly {
auxCasted := aux
}
packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
_packedAddressData[owner] = packed;
}
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
// The interface IDs are constants representing the first 4 bytes
// of the XOR of all function selectors in the interface.
// See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
// (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
return
interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
}
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @dev Returns the token collection name.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the token collection symbol.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
if (!_exists(tokenId)) _revert(URIQueryForNonexistentToken.selector);
string memory baseURI = _baseURI();
return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
}
/**
* @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, it can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
// =============================================================
// OWNERSHIPS OPERATIONS
// =============================================================
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
return address(uint160(_packedOwnershipOf(tokenId)));
}
/**
* @dev Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around over time.
*/
function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnershipOf(tokenId));
}
/**
* @dev Returns the unpacked `TokenOwnership` struct at `index`.
*/
function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnerships[index]);
}
/**
* @dev Initializes the ownership slot minted at `index` for efficiency purposes.
*/
function _initializeOwnershipAt(uint256 index) internal virtual {
if (_packedOwnerships[index] == 0) {
_packedOwnerships[index] = _packedOwnershipOf(index);
}
}
/**
* Returns the packed ownership data of `tokenId`.
*/
function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) {
if (_startTokenId() <= tokenId) {
packed = _packedOwnerships[tokenId];
// If not burned.
if (packed & _BITMASK_BURNED == 0) {
// If the data at the starting slot does not exist, start the scan.
if (packed == 0) {
if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
// Invariant:
// There will always be an initialized ownership slot
// (i.e. `ownership.addr != address(0) && ownership.burned == false`)
// before an unintialized ownership slot
// (i.e. `ownership.addr == address(0) && ownership.burned == false`)
// Hence, `tokenId` will not underflow.
//
// We can directly compare the packed value.
// If the address is zero, packed will be zero.
for (;;) {
unchecked {
packed = _packedOwnerships[--tokenId];
}
if (packed == 0) continue;
return packed;
}
}
// Otherwise, the data exists and is not burned. We can skip the scan.
// This is possible because we have already achieved the target condition.
// This saves 2143 gas on transfers of initialized tokens.
return packed;
}
}
_revert(OwnerQueryForNonexistentToken.selector);
}
/**
* @dev Returns the unpacked `TokenOwnership` struct from `packed`.
*/
function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
ownership.addr = address(uint160(packed));
ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
ownership.burned = packed & _BITMASK_BURNED != 0;
ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
}
/**
* @dev Packs ownership data into a single uint256.
*/
function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
}
}
/**
* @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
*/
function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
// For branchless setting of the `nextInitialized` flag.
assembly {
// `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
}
}
// =============================================================
// APPROVAL OPERATIONS
// =============================================================
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
*/
function approve(address to, uint256 tokenId) public payable virtual override {
_approve(to, tokenId, true);
}
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
if (!_exists(tokenId)) _revert(ApprovalQueryForNonexistentToken.selector);
return _tokenApprovals[tokenId].value;
}
/**
* @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) public virtual override {
_operatorApprovals[_msgSenderERC721A()][operator] = approved;
emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
}
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @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. See {_mint}.
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return
_startTokenId() <= tokenId &&
tokenId < _currentIndex && // If within bounds,
_packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
}
/**
* @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
*/
function _isSenderApprovedOrOwner(
address approvedAddress,
address owner,
address msgSender
) private pure returns (bool result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
msgSender := and(msgSender, _BITMASK_ADDRESS)
// `msgSender == owner || msgSender == approvedAddress`.
result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
}
}
/**
* @dev Returns the storage slot and value for the approved address of `tokenId`.
*/
function _getApprovedSlotAndAddress(uint256 tokenId)
private
view
returns (uint256 approvedAddressSlot, address approvedAddress)
{
TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
// The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
assembly {
approvedAddressSlot := tokenApproval.slot
approvedAddress := sload(approvedAddressSlot)
}
}
// =============================================================
// TRANSFER OPERATIONS
// =============================================================
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* 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
) public payable virtual override {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
// Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));
if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector);
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
unchecked {
// We can directly increment and decrement the balances.
--_packedAddressData[from]; // Updates: `balance -= 1`.
++_packedAddressData[to]; // Updates: `balance += 1`.
// Updates:
// - `address` to the next owner.
// - `startTimestamp` to the timestamp of transfering.
// - `burned` to `false`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
to,
_BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
// Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
assembly {
// Emit the `Transfer` event.
log4(
0, // Start of data (0, since no data).
0, // End of data (0, since no data).
_TRANSFER_EVENT_SIGNATURE, // Signature.
from, // `from`.
toMasked, // `to`.
tokenId // `tokenId`.
)
}
if (toMasked == 0) _revert(TransferToZeroAddress.selector);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public payable virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @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 memory _data
) public payable virtual override {
transferFrom(from, to, tokenId);
if (to.code.length != 0)
if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
_revert(TransferToNonERC721ReceiverImplementer.selector);
}
}
/**
* @dev Hook that is called before a set of serially-ordered token IDs
* are about to be transferred. This includes minting.
* And also called before burning one token.
*
* `startTokenId` - the first token ID to be transferred.
* `quantity` - the amount to be transferred.
*
* 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, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token IDs
* have been transferred. This includes minting.
* And also called after one token has been burned.
*
* `startTokenId` - the first token ID to be transferred.
* `quantity` - the amount to be transferred.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
*
* `from` - Previous owner of the given token ID.
* `to` - Target address that will receive the token.
* `tokenId` - Token ID to be transferred.
* `_data` - Optional data to send along with the call.
*
* Returns whether the call correctly returned the expected magic value.
*/
function _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
bytes4 retval
) {
return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
_revert(TransferToNonERC721ReceiverImplementer.selector);
}
assembly {
revert(add(32, reason), mload(reason))
}
}
}
// =============================================================
// MINT OPERATIONS
// =============================================================
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event for each mint.
*/
function _mint(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (quantity == 0) _revert(MintZeroQuantity.selector);
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// `balance` and `numberMinted` have a maximum limit of 2**64.
// `tokenId` has a maximum limit of 2**256.
unchecked {
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
if (toMasked == 0) _revert(MintToZeroAddress.selector);
uint256 end = startTokenId + quantity;
uint256 tokenId = startTokenId;
do {
assembly {
// Emit the `Transfer` event.
log4(
0, // Start of data (0, since no data).
0, // End of data (0, since no data).
_TRANSFER_EVENT_SIGNATURE, // Signature.
0, // `address(0)`.
toMasked, // `to`.
tokenId // `tokenId`.
)
}
// The `!=` check ensures that large values of `quantity`
// that overflows uint256 will make the loop run out of gas.
} while (++tokenId != end);
_currentIndex = end;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* This function is intended for efficient minting only during contract creation.
*
* It emits only one {ConsecutiveTransfer} as defined in
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
* instead of a sequence of {Transfer} event(s).
*
* Calling this function outside of contract creation WILL make your contract
* non-compliant with the ERC721 standard.
* For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
* {ConsecutiveTransfer} event is only permissible during contract creation.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {ConsecutiveTransfer} event.
*/
function _mintERC2309(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (to == address(0)) _revert(MintToZeroAddress.selector);
if (quantity == 0) _revert(MintZeroQuantity.selector);
if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector);
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are unrealistic due to the above check for `quantity` to be below the limit.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);
_currentIndex = startTokenId + quantity;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* See {_mint}.
*
* Emits a {Transfer} event for each mint.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal virtual {
_mint(to, quantity);
unchecked {
if (to.code.length != 0) {
uint256 end = _currentIndex;
uint256 index = end - quantity;
do {
if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
_revert(TransferToNonERC721ReceiverImplementer.selector);
}
} while (index < end);
// Reentrancy protection.
if (_currentIndex != end) _revert(bytes4(0));
}
}
}
/**
* @dev Equivalent to `_safeMint(to, quantity, '')`.
*/
function _safeMint(address to, uint256 quantity) internal virtual {
_safeMint(to, quantity, '');
}
// =============================================================
// APPROVAL OPERATIONS
// =============================================================
/**
* @dev Equivalent to `_approve(to, tokenId, false)`.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_approve(to, tokenId, false);
}
/**
* @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:
*
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
bool approvalCheck
) internal virtual {
address owner = ownerOf(tokenId);
if (approvalCheck && _msgSenderERC721A() != owner)
if (!isApprovedForAll(owner, _msgSenderERC721A())) {
_revert(ApprovalCallerNotOwnerNorApproved.selector);
}
_tokenApprovals[tokenId].value = to;
emit Approval(owner, to, tokenId);
}
// =============================================================
// BURN OPERATIONS
// =============================================================
/**
* @dev Equivalent to `_burn(tokenId, false)`.
*/
function _burn(uint256 tokenId) internal virtual {
_burn(tokenId, false);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
address from = address(uint160(prevOwnershipPacked));
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
if (approvalCheck) {
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector);
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
unchecked {
// Updates:
// - `balance -= 1`.
// - `numberBurned += 1`.
//
// We can directly decrement the balance, and increment the number burned.
// This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
_packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;
// Updates:
// - `address` to the last owner.
// - `startTimestamp` to the timestamp of burning.
// - `burned` to `true`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
from,
(_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
// =============================================================
// EXTRA DATA OPERATIONS
// =============================================================
/**
* @dev Directly sets the extra data for the ownership data `index`.
*/
function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
uint256 packed = _packedOwnerships[index];
if (packed == 0) _revert(OwnershipNotInitializedForExtraData.selector);
uint256 extraDataCasted;
// Cast `extraData` with assembly to avoid redundant masking.
assembly {
extraDataCasted := extraData
}
packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
_packedOwnerships[index] = packed;
}
/**
* @dev Called during each token transfer to set the 24bit `extraData` field.
* Intended to be overridden by the cosumer contract.
*
* `previousExtraData` - the value of `extraData` before transfer.
*
* 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, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _extraData(
address from,
address to,
uint24 previousExtraData
) internal view virtual returns (uint24) {}
/**
* @dev Returns the next extra data for the packed ownership data.
* The returned result is shifted into position.
*/
function _nextExtraData(
address from,
address to,
uint256 prevOwnershipPacked
) private view returns (uint256) {
uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
}
// =============================================================
// OTHER OPERATIONS
// =============================================================
/**
* @dev Returns the message sender (defaults to `msg.sender`).
*
* If you are writing GSN compatible contracts, you need to override this function.
*/
function _msgSenderERC721A() internal view virtual returns (address) {
return msg.sender;
}
/**
* @dev Converts a uint256 to its ASCII string decimal representation.
*/
function _toString(uint256 value) internal pure virtual returns (string memory str) {
assembly {
// The maximum value of a uint256 contains 78 digits (1 byte per digit), but
// we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
// We will need 1 word for the trailing zeros padding, 1 word for the length,
// and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
let m := add(mload(0x40), 0xa0)
// Update the free memory pointer to allocate.
mstore(0x40, m)
// Assign the `str` to the end.
str := sub(m, 0x20)
// Zeroize the slot after the string.
mstore(str, 0)
// Cache the end of the memory to calculate the length later.
let end := str
// We write the string from rightmost digit to leftmost digit.
// The following is essentially a do-while loop that also handles the zero case.
// prettier-ignore
for { let temp := value } 1 {} {
str := sub(str, 1)
// Write the character to the pointer.
// The ASCII index of the '0' character is 48.
mstore8(str, add(48, mod(temp, 10)))
// Keep dividing `temp` until zero.
temp := div(temp, 10)
// prettier-ignore
if iszero(temp) { break }
}
let length := sub(end, str)
// Move the pointer 32 bytes leftwards to make room for the length.
str := sub(str, 0x20)
// Store the length.
mstore(str, length)
}
}
/**
* @dev For more efficient reverts.
*/
function _revert(bytes4 errorSelector) internal pure {
assembly {
mstore(0x00, errorSelector)
revert(0x00, 0x04)
}
}
}
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of ERC721A.
*/
interface IERC721A {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* Cannot query the balance for the zero address.
*/
error BalanceQueryForZeroAddress();
/**
* Cannot mint to the zero address.
*/
error MintToZeroAddress();
/**
* The quantity of tokens minted must be more than zero.
*/
error MintZeroQuantity();
/**
* The token does not exist.
*/
error OwnerQueryForNonexistentToken();
/**
* The caller must own the token or be an approved operator.
*/
error TransferCallerNotOwnerNorApproved();
/**
* The token must be owned by `from`.
*/
error TransferFromIncorrectOwner();
/**
* Cannot safely transfer to a contract that does not implement the
* ERC721Receiver interface.
*/
error TransferToNonERC721ReceiverImplementer();
/**
* Cannot transfer to the zero address.
*/
error TransferToZeroAddress();
/**
* The token does not exist.
*/
error URIQueryForNonexistentToken();
/**
* The `quantity` minted with ERC2309 exceeds the safety limit.
*/
error MintERC2309QuantityExceedsLimit();
/**
* The `extraData` cannot be set on an unintialized ownership slot.
*/
error OwnershipNotInitializedForExtraData();
// =============================================================
// STRUCTS
// =============================================================
struct TokenOwnership {
// The address of the owner.
address addr;
// Stores the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
// Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
uint24 extraData;
}
// =============================================================
// TOKEN COUNTERS
// =============================================================
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() external view returns (uint256);
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
// =============================================================
// IERC721
// =============================================================
/**
* @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,
bytes calldata data
) external payable;
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external payable;
/**
* @dev Transfers `tokenId` 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 payable;
/**
* @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 payable;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom}
* for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @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);
// =============================================================
// IERC2309
// =============================================================
/**
* @dev Emitted when tokens in `fromTokenId` to `toTokenId`
* (inclusive) is transferred from `from` to `to`, as defined in the
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
*
* See {_mintERC2309} for more details.
*/
event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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);
/**
* @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 `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/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 functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or 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 {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
import "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toString(int256 value) internal pure returns (string memory) {
return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @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] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return keccak256(bytes(a)) == keccak256(bytes(b));
}
}
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.15;
import {ERC721A, ERC721A__IERC721Receiver} from "https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol";
import {IERC721A} from "https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol";
//import {IERC721Receiver} from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol";
import {IERC20} from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol";
//import {IERC721Metadata} from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import {ERC165} from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol";
import {IERC165} from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol";
import {Strings} from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol";
import {Address} from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol";
import {Ownable} from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol";
import {Context} from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol";
contract SoonanTsoorNFT is Context, ERC165, IERC721A, Ownable {
using Address for address;
// Token name
string private constant _name = "SoonanTsoorNFT";
// Token symbol
string private constant _symbol = "SNSR";
// total number of NFTs Minted
uint256 private _totalSupply;
// max supply cap
uint256 public constant MAX_SUPPLY = 5_000;
// 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;
// cost for minting NFT
uint256 public cost = 85 * 10**6;
// whether or not mints should auto distribute
bool public autoDistribute = true;
// base URI
string private baseURI = "url";
string private ending = ".json";
// Enable Trading
bool public mintingEnabled = false;
// Mint Token
IERC20 public immutable mintToken;
// Web 2.0 Wallet
address public teamWalletW2 = 0x7C8c679CE072544Aa7a73b85d5Ea9b3195Fa7Bd2;
// Web 3.0 Wallet
address public teamWalletW3 = 0x26a3E0CBf8240E303EcdF36a2ccaef74A32692db;
// Swap Path
address[] private path;
// Breakpoints for minting in phases
uint256 private constant breakpoint0 = 2500;
uint256 private constant breakpoint1 = 5000;
uint256 private constant breakpoint2 = 7500;
// Initialize Router and Walrus
constructor(address usdc) {
mintToken = IERC20(usdc);
}
////////////////////////////////////////////////
/////////// RESTRICTED FUNCTIONS ///////////
////////////////////////////////////////////////
function enableMinting() external onlyOwner {
mintingEnabled = true;
}
function disableMinting() external onlyOwner {
mintingEnabled = false;
}
function withdraw() external onlyOwner {
(bool s, ) = payable(msg.sender).call{value: address(this).balance}("");
require(s);
}
function distribute() external onlyOwner {
_distribute();
}
function withdrawToken(address token_) external onlyOwner {
require(token_ != address(0), "Zero Address");
IERC20(token_).transfer(
msg.sender,
IERC20(token_).balanceOf(address(this))
);
}
function setCost(uint256 newCost) external onlyOwner {
cost = newCost;
}
function setBaseURI(string calldata newURI) external onlyOwner {
baseURI = newURI;
}
function setURIExtention(string calldata newExtention) external onlyOwner {
ending = newExtention;
}
function ownerMint(address to, uint256 qty) external onlyOwner {
// mint NFTs
for (uint256 i = 0; i < qty; i++) {
_safeMint(to, _totalSupply);
}
}
function setAutoDistribute(bool auto_) external onlyOwner {
autoDistribute = auto_;
}
function setTeamWalletW2(address teamWallet_) external onlyOwner {
require(teamWallet_ != address(0), "Zero Address");
teamWalletW2 = teamWallet_;
}
function setTeamWalletW3(address teamWallet_) external onlyOwner {
require(teamWallet_ != address(0), "Zero Address");
teamWalletW3 = teamWallet_;
}
////////////////////////////////////////////////
/////////// PUBLIC FUNCTIONS ///////////
////////////////////////////////////////////////
/**
* Mints `numberOfMints` NFTs To Caller
*/
function mint(uint256 numberOfMints) external {
require(mintingEnabled, "Minting Not Enabled");
require(numberOfMints > 0, "Invalid Input");
// transfer in cost
_transferIn(cost * numberOfMints);
// mint NFTs
for (uint256 i = 0; i < numberOfMints; i++) {
_safeMint(msg.sender, _totalSupply);
}
// divvy up funds
if (autoDistribute) {
_distribute();
}
}
receive() external payable {}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) payable public override {
address pcowner = ownerOf(tokenId);
require(to != pcowner, "ERC721: approval to current owner");
require(
_msgSender() == pcowner || isApprovedForAll(pcowner, _msgSender()),
"ERC721: not approved or owner"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address _operator, bool approved)
public
override
{
_setApprovalForAll(_msgSender(), _operator, approved);
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) payable public override {
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"caller not owner nor approved"
);
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) payable public override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) payable public override {
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"caller not owner nor approved"
);
_safeTransfer(from, to, tokenId, _data);
}
////////////////////////////////////////////////
/////////// READ FUNCTIONS ///////////
////////////////////////////////////////////////
function totalSupply() external view returns (uint256) {
return _totalSupply;
}
function getIDsByOwner(address owner)
external
view
returns (uint256[] memory)
{
uint256[] memory ids = new uint256[](balanceOf(owner));
if (balanceOf(owner) == 0) return ids;
uint256 count = 0;
for (uint256 i = 0; i < _totalSupply; i++) {
if (_owners[i] == owner) {
ids[count] = i;
count++;
}
}
return ids;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
override(ERC165, IERC721A)
returns (bool)
{
return
interfaceId == type(IERC721A).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address pcowner) public view override returns (uint256) {
require(pcowner != address(0), "query for the zero address");
return _balances[pcowner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
address pcowner = _owners[tokenId];
require(pcowner != address(0), "query for nonexistent token");
return pcowner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public pure override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public pure override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId)
public
view
override
returns (string memory)
{
require(_exists(tokenId), "nonexistent token");
string memory fHalf = string.concat(baseURI, uint2str(tokenId));
return string.concat(fHalf, ending);
}
/**
Converts A Uint Into a String
*/
function uint2str(uint256 _i)
internal
pure
returns (string memory _uintAsString)
{
if (_i == 0) {
return "0";
}
uint256 j = _i;
uint256 len;
while (j != 0) {
len++;
j /= 10;
}
bytes memory bstr = new bytes(len);
uint256 k = len;
while (_i != 0) {
k = k - 1;
uint8 temp = (48 + uint8(_i - (_i / 10) * 10));
bytes1 b1 = bytes1(temp);
bstr[k] = b1;
_i /= 10;
}
return string(bstr);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId)
public
view
override
returns (address)
{
require(_exists(tokenId), "ERC721: query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address pcowner, address _operator)
public
view
override
returns (bool)
{
return _operatorApprovals[pcowner][_operator];
}
/**
* @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
*/
function _exists(uint256 tokenId) internal view 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
returns (bool)
{
require(_exists(tokenId), "ERC721: nonexistent token");
address pcowner = ownerOf(tokenId);
return (spender == pcowner ||
getApproved(tokenId) == spender ||
isApprovedForAll(pcowner, spender));
}
////////////////////////////////////////////////
/////////// INTERNAL FUNCTIONS ///////////
////////////////////////////////////////////////
/**
* @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) internal {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, ""),
"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 {
require(!_exists(tokenId), "ERC721: token already minted");
require(_totalSupply < MAX_SUPPLY, "All NFTs Have Been Minted");
_balances[to] += 1;
_owners[tokenId] = to;
_totalSupply++;
if (
_totalSupply == breakpoint0 ||
_totalSupply == breakpoint1 ||
_totalSupply == breakpoint2
) {
mintingEnabled = false;
}
emit Transfer(address(0), to, tokenId);
}
function _transferIn(uint256 amount) internal {
require(
mintToken.allowance(msg.sender, address(this)) >= amount,
"Insufficient Allowance"
);
require(
mintToken.transferFrom(msg.sender, address(this), amount),
"Failure Transfer From"
);
}
function _distribute() internal {
// send half of the usdc to web 2.0 business wallet
uint256 forWeb2 = mintToken.balanceOf(address(this)) / 2;
if (forWeb2 > 0) {
mintToken.transfer(teamWalletW2, forWeb2);
}
// send the rest to web 3.0 business wallet
uint256 forWeb3 = mintToken.balanceOf(address(this));
if (forWeb3 > 0) {
mintToken.transfer(teamWalletW3, forWeb3);
}
}
/**
* @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 {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
"ERC721: non ERC721Receiver implementer"
);
}
/**
* @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 {
require(ownerOf(tokenId) == from, "Incorrect owner");
require(to != address(0), "zero address");
require(balanceOf(from) > 0, "Zero Balance");
// Clear approvals from the previous owner
_approve(address(0), tokenId);
// Allocate balances
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
// emit transfer
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal {
_tokenApprovals[tokenId] = to;
emit Approval(ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address pcowner,
address _operator,
bool approved
) internal {
require(pcowner != _operator, "ERC721: approve to caller");
_operatorApprovals[pcowner][_operator] = approved;
emit ApprovalForAll(pcowner, _operator, approved);
}
function onReceivedRetval() public pure returns (bytes4) {
return ERC721A__IERC721Receiver.onERC721Received.selector;
}
/**
* @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
ERC721A__IERC721Receiver(to).onERC721Received(
_msgSender(),
from,
tokenId,
_data
)
returns (bytes4 retval) {
return retval == ERC721A__IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
}
View raw

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

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
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_112": {
"entryPoint": null,
"id": 112,
"parameterSlots": 1,
"returnSlots": 0
},
"@_1335": {
"entryPoint": null,
"id": 1335,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_1844": {
"entryPoint": 520,
"id": 1844,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_1423": {
"entryPoint": 528,
"id": 1423,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_address_fromMemory": {
"entryPoint": 1672,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address_fromMemory": {
"entryPoint": 1695,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 882,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 724,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1203,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_address": {
"entryPoint": 1626,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1594,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1018,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1164,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 1038,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1358,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 903,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 829,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1328,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"identity": {
"entryPoint": 1028,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1296,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 782,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 735,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 1078,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1589,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"shift_left_dynamic": {
"entryPoint": 919,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1283,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1136,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 932,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 1088,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 1646,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 1131,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6426:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:12"
},
"nodeType": "YulFunctionCall",
"src": "87:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:12"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:12",
"type": ""
}
],
"src": "7:99:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "140:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "157:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "160:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "150:6:12"
},
"nodeType": "YulFunctionCall",
"src": "150:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "150:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "254:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "257:4:12",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "247:6:12"
},
"nodeType": "YulFunctionCall",
"src": "247:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "247:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "278:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "281:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "271:6:12"
},
"nodeType": "YulFunctionCall",
"src": "271:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "271:15:12"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "112:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "326:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "343:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "346:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "336:6:12"
},
"nodeType": "YulFunctionCall",
"src": "336:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "336:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:4:12",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "433:6:12"
},
"nodeType": "YulFunctionCall",
"src": "433:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "433:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "467:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "457:6:12"
},
"nodeType": "YulFunctionCall",
"src": "457:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "457:15:12"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "298:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "535:269:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "545:22:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "559:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "565:1:12",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "555:3:12"
},
"nodeType": "YulFunctionCall",
"src": "555:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "545:6:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "576:38:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "606:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "612:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "602:3:12"
},
"nodeType": "YulFunctionCall",
"src": "602:12:12"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "580:18:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "653:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "667:27:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "681:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "689:4:12",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "677:3:12"
},
"nodeType": "YulFunctionCall",
"src": "677:17:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "667:6:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "633:18:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "626:6:12"
},
"nodeType": "YulFunctionCall",
"src": "626:26:12"
},
"nodeType": "YulIf",
"src": "623:81:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:42:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "770:16:12"
},
"nodeType": "YulFunctionCall",
"src": "770:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "770:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "720:18:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "743:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "751:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "740:2:12"
},
"nodeType": "YulFunctionCall",
"src": "740:14:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "717:2:12"
},
"nodeType": "YulFunctionCall",
"src": "717:38:12"
},
"nodeType": "YulIf",
"src": "714:84:12"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "519:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "528:6:12",
"type": ""
}
],
"src": "484:320:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "864:87:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "874:11:12",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "882:3:12"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "874:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "902:1:12",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "905:3:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "895:6:12"
},
"nodeType": "YulFunctionCall",
"src": "895:14:12"
},
"nodeType": "YulExpressionStatement",
"src": "895:14:12"
},
{
"nodeType": "YulAssignment",
"src": "918:26:12",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "936:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "939:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "926:9:12"
},
"nodeType": "YulFunctionCall",
"src": "926:18:12"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "918:4:12"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "851:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "859:4:12",
"type": ""
}
],
"src": "810:141:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1001:49:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1011:33:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1029:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1036:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1025:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1025:14:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1041:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1021:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1021:23:12"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1011:6:12"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "984:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "994:6:12",
"type": ""
}
],
"src": "957:93:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1109:54:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1119:37:12",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "1144:4:12"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1150:5:12"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1140:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1140:16:12"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "1119:8:12"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "1084:4:12",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1090:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "1100:8:12",
"type": ""
}
],
"src": "1056:107:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1245:317:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1255:35:12",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "1276:10:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1288:1:12",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1272:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1272:18:12"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "1259:9:12",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1299:109:12",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1330:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1341:66:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1311:18:12"
},
"nodeType": "YulFunctionCall",
"src": "1311:97:12"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "1303:4:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1417:51:12",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1448:9:12"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1459:8:12"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1429:18:12"
},
"nodeType": "YulFunctionCall",
"src": "1429:39:12"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1417:8:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1477:30:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1490:5:12"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1501:4:12"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1497:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1497:9:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1486:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1486:21:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1477:5:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1516:40:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1529:5:12"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1540:8:12"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1550:4:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1536:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1536:19:12"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1526:2:12"
},
"nodeType": "YulFunctionCall",
"src": "1526:30:12"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1516:6:12"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1206:5:12",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "1213:10:12",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "1225:8:12",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1238:6:12",
"type": ""
}
],
"src": "1169:393:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1613:32:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1623:16:12",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1634:5:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1623:7:12"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1595:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1605:7:12",
"type": ""
}
],
"src": "1568:77:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1683:28:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1693:12:12",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1700:5:12"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1693:3:12"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1669:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1679:3:12",
"type": ""
}
],
"src": "1651:60:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1777:82:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1787:66:12",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1845:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1827:17:12"
},
"nodeType": "YulFunctionCall",
"src": "1827:24:12"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "1818:8:12"
},
"nodeType": "YulFunctionCall",
"src": "1818:34:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1800:17:12"
},
"nodeType": "YulFunctionCall",
"src": "1800:53:12"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "1787:9:12"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1757:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "1767:9:12",
"type": ""
}
],
"src": "1717:142:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1912:28:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1922:12:12",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1929:5:12"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1922:3:12"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1898:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1908:3:12",
"type": ""
}
],
"src": "1865:75:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2022:193:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2032:63:12",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "2087:7:12"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2056:30:12"
},
"nodeType": "YulFunctionCall",
"src": "2056:39:12"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "2036:16:12",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2111:4:12"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2151:4:12"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "2145:5:12"
},
"nodeType": "YulFunctionCall",
"src": "2145:11:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2158:6:12"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "2190:16:12"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "2166:23:12"
},
"nodeType": "YulFunctionCall",
"src": "2166:41:12"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "2117:27:12"
},
"nodeType": "YulFunctionCall",
"src": "2117:91:12"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "2104:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2104:105:12"
},
"nodeType": "YulExpressionStatement",
"src": "2104:105:12"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "1999:4:12",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2005:6:12",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "2013:7:12",
"type": ""
}
],
"src": "1946:269:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2270:24:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2280:8:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2287:1:12",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "2280:3:12"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "2266:3:12",
"type": ""
}
],
"src": "2221:73:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2353:136:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2363:46:12",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "2377:30:12"
},
"nodeType": "YulFunctionCall",
"src": "2377:32:12"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "2367:6:12",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2462:4:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2468:6:12"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "2476:6:12"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2418:43:12"
},
"nodeType": "YulFunctionCall",
"src": "2418:65:12"
},
"nodeType": "YulExpressionStatement",
"src": "2418:65:12"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "2339:4:12",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2345:6:12",
"type": ""
}
],
"src": "2300:189:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2545:136:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2612:63:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2656:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2663:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "2626:29:12"
},
"nodeType": "YulFunctionCall",
"src": "2626:39:12"
},
"nodeType": "YulExpressionStatement",
"src": "2626:39:12"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2565:5:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2572:3:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2562:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2562:14:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2577:26:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2579:22:12",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2592:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2599:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2588:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2588:13:12"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2579:5:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2559:2:12",
"statements": []
},
"src": "2555:120:12"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "2533:5:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2540:3:12",
"type": ""
}
],
"src": "2495:186:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2766:464:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2792:431:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2806:54:12",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2854:5:12"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "2822:31:12"
},
"nodeType": "YulFunctionCall",
"src": "2822:38:12"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "2810:8:12",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2873:63:12",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "2896:8:12"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "2924:10:12"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "2906:17:12"
},
"nodeType": "YulFunctionCall",
"src": "2906:29:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2892:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2892:44:12"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "2877:11:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3093:27:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3095:23:12",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3110:8:12"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3095:11:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "3077:10:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3089:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3074:2:12"
},
"nodeType": "YulFunctionCall",
"src": "3074:18:12"
},
"nodeType": "YulIf",
"src": "3071:49:12"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3162:11:12"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3179:8:12"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3207:3:12"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "3189:17:12"
},
"nodeType": "YulFunctionCall",
"src": "3189:22:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3175:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3175:37:12"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "3133:28:12"
},
"nodeType": "YulFunctionCall",
"src": "3133:80:12"
},
"nodeType": "YulExpressionStatement",
"src": "3133:80:12"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2783:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2788:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2780:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2780:11:12"
},
"nodeType": "YulIf",
"src": "2777:446:12"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2742:5:12",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "2749:3:12",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "2754:10:12",
"type": ""
}
],
"src": "2687:543:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3299:54:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3309:37:12",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "3334:4:12"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3340:5:12"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "3330:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3330:16:12"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "3309:8:12"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "3274:4:12",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3280:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "3290:8:12",
"type": ""
}
],
"src": "3236:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3410:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3420:68:12",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3469:1:12",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "3472:5:12"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3465:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3465:13:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3484:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3480:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3480:6:12"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "3436:28:12"
},
"nodeType": "YulFunctionCall",
"src": "3436:51:12"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3432:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3432:56:12"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "3424:4:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3497:25:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3511:4:12"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "3517:4:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3507:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3507:15:12"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "3497:6:12"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3387:4:12",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "3393:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "3403:6:12",
"type": ""
}
],
"src": "3359:169:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3614:214:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3747:37:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3774:4:12"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3780:3:12"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "3755:18:12"
},
"nodeType": "YulFunctionCall",
"src": "3755:29:12"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3747:4:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3793:29:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3804:4:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3814:1:12",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3817:3:12"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3810:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3810:11:12"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3801:2:12"
},
"nodeType": "YulFunctionCall",
"src": "3801:21:12"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "3793:4:12"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3595:4:12",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "3601:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "3609:4:12",
"type": ""
}
],
"src": "3533:295:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3925:1303:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3936:51:12",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3983:3:12"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3950:32:12"
},
"nodeType": "YulFunctionCall",
"src": "3950:37:12"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "3940:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4072:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4074:16:12"
},
"nodeType": "YulFunctionCall",
"src": "4074:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "4074:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4044:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4052:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4041:2:12"
},
"nodeType": "YulFunctionCall",
"src": "4041:30:12"
},
"nodeType": "YulIf",
"src": "4038:56:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4104:52:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4150:4:12"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "4144:5:12"
},
"nodeType": "YulFunctionCall",
"src": "4144:11:12"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "4118:25:12"
},
"nodeType": "YulFunctionCall",
"src": "4118:38:12"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "4108:6:12",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4249:4:12"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "4255:6:12"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4263:6:12"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4203:45:12"
},
"nodeType": "YulFunctionCall",
"src": "4203:67:12"
},
"nodeType": "YulExpressionStatement",
"src": "4203:67:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4280:18:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4297:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "4284:9:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4308:17:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4321:4:12",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4308:9:12"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "4372:611:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4386:37:12",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4405:6:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4417:4:12",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4413:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4413:9:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4401:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4401:22:12"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "4390:7:12",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4437:51:12",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4483:4:12"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4451:31:12"
},
"nodeType": "YulFunctionCall",
"src": "4451:37:12"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "4441:6:12",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4501:10:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4510:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4505:1:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4569:163:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4594:6:12"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4612:3:12"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4617:9:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4608:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4608:19:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4602:5:12"
},
"nodeType": "YulFunctionCall",
"src": "4602:26:12"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4587:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4587:42:12"
},
"nodeType": "YulExpressionStatement",
"src": "4587:42:12"
},
{
"nodeType": "YulAssignment",
"src": "4646:24:12",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4660:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4668:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4656:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4656:14:12"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4646:6:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4687:31:12",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4704:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4715:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4700:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4700:18:12"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4687:9:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4535:1:12"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4538:7:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4532:2:12"
},
"nodeType": "YulFunctionCall",
"src": "4532:14:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4547:21:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4549:17:12",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4558:1:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4561:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4554:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4554:12:12"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4549:1:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4528:3:12",
"statements": []
},
"src": "4524:208:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4768:156:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4786:43:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4813:3:12"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4818:9:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4809:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4809:19:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4803:5:12"
},
"nodeType": "YulFunctionCall",
"src": "4803:26:12"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "4790:9:12",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4853:6:12"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "4880:9:12"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4895:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4903:4:12",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4891:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4891:17:12"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "4861:18:12"
},
"nodeType": "YulFunctionCall",
"src": "4861:48:12"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4846:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4846:64:12"
},
"nodeType": "YulExpressionStatement",
"src": "4846:64:12"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4751:7:12"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4760:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4748:2:12"
},
"nodeType": "YulFunctionCall",
"src": "4748:19:12"
},
"nodeType": "YulIf",
"src": "4745:179:12"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4944:4:12"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4958:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4966:1:12",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4954:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4954:14:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4970:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4950:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4950:22:12"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4937:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4937:36:12"
},
"nodeType": "YulExpressionStatement",
"src": "4937:36:12"
}
]
},
"nodeType": "YulCase",
"src": "4365:618:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4370:1:12",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "5000:222:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5014:14:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5027:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5018:5:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5051:67:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5069:35:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5088:3:12"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "5093:9:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5084:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5084:19:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5078:5:12"
},
"nodeType": "YulFunctionCall",
"src": "5078:26:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5069:5:12"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5044:6:12"
},
"nodeType": "YulIf",
"src": "5041:77:12"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5138:4:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5197:5:12"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5204:6:12"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "5144:52:12"
},
"nodeType": "YulFunctionCall",
"src": "5144:67:12"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "5131:6:12"
},
"nodeType": "YulFunctionCall",
"src": "5131:81:12"
},
"nodeType": "YulExpressionStatement",
"src": "5131:81:12"
}
]
},
"nodeType": "YulCase",
"src": "4992:230:12",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4345:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4353:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4342:2:12"
},
"nodeType": "YulFunctionCall",
"src": "4342:14:12"
},
"nodeType": "YulSwitch",
"src": "4335:887:12"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "3914:4:12",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3920:3:12",
"type": ""
}
],
"src": "3833:1395:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5274:35:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5284:19:12",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5300:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5294:5:12"
},
"nodeType": "YulFunctionCall",
"src": "5294:9:12"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5284:6:12"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "5267:6:12",
"type": ""
}
],
"src": "5234:75:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5404:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5421:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5424:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5414:6:12"
},
"nodeType": "YulFunctionCall",
"src": "5414:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "5414:12:12"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "5315:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5527:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5544:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5547:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5537:6:12"
},
"nodeType": "YulFunctionCall",
"src": "5537:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "5537:12:12"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "5438:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5606:81:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5616:65:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5631:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5638:42:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5627:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5627:54:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5616:7:12"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5588:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5598:7:12",
"type": ""
}
],
"src": "5561:126:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5738:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5748:35:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5777:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "5759:17:12"
},
"nodeType": "YulFunctionCall",
"src": "5759:24:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5748:7:12"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5720:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5730:7:12",
"type": ""
}
],
"src": "5693:96:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5838:79:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5895:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5904:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5907:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5897:6:12"
},
"nodeType": "YulFunctionCall",
"src": "5897:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "5897:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5861:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5886:5:12"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "5868:17:12"
},
"nodeType": "YulFunctionCall",
"src": "5868:24:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5858:2:12"
},
"nodeType": "YulFunctionCall",
"src": "5858:35:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5851:6:12"
},
"nodeType": "YulFunctionCall",
"src": "5851:43:12"
},
"nodeType": "YulIf",
"src": "5848:63:12"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5831:5:12",
"type": ""
}
],
"src": "5795:122:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5986:80:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5996:22:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6011:6:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "6005:5:12"
},
"nodeType": "YulFunctionCall",
"src": "6005:13:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5996:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6054:5:12"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "6027:26:12"
},
"nodeType": "YulFunctionCall",
"src": "6027:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "6027:33:12"
}
]
},
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5964:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5972:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5980:5:12",
"type": ""
}
],
"src": "5923:143:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6149:274:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6195:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6197:77:12"
},
"nodeType": "YulFunctionCall",
"src": "6197:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "6197:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6170:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6179:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6166:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6166:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6191:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6162:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6162:32:12"
},
"nodeType": "YulIf",
"src": "6159:119:12"
},
{
"nodeType": "YulBlock",
"src": "6288:128:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6303:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6317:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6307:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6332:74:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6378:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6389:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6374:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6374:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6398:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "6342:31:12"
},
"nodeType": "YulFunctionCall",
"src": "6342:64:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6332:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6119:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6130:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6142:6:12",
"type": ""
}
],
"src": "6072:351:12"
}
]
},
"contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function 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 array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\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 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_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}\n",
"id": 12,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60a0604052630510ff406006556001600760006101000a81548160ff0219169083151502179055506040518060400160405280600381526020017f75726c0000000000000000000000000000000000000000000000000000000000815250600890816200006d91906200054e565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060099081620000b491906200054e565b506000600a60006101000a81548160ff021916908315150217905550737c8c679ce072544aa7a73b85d5ea9b3195fa7bd2600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507326a3e0cbf8240e303ecdf36a2ccaef74a32692db600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200018757600080fd5b5060405162004afb38038062004afb8339818101604052810190620001ad91906200069f565b620001cd620001c16200020860201b60201c565b6200021060201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505050620006d1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200035657607f821691505b6020821081036200036c576200036b6200030e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003d67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000397565b620003e2868362000397565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200042f620004296200042384620003fa565b62000404565b620003fa565b9050919050565b6000819050919050565b6200044b836200040e565b620004636200045a8262000436565b848454620003a4565b825550505050565b600090565b6200047a6200046b565b6200048781848462000440565b505050565b5b81811015620004af57620004a360008262000470565b6001810190506200048d565b5050565b601f821115620004fe57620004c88162000372565b620004d38462000387565b81016020851015620004e3578190505b620004fb620004f28562000387565b8301826200048c565b50505b505050565b600082821c905092915050565b6000620005236000198460080262000503565b1980831691505092915050565b60006200053e838362000510565b9150826002028217905092915050565b6200055982620002d4565b67ffffffffffffffff811115620005755762000574620002df565b5b6200058182546200033d565b6200058e828285620004b3565b600060209050601f831160018114620005c65760008415620005b1578287015190505b620005bd858262000530565b8655506200062d565b601f198416620005d68662000372565b60005b828110156200060057848901518255600182019150602085019450602081019050620005d9565b868310156200062057848901516200061c601f89168262000510565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000667826200063a565b9050919050565b62000679816200065a565b81146200068557600080fd5b50565b60008151905062000699816200066e565b92915050565b600060208284031215620006b857620006b762000635565b5b6000620006c88482850162000688565b91505092915050565b6080516143e46200071760003960008181610bb501528181611d8b01528181611e6801528181611f4e01528181611ffd015281816120c1015261216601526143e46000f3fe6080604052600436106102345760003560e01c806370a082311161012e578063a8f11eb9116100ab578063e4fc6b6d1161006f578063e4fc6b6d146107d6578063e78b9899146107ed578063e797ec1b14610818578063e985e9c51461082f578063f2fde38b1461086c5761023b565b8063a8f11eb9146106fe578063ae9843d614610729578063b88d4fde14610754578063c87b56dd14610770578063e435d09f146107ad5761023b565b80638da5cb5b116100f25780638da5cb5b1461062b57806395d89b41146106565780639fd6db1214610681578063a0712d68146106ac578063a22cb465146106d55761023b565b806370a082311461056c578063715018a6146105a95780637191a5ab146105c05780637e5cd5c1146105eb57806389476069146106025761023b565b806332cb6b0c116101bc578063484b973c11610180578063484b973c146104775780634e14ec4b146104a057806355f804b3146104c95780635bf244be146104f25780636352211e1461052f5761023b565b806332cb6b0c146103c75780633ccfd60b146103f257806342842e0e146104095780634408a0461461042557806344a0d68a1461044e5761023b565b8063095ea7b311610203578063095ea7b31461030e57806313faede61461032a57806318160ddd146103555780632004ffd91461038057806323b872dd146103ab5761023b565b806301ffc9a714610240578063059ed1ad1461027d57806306fdde03146102a6578063081812fc146102d15761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612984565b610895565b60405161027491906129cc565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190612a45565b61090f565b005b3480156102b257600080fd5b506102bb6109ca565b6040516102c89190612b02565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190612b5a565b610a07565b6040516103059190612b96565b60405180910390f35b61032860048036038101906103239190612bb1565b610a8c565b005b34801561033657600080fd5b5061033f610ba3565b60405161034c9190612c00565b60405180910390f35b34801561036157600080fd5b5061036a610ba9565b6040516103779190612c00565b60405180910390f35b34801561038c57600080fd5b50610395610bb3565b6040516103a29190612c7a565b60405180910390f35b6103c560048036038101906103c09190612c95565b610bd7565b005b3480156103d357600080fd5b506103dc610c37565b6040516103e99190612c00565b60405180910390f35b3480156103fe57600080fd5b50610407610c3d565b005b610423600480360381019061041e9190612c95565b610cbe565b005b34801561043157600080fd5b5061044c60048036038101906104479190612d4d565b610cde565b005b34801561045a57600080fd5b5061047560048036038101906104709190612b5a565b610cfc565b005b34801561048357600080fd5b5061049e60048036038101906104999190612bb1565b610d0e565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190612dc6565b610d45565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190612d4d565b610d6a565b005b3480156104fe57600080fd5b5061051960048036038101906105149190612a45565b610d88565b6040516105269190612eb1565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190612b5a565b610eba565b6040516105639190612b96565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612a45565b610f6b565b6040516105a09190612c00565b60405180910390f35b3480156105b557600080fd5b506105be611022565b005b3480156105cc57600080fd5b506105d5611036565b6040516105e29190612b96565b60405180910390f35b3480156105f757600080fd5b5061060061105c565b005b34801561060e57600080fd5b5061062960048036038101906106249190612a45565b611081565b005b34801561063757600080fd5b506106406111f3565b60405161064d9190612b96565b60405180910390f35b34801561066257600080fd5b5061066b61121c565b6040516106789190612b02565b60405180910390f35b34801561068d57600080fd5b50610696611259565b6040516106a391906129cc565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190612b5a565b61126c565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190612ed3565b611360565b005b34801561070a57600080fd5b50610713611376565b60405161072091906129cc565b60405180910390f35b34801561073557600080fd5b5061073e611389565b60405161074b9190612f22565b60405180910390f35b61076e6004803603810190610769919061306d565b611398565b005b34801561077c57600080fd5b5061079760048036038101906107929190612b5a565b6113fa565b6040516107a49190612b02565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190612a45565b61149e565b005b3480156107e257600080fd5b506107eb611559565b005b3480156107f957600080fd5b5061080261156b565b60405161080f9190612b96565b60405180910390f35b34801561082457600080fd5b5061082d611591565b005b34801561083b57600080fd5b50610856600480360381019061085191906130f0565b6115b6565b60405161086391906129cc565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e9190612a45565b61164a565b005b60007fc21b8f28000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109085750610907826116cd565b5b9050919050565b610917611737565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d9061317c565b60405180910390fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606040518060400160405280600e81526020017f536f6f6e616e54736f6f724e4654000000000000000000000000000000000000815250905090565b6000610a12826117b5565b610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a489061320e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9782610eba565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe906132a0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b26611821565b73ffffffffffffffffffffffffffffffffffffffff161480610b555750610b5481610b4f611821565b6115b6565b5b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b9061330c565b60405180910390fd5b610b9e8383611829565b505050565b60065481565b6000600154905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b610be8610be2611821565b826118e2565b610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e90613378565b60405180910390fd5b610c328383836119c0565b505050565b61138881565b610c45611737565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c6b906133c9565b60006040518083038185875af1925050503d8060008114610ca8576040519150601f19603f3d011682016040523d82523d6000602084013e610cad565b606091505b5050905080610cbb57600080fd5b50565b610cd983838360405180602001604052806000815250611398565b505050565b610ce6611737565b818160099182610cf79291906135eb565b505050565b610d04611737565b8060068190555050565b610d16611737565b60005b81811015610d4057610d2d83600154611c5b565b8080610d38906136ea565b915050610d19565b505050565b610d4d611737565b80600760006101000a81548160ff02191690831515021790555050565b610d72611737565b818160089182610d839291906135eb565b505050565b60606000610d9583610f6b565b67ffffffffffffffff811115610dae57610dad612f42565b5b604051908082528060200260200182016040528015610ddc5781602001602082028036833780820191505090505b5090506000610dea84610f6b565b03610df85780915050610eb5565b6000805b600154811015610eae578473ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610e9b5780838381518110610e8057610e7f613732565b5b6020026020010181815250508180610e97906136ea565b9250505b8080610ea6906136ea565b915050610dfc565b5081925050505b919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f59906137ad565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290613819565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61102a611737565b6110346000611cc4565b565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611064611737565b6000600a60006101000a81548160ff021916908315150217905550565b611089611737565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef9061317c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161114e9190612b96565b602060405180830381865afa15801561116b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118f919061384e565b6040518363ffffffff1660e01b81526004016111ac92919061387b565b6020604051808303816000875af11580156111cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ef91906138b9565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f534e535200000000000000000000000000000000000000000000000000000000815250905090565b600a60009054906101000a900460ff1681565b600a60009054906101000a900460ff166112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290613932565b60405180910390fd5b600081116112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f59061399e565b60405180910390fd5b6113148160065461130f91906139be565b611d88565b60005b8181101561133e5761132b33600154611c5b565b8080611336906136ea565b915050611317565b50600760009054906101000a900460ff161561135d5761135c611f48565b5b50565b61137261136b611821565b838361222a565b5050565b600760009054906101000a900460ff1681565b600063150b7a0260e01b905090565b6113a96113a3611821565b836118e2565b6113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df90613378565b60405180910390fd5b6113f484848484612396565b50505050565b6060611405826117b5565b611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90613a4c565b60405180910390fd5b60006008611451846123f2565b604051602001611462929190613b2b565b6040516020818303038152906040529050806009604051602001611487929190613b4f565b604051602081830303815290604052915050919050565b6114a6611737565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c9061317c565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611561611737565b611569611f48565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611599611737565b6001600a60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611652611737565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b890613be5565b60405180910390fd5b6116ca81611cc4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61173f611821565b73ffffffffffffffffffffffffffffffffffffffff1661175d6111f3565b73ffffffffffffffffffffffffffffffffffffffff16146117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90613c51565b60405180910390fd5b565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661189c83610eba565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118ed826117b5565b61192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390613cbd565b60405180910390fd5b600061193783610eba565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119a657508373ffffffffffffffffffffffffffffffffffffffff1661198e84610a07565b73ffffffffffffffffffffffffffffffffffffffff16145b806119b757506119b681856115b6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119e082610eba565b73ffffffffffffffffffffffffffffffffffffffff1614611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90613d29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90613d95565b60405180910390fd5b6000611ab084610f6b565b11611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae790613e01565b60405180910390fd5b611afb600082611829565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b4b9190613e21565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba29190613e55565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611c65828261257a565b611c81600083836040518060200160405280600081525061276e565b611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb790613efb565b60405180910390fd5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401611de4929190613f1b565b602060405180830381865afa158015611e01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e25919061384e565b1015611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d90613f90565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401611ec393929190613fb0565b6020604051808303816000875af1158015611ee2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f0691906138b9565b611f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3c90614033565b60405180910390fd5b50565b600060027f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611fa59190612b96565b602060405180830381865afa158015611fc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe6919061384e565b611ff09190614082565b905060008111156120bd577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b815260040161207892919061387b565b6020604051808303816000875af1158015612097573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120bb91906138b9565b505b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016121189190612b96565b602060405180830381865afa158015612135573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612159919061384e565b90506000811115612226577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b81526004016121e192919061387b565b6020604051808303816000875af1158015612200573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061222491906138b9565b505b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f906140ff565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161238991906129cc565b60405180910390a3505050565b6123a18484846119c0565b6123ad8484848461276e565b6123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e390614191565b60405180910390fd5b50505050565b606060008203612439576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612575565b600082905060005b6000821461246b578080612454906136ea565b915050600a826124649190614082565b9150612441565b60008167ffffffffffffffff81111561248757612486612f42565b5b6040519080825280601f01601f1916602001820160405280156124b95781602001600182028036833780820191505090505b50905060008290505b6000861461256d576001816124d79190613e21565b90506000600a80886124e99190614082565b6124f391906139be565b876124fe9190613e21565b603061250a91906141be565b905060008160f81b90508084848151811061252857612527613732565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886125649190614082565b975050506124c2565b819450505050505b919050565b612583816117b5565b156125c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ba9061423f565b60405180910390fd5b61138860015410612609576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612600906142ab565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126599190613e55565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160008154809291906126c5906136ea565b91905055506109c460015414806126df5750611388600154145b806126ed5750611d4c600154145b1561270e576000600a60006101000a81548160ff0219169083151502179055505b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061278f8473ffffffffffffffffffffffffffffffffffffffff166128f5565b156128e8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127b8611821565b8786866040518563ffffffff1660e01b81526004016127da9493929190614320565b6020604051808303816000875af192505050801561281657506040513d601f19601f820116820180604052508101906128139190614381565b60015b612898573d8060008114612846576040519150601f19603f3d011682016040523d82523d6000602084013e61284b565b606091505b506000815103612890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288790614191565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128ed565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129618161292c565b811461296c57600080fd5b50565b60008135905061297e81612958565b92915050565b60006020828403121561299a57612999612922565b5b60006129a88482850161296f565b91505092915050565b60008115159050919050565b6129c6816129b1565b82525050565b60006020820190506129e160008301846129bd565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a12826129e7565b9050919050565b612a2281612a07565b8114612a2d57600080fd5b50565b600081359050612a3f81612a19565b92915050565b600060208284031215612a5b57612a5a612922565b5b6000612a6984828501612a30565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612aac578082015181840152602081019050612a91565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ad482612a72565b612ade8185612a7d565b9350612aee818560208601612a8e565b612af781612ab8565b840191505092915050565b60006020820190508181036000830152612b1c8184612ac9565b905092915050565b6000819050919050565b612b3781612b24565b8114612b4257600080fd5b50565b600081359050612b5481612b2e565b92915050565b600060208284031215612b7057612b6f612922565b5b6000612b7e84828501612b45565b91505092915050565b612b9081612a07565b82525050565b6000602082019050612bab6000830184612b87565b92915050565b60008060408385031215612bc857612bc7612922565b5b6000612bd685828601612a30565b9250506020612be785828601612b45565b9150509250929050565b612bfa81612b24565b82525050565b6000602082019050612c156000830184612bf1565b92915050565b6000819050919050565b6000612c40612c3b612c36846129e7565b612c1b565b6129e7565b9050919050565b6000612c5282612c25565b9050919050565b6000612c6482612c47565b9050919050565b612c7481612c59565b82525050565b6000602082019050612c8f6000830184612c6b565b92915050565b600080600060608486031215612cae57612cad612922565b5b6000612cbc86828701612a30565b9350506020612ccd86828701612a30565b9250506040612cde86828701612b45565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612d0d57612d0c612ce8565b5b8235905067ffffffffffffffff811115612d2a57612d29612ced565b5b602083019150836001820283011115612d4657612d45612cf2565b5b9250929050565b60008060208385031215612d6457612d63612922565b5b600083013567ffffffffffffffff811115612d8257612d81612927565b5b612d8e85828601612cf7565b92509250509250929050565b612da3816129b1565b8114612dae57600080fd5b50565b600081359050612dc081612d9a565b92915050565b600060208284031215612ddc57612ddb612922565b5b6000612dea84828501612db1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612e2881612b24565b82525050565b6000612e3a8383612e1f565b60208301905092915050565b6000602082019050919050565b6000612e5e82612df3565b612e688185612dfe565b9350612e7383612e0f565b8060005b83811015612ea4578151612e8b8882612e2e565b9750612e9683612e46565b925050600181019050612e77565b5085935050505092915050565b60006020820190508181036000830152612ecb8184612e53565b905092915050565b60008060408385031215612eea57612ee9612922565b5b6000612ef885828601612a30565b9250506020612f0985828601612db1565b9150509250929050565b612f1c8161292c565b82525050565b6000602082019050612f376000830184612f13565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f7a82612ab8565b810181811067ffffffffffffffff82111715612f9957612f98612f42565b5b80604052505050565b6000612fac612918565b9050612fb88282612f71565b919050565b600067ffffffffffffffff821115612fd857612fd7612f42565b5b612fe182612ab8565b9050602081019050919050565b82818337600083830152505050565b600061301061300b84612fbd565b612fa2565b90508281526020810184848401111561302c5761302b612f3d565b5b613037848285612fee565b509392505050565b600082601f83011261305457613053612ce8565b5b8135613064848260208601612ffd565b91505092915050565b6000806000806080858703121561308757613086612922565b5b600061309587828801612a30565b94505060206130a687828801612a30565b93505060406130b787828801612b45565b925050606085013567ffffffffffffffff8111156130d8576130d7612927565b5b6130e48782880161303f565b91505092959194509250565b6000806040838503121561310757613106612922565b5b600061311585828601612a30565b925050602061312685828601612a30565b9150509250929050565b7f5a65726f20416464726573730000000000000000000000000000000000000000600082015250565b6000613166600c83612a7d565b915061317182613130565b602082019050919050565b6000602082019050818103600083015261319581613159565b9050919050565b7f4552433732313a20717565727920666f72206e6f6e6578697374656e7420746f60008201527f6b656e0000000000000000000000000000000000000000000000000000000000602082015250565b60006131f8602383612a7d565b91506132038261319c565b604082019050919050565b60006020820190508181036000830152613227816131eb565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061328a602183612a7d565b91506132958261322e565b604082019050919050565b600060208201905081810360008301526132b98161327d565b9050919050565b7f4552433732313a206e6f7420617070726f766564206f72206f776e6572000000600082015250565b60006132f6601d83612a7d565b9150613301826132c0565b602082019050919050565b60006020820190508181036000830152613325816132e9565b9050919050565b7f63616c6c6572206e6f74206f776e6572206e6f7220617070726f766564000000600082015250565b6000613362601d83612a7d565b915061336d8261332c565b602082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b600081905092915050565b50565b60006133b3600083613398565b91506133be826133a3565b600082019050919050565b60006133d4826133a6565b9150819050919050565b600082905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061343057607f821691505b602082108103613443576134426133e9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134ab7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261346e565b6134b5868361346e565b95508019841693508086168417925050509392505050565b60006134e86134e36134de84612b24565b612c1b565b612b24565b9050919050565b6000819050919050565b613502836134cd565b61351661350e826134ef565b84845461347b565b825550505050565b600090565b61352b61351e565b6135368184846134f9565b505050565b5b8181101561355a5761354f600082613523565b60018101905061353c565b5050565b601f82111561359f5761357081613449565b6135798461345e565b81016020851015613588578190505b61359c6135948561345e565b83018261353b565b50505b505050565b600082821c905092915050565b60006135c2600019846008026135a4565b1980831691505092915050565b60006135db83836135b1565b9150826002028217905092915050565b6135f583836133de565b67ffffffffffffffff81111561360e5761360d612f42565b5b6136188254613418565b61362382828561355e565b6000601f8311600181146136525760008415613640578287013590505b61364a85826135cf565b8655506136b2565b601f19841661366086613449565b60005b8281101561368857848901358255600182019150602085019450602081019050613663565b868310156136a557848901356136a1601f8916826135b1565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136f582612b24565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613727576137266136bb565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f717565727920666f72206e6f6e6578697374656e7420746f6b656e0000000000600082015250565b6000613797601b83612a7d565b91506137a282613761565b602082019050919050565b600060208201905081810360008301526137c68161378a565b9050919050565b7f717565727920666f7220746865207a65726f2061646472657373000000000000600082015250565b6000613803601a83612a7d565b915061380e826137cd565b602082019050919050565b60006020820190508181036000830152613832816137f6565b9050919050565b60008151905061384881612b2e565b92915050565b60006020828403121561386457613863612922565b5b600061387284828501613839565b91505092915050565b60006040820190506138906000830185612b87565b61389d6020830184612bf1565b9392505050565b6000815190506138b381612d9a565b92915050565b6000602082840312156138cf576138ce612922565b5b60006138dd848285016138a4565b91505092915050565b7f4d696e74696e67204e6f7420456e61626c656400000000000000000000000000600082015250565b600061391c601383612a7d565b9150613927826138e6565b602082019050919050565b6000602082019050818103600083015261394b8161390f565b9050919050565b7f496e76616c696420496e70757400000000000000000000000000000000000000600082015250565b6000613988600d83612a7d565b915061399382613952565b602082019050919050565b600060208201905081810360008301526139b78161397b565b9050919050565b60006139c982612b24565b91506139d483612b24565b92508282026139e281612b24565b915082820484148315176139f9576139f86136bb565b5b5092915050565b7f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b6000613a36601183612a7d565b9150613a4182613a00565b602082019050919050565b60006020820190508181036000830152613a6581613a29565b9050919050565b600081905092915050565b60008154613a8481613418565b613a8e8186613a6c565b94506001821660008114613aa95760018114613abe57613af1565b60ff1983168652811515820286019350613af1565b613ac785613449565b60005b83811015613ae957815481890152600182019150602081019050613aca565b838801955050505b50505092915050565b6000613b0582612a72565b613b0f8185613a6c565b9350613b1f818560208601612a8e565b80840191505092915050565b6000613b378285613a77565b9150613b438284613afa565b91508190509392505050565b6000613b5b8285613afa565b9150613b678284613a77565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bcf602683612a7d565b9150613bda82613b73565b604082019050919050565b60006020820190508181036000830152613bfe81613bc2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c3b602083612a7d565b9150613c4682613c05565b602082019050919050565b60006020820190508181036000830152613c6a81613c2e565b9050919050565b7f4552433732313a206e6f6e6578697374656e7420746f6b656e00000000000000600082015250565b6000613ca7601983612a7d565b9150613cb282613c71565b602082019050919050565b60006020820190508181036000830152613cd681613c9a565b9050919050565b7f496e636f7272656374206f776e65720000000000000000000000000000000000600082015250565b6000613d13600f83612a7d565b9150613d1e82613cdd565b602082019050919050565b60006020820190508181036000830152613d4281613d06565b9050919050565b7f7a65726f20616464726573730000000000000000000000000000000000000000600082015250565b6000613d7f600c83612a7d565b9150613d8a82613d49565b602082019050919050565b60006020820190508181036000830152613dae81613d72565b9050919050565b7f5a65726f2042616c616e63650000000000000000000000000000000000000000600082015250565b6000613deb600c83612a7d565b9150613df682613db5565b602082019050919050565b60006020820190508181036000830152613e1a81613dde565b9050919050565b6000613e2c82612b24565b9150613e3783612b24565b9250828203905081811115613e4f57613e4e6136bb565b5b92915050565b6000613e6082612b24565b9150613e6b83612b24565b9250828201905080821115613e8357613e826136bb565b5b92915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613ee5603283612a7d565b9150613ef082613e89565b604082019050919050565b60006020820190508181036000830152613f1481613ed8565b9050919050565b6000604082019050613f306000830185612b87565b613f3d6020830184612b87565b9392505050565b7f496e73756666696369656e7420416c6c6f77616e636500000000000000000000600082015250565b6000613f7a601683612a7d565b9150613f8582613f44565b602082019050919050565b60006020820190508181036000830152613fa981613f6d565b9050919050565b6000606082019050613fc56000830186612b87565b613fd26020830185612b87565b613fdf6040830184612bf1565b949350505050565b7f4661696c757265205472616e736665722046726f6d0000000000000000000000600082015250565b600061401d601583612a7d565b915061402882613fe7565b602082019050919050565b6000602082019050818103600083015261404c81614010565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061408d82612b24565b915061409883612b24565b9250826140a8576140a7614053565b5b828204905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006140e9601983612a7d565b91506140f4826140b3565b602082019050919050565b60006020820190508181036000830152614118816140dc565b9050919050565b7f4552433732313a206e6f6e20455243373231526563656976657220696d706c6560008201527f6d656e7465720000000000000000000000000000000000000000000000000000602082015250565b600061417b602683612a7d565b91506141868261411f565b604082019050919050565b600060208201905081810360008301526141aa8161416e565b9050919050565b600060ff82169050919050565b60006141c9826141b1565b91506141d4836141b1565b9250828201905060ff8111156141ed576141ec6136bb565b5b92915050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614229601c83612a7d565b9150614234826141f3565b602082019050919050565b600060208201905081810360008301526142588161421c565b9050919050565b7f416c6c204e4654732048617665204265656e204d696e74656400000000000000600082015250565b6000614295601983612a7d565b91506142a08261425f565b602082019050919050565b600060208201905081810360008301526142c481614288565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006142f2826142cb565b6142fc81856142d6565b935061430c818560208601612a8e565b61431581612ab8565b840191505092915050565b60006080820190506143356000830187612b87565b6143426020830186612b87565b61434f6040830185612bf1565b818103606083015261436181846142e7565b905095945050505050565b60008151905061437b81612958565b92915050565b60006020828403121561439757614396612922565b5b60006143a58482850161436c565b9150509291505056fea264697066735822122065ca6c3c67ab2a26db5658cea150924eb445074d92eebc1add791f44f6a4365364736f6c63430008110033",
"opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE PUSH4 0x510FF40 PUSH1 0x6 SSTORE PUSH1 0x1 PUSH1 0x7 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x75726C0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x8 SWAP1 DUP2 PUSH3 0x6D SWAP2 SWAP1 PUSH3 0x54E JUMP JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x2E6A736F6E000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x9 SWAP1 DUP2 PUSH3 0xB4 SWAP2 SWAP1 PUSH3 0x54E JUMP JUMPDEST POP PUSH1 0x0 PUSH1 0xA PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH20 0x7C8C679CE072544AA7A73B85D5EA9B3195FA7BD2 PUSH1 0xA PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH20 0x26A3E0CBF8240E303ECDF36A2CCAEF74A32692DB PUSH1 0xB PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH3 0x187 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x4AFB CODESIZE SUB DUP1 PUSH3 0x4AFB DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x1AD SWAP2 SWAP1 PUSH3 0x69F JUMP JUMPDEST PUSH3 0x1CD PUSH3 0x1C1 PUSH3 0x208 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x210 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x80 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP POP PUSH3 0x6D1 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 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x356 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x36C JUMPI PUSH3 0x36B PUSH3 0x30E JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH3 0x3D6 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x397 JUMP JUMPDEST PUSH3 0x3E2 DUP7 DUP4 PUSH3 0x397 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x42F PUSH3 0x429 PUSH3 0x423 DUP5 PUSH3 0x3FA JUMP JUMPDEST PUSH3 0x404 JUMP JUMPDEST PUSH3 0x3FA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x44B DUP4 PUSH3 0x40E JUMP JUMPDEST PUSH3 0x463 PUSH3 0x45A DUP3 PUSH3 0x436 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x3A4 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH3 0x47A PUSH3 0x46B JUMP JUMPDEST PUSH3 0x487 DUP2 DUP5 DUP5 PUSH3 0x440 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x4AF JUMPI PUSH3 0x4A3 PUSH1 0x0 DUP3 PUSH3 0x470 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x48D JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x4FE JUMPI PUSH3 0x4C8 DUP2 PUSH3 0x372 JUMP JUMPDEST PUSH3 0x4D3 DUP5 PUSH3 0x387 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x4E3 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x4FB PUSH3 0x4F2 DUP6 PUSH3 0x387 JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x48C JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x523 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x503 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x53E DUP4 DUP4 PUSH3 0x510 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x559 DUP3 PUSH3 0x2D4 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x575 JUMPI PUSH3 0x574 PUSH3 0x2DF JUMP JUMPDEST JUMPDEST PUSH3 0x581 DUP3 SLOAD PUSH3 0x33D JUMP JUMPDEST PUSH3 0x58E DUP3 DUP3 DUP6 PUSH3 0x4B3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x5C6 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x5B1 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x5BD DUP6 DUP3 PUSH3 0x530 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x62D JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x5D6 DUP7 PUSH3 0x372 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x600 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x5D9 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x620 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x61C PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x510 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x667 DUP3 PUSH3 0x63A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x679 DUP2 PUSH3 0x65A JUMP JUMPDEST DUP2 EQ PUSH3 0x685 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x699 DUP2 PUSH3 0x66E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x6B8 JUMPI PUSH3 0x6B7 PUSH3 0x635 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x6C8 DUP5 DUP3 DUP6 ADD PUSH3 0x688 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH2 0x43E4 PUSH3 0x717 PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0xBB5 ADD MSTORE DUP2 DUP2 PUSH2 0x1D8B ADD MSTORE DUP2 DUP2 PUSH2 0x1E68 ADD MSTORE DUP2 DUP2 PUSH2 0x1F4E ADD MSTORE DUP2 DUP2 PUSH2 0x1FFD ADD MSTORE DUP2 DUP2 PUSH2 0x20C1 ADD MSTORE PUSH2 0x2166 ADD MSTORE PUSH2 0x43E4 PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x234 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x12E JUMPI DUP1 PUSH4 0xA8F11EB9 GT PUSH2 0xAB JUMPI DUP1 PUSH4 0xE4FC6B6D GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xE4FC6B6D EQ PUSH2 0x7D6 JUMPI DUP1 PUSH4 0xE78B9899 EQ PUSH2 0x7ED JUMPI DUP1 PUSH4 0xE797EC1B EQ PUSH2 0x818 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x82F JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x86C JUMPI PUSH2 0x23B JUMP JUMPDEST DUP1 PUSH4 0xA8F11EB9 EQ PUSH2 0x6FE JUMPI DUP1 PUSH4 0xAE9843D6 EQ PUSH2 0x729 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x754 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x770 JUMPI DUP1 PUSH4 0xE435D09F EQ PUSH2 0x7AD JUMPI PUSH2 0x23B JUMP JUMPDEST DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0xF2 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x62B JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x656 JUMPI DUP1 PUSH4 0x9FD6DB12 EQ PUSH2 0x681 JUMPI DUP1 PUSH4 0xA0712D68 EQ PUSH2 0x6AC JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x6D5 JUMPI PUSH2 0x23B JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x56C JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x5A9 JUMPI DUP1 PUSH4 0x7191A5AB EQ PUSH2 0x5C0 JUMPI DUP1 PUSH4 0x7E5CD5C1 EQ PUSH2 0x5EB JUMPI DUP1 PUSH4 0x89476069 EQ PUSH2 0x602 JUMPI PUSH2 0x23B JUMP JUMPDEST DUP1 PUSH4 0x32CB6B0C GT PUSH2 0x1BC JUMPI DUP1 PUSH4 0x484B973C GT PUSH2 0x180 JUMPI DUP1 PUSH4 0x484B973C EQ PUSH2 0x477 JUMPI DUP1 PUSH4 0x4E14EC4B EQ PUSH2 0x4A0 JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x4C9 JUMPI DUP1 PUSH4 0x5BF244BE EQ PUSH2 0x4F2 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x52F JUMPI PUSH2 0x23B JUMP JUMPDEST DUP1 PUSH4 0x32CB6B0C EQ PUSH2 0x3C7 JUMPI DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0x3F2 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x409 JUMPI DUP1 PUSH4 0x4408A046 EQ PUSH2 0x425 JUMPI DUP1 PUSH4 0x44A0D68A EQ PUSH2 0x44E JUMPI PUSH2 0x23B JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x203 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x30E JUMPI DUP1 PUSH4 0x13FAEDE6 EQ PUSH2 0x32A JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x355 JUMPI DUP1 PUSH4 0x2004FFD9 EQ PUSH2 0x380 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x3AB JUMPI PUSH2 0x23B JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x240 JUMPI DUP1 PUSH4 0x59ED1AD EQ PUSH2 0x27D JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x2A6 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x2D1 JUMPI PUSH2 0x23B JUMP JUMPDEST CALLDATASIZE PUSH2 0x23B JUMPI STOP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x24C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x267 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x262 SWAP2 SWAP1 PUSH2 0x2984 JUMP JUMPDEST PUSH2 0x895 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x274 SWAP2 SWAP1 PUSH2 0x29CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x289 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x29F SWAP2 SWAP1 PUSH2 0x2A45 JUMP JUMPDEST PUSH2 0x90F JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2BB PUSH2 0x9CA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C8 SWAP2 SWAP1 PUSH2 0x2B02 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2F8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F3 SWAP2 SWAP1 PUSH2 0x2B5A JUMP JUMPDEST PUSH2 0xA07 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x305 SWAP2 SWAP1 PUSH2 0x2B96 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x328 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x323 SWAP2 SWAP1 PUSH2 0x2BB1 JUMP JUMPDEST PUSH2 0xA8C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x336 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33F PUSH2 0xBA3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x34C SWAP2 SWAP1 PUSH2 0x2C00 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x361 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0xBA9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x377 SWAP2 SWAP1 PUSH2 0x2C00 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x38C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x395 PUSH2 0xBB3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3A2 SWAP2 SWAP1 PUSH2 0x2C7A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3C5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3C0 SWAP2 SWAP1 PUSH2 0x2C95 JUMP JUMPDEST PUSH2 0xBD7 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3DC PUSH2 0xC37 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3E9 SWAP2 SWAP1 PUSH2 0x2C00 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x407 PUSH2 0xC3D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x423 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x41E SWAP2 SWAP1 PUSH2 0x2C95 JUMP JUMPDEST PUSH2 0xCBE JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x431 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x447 SWAP2 SWAP1 PUSH2 0x2D4D JUMP JUMPDEST PUSH2 0xCDE JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x45A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x475 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x470 SWAP2 SWAP1 PUSH2 0x2B5A JUMP JUMPDEST PUSH2 0xCFC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x483 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x49E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x499 SWAP2 SWAP1 PUSH2 0x2BB1 JUMP JUMPDEST PUSH2 0xD0E JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4C7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4C2 SWAP2 SWAP1 PUSH2 0x2DC6 JUMP JUMPDEST PUSH2 0xD45 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4D5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4EB SWAP2 SWAP1 PUSH2 0x2D4D JUMP JUMPDEST PUSH2 0xD6A JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x519 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x514 SWAP2 SWAP1 PUSH2 0x2A45 JUMP JUMPDEST PUSH2 0xD88 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x526 SWAP2 SWAP1 PUSH2 0x2EB1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x556 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x551 SWAP2 SWAP1 PUSH2 0x2B5A JUMP JUMPDEST PUSH2 0xEBA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x563 SWAP2 SWAP1 PUSH2 0x2B96 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x578 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x593 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x58E SWAP2 SWAP1 PUSH2 0x2A45 JUMP JUMPDEST PUSH2 0xF6B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5A0 SWAP2 SWAP1 PUSH2 0x2C00 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5BE PUSH2 0x1022 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5D5 PUSH2 0x1036 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5E2 SWAP2 SWAP1 PUSH2 0x2B96 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x600 PUSH2 0x105C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x60E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x629 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x624 SWAP2 SWAP1 PUSH2 0x2A45 JUMP JUMPDEST PUSH2 0x1081 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x637 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x640 PUSH2 0x11F3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x64D SWAP2 SWAP1 PUSH2 0x2B96 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x662 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x66B PUSH2 0x121C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x678 SWAP2 SWAP1 PUSH2 0x2B02 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x68D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x696 PUSH2 0x1259 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6A3 SWAP2 SWAP1 PUSH2 0x29CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6D3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6CE SWAP2 SWAP1 PUSH2 0x2B5A JUMP JUMPDEST PUSH2 0x126C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6FC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6F7 SWAP2 SWAP1 PUSH2 0x2ED3 JUMP JUMPDEST PUSH2 0x1360 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x70A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x713 PUSH2 0x1376 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x720 SWAP2 SWAP1 PUSH2 0x29CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x735 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x73E PUSH2 0x1389 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x74B SWAP2 SWAP1 PUSH2 0x2F22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x76E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x769 SWAP2 SWAP1 PUSH2 0x306D JUMP JUMPDEST PUSH2 0x1398 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x77C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x797 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x792 SWAP2 SWAP1 PUSH2 0x2B5A JUMP JUMPDEST PUSH2 0x13FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7A4 SWAP2 SWAP1 PUSH2 0x2B02 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x7D4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x7CF SWAP2 SWAP1 PUSH2 0x2A45 JUMP JUMPDEST PUSH2 0x149E JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x7EB PUSH2 0x1559 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x802 PUSH2 0x156B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x80F SWAP2 SWAP1 PUSH2 0x2B96 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x824 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x82D PUSH2 0x1591 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x83B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x856 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x851 SWAP2 SWAP1 PUSH2 0x30F0 JUMP JUMPDEST PUSH2 0x15B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x863 SWAP2 SWAP1 PUSH2 0x29CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x878 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x893 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x88E SWAP2 SWAP1 PUSH2 0x2A45 JUMP JUMPDEST PUSH2 0x164A JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH32 0xC21B8F2800000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x908 JUMPI POP PUSH2 0x907 DUP3 PUSH2 0x16CD JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x917 PUSH2 0x1737 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x986 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x97D SWAP1 PUSH2 0x317C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xA PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xE DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x536F6F6E616E54736F6F724E4654000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA12 DUP3 PUSH2 0x17B5 JUMP JUMPDEST PUSH2 0xA51 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA48 SWAP1 PUSH2 0x320E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA97 DUP3 PUSH2 0xEBA JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB07 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFE SWAP1 PUSH2 0x32A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB26 PUSH2 0x1821 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xB55 JUMPI POP PUSH2 0xB54 DUP2 PUSH2 0xB4F PUSH2 0x1821 JUMP JUMPDEST PUSH2 0x15B6 JUMP JUMPDEST JUMPDEST PUSH2 0xB94 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB8B SWAP1 PUSH2 0x330C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB9E DUP4 DUP4 PUSH2 0x1829 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0xBE8 PUSH2 0xBE2 PUSH2 0x1821 JUMP JUMPDEST DUP3 PUSH2 0x18E2 JUMP JUMPDEST PUSH2 0xC27 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC1E SWAP1 PUSH2 0x3378 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xC32 DUP4 DUP4 DUP4 PUSH2 0x19C0 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1388 DUP2 JUMP JUMPDEST PUSH2 0xC45 PUSH2 0x1737 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SELFBALANCE PUSH1 0x40 MLOAD PUSH2 0xC6B SWAP1 PUSH2 0x33C9 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xCA8 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xCAD JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xCBB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0xCD9 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1398 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xCE6 PUSH2 0x1737 JUMP JUMPDEST DUP2 DUP2 PUSH1 0x9 SWAP2 DUP3 PUSH2 0xCF7 SWAP3 SWAP2 SWAP1 PUSH2 0x35EB JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xD04 PUSH2 0x1737 JUMP JUMPDEST DUP1 PUSH1 0x6 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0xD16 PUSH2 0x1737 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xD40 JUMPI PUSH2 0xD2D DUP4 PUSH1 0x1 SLOAD PUSH2 0x1C5B JUMP JUMPDEST DUP1 DUP1 PUSH2 0xD38 SWAP1 PUSH2 0x36EA JUMP JUMPDEST SWAP2 POP POP PUSH2 0xD19 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xD4D PUSH2 0x1737 JUMP JUMPDEST DUP1 PUSH1 0x7 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 PUSH2 0xD72 PUSH2 0x1737 JUMP JUMPDEST DUP2 DUP2 PUSH1 0x8 SWAP2 DUP3 PUSH2 0xD83 SWAP3 SWAP2 SWAP1 PUSH2 0x35EB JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0xD95 DUP4 PUSH2 0xF6B JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xDAE JUMPI PUSH2 0xDAD PUSH2 0x2F42 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xDDC JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 PUSH2 0xDEA DUP5 PUSH2 0xF6B JUMP JUMPDEST SUB PUSH2 0xDF8 JUMPI DUP1 SWAP2 POP POP PUSH2 0xEB5 JUMP JUMPDEST PUSH1 0x0 DUP1 JUMPDEST PUSH1 0x1 SLOAD DUP2 LT ISZERO PUSH2 0xEAE JUMPI DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xE9B JUMPI DUP1 DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xE80 JUMPI PUSH2 0xE7F PUSH2 0x3732 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP2 DUP1 PUSH2 0xE97 SWAP1 PUSH2 0x36EA JUMP JUMPDEST SWAP3 POP POP JUMPDEST DUP1 DUP1 PUSH2 0xEA6 SWAP1 PUSH2 0x36EA JUMP JUMPDEST SWAP2 POP POP PUSH2 0xDFC JUMP JUMPDEST POP DUP2 SWAP3 POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xF62 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF59 SWAP1 PUSH2 0x37AD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xFDB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFD2 SWAP1 PUSH2 0x3819 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x102A PUSH2 0x1737 JUMP JUMPDEST PUSH2 0x1034 PUSH1 0x0 PUSH2 0x1CC4 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0xA PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH2 0x1064 PUSH2 0x1737 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x1089 PUSH2 0x1737 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x10F8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10EF SWAP1 PUSH2 0x317C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB CALLER DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x114E SWAP2 SWAP1 PUSH2 0x2B96 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x116B 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 0x118F SWAP2 SWAP1 PUSH2 0x384E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11AC SWAP3 SWAP2 SWAP1 PUSH2 0x387B JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x11CB 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 0x11EF SWAP2 SWAP1 PUSH2 0x38B9 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x534E535200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0xA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0xA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x12BB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12B2 SWAP1 PUSH2 0x3932 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 GT PUSH2 0x12FE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12F5 SWAP1 PUSH2 0x399E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1314 DUP2 PUSH1 0x6 SLOAD PUSH2 0x130F SWAP2 SWAP1 PUSH2 0x39BE JUMP JUMPDEST PUSH2 0x1D88 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x133E JUMPI PUSH2 0x132B CALLER PUSH1 0x1 SLOAD PUSH2 0x1C5B JUMP JUMPDEST DUP1 DUP1 PUSH2 0x1336 SWAP1 PUSH2 0x36EA JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1317 JUMP JUMPDEST POP PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x135D JUMPI PUSH2 0x135C PUSH2 0x1F48 JUMP JUMPDEST JUMPDEST POP JUMP JUMPDEST PUSH2 0x1372 PUSH2 0x136B PUSH2 0x1821 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x222A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH4 0x150B7A02 PUSH1 0xE0 SHL SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x13A9 PUSH2 0x13A3 PUSH2 0x1821 JUMP JUMPDEST DUP4 PUSH2 0x18E2 JUMP JUMPDEST PUSH2 0x13E8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13DF SWAP1 PUSH2 0x3378 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x13F4 DUP5 DUP5 DUP5 DUP5 PUSH2 0x2396 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1405 DUP3 PUSH2 0x17B5 JUMP JUMPDEST PUSH2 0x1444 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x143B SWAP1 PUSH2 0x3A4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x8 PUSH2 0x1451 DUP5 PUSH2 0x23F2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1462 SWAP3 SWAP2 SWAP1 PUSH2 0x3B2B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP1 POP DUP1 PUSH1 0x9 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1487 SWAP3 SWAP2 SWAP1 PUSH2 0x3B4F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x14A6 PUSH2 0x1737 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1515 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x150C SWAP1 PUSH2 0x317C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xB PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x1561 PUSH2 0x1737 JUMP JUMPDEST PUSH2 0x1569 PUSH2 0x1F48 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH2 0x1599 PUSH2 0x1737 JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1652 PUSH2 0x1737 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x16C1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16B8 SWAP1 PUSH2 0x3BE5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x16CA DUP2 PUSH2 0x1CC4 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x173F PUSH2 0x1821 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x175D PUSH2 0x11F3 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x17B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17AA SWAP1 PUSH2 0x3C51 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x189C DUP4 PUSH2 0xEBA JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18ED DUP3 PUSH2 0x17B5 JUMP JUMPDEST PUSH2 0x192C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1923 SWAP1 PUSH2 0x3CBD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1937 DUP4 PUSH2 0xEBA JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x19A6 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x198E DUP5 PUSH2 0xA07 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0x19B7 JUMPI POP PUSH2 0x19B6 DUP2 DUP6 PUSH2 0x15B6 JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x19E0 DUP3 PUSH2 0xEBA JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1A36 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A2D SWAP1 PUSH2 0x3D29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1AA5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A9C SWAP1 PUSH2 0x3D95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1AB0 DUP5 PUSH2 0xF6B JUMP JUMPDEST GT PUSH2 0x1AF0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AE7 SWAP1 PUSH2 0x3E01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1AFB PUSH1 0x0 DUP3 PUSH2 0x1829 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1B4B SWAP2 SWAP1 PUSH2 0x3E21 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1BA2 SWAP2 SWAP1 PUSH2 0x3E55 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH2 0x1C65 DUP3 DUP3 PUSH2 0x257A JUMP JUMPDEST PUSH2 0x1C81 PUSH1 0x0 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x276E JUMP JUMPDEST PUSH2 0x1CC0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1CB7 SWAP1 PUSH2 0x3EFB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP 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 DUP1 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xDD62ED3E CALLER ADDRESS PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1DE4 SWAP3 SWAP2 SWAP1 PUSH2 0x3F1B JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1E01 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 0x1E25 SWAP2 SWAP1 PUSH2 0x384E JUMP JUMPDEST LT ISZERO PUSH2 0x1E66 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E5D SWAP1 PUSH2 0x3F90 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP5 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1EC3 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3FB0 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1EE2 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 0x1F06 SWAP2 SWAP1 PUSH2 0x38B9 JUMP JUMPDEST PUSH2 0x1F45 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3C SWAP1 PUSH2 0x4033 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1FA5 SWAP2 SWAP1 PUSH2 0x2B96 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1FC2 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 0x1FE6 SWAP2 SWAP1 PUSH2 0x384E JUMP JUMPDEST PUSH2 0x1FF0 SWAP2 SWAP1 PUSH2 0x4082 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT ISZERO PUSH2 0x20BD JUMPI PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0xA PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2078 SWAP3 SWAP2 SWAP1 PUSH2 0x387B JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2097 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 0x20BB SWAP2 SWAP1 PUSH2 0x38B9 JUMP JUMPDEST POP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2118 SWAP2 SWAP1 PUSH2 0x2B96 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2135 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 0x2159 SWAP2 SWAP1 PUSH2 0x384E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT ISZERO PUSH2 0x2226 JUMPI PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x21E1 SWAP3 SWAP2 SWAP1 PUSH2 0x387B JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2200 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 0x2224 SWAP2 SWAP1 PUSH2 0x38B9 JUMP JUMPDEST POP JUMPDEST POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2298 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x228F SWAP1 PUSH2 0x40FF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x2389 SWAP2 SWAP1 PUSH2 0x29CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x23A1 DUP5 DUP5 DUP5 PUSH2 0x19C0 JUMP JUMPDEST PUSH2 0x23AD DUP5 DUP5 DUP5 DUP5 PUSH2 0x276E JUMP JUMPDEST PUSH2 0x23EC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x23E3 SWAP1 PUSH2 0x4191 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 SUB PUSH2 0x2439 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x2575 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x246B JUMPI DUP1 DUP1 PUSH2 0x2454 SWAP1 PUSH2 0x36EA JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x2464 SWAP2 SWAP1 PUSH2 0x4082 JUMP JUMPDEST SWAP2 POP PUSH2 0x2441 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2487 JUMPI PUSH2 0x2486 PUSH2 0x2F42 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x24B9 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP3 SWAP1 POP JUMPDEST PUSH1 0x0 DUP7 EQ PUSH2 0x256D JUMPI PUSH1 0x1 DUP2 PUSH2 0x24D7 SWAP2 SWAP1 PUSH2 0x3E21 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0xA DUP1 DUP9 PUSH2 0x24E9 SWAP2 SWAP1 PUSH2 0x4082 JUMP JUMPDEST PUSH2 0x24F3 SWAP2 SWAP1 PUSH2 0x39BE JUMP JUMPDEST DUP8 PUSH2 0x24FE SWAP2 SWAP1 PUSH2 0x3E21 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x250A SWAP2 SWAP1 PUSH2 0x41BE JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0xF8 SHL SWAP1 POP DUP1 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x2528 JUMPI PUSH2 0x2527 PUSH2 0x3732 JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP9 PUSH2 0x2564 SWAP2 SWAP1 PUSH2 0x4082 JUMP JUMPDEST SWAP8 POP POP POP PUSH2 0x24C2 JUMP JUMPDEST DUP2 SWAP5 POP POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2583 DUP2 PUSH2 0x17B5 JUMP JUMPDEST ISZERO PUSH2 0x25C3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x25BA SWAP1 PUSH2 0x423F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1388 PUSH1 0x1 SLOAD LT PUSH2 0x2609 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2600 SWAP1 PUSH2 0x42AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2659 SWAP2 SWAP1 PUSH2 0x3E55 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x26C5 SWAP1 PUSH2 0x36EA JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP PUSH2 0x9C4 PUSH1 0x1 SLOAD EQ DUP1 PUSH2 0x26DF JUMPI POP PUSH2 0x1388 PUSH1 0x1 SLOAD EQ JUMPDEST DUP1 PUSH2 0x26ED JUMPI POP PUSH2 0x1D4C PUSH1 0x1 SLOAD EQ JUMPDEST ISZERO PUSH2 0x270E JUMPI PUSH1 0x0 PUSH1 0xA PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMPDEST DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x278F DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x28F5 JUMP JUMPDEST ISZERO PUSH2 0x28E8 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x27B8 PUSH2 0x1821 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x27DA SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4320 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2816 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2813 SWAP2 SWAP1 PUSH2 0x4381 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2898 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x2846 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x284B JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0x2890 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2887 SWAP1 PUSH2 0x4191 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP PUSH2 0x28ED JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2961 DUP2 PUSH2 0x292C JUMP JUMPDEST DUP2 EQ PUSH2 0x296C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x297E DUP2 PUSH2 0x2958 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x299A JUMPI PUSH2 0x2999 PUSH2 0x2922 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x29A8 DUP5 DUP3 DUP6 ADD PUSH2 0x296F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x29C6 DUP2 PUSH2 0x29B1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x29E1 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x29BD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A12 DUP3 PUSH2 0x29E7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2A22 DUP2 PUSH2 0x2A07 JUMP JUMPDEST DUP2 EQ PUSH2 0x2A2D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2A3F DUP2 PUSH2 0x2A19 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2A5B JUMPI PUSH2 0x2A5A PUSH2 0x2922 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2A69 DUP5 DUP3 DUP6 ADD PUSH2 0x2A30 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2AAC JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2A91 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2AD4 DUP3 PUSH2 0x2A72 JUMP JUMPDEST PUSH2 0x2ADE DUP2 DUP6 PUSH2 0x2A7D JUMP JUMPDEST SWAP4 POP PUSH2 0x2AEE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2A8E JUMP JUMPDEST PUSH2 0x2AF7 DUP2 PUSH2 0x2AB8 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2B1C DUP2 DUP5 PUSH2 0x2AC9 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2B37 DUP2 PUSH2 0x2B24 JUMP JUMPDEST DUP2 EQ PUSH2 0x2B42 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2B54 DUP2 PUSH2 0x2B2E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2B70 JUMPI PUSH2 0x2B6F PUSH2 0x2922 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2B7E DUP5 DUP3 DUP6 ADD PUSH2 0x2B45 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2B90 DUP2 PUSH2 0x2A07 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2BAB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2B87 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2BC8 JUMPI PUSH2 0x2BC7 PUSH2 0x2922 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2BD6 DUP6 DUP3 DUP7 ADD PUSH2 0x2A30 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2BE7 DUP6 DUP3 DUP7 ADD PUSH2 0x2B45 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x2BFA DUP2 PUSH2 0x2B24 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2C15 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2BF1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C40 PUSH2 0x2C3B PUSH2 0x2C36 DUP5 PUSH2 0x29E7 JUMP JUMPDEST PUSH2 0x2C1B JUMP JUMPDEST PUSH2 0x29E7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C52 DUP3 PUSH2 0x2C25 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C64 DUP3 PUSH2 0x2C47 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2C74 DUP2 PUSH2 0x2C59 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2C8F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2C6B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2CAE JUMPI PUSH2 0x2CAD PUSH2 0x2922 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2CBC DUP7 DUP3 DUP8 ADD PUSH2 0x2A30 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x2CCD DUP7 DUP3 DUP8 ADD PUSH2 0x2A30 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x2CDE DUP7 DUP3 DUP8 ADD PUSH2 0x2B45 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2D0D JUMPI PUSH2 0x2D0C PUSH2 0x2CE8 JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2D2A JUMPI PUSH2 0x2D29 PUSH2 0x2CED JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x2D46 JUMPI PUSH2 0x2D45 PUSH2 0x2CF2 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D64 JUMPI PUSH2 0x2D63 PUSH2 0x2922 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2D82 JUMPI PUSH2 0x2D81 PUSH2 0x2927 JUMP JUMPDEST JUMPDEST PUSH2 0x2D8E DUP6 DUP3 DUP7 ADD PUSH2 0x2CF7 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x2DA3 DUP2 PUSH2 0x29B1 JUMP JUMPDEST DUP2 EQ PUSH2 0x2DAE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2DC0 DUP2 PUSH2 0x2D9A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2DDC JUMPI PUSH2 0x2DDB PUSH2 0x2922 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2DEA DUP5 DUP3 DUP6 ADD PUSH2 0x2DB1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2E28 DUP2 PUSH2 0x2B24 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E3A DUP4 DUP4 PUSH2 0x2E1F JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E5E DUP3 PUSH2 0x2DF3 JUMP JUMPDEST PUSH2 0x2E68 DUP2 DUP6 PUSH2 0x2DFE JUMP JUMPDEST SWAP4 POP PUSH2 0x2E73 DUP4 PUSH2 0x2E0F JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2EA4 JUMPI DUP2 MLOAD PUSH2 0x2E8B DUP9 DUP3 PUSH2 0x2E2E JUMP JUMPDEST SWAP8 POP PUSH2 0x2E96 DUP4 PUSH2 0x2E46 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2E77 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2ECB DUP2 DUP5 PUSH2 0x2E53 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2EEA JUMPI PUSH2 0x2EE9 PUSH2 0x2922 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2EF8 DUP6 DUP3 DUP7 ADD PUSH2 0x2A30 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2F09 DUP6 DUP3 DUP7 ADD PUSH2 0x2DB1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x2F1C DUP2 PUSH2 0x292C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2F37 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2F13 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x2F7A DUP3 PUSH2 0x2AB8 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2F99 JUMPI PUSH2 0x2F98 PUSH2 0x2F42 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FAC PUSH2 0x2918 JUMP JUMPDEST SWAP1 POP PUSH2 0x2FB8 DUP3 DUP3 PUSH2 0x2F71 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2FD8 JUMPI PUSH2 0x2FD7 PUSH2 0x2F42 JUMP JUMPDEST JUMPDEST PUSH2 0x2FE1 DUP3 PUSH2 0x2AB8 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3010 PUSH2 0x300B DUP5 PUSH2 0x2FBD JUMP JUMPDEST PUSH2 0x2FA2 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x302C JUMPI PUSH2 0x302B PUSH2 0x2F3D JUMP JUMPDEST JUMPDEST PUSH2 0x3037 DUP5 DUP3 DUP6 PUSH2 0x2FEE JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3054 JUMPI PUSH2 0x3053 PUSH2 0x2CE8 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3064 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2FFD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x3087 JUMPI PUSH2 0x3086 PUSH2 0x2922 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3095 DUP8 DUP3 DUP9 ADD PUSH2 0x2A30 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x30A6 DUP8 DUP3 DUP9 ADD PUSH2 0x2A30 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x30B7 DUP8 DUP3 DUP9 ADD PUSH2 0x2B45 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x30D8 JUMPI PUSH2 0x30D7 PUSH2 0x2927 JUMP JUMPDEST JUMPDEST PUSH2 0x30E4 DUP8 DUP3 DUP9 ADD PUSH2 0x303F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3107 JUMPI PUSH2 0x3106 PUSH2 0x2922 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3115 DUP6 DUP3 DUP7 ADD PUSH2 0x2A30 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3126 DUP6 DUP3 DUP7 ADD PUSH2 0x2A30 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x5A65726F20416464726573730000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3166 PUSH1 0xC DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x3171 DUP3 PUSH2 0x3130 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3195 DUP2 PUSH2 0x3159 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20717565727920666F72206E6F6E6578697374656E7420746F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6B656E0000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31F8 PUSH1 0x23 DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x3203 DUP3 PUSH2 0x319C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3227 DUP2 PUSH2 0x31EB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x328A PUSH1 0x21 DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x3295 DUP3 PUSH2 0x322E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x32B9 DUP2 PUSH2 0x327D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A206E6F7420617070726F766564206F72206F776E6572000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32F6 PUSH1 0x1D DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x3301 DUP3 PUSH2 0x32C0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3325 DUP2 PUSH2 0x32E9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x63616C6C6572206E6F74206F776E6572206E6F7220617070726F766564000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3362 PUSH1 0x1D DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x336D DUP3 PUSH2 0x332C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3391 DUP2 PUSH2 0x3355 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33B3 PUSH1 0x0 DUP4 PUSH2 0x3398 JUMP JUMPDEST SWAP2 POP PUSH2 0x33BE DUP3 PUSH2 0x33A3 JUMP JUMPDEST PUSH1 0x0 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33D4 DUP3 PUSH2 0x33A6 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x3430 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x3443 JUMPI PUSH2 0x3442 PUSH2 0x33E9 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0x34AB PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x346E JUMP JUMPDEST PUSH2 0x34B5 DUP7 DUP4 PUSH2 0x346E JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34E8 PUSH2 0x34E3 PUSH2 0x34DE DUP5 PUSH2 0x2B24 JUMP JUMPDEST PUSH2 0x2C1B JUMP JUMPDEST PUSH2 0x2B24 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3502 DUP4 PUSH2 0x34CD JUMP JUMPDEST PUSH2 0x3516 PUSH2 0x350E DUP3 PUSH2 0x34EF JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x347B JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x352B PUSH2 0x351E JUMP JUMPDEST PUSH2 0x3536 DUP2 DUP5 DUP5 PUSH2 0x34F9 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x355A JUMPI PUSH2 0x354F PUSH1 0x0 DUP3 PUSH2 0x3523 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x353C JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x359F JUMPI PUSH2 0x3570 DUP2 PUSH2 0x3449 JUMP JUMPDEST PUSH2 0x3579 DUP5 PUSH2 0x345E JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x3588 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x359C PUSH2 0x3594 DUP6 PUSH2 0x345E JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x353B JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35C2 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x35A4 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35DB DUP4 DUP4 PUSH2 0x35B1 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x35F5 DUP4 DUP4 PUSH2 0x33DE JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x360E JUMPI PUSH2 0x360D PUSH2 0x2F42 JUMP JUMPDEST JUMPDEST PUSH2 0x3618 DUP3 SLOAD PUSH2 0x3418 JUMP JUMPDEST PUSH2 0x3623 DUP3 DUP3 DUP6 PUSH2 0x355E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x3652 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x3640 JUMPI DUP3 DUP8 ADD CALLDATALOAD SWAP1 POP JUMPDEST PUSH2 0x364A DUP6 DUP3 PUSH2 0x35CF JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x36B2 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x3660 DUP7 PUSH2 0x3449 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x3688 JUMPI DUP5 DUP10 ADD CALLDATALOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3663 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x36A5 JUMPI DUP5 DUP10 ADD CALLDATALOAD PUSH2 0x36A1 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x35B1 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x36F5 DUP3 PUSH2 0x2B24 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x3727 JUMPI PUSH2 0x3726 PUSH2 0x36BB JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x717565727920666F72206E6F6E6578697374656E7420746F6B656E0000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3797 PUSH1 0x1B DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x37A2 DUP3 PUSH2 0x3761 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x37C6 DUP2 PUSH2 0x378A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x717565727920666F7220746865207A65726F2061646472657373000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3803 PUSH1 0x1A DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x380E DUP3 PUSH2 0x37CD JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3832 DUP2 PUSH2 0x37F6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x3848 DUP2 PUSH2 0x2B2E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3864 JUMPI PUSH2 0x3863 PUSH2 0x2922 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3872 DUP5 DUP3 DUP6 ADD PUSH2 0x3839 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3890 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2B87 JUMP JUMPDEST PUSH2 0x389D PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2BF1 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x38B3 DUP2 PUSH2 0x2D9A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x38CF JUMPI PUSH2 0x38CE PUSH2 0x2922 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x38DD DUP5 DUP3 DUP6 ADD PUSH2 0x38A4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4D696E74696E67204E6F7420456E61626C656400000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x391C PUSH1 0x13 DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x3927 DUP3 PUSH2 0x38E6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x394B DUP2 PUSH2 0x390F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C696420496E70757400000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3988 PUSH1 0xD DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x3993 DUP3 PUSH2 0x3952 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x39B7 DUP2 PUSH2 0x397B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39C9 DUP3 PUSH2 0x2B24 JUMP JUMPDEST SWAP2 POP PUSH2 0x39D4 DUP4 PUSH2 0x2B24 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x39E2 DUP2 PUSH2 0x2B24 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x39F9 JUMPI PUSH2 0x39F8 PUSH2 0x36BB JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x6E6F6E6578697374656E7420746F6B656E000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A36 PUSH1 0x11 DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x3A41 DUP3 PUSH2 0x3A00 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3A65 DUP2 PUSH2 0x3A29 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SLOAD PUSH2 0x3A84 DUP2 PUSH2 0x3418 JUMP JUMPDEST PUSH2 0x3A8E DUP2 DUP7 PUSH2 0x3A6C JUMP JUMPDEST SWAP5 POP PUSH1 0x1 DUP3 AND PUSH1 0x0 DUP2 EQ PUSH2 0x3AA9 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x3ABE JUMPI PUSH2 0x3AF1 JUMP JUMPDEST PUSH1 0xFF NOT DUP4 AND DUP7 MSTORE DUP2 ISZERO ISZERO DUP3 MUL DUP7 ADD SWAP4 POP PUSH2 0x3AF1 JUMP JUMPDEST PUSH2 0x3AC7 DUP6 PUSH2 0x3449 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3AE9 JUMPI DUP2 SLOAD DUP2 DUP10 ADD MSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3ACA JUMP JUMPDEST DUP4 DUP9 ADD SWAP6 POP POP POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B05 DUP3 PUSH2 0x2A72 JUMP JUMPDEST PUSH2 0x3B0F DUP2 DUP6 PUSH2 0x3A6C JUMP JUMPDEST SWAP4 POP PUSH2 0x3B1F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2A8E JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B37 DUP3 DUP6 PUSH2 0x3A77 JUMP JUMPDEST SWAP2 POP PUSH2 0x3B43 DUP3 DUP5 PUSH2 0x3AFA JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B5B DUP3 DUP6 PUSH2 0x3AFA JUMP JUMPDEST SWAP2 POP PUSH2 0x3B67 DUP3 DUP5 PUSH2 0x3A77 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BCF PUSH1 0x26 DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x3BDA DUP3 PUSH2 0x3B73 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3BFE DUP2 PUSH2 0x3BC2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C3B PUSH1 0x20 DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x3C46 DUP3 PUSH2 0x3C05 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3C6A DUP2 PUSH2 0x3C2E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A206E6F6E6578697374656E7420746F6B656E00000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3CA7 PUSH1 0x19 DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x3CB2 DUP3 PUSH2 0x3C71 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3CD6 DUP2 PUSH2 0x3C9A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E636F7272656374206F776E65720000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D13 PUSH1 0xF DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x3D1E DUP3 PUSH2 0x3CDD JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3D42 DUP2 PUSH2 0x3D06 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x7A65726F20616464726573730000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D7F PUSH1 0xC DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x3D8A DUP3 PUSH2 0x3D49 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3DAE DUP2 PUSH2 0x3D72 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5A65726F2042616C616E63650000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DEB PUSH1 0xC DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x3DF6 DUP3 PUSH2 0x3DB5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3E1A DUP2 PUSH2 0x3DDE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E2C DUP3 PUSH2 0x2B24 JUMP JUMPDEST SWAP2 POP PUSH2 0x3E37 DUP4 PUSH2 0x2B24 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x3E4F JUMPI PUSH2 0x3E4E PUSH2 0x36BB JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E60 DUP3 PUSH2 0x2B24 JUMP JUMPDEST SWAP2 POP PUSH2 0x3E6B DUP4 PUSH2 0x2B24 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x3E83 JUMPI PUSH2 0x3E82 PUSH2 0x36BB JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3EE5 PUSH1 0x32 DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x3EF0 DUP3 PUSH2 0x3E89 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3F14 DUP2 PUSH2 0x3ED8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3F30 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2B87 JUMP JUMPDEST PUSH2 0x3F3D PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2B87 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x496E73756666696369656E7420416C6C6F77616E636500000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F7A PUSH1 0x16 DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x3F85 DUP3 PUSH2 0x3F44 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3FA9 DUP2 PUSH2 0x3F6D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3FC5 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x2B87 JUMP JUMPDEST PUSH2 0x3FD2 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x2B87 JUMP JUMPDEST PUSH2 0x3FDF PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2BF1 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4661696C757265205472616E736665722046726F6D0000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x401D PUSH1 0x15 DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x4028 DUP3 PUSH2 0x3FE7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x404C DUP2 PUSH2 0x4010 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x408D DUP3 PUSH2 0x2B24 JUMP JUMPDEST SWAP2 POP PUSH2 0x4098 DUP4 PUSH2 0x2B24 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x40A8 JUMPI PUSH2 0x40A7 PUSH2 0x4053 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x40E9 PUSH1 0x19 DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x40F4 DUP3 PUSH2 0x40B3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4118 DUP2 PUSH2 0x40DC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A206E6F6E20455243373231526563656976657220696D706C65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6D656E7465720000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x417B PUSH1 0x26 DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x4186 DUP3 PUSH2 0x411F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x41AA DUP2 PUSH2 0x416E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x41C9 DUP3 PUSH2 0x41B1 JUMP JUMPDEST SWAP2 POP PUSH2 0x41D4 DUP4 PUSH2 0x41B1 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x41ED JUMPI PUSH2 0x41EC PUSH2 0x36BB JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4229 PUSH1 0x1C DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x4234 DUP3 PUSH2 0x41F3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4258 DUP2 PUSH2 0x421C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x416C6C204E4654732048617665204265656E204D696E74656400000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4295 PUSH1 0x19 DUP4 PUSH2 0x2A7D JUMP JUMPDEST SWAP2 POP PUSH2 0x42A0 DUP3 PUSH2 0x425F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x42C4 DUP2 PUSH2 0x4288 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42F2 DUP3 PUSH2 0x42CB JUMP JUMPDEST PUSH2 0x42FC DUP2 DUP6 PUSH2 0x42D6 JUMP JUMPDEST SWAP4 POP PUSH2 0x430C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2A8E JUMP JUMPDEST PUSH2 0x4315 DUP2 PUSH2 0x2AB8 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x4335 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x2B87 JUMP JUMPDEST PUSH2 0x4342 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x2B87 JUMP JUMPDEST PUSH2 0x434F PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x2BF1 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x4361 DUP2 DUP5 PUSH2 0x42E7 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x437B DUP2 PUSH2 0x2958 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4397 JUMPI PUSH2 0x4396 PUSH2 0x2922 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x43A5 DUP5 DUP3 DUP6 ADD PUSH2 0x436C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH6 0xCA6C3C67AB2A 0x26 0xDB JUMP PC 0xCE LOG1 POP SWAP3 0x4E 0xB4 GASLIMIT SMOD 0x4D SWAP3 0xEE 0xBC BYTE 0xDD PUSH26 0x1F44F6A4365364736F6C63430008110033000000000000000000 ",
"sourceMap": "1456:16858:0:-:0;;;2312:10;2290:32;;2409:4;2380:33;;;;;;;;;;;;;;;;;;;;2436:30;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2472:31;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2561:5;2532:34;;;;;;;;;;;;;;;;;;;;2683:42;2653:72;;;;;;;;;;;;;;;;;;;;2784:42;2754:72;;;;;;;;;;;;;;;;;;;;3104:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;936:32:1;955:12;:10;;;:12;;:::i;:::-;936:18;;;:32;;:::i;:::-;3159:4:0;3140:24;;;;;;;;;;3104:67;1456:16858;;640:96:4;693:7;719:10;712:17;;640:96;:::o;2433:187:1:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;7:99:12:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:180::-;160:77;157:1;150:88;257:4;254:1;247:15;281:4;278:1;271:15;298:180;346:77;343:1;336:88;443:4;440:1;433:15;467:4;464:1;457:15;484:320;528:6;565:1;559:4;555:12;545:22;;612:1;606:4;602:12;633:18;623:81;;689:4;681:6;677:17;667:27;;623:81;751:2;743:6;740:14;720:18;717:38;714:84;;770:18;;:::i;:::-;714:84;535:269;484:320;;;:::o;810:141::-;859:4;882:3;874:11;;905:3;902:1;895:14;939:4;936:1;926:18;918:26;;810:141;;;:::o;957:93::-;994:6;1041:2;1036;1029:5;1025:14;1021:23;1011:33;;957:93;;;:::o;1056:107::-;1100:8;1150:5;1144:4;1140:16;1119:37;;1056:107;;;;:::o;1169:393::-;1238:6;1288:1;1276:10;1272:18;1311:97;1341:66;1330:9;1311:97;:::i;:::-;1429:39;1459:8;1448:9;1429:39;:::i;:::-;1417:51;;1501:4;1497:9;1490:5;1486:21;1477:30;;1550:4;1540:8;1536:19;1529:5;1526:30;1516:40;;1245:317;;1169:393;;;;;:::o;1568:77::-;1605:7;1634:5;1623:16;;1568:77;;;:::o;1651:60::-;1679:3;1700:5;1693:12;;1651:60;;;:::o;1717:142::-;1767:9;1800:53;1818:34;1827:24;1845:5;1827:24;:::i;:::-;1818:34;:::i;:::-;1800:53;:::i;:::-;1787:66;;1717:142;;;:::o;1865:75::-;1908:3;1929:5;1922:12;;1865:75;;;:::o;1946:269::-;2056:39;2087:7;2056:39;:::i;:::-;2117:91;2166:41;2190:16;2166:41;:::i;:::-;2158:6;2151:4;2145:11;2117:91;:::i;:::-;2111:4;2104:105;2022:193;1946:269;;;:::o;2221:73::-;2266:3;2221:73;:::o;2300:189::-;2377:32;;:::i;:::-;2418:65;2476:6;2468;2462:4;2418:65;:::i;:::-;2353:136;2300:189;;:::o;2495:186::-;2555:120;2572:3;2565:5;2562:14;2555:120;;;2626:39;2663:1;2656:5;2626:39;:::i;:::-;2599:1;2592:5;2588:13;2579:22;;2555:120;;;2495:186;;:::o;2687:543::-;2788:2;2783:3;2780:11;2777:446;;;2822:38;2854:5;2822:38;:::i;:::-;2906:29;2924:10;2906:29;:::i;:::-;2896:8;2892:44;3089:2;3077:10;3074:18;3071:49;;;3110:8;3095:23;;3071:49;3133:80;3189:22;3207:3;3189:22;:::i;:::-;3179:8;3175:37;3162:11;3133:80;:::i;:::-;2792:431;;2777:446;2687:543;;;:::o;3236:117::-;3290:8;3340:5;3334:4;3330:16;3309:37;;3236:117;;;;:::o;3359:169::-;3403:6;3436:51;3484:1;3480:6;3472:5;3469:1;3465:13;3436:51;:::i;:::-;3432:56;3517:4;3511;3507:15;3497:25;;3410:118;3359:169;;;;:::o;3533:295::-;3609:4;3755:29;3780:3;3774:4;3755:29;:::i;:::-;3747:37;;3817:3;3814:1;3810:11;3804:4;3801:21;3793:29;;3533:295;;;;:::o;3833:1395::-;3950:37;3983:3;3950:37;:::i;:::-;4052:18;4044:6;4041:30;4038:56;;;4074:18;;:::i;:::-;4038:56;4118:38;4150:4;4144:11;4118:38;:::i;:::-;4203:67;4263:6;4255;4249:4;4203:67;:::i;:::-;4297:1;4321:4;4308:17;;4353:2;4345:6;4342:14;4370:1;4365:618;;;;5027:1;5044:6;5041:77;;;5093:9;5088:3;5084:19;5078:26;5069:35;;5041:77;5144:67;5204:6;5197:5;5144:67;:::i;:::-;5138:4;5131:81;5000:222;4335:887;;4365:618;4417:4;4413:9;4405:6;4401:22;4451:37;4483:4;4451:37;:::i;:::-;4510:1;4524:208;4538:7;4535:1;4532:14;4524:208;;;4617:9;4612:3;4608:19;4602:26;4594:6;4587:42;4668:1;4660:6;4656:14;4646:24;;4715:2;4704:9;4700:18;4687:31;;4561:4;4558:1;4554:12;4549:17;;4524:208;;;4760:6;4751:7;4748:19;4745:179;;;4818:9;4813:3;4809:19;4803:26;4861:48;4903:4;4895:6;4891:17;4880:9;4861:48;:::i;:::-;4853:6;4846:64;4768:156;4745:179;4970:1;4966;4958:6;4954:14;4950:22;4944:4;4937:36;4372:611;;;4335:887;;3925:1303;;;3833:1395;;:::o;5315:117::-;5424:1;5421;5414:12;5561:126;5598:7;5638:42;5631:5;5627:54;5616:65;;5561:126;;;:::o;5693:96::-;5730:7;5759:24;5777:5;5759:24;:::i;:::-;5748:35;;5693:96;;;:::o;5795:122::-;5868:24;5886:5;5868:24;:::i;:::-;5861:5;5858:35;5848:63;;5907:1;5904;5897:12;5848:63;5795:122;:::o;5923:143::-;5980:5;6011:6;6005:13;5996:22;;6027:33;6054:5;6027:33;:::i;:::-;5923:143;;;;:::o;6072:351::-;6142:6;6191:2;6179:9;6170:7;6166:23;6162:32;6159:119;;;6197:79;;:::i;:::-;6159:119;6317:1;6342:64;6398:7;6389:6;6378:9;6374:22;6342:64;:::i;:::-;6332:74;;6288:128;6072:351;;;;:::o;1456:16858:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@MAX_SUPPLY_42": {
"entryPoint": 3127,
"id": 42,
"parameterSlots": 0,
"returnSlots": 0
},
"@_375": {
"entryPoint": null,
"id": 375,
"parameterSlots": 0,
"returnSlots": 0
},
"@_approve_1206": {
"entryPoint": 6185,
"id": 1206,
"parameterSlots": 2,
"returnSlots": 0
},
"@_checkOnERC721Received_1310": {
"entryPoint": 10094,
"id": 1310,
"parameterSlots": 4,
"returnSlots": 1
},
"@_checkOwner_1366": {
"entryPoint": 5943,
"id": 1366,
"parameterSlots": 0,
"returnSlots": 0
},
"@_distribute_1083": {
"entryPoint": 8008,
"id": 1083,
"parameterSlots": 0,
"returnSlots": 0
},
"@_exists_866": {
"entryPoint": 6069,
"id": 866,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_906": {
"entryPoint": 6370,
"id": 906,
"parameterSlots": 2,
"returnSlots": 1
},
"@_mint_998": {
"entryPoint": 9594,
"id": 998,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_1844": {
"entryPoint": 6177,
"id": 1844,
"parameterSlots": 0,
"returnSlots": 1
},
"@_safeMint_933": {
"entryPoint": 7259,
"id": 933,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeTransfer_1112": {
"entryPoint": 9110,
"id": 1112,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_1238": {
"entryPoint": 8746,
"id": 1238,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transferIn_1033": {
"entryPoint": 7560,
"id": 1033,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transferOwnership_1423": {
"entryPoint": 7364,
"id": 1423,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_1183": {
"entryPoint": 6592,
"id": 1183,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_417": {
"entryPoint": 2700,
"id": 417,
"parameterSlots": 2,
"returnSlots": 0
},
"@autoDistribute_70": {
"entryPoint": 4982,
"id": 70,
"parameterSlots": 0,
"returnSlots": 0
},
"@balanceOf_630": {
"entryPoint": 3947,
"id": 630,
"parameterSlots": 1,
"returnSlots": 1
},
"@cost_67": {
"entryPoint": 2979,
"id": 67,
"parameterSlots": 0,
"returnSlots": 0
},
"@disableMinting_132": {
"entryPoint": 4188,
"id": 132,
"parameterSlots": 0,
"returnSlots": 0
},
"@distribute_168": {
"entryPoint": 5465,
"id": 168,
"parameterSlots": 0,
"returnSlots": 0
},
"@enableMinting_122": {
"entryPoint": 5521,
"id": 122,
"parameterSlots": 0,
"returnSlots": 0
},
"@getApproved_830": {
"entryPoint": 2567,
"id": 830,
"parameterSlots": 1,
"returnSlots": 1
},
"@getIDsByOwner_582": {
"entryPoint": 3464,
"id": 582,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_848": {
"entryPoint": 5558,
"id": 848,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1520": {
"entryPoint": 10485,
"id": 1520,
"parameterSlots": 1,
"returnSlots": 1
},
"@mintToken_82": {
"entryPoint": 2995,
"id": 82,
"parameterSlots": 0,
"returnSlots": 0
},
"@mint_371": {
"entryPoint": 4716,
"id": 371,
"parameterSlots": 1,
"returnSlots": 0
},
"@mintingEnabled_79": {
"entryPoint": 4697,
"id": 79,
"parameterSlots": 0,
"returnSlots": 0
},
"@name_668": {
"entryPoint": 2506,
"id": 668,
"parameterSlots": 0,
"returnSlots": 1
},
"@onReceivedRetval_1248": {
"entryPoint": 5001,
"id": 1248,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerMint_266": {
"entryPoint": 3342,
"id": 266,
"parameterSlots": 2,
"returnSlots": 0
},
"@ownerOf_658": {
"entryPoint": 3770,
"id": 658,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_1352": {
"entryPoint": 4595,
"id": 1352,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_1380": {
"entryPoint": 4130,
"id": 1380,
"parameterSlots": 0,
"returnSlots": 0
},
"@safeTransferFrom_480": {
"entryPoint": 3262,
"id": 480,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_510": {
"entryPoint": 5016,
"id": 510,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_434": {
"entryPoint": 4960,
"id": 434,
"parameterSlots": 2,
"returnSlots": 0
},
"@setAutoDistribute_278": {
"entryPoint": 3397,
"id": 278,
"parameterSlots": 1,
"returnSlots": 0
},
"@setBaseURI_227": {
"entryPoint": 3434,
"id": 227,
"parameterSlots": 2,
"returnSlots": 0
},
"@setCost_215": {
"entryPoint": 3324,
"id": 215,
"parameterSlots": 1,
"returnSlots": 0
},
"@setTeamWalletW2_300": {
"entryPoint": 2319,
"id": 300,
"parameterSlots": 1,
"returnSlots": 0
},
"@setTeamWalletW3_322": {
"entryPoint": 5278,
"id": 322,
"parameterSlots": 1,
"returnSlots": 0
},
"@setURIExtention_239": {
"entryPoint": 3294,
"id": 239,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_2106": {
"entryPoint": 5837,
"id": 2106,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_606": {
"entryPoint": 2197,
"id": 606,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_678": {
"entryPoint": 4636,
"id": 678,
"parameterSlots": 0,
"returnSlots": 1
},
"@teamWalletW2_85": {
"entryPoint": 4150,
"id": 85,
"parameterSlots": 0,
"returnSlots": 0
},
"@teamWalletW3_88": {
"entryPoint": 5483,
"id": 88,
"parameterSlots": 0,
"returnSlots": 0
},
"@tokenURI_713": {
"entryPoint": 5114,
"id": 713,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_518": {
"entryPoint": 2985,
"id": 518,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_461": {
"entryPoint": 3031,
"id": 461,
"parameterSlots": 3,
"returnSlots": 0
},
"@transferOwnership_1403": {
"entryPoint": 5706,
"id": 1403,
"parameterSlots": 1,
"returnSlots": 0
},
"@uint2str_809": {
"entryPoint": 9202,
"id": 809,
"parameterSlots": 1,
"returnSlots": 1
},
"@withdrawToken_203": {
"entryPoint": 4225,
"id": 203,
"parameterSlots": 1,
"returnSlots": 0
},
"@withdraw_159": {
"entryPoint": 3133,
"id": 159,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 12285,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 10800,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 11697,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool_fromMemory": {
"entryPoint": 14500,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 10607,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 17260,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 12351,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_calldata_ptr": {
"entryPoint": 11511,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_t_uint256": {
"entryPoint": 11077,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256_fromMemory": {
"entryPoint": 14393,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 10821,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 12528,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 11413,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 12397,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 11987,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 11185,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bool": {
"entryPoint": 11718,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bool_fromMemory": {
"entryPoint": 14521,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 10628,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 17281,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_calldata_ptr": {
"entryPoint": 11597,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 11098,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256_fromMemory": {
"entryPoint": 14414,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encodeUpdatedPos_t_uint256_to_t_uint256": {
"entryPoint": 11822,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 11143,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack": {
"entryPoint": 11859,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 10685,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes4_to_t_bytes4_fromStack": {
"entryPoint": 12051,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 17127,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_contract$_IERC20_$1502_to_t_address_fromStack": {
"entryPoint": 11371,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10953,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 15098,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 14967,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 16088,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15298,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack": {
"entryPoint": 16924,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_2df2cea522eb083f4fe608388c41829d042d1649c23c9ee974a3942001933d39_to_t_string_memory_ptr_fromStack": {
"entryPoint": 16750,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_34bb6b9968eb6f39142948cdf218dc8c87c0f1cc11ee599759a070d37a6a1a72_to_t_string_memory_ptr_fromStack": {
"entryPoint": 16400,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_3a9974a74fc1b2245a0b9d753c25cc9a919ec15be33e2bbccd5aa3569c4ecad4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14607,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_3f0ff8cd200538bae802ddf9006bb5040e9e9ddc88045ad2938dcac06977cbf6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 16237,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 16604,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_57e9689ce6708e3a387d8fe389b341bf9d24e490c2ad2ae04d9ed03d48b4dcdc_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14218,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_596fde171685f779e1b097beb3cbd452f34cc68c0c184db949dc9c18c8f62a9c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13141,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_88848463b922b547420da91ed5c2f6fdb5047501bb1703b4042ab8f6709cd274_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12779,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_92f9e08ca9f4940db78443fe8b05b28dd97a65f97dd0cd6312a15bd070d61d04_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14889,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9404501c113e486e0697e27bc7935ec4eb29770a945d28921aff00cee17e3fed_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14715,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9900d63c9427fcfb6b03a90ee47cc883388764d25cf9e1a8e8ec89b035a96b66_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15622,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_991bbedc356ad262baaec5091f7151e134f0df3fd168385b11114cf60cb93f6d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 17032,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15406,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9ef4df38e17efa233f86f31ba1f777c86e862585794386894c50f894317da6be_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12633,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a34d5d5fb66a7aa1196581d4b63842b184b648ae201438341d04b3396c6896a9_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15514,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a4b4461cfc9c1f0249c17896b005545dc5d1690f81d2023afc517b07ed3227a7_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15730,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12925,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 13222,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_cf98e2c7e6471b55ef385f51c74c84c95477e17e5d1f536e14e06ca88c8b73f5_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13033,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d0554d5ae8360a07c8f8df1cb1543c09d727ad1b93dfed42cd29b710c635481a_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14326,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f87c2236b6f963149e9d84fc6835c6b15e021240e639a7eac3a61ec6f2c4b762_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15838,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256": {
"entryPoint": 11807,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 11249,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 15183,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_string_storage_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 15147,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 13257,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 11158,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed": {
"entryPoint": 16155,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 16304,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed": {
"entryPoint": 17184,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 14459,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
"entryPoint": 11953,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 10700,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed": {
"entryPoint": 12066,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_contract$_IERC20_$1502__to_t_address__fromStack_reversed": {
"entryPoint": 11386,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11010,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 16123,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15333,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 16959,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2df2cea522eb083f4fe608388c41829d042d1649c23c9ee974a3942001933d39__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 16785,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_34bb6b9968eb6f39142948cdf218dc8c87c0f1cc11ee599759a070d37a6a1a72__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 16435,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3a9974a74fc1b2245a0b9d753c25cc9a919ec15be33e2bbccd5aa3569c4ecad4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14642,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3f0ff8cd200538bae802ddf9006bb5040e9e9ddc88045ad2938dcac06977cbf6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 16272,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 16639,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_57e9689ce6708e3a387d8fe389b341bf9d24e490c2ad2ae04d9ed03d48b4dcdc__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14253,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_596fde171685f779e1b097beb3cbd452f34cc68c0c184db949dc9c18c8f62a9c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13176,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_88848463b922b547420da91ed5c2f6fdb5047501bb1703b4042ab8f6709cd274__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12814,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_92f9e08ca9f4940db78443fe8b05b28dd97a65f97dd0cd6312a15bd070d61d04__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14924,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9404501c113e486e0697e27bc7935ec4eb29770a945d28921aff00cee17e3fed__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14750,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9900d63c9427fcfb6b03a90ee47cc883388764d25cf9e1a8e8ec89b035a96b66__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15657,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_991bbedc356ad262baaec5091f7151e134f0df3fd168385b11114cf60cb93f6d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 17067,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15441,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9ef4df38e17efa233f86f31ba1f777c86e862585794386894c50f894317da6be__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12668,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a34d5d5fb66a7aa1196581d4b63842b184b648ae201438341d04b3396c6896a9__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15549,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a4b4461cfc9c1f0249c17896b005545dc5d1690f81d2023afc517b07ed3227a7__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15765,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12960,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_cf98e2c7e6471b55ef385f51c74c84c95477e17e5d1f536e14e06ca88c8b73f5__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13068,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d0554d5ae8360a07c8f8df1cb1543c09d727ad1b93dfed42cd29b710c635481a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14361,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f87c2236b6f963149e9d84fc6835c6b15e021240e639a7eac3a61ec6f2c4b762__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15873,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 11264,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 12194,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 10520,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 12221,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 11791,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 13385,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 11763,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 17099,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_calldata_ptr": {
"entryPoint": 13278,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 10866,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_nextElement_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 11846,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack": {
"entryPoint": 11774,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 17110,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 13208,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 10877,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 14956,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 15957,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint8": {
"entryPoint": 16830,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 16514,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 14782,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 15905,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 13662,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_address": {
"entryPoint": 10759,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 10673,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 10540,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 10727,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 11044,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 16817,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 13627,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_contract$_IERC20_$1502_to_t_address": {
"entryPoint": 11353,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_address": {
"entryPoint": 11335,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_uint160": {
"entryPoint": 11301,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 13517,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_calldata_ptr_to_t_string_storage": {
"entryPoint": 13803,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 12270,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 10894,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 13406,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 13336,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 13775,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 12145,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 11291,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 14058,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 13745,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 14011,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 16467,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 13289,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 14130,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 12098,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 13551,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490": {
"entryPoint": 11501,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 11496,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef": {
"entryPoint": 11506,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 12093,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 10535,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 10530,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 10936,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 13422,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 13732,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 13603,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 16009,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 15219,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57": {
"entryPoint": 16883,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_2df2cea522eb083f4fe608388c41829d042d1649c23c9ee974a3942001933d39": {
"entryPoint": 16671,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_34bb6b9968eb6f39142948cdf218dc8c87c0f1cc11ee599759a070d37a6a1a72": {
"entryPoint": 16359,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_3a9974a74fc1b2245a0b9d753c25cc9a919ec15be33e2bbccd5aa3569c4ecad4": {
"entryPoint": 14566,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_3f0ff8cd200538bae802ddf9006bb5040e9e9ddc88045ad2938dcac06977cbf6": {
"entryPoint": 16196,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 16563,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_57e9689ce6708e3a387d8fe389b341bf9d24e490c2ad2ae04d9ed03d48b4dcdc": {
"entryPoint": 14177,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_596fde171685f779e1b097beb3cbd452f34cc68c0c184db949dc9c18c8f62a9c": {
"entryPoint": 13100,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_88848463b922b547420da91ed5c2f6fdb5047501bb1703b4042ab8f6709cd274": {
"entryPoint": 12700,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_92f9e08ca9f4940db78443fe8b05b28dd97a65f97dd0cd6312a15bd070d61d04": {
"entryPoint": 14848,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9404501c113e486e0697e27bc7935ec4eb29770a945d28921aff00cee17e3fed": {
"entryPoint": 14674,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9900d63c9427fcfb6b03a90ee47cc883388764d25cf9e1a8e8ec89b035a96b66": {
"entryPoint": 15581,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_991bbedc356ad262baaec5091f7151e134f0df3fd168385b11114cf60cb93f6d": {
"entryPoint": 16991,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 15365,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9ef4df38e17efa233f86f31ba1f777c86e862585794386894c50f894317da6be": {
"entryPoint": 12592,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a34d5d5fb66a7aa1196581d4b63842b184b648ae201438341d04b3396c6896a9": {
"entryPoint": 15473,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a4b4461cfc9c1f0249c17896b005545dc5d1690f81d2023afc517b07ed3227a7": {
"entryPoint": 15689,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 12846,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470": {
"entryPoint": 13219,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_cf98e2c7e6471b55ef385f51c74c84c95477e17e5d1f536e14e06ca88c8b73f5": {
"entryPoint": 12992,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_d0554d5ae8360a07c8f8df1cb1543c09d727ad1b93dfed42cd29b710c635481a": {
"entryPoint": 14285,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f87c2236b6f963149e9d84fc6835c6b15e021240e639a7eac3a61ec6f2c4b762": {
"entryPoint": 15797,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 13435,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 13561,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 10777,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 11674,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 10584,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 11054,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 13598,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:52414:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:12",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:12"
},
"nodeType": "YulFunctionCall",
"src": "67:9:12"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:12"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:12",
"type": ""
}
],
"src": "7:75:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:12"
},
"nodeType": "YulFunctionCall",
"src": "187:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:12"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:12"
},
"nodeType": "YulFunctionCall",
"src": "310:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:12"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "378:105:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "388:89:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "403:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "410:66:12",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "399:3:12"
},
"nodeType": "YulFunctionCall",
"src": "399:78:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "388:7:12"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "360:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "370:7:12",
"type": ""
}
],
"src": "334:149:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "531:78:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "587:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "596:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "599:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "589:6:12"
},
"nodeType": "YulFunctionCall",
"src": "589:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "589:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "554:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "578:5:12"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "561:16:12"
},
"nodeType": "YulFunctionCall",
"src": "561:23:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "551:2:12"
},
"nodeType": "YulFunctionCall",
"src": "551:34:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "544:6:12"
},
"nodeType": "YulFunctionCall",
"src": "544:42:12"
},
"nodeType": "YulIf",
"src": "541:62:12"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "524:5:12",
"type": ""
}
],
"src": "489:120:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "666:86:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "676:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "698:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "685:12:12"
},
"nodeType": "YulFunctionCall",
"src": "685:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "676:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "740:5:12"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "714:25:12"
},
"nodeType": "YulFunctionCall",
"src": "714:32:12"
},
"nodeType": "YulExpressionStatement",
"src": "714:32:12"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "644:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "652:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "660:5:12",
"type": ""
}
],
"src": "615:137:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "823:262:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "871:77:12"
},
"nodeType": "YulFunctionCall",
"src": "871:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "871:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "844:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "853:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "840:3:12"
},
"nodeType": "YulFunctionCall",
"src": "840:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "865:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "836:3:12"
},
"nodeType": "YulFunctionCall",
"src": "836:32:12"
},
"nodeType": "YulIf",
"src": "833:119:12"
},
{
"nodeType": "YulBlock",
"src": "962:116:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "977:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "991:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "981:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1006:62:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1040:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1051:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1036:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1036:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1060:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1016:19:12"
},
"nodeType": "YulFunctionCall",
"src": "1016:52:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1006:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "793:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "804:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "816:6:12",
"type": ""
}
],
"src": "758:327:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1133:48:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1143:32:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1168:5:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1161:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1161:13:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1154:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1154:21:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1143:7:12"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1115:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1125:7:12",
"type": ""
}
],
"src": "1091:90:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1246:50:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1263:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1283:5:12"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1268:14:12"
},
"nodeType": "YulFunctionCall",
"src": "1268:21:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1256:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1256:34:12"
},
"nodeType": "YulExpressionStatement",
"src": "1256:34:12"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1234:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1241:3:12",
"type": ""
}
],
"src": "1187:109:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1394:118:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1404:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1416:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1427:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1412:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1412:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1404:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1478:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1491:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1502:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1487:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1487:17:12"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "1440:37:12"
},
"nodeType": "YulFunctionCall",
"src": "1440:65:12"
},
"nodeType": "YulExpressionStatement",
"src": "1440:65:12"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1366:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1378:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1389:4:12",
"type": ""
}
],
"src": "1302:210:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1563:81:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1573:65:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1588:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1595:42:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1584:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1584:54:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1573:7:12"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1545:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1555:7:12",
"type": ""
}
],
"src": "1518:126:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1695:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1705:35:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1734:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1716:17:12"
},
"nodeType": "YulFunctionCall",
"src": "1716:24:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1705:7:12"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1677:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1687:7:12",
"type": ""
}
],
"src": "1650:96:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1795:79:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1852:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1861:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1864:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1854:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1854:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "1854:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1818:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1843:5:12"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1825:17:12"
},
"nodeType": "YulFunctionCall",
"src": "1825:24:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1815:2:12"
},
"nodeType": "YulFunctionCall",
"src": "1815:35:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1808:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1808:43:12"
},
"nodeType": "YulIf",
"src": "1805:63:12"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1788:5:12",
"type": ""
}
],
"src": "1752:122:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1932:87:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1942:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1964:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1951:12:12"
},
"nodeType": "YulFunctionCall",
"src": "1951:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1942:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2007:5:12"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "1980:26:12"
},
"nodeType": "YulFunctionCall",
"src": "1980:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "1980:33:12"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1910:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1918:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1926:5:12",
"type": ""
}
],
"src": "1880:139:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2091:263:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2137:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2139:77:12"
},
"nodeType": "YulFunctionCall",
"src": "2139:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "2139:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2112:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2121:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2108:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2108:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2133:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2104:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2104:32:12"
},
"nodeType": "YulIf",
"src": "2101:119:12"
},
{
"nodeType": "YulBlock",
"src": "2230:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2245:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2259:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2249:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2274:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2309:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2320:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2305:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2305:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2329:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2284:20:12"
},
"nodeType": "YulFunctionCall",
"src": "2284:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2274:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2061:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2072:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2084:6:12",
"type": ""
}
],
"src": "2025:329:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2419:40:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2430:22:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2446:5:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2440:5:12"
},
"nodeType": "YulFunctionCall",
"src": "2440:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2430:6:12"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2402:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2412:6:12",
"type": ""
}
],
"src": "2360:99:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2561:73:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2578:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2583:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2571:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2571:19:12"
},
"nodeType": "YulExpressionStatement",
"src": "2571:19:12"
},
{
"nodeType": "YulAssignment",
"src": "2599:29:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2618:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2623:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2614:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2614:14:12"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2599:11:12"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2533:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2538:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2549:11:12",
"type": ""
}
],
"src": "2465:169:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2702:184:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2712:10:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2721:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "2716:1:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2781:63:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2806:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2811:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2802:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2802:11:12"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2825:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2830:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2821:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2821:11:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2815:5:12"
},
"nodeType": "YulFunctionCall",
"src": "2815:18:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2795:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2795:39:12"
},
"nodeType": "YulExpressionStatement",
"src": "2795:39:12"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2742:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2745:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2739:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2739:13:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2753:19:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2755:15:12",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2764:1:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2767:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2760:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2760:10:12"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2755:1:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2735:3:12",
"statements": []
},
"src": "2731:113:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2864:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2869:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2860:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2860:16:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2878:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2853:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2853:27:12"
},
"nodeType": "YulExpressionStatement",
"src": "2853:27:12"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2684:3:12",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2689:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2694:6:12",
"type": ""
}
],
"src": "2640:246:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2940:54:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2950:38:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2968:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2975:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2964:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2964:14:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2984:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2980:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2980:7:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2960:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2960:28:12"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "2950:6:12"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2923:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2933:6:12",
"type": ""
}
],
"src": "2892:102:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3092:285:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3102:53:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3149:5:12"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3116:32:12"
},
"nodeType": "YulFunctionCall",
"src": "3116:39:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3106:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3164:78:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3230:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3235:6:12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3171:58:12"
},
"nodeType": "YulFunctionCall",
"src": "3171:71:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3164:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3290:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3297:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3286:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3286:16:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3304:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3309:6:12"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "3251:34:12"
},
"nodeType": "YulFunctionCall",
"src": "3251:65:12"
},
"nodeType": "YulExpressionStatement",
"src": "3251:65:12"
},
{
"nodeType": "YulAssignment",
"src": "3325:46:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3336:3:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3363:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3341:21:12"
},
"nodeType": "YulFunctionCall",
"src": "3341:29:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3332:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3332:39:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3325:3:12"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3073:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3080:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3088:3:12",
"type": ""
}
],
"src": "3000:377:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3501:195:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3511:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3523:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3534:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3519:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3519:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3511:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3558:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3569:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3554:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3554:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3577:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3583:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3573:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3573:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3547:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3547:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "3547:47:12"
},
{
"nodeType": "YulAssignment",
"src": "3603:86:12",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3675:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3684:4:12"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3611:63:12"
},
"nodeType": "YulFunctionCall",
"src": "3611:78:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3603:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3473:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3485:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3496:4:12",
"type": ""
}
],
"src": "3383:313:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3747:32:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3757:16:12",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3768:5:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3757:7:12"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3729:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3739:7:12",
"type": ""
}
],
"src": "3702:77:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3828:79:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3885:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3894:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3897:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3887:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3887:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "3887:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3851:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3876:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3858:17:12"
},
"nodeType": "YulFunctionCall",
"src": "3858:24:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3848:2:12"
},
"nodeType": "YulFunctionCall",
"src": "3848:35:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3841:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3841:43:12"
},
"nodeType": "YulIf",
"src": "3838:63:12"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3821:5:12",
"type": ""
}
],
"src": "3785:122:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3965:87:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3975:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3997:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3984:12:12"
},
"nodeType": "YulFunctionCall",
"src": "3984:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3975:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4040:5:12"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "4013:26:12"
},
"nodeType": "YulFunctionCall",
"src": "4013:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "4013:33:12"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3943:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3951:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3959:5:12",
"type": ""
}
],
"src": "3913:139:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4124:263:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4170:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4172:77:12"
},
"nodeType": "YulFunctionCall",
"src": "4172:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "4172:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4145:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4154:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4141:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4141:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4166:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4137:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4137:32:12"
},
"nodeType": "YulIf",
"src": "4134:119:12"
},
{
"nodeType": "YulBlock",
"src": "4263:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4278:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4292:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4282:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4307:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4342:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4353:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4338:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4338:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4362:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4317:20:12"
},
"nodeType": "YulFunctionCall",
"src": "4317:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4307:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4094:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4105:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4117:6:12",
"type": ""
}
],
"src": "4058:329:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4458:53:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4475:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4498:5:12"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "4480:17:12"
},
"nodeType": "YulFunctionCall",
"src": "4480:24:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4468:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4468:37:12"
},
"nodeType": "YulExpressionStatement",
"src": "4468:37:12"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4446:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4453:3:12",
"type": ""
}
],
"src": "4393:118:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4615:124:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4625:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4637:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4648:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4633:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4633:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4625:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4705:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4718:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4729:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4714:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4714:17:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4661:43:12"
},
"nodeType": "YulFunctionCall",
"src": "4661:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "4661:71:12"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4587:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4599:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4610:4:12",
"type": ""
}
],
"src": "4517:222:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4828:391:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4874:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4876:77:12"
},
"nodeType": "YulFunctionCall",
"src": "4876:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "4876:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4849:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4858:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4845:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4845:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4870:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4841:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4841:32:12"
},
"nodeType": "YulIf",
"src": "4838:119:12"
},
{
"nodeType": "YulBlock",
"src": "4967:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4982:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4996:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4986:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5011:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5046:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5057:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5042:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5042:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5066:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5021:20:12"
},
"nodeType": "YulFunctionCall",
"src": "5021:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5011:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5094:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5109:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5123:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5113:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5139:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5174:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5185:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5170:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5170:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5194:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5149:20:12"
},
"nodeType": "YulFunctionCall",
"src": "5149:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5139:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4790:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4801:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4813:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4821:6:12",
"type": ""
}
],
"src": "4745:474:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5290:53:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5307:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5330:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5312:17:12"
},
"nodeType": "YulFunctionCall",
"src": "5312:24:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5300:6:12"
},
"nodeType": "YulFunctionCall",
"src": "5300:37:12"
},
"nodeType": "YulExpressionStatement",
"src": "5300:37:12"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5278:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5285:3:12",
"type": ""
}
],
"src": "5225:118:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5447:124:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5457:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5469:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5480:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5465:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5465:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5457:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5537:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5550:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5561:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5546:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5546:17:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5493:43:12"
},
"nodeType": "YulFunctionCall",
"src": "5493:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "5493:71:12"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5419:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5431:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5442:4:12",
"type": ""
}
],
"src": "5349:222:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5609:28:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5619:12:12",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5626:5:12"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5619:3:12"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5595:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5605:3:12",
"type": ""
}
],
"src": "5577:60:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5703:82:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5713:66:12",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5771:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "5753:17:12"
},
"nodeType": "YulFunctionCall",
"src": "5753:24:12"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "5744:8:12"
},
"nodeType": "YulFunctionCall",
"src": "5744:34:12"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "5726:17:12"
},
"nodeType": "YulFunctionCall",
"src": "5726:53:12"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "5713:9:12"
}
]
}
]
},
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5683:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "5693:9:12",
"type": ""
}
],
"src": "5643:142:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5851:66:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5861:50:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5905:5:12"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulIdentifier",
"src": "5874:30:12"
},
"nodeType": "YulFunctionCall",
"src": "5874:37:12"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "5861:9:12"
}
]
}
]
},
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5831:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "5841:9:12",
"type": ""
}
],
"src": "5791:126:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5998:66:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6008:50:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6052:5:12"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulIdentifier",
"src": "6021:30:12"
},
"nodeType": "YulFunctionCall",
"src": "6021:37:12"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "6008:9:12"
}
]
}
]
},
"name": "convert_t_contract$_IERC20_$1502_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5978:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "5988:9:12",
"type": ""
}
],
"src": "5923:141:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6150:81:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6167:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6218:5:12"
}
],
"functionName": {
"name": "convert_t_contract$_IERC20_$1502_to_t_address",
"nodeType": "YulIdentifier",
"src": "6172:45:12"
},
"nodeType": "YulFunctionCall",
"src": "6172:52:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6160:6:12"
},
"nodeType": "YulFunctionCall",
"src": "6160:65:12"
},
"nodeType": "YulExpressionStatement",
"src": "6160:65:12"
}
]
},
"name": "abi_encode_t_contract$_IERC20_$1502_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6138:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6145:3:12",
"type": ""
}
],
"src": "6070:161:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6350:139:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6360:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6372:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6383:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6368:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6368:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6360:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6455:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6468:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6479:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6464:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6464:17:12"
}
],
"functionName": {
"name": "abi_encode_t_contract$_IERC20_$1502_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "6396:58:12"
},
"nodeType": "YulFunctionCall",
"src": "6396:86:12"
},
"nodeType": "YulExpressionStatement",
"src": "6396:86:12"
}
]
},
"name": "abi_encode_tuple_t_contract$_IERC20_$1502__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6322:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6334:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6345:4:12",
"type": ""
}
],
"src": "6237:252:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6595:519:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6641:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6643:77:12"
},
"nodeType": "YulFunctionCall",
"src": "6643:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "6643:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6616:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6625:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6612:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6612:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6637:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6608:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6608:32:12"
},
"nodeType": "YulIf",
"src": "6605:119:12"
},
{
"nodeType": "YulBlock",
"src": "6734:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6749:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6763:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6753:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6778:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6813:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6824:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6809:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6809:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6833:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6788:20:12"
},
"nodeType": "YulFunctionCall",
"src": "6788:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6778:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6861:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6876:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6890:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6880:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6906:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6941:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6952:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6937:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6937:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6961:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6916:20:12"
},
"nodeType": "YulFunctionCall",
"src": "6916:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6906:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6989:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7004:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7018:2:12",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7008:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7034:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7069:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7080:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7065:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7065:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7089:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "7044:20:12"
},
"nodeType": "YulFunctionCall",
"src": "7044:53:12"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "7034:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6549:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6560:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6572:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6580:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "6588:6:12",
"type": ""
}
],
"src": "6495:619:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7209:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7226:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7229:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7219:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7219:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "7219:12:12"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "7120:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7332:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7349:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7352:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7342:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7342:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "7342:12:12"
}
]
},
"name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490",
"nodeType": "YulFunctionDefinition",
"src": "7243:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7455:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7472:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7475:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7465:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7465:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "7465:12:12"
}
]
},
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulFunctionDefinition",
"src": "7366:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7578:478:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7627:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "7629:77:12"
},
"nodeType": "YulFunctionCall",
"src": "7629:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "7629:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7606:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7614:4:12",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7602:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7602:17:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7621:3:12"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7598:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7598:27:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7591:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7591:35:12"
},
"nodeType": "YulIf",
"src": "7588:122:12"
},
{
"nodeType": "YulAssignment",
"src": "7719:30:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7742:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7729:12:12"
},
"nodeType": "YulFunctionCall",
"src": "7729:20:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7719:6:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7792:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490",
"nodeType": "YulIdentifier",
"src": "7794:77:12"
},
"nodeType": "YulFunctionCall",
"src": "7794:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "7794:79:12"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7764:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7772:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7761:2:12"
},
"nodeType": "YulFunctionCall",
"src": "7761:30:12"
},
"nodeType": "YulIf",
"src": "7758:117:12"
},
{
"nodeType": "YulAssignment",
"src": "7884:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7900:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7908:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7896:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7896:17:12"
},
"variableNames": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "7884:8:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7967:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulIdentifier",
"src": "7969:77:12"
},
"nodeType": "YulFunctionCall",
"src": "7969:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "7969:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "7932:8:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7946:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7954:4:12",
"type": "",
"value": "0x01"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "7942:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7942:17:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7928:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7928:32:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7962:3:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7925:2:12"
},
"nodeType": "YulFunctionCall",
"src": "7925:41:12"
},
"nodeType": "YulIf",
"src": "7922:128:12"
}
]
},
"name": "abi_decode_t_string_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7545:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7553:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "arrayPos",
"nodeType": "YulTypedName",
"src": "7561:8:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7571:6:12",
"type": ""
}
],
"src": "7503:553:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8148:443:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8194:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "8196:77:12"
},
"nodeType": "YulFunctionCall",
"src": "8196:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "8196:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8169:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8178:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8165:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8165:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8190:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8161:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8161:32:12"
},
"nodeType": "YulIf",
"src": "8158:119:12"
},
{
"nodeType": "YulBlock",
"src": "8287:297:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8302:45:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8333:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8344:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8329:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8329:17:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "8316:12:12"
},
"nodeType": "YulFunctionCall",
"src": "8316:31:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8306:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8394:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "8396:77:12"
},
"nodeType": "YulFunctionCall",
"src": "8396:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "8396:79:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8366:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8374:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8363:2:12"
},
"nodeType": "YulFunctionCall",
"src": "8363:30:12"
},
"nodeType": "YulIf",
"src": "8360:117:12"
},
{
"nodeType": "YulAssignment",
"src": "8491:83:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8546:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8557:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8542:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8542:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8566:7:12"
}
],
"functionName": {
"name": "abi_decode_t_string_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "8509:32:12"
},
"nodeType": "YulFunctionCall",
"src": "8509:65:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8491:6:12"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "8499:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8110:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8121:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8133:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "8141:6:12",
"type": ""
}
],
"src": "8062:529:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8637:76:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8691:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8700:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8703:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8693:6:12"
},
"nodeType": "YulFunctionCall",
"src": "8693:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "8693:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8660:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8682:5:12"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "8667:14:12"
},
"nodeType": "YulFunctionCall",
"src": "8667:21:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "8657:2:12"
},
"nodeType": "YulFunctionCall",
"src": "8657:32:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8650:6:12"
},
"nodeType": "YulFunctionCall",
"src": "8650:40:12"
},
"nodeType": "YulIf",
"src": "8647:60:12"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8630:5:12",
"type": ""
}
],
"src": "8597:116:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8768:84:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8778:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8800:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "8787:12:12"
},
"nodeType": "YulFunctionCall",
"src": "8787:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8778:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8840:5:12"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "8816:23:12"
},
"nodeType": "YulFunctionCall",
"src": "8816:30:12"
},
"nodeType": "YulExpressionStatement",
"src": "8816:30:12"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8746:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8754:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8762:5:12",
"type": ""
}
],
"src": "8719:133:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8921:260:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8967:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "8969:77:12"
},
"nodeType": "YulFunctionCall",
"src": "8969:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "8969:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8942:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8951:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8938:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8938:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8963:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8934:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8934:32:12"
},
"nodeType": "YulIf",
"src": "8931:119:12"
},
{
"nodeType": "YulBlock",
"src": "9060:114:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9075:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9089:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9079:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9104:60:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9136:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9147:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9132:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9132:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9156:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "9114:17:12"
},
"nodeType": "YulFunctionCall",
"src": "9114:50:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9104:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8891:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8902:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8914:6:12",
"type": ""
}
],
"src": "8858:323:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9261:40:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9272:22:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9288:5:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "9282:5:12"
},
"nodeType": "YulFunctionCall",
"src": "9282:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9272:6:12"
}
]
}
]
},
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9244:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9254:6:12",
"type": ""
}
],
"src": "9187:114:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9418:73:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9435:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9440:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9428:6:12"
},
"nodeType": "YulFunctionCall",
"src": "9428:19:12"
},
"nodeType": "YulExpressionStatement",
"src": "9428:19:12"
},
{
"nodeType": "YulAssignment",
"src": "9456:29:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9475:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9480:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9471:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9471:14:12"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "9456:11:12"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9390:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9395:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "9406:11:12",
"type": ""
}
],
"src": "9307:184:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9569:60:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9579:11:12",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "9587:3:12"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9579:4:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9600:22:12",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "9612:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9617:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9608:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9608:14:12"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9600:4:12"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "9556:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "9564:4:12",
"type": ""
}
],
"src": "9497:132:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9690:53:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9707:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9730:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9712:17:12"
},
"nodeType": "YulFunctionCall",
"src": "9712:24:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9700:6:12"
},
"nodeType": "YulFunctionCall",
"src": "9700:37:12"
},
"nodeType": "YulExpressionStatement",
"src": "9700:37:12"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9678:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9685:3:12",
"type": ""
}
],
"src": "9635:108:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9829:99:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9873:6:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9881:3:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "9839:33:12"
},
"nodeType": "YulFunctionCall",
"src": "9839:46:12"
},
"nodeType": "YulExpressionStatement",
"src": "9839:46:12"
},
{
"nodeType": "YulAssignment",
"src": "9894:28:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9912:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9917:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9908:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9908:14:12"
},
"variableNames": [
{
"name": "updatedPos",
"nodeType": "YulIdentifier",
"src": "9894:10:12"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9802:6:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9810:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nodeType": "YulTypedName",
"src": "9818:10:12",
"type": ""
}
],
"src": "9749:179:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10009:38:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10019:22:12",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "10031:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10036:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10027:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10027:14:12"
},
"variableNames": [
{
"name": "next",
"nodeType": "YulIdentifier",
"src": "10019:4:12"
}
]
}
]
},
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "9996:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "next",
"nodeType": "YulTypedName",
"src": "10004:4:12",
"type": ""
}
],
"src": "9934:113:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10207:608:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10217:68:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10279:5:12"
}
],
"functionName": {
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10231:47:12"
},
"nodeType": "YulFunctionCall",
"src": "10231:54:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10221:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10294:93:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10375:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10380:6:12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10301:73:12"
},
"nodeType": "YulFunctionCall",
"src": "10301:86:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10294:3:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10396:71:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10461:5:12"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10411:49:12"
},
"nodeType": "YulFunctionCall",
"src": "10411:56:12"
},
"variables": [
{
"name": "baseRef",
"nodeType": "YulTypedName",
"src": "10400:7:12",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10476:21:12",
"value": {
"name": "baseRef",
"nodeType": "YulIdentifier",
"src": "10490:7:12"
},
"variables": [
{
"name": "srcPtr",
"nodeType": "YulTypedName",
"src": "10480:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10566:224:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10580:34:12",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "10607:6:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10601:5:12"
},
"nodeType": "YulFunctionCall",
"src": "10601:13:12"
},
"variables": [
{
"name": "elementValue0",
"nodeType": "YulTypedName",
"src": "10584:13:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10627:70:12",
"value": {
"arguments": [
{
"name": "elementValue0",
"nodeType": "YulIdentifier",
"src": "10678:13:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10693:3:12"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "10634:43:12"
},
"nodeType": "YulFunctionCall",
"src": "10634:63:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10627:3:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10710:70:12",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "10773:6:12"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10720:52:12"
},
"nodeType": "YulFunctionCall",
"src": "10720:60:12"
},
"variableNames": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "10710:6:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10528:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10531:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10525:2:12"
},
"nodeType": "YulFunctionCall",
"src": "10525:13:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "10539:18:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10541:14:12",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10550:1:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10553:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10546:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10546:9:12"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10541:1:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "10510:14:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10512:10:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10521:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "10516:1:12",
"type": ""
}
]
}
]
},
"src": "10506:284:12"
},
{
"nodeType": "YulAssignment",
"src": "10799:10:12",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10806:3:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10799:3:12"
}
]
}
]
},
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10186:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10193:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10202:3:12",
"type": ""
}
],
"src": "10083:732:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10969:225:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10979:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10991:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11002:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10987:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10987:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10979:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11026:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11037:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11022:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11022:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11045:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11051:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11041:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11041:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11015:6:12"
},
"nodeType": "YulFunctionCall",
"src": "11015:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "11015:47:12"
},
{
"nodeType": "YulAssignment",
"src": "11071:116:12",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11173:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11182:4:12"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11079:93:12"
},
"nodeType": "YulFunctionCall",
"src": "11079:108:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11071:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10941:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10953:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10964:4:12",
"type": ""
}
],
"src": "10821:373:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11280:388:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11326:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "11328:77:12"
},
"nodeType": "YulFunctionCall",
"src": "11328:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "11328:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11301:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11310:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11297:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11297:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11322:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "11293:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11293:32:12"
},
"nodeType": "YulIf",
"src": "11290:119:12"
},
{
"nodeType": "YulBlock",
"src": "11419:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11434:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "11448:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11438:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11463:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11498:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11509:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11494:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11494:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11518:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "11473:20:12"
},
"nodeType": "YulFunctionCall",
"src": "11473:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11463:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "11546:115:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11561:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "11575:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11565:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11591:60:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11623:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11634:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11619:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11619:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11643:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "11601:17:12"
},
"nodeType": "YulFunctionCall",
"src": "11601:50:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "11591:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11242:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "11253:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11265:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11273:6:12",
"type": ""
}
],
"src": "11200:468:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11737:52:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11754:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11776:5:12"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "11759:16:12"
},
"nodeType": "YulFunctionCall",
"src": "11759:23:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11747:6:12"
},
"nodeType": "YulFunctionCall",
"src": "11747:36:12"
},
"nodeType": "YulExpressionStatement",
"src": "11747:36:12"
}
]
},
"name": "abi_encode_t_bytes4_to_t_bytes4_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11725:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11732:3:12",
"type": ""
}
],
"src": "11674:115:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11891:122:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11901:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11913:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11924:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11909:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11909:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11901:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11979:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11992:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12003:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11988:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11988:17:12"
}
],
"functionName": {
"name": "abi_encode_t_bytes4_to_t_bytes4_fromStack",
"nodeType": "YulIdentifier",
"src": "11937:41:12"
},
"nodeType": "YulFunctionCall",
"src": "11937:69:12"
},
"nodeType": "YulExpressionStatement",
"src": "11937:69:12"
}
]
},
"name": "abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11863:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11875:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11886:4:12",
"type": ""
}
],
"src": "11795:218:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12108:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12125:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12128:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12118:6:12"
},
"nodeType": "YulFunctionCall",
"src": "12118:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "12118:12:12"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "12019:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12170:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12187:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12190:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12180:6:12"
},
"nodeType": "YulFunctionCall",
"src": "12180:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "12180:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12284:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12287:4:12",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12277:6:12"
},
"nodeType": "YulFunctionCall",
"src": "12277:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "12277:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12308:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12311:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12301:6:12"
},
"nodeType": "YulFunctionCall",
"src": "12301:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "12301:15:12"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "12142:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12371:238:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "12381:58:12",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12403:6:12"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "12433:4:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "12411:21:12"
},
"nodeType": "YulFunctionCall",
"src": "12411:27:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12399:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12399:40:12"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "12385:10:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12550:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "12552:16:12"
},
"nodeType": "YulFunctionCall",
"src": "12552:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "12552:18:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "12493:10:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12505:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "12490:2:12"
},
"nodeType": "YulFunctionCall",
"src": "12490:34:12"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "12529:10:12"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12541:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "12526:2:12"
},
"nodeType": "YulFunctionCall",
"src": "12526:22:12"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "12487:2:12"
},
"nodeType": "YulFunctionCall",
"src": "12487:62:12"
},
"nodeType": "YulIf",
"src": "12484:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12588:2:12",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "12592:10:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12581:6:12"
},
"nodeType": "YulFunctionCall",
"src": "12581:22:12"
},
"nodeType": "YulExpressionStatement",
"src": "12581:22:12"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12357:6:12",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "12365:4:12",
"type": ""
}
],
"src": "12328:281:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12656:88:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12666:30:12",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "12676:18:12"
},
"nodeType": "YulFunctionCall",
"src": "12676:20:12"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12666:6:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12725:6:12"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "12733:4:12"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "12705:19:12"
},
"nodeType": "YulFunctionCall",
"src": "12705:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "12705:33:12"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "12640:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12649:6:12",
"type": ""
}
],
"src": "12615:129:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12816:241:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "12921:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "12923:16:12"
},
"nodeType": "YulFunctionCall",
"src": "12923:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "12923:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12893:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12901:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "12890:2:12"
},
"nodeType": "YulFunctionCall",
"src": "12890:30:12"
},
"nodeType": "YulIf",
"src": "12887:56:12"
},
{
"nodeType": "YulAssignment",
"src": "12953:37:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12983:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "12961:21:12"
},
"nodeType": "YulFunctionCall",
"src": "12961:29:12"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "12953:4:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "13027:23:12",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "13039:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13045:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13035:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13035:15:12"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "13027:4:12"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12800:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "12811:4:12",
"type": ""
}
],
"src": "12750:307:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13127:82:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "13150:3:12"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "13155:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13160:6:12"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "13137:12:12"
},
"nodeType": "YulFunctionCall",
"src": "13137:30:12"
},
"nodeType": "YulExpressionStatement",
"src": "13137:30:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "13187:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13192:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13183:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13183:16:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13201:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13176:6:12"
},
"nodeType": "YulFunctionCall",
"src": "13176:27:12"
},
"nodeType": "YulExpressionStatement",
"src": "13176:27:12"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "13109:3:12",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "13114:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "13119:6:12",
"type": ""
}
],
"src": "13063:146:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13298:340:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13308:74:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13374:6:12"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "13333:40:12"
},
"nodeType": "YulFunctionCall",
"src": "13333:48:12"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "13317:15:12"
},
"nodeType": "YulFunctionCall",
"src": "13317:65:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "13308:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "13398:5:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13405:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13391:6:12"
},
"nodeType": "YulFunctionCall",
"src": "13391:21:12"
},
"nodeType": "YulExpressionStatement",
"src": "13391:21:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "13421:27:12",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "13436:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13443:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13432:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13432:16:12"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "13425:3:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "13486:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "13488:77:12"
},
"nodeType": "YulFunctionCall",
"src": "13488:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "13488:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "13467:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13472:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13463:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13463:16:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13481:3:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "13460:2:12"
},
"nodeType": "YulFunctionCall",
"src": "13460:25:12"
},
"nodeType": "YulIf",
"src": "13457:112:12"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "13615:3:12"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "13620:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13625:6:12"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "13578:36:12"
},
"nodeType": "YulFunctionCall",
"src": "13578:54:12"
},
"nodeType": "YulExpressionStatement",
"src": "13578:54:12"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "13271:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "13276:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13284:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "13292:5:12",
"type": ""
}
],
"src": "13215:423:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13718:277:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "13767:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "13769:77:12"
},
"nodeType": "YulFunctionCall",
"src": "13769:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "13769:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "13746:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13754:4:12",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13742:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13742:17:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13761:3:12"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "13738:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13738:27:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "13731:6:12"
},
"nodeType": "YulFunctionCall",
"src": "13731:35:12"
},
"nodeType": "YulIf",
"src": "13728:122:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "13859:34:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "13886:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "13873:12:12"
},
"nodeType": "YulFunctionCall",
"src": "13873:20:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "13863:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "13902:87:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "13962:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13970:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13958:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13958:17:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13977:6:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13985:3:12"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "13911:46:12"
},
"nodeType": "YulFunctionCall",
"src": "13911:78:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "13902:5:12"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "13696:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13704:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "13712:5:12",
"type": ""
}
],
"src": "13657:338:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14127:817:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "14174:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "14176:77:12"
},
"nodeType": "YulFunctionCall",
"src": "14176:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "14176:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "14148:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14157:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14144:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14144:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14169:3:12",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "14140:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14140:33:12"
},
"nodeType": "YulIf",
"src": "14137:120:12"
},
{
"nodeType": "YulBlock",
"src": "14267:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "14282:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "14296:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "14286:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "14311:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14346:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "14357:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14342:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14342:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "14366:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "14321:20:12"
},
"nodeType": "YulFunctionCall",
"src": "14321:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "14311:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "14394:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "14409:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "14423:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "14413:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "14439:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14474:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "14485:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14470:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14470:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "14494:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "14449:20:12"
},
"nodeType": "YulFunctionCall",
"src": "14449:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "14439:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "14522:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "14537:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "14551:2:12",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "14541:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "14567:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14602:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "14613:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14598:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14598:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "14622:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "14577:20:12"
},
"nodeType": "YulFunctionCall",
"src": "14577:53:12"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "14567:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "14650:287:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "14665:46:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14696:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14707:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14692:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14692:18:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "14679:12:12"
},
"nodeType": "YulFunctionCall",
"src": "14679:32:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "14669:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14758:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "14760:77:12"
},
"nodeType": "YulFunctionCall",
"src": "14760:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "14760:79:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "14730:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14738:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "14727:2:12"
},
"nodeType": "YulFunctionCall",
"src": "14727:30:12"
},
"nodeType": "YulIf",
"src": "14724:117:12"
},
{
"nodeType": "YulAssignment",
"src": "14855:72:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14899:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "14910:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14895:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14895:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "14919:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "14865:29:12"
},
"nodeType": "YulFunctionCall",
"src": "14865:62:12"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "14855:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14073:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "14084:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "14096:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "14104:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "14112:6:12",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "14120:6:12",
"type": ""
}
],
"src": "14001:943:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15033:391:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "15079:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "15081:77:12"
},
"nodeType": "YulFunctionCall",
"src": "15081:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "15081:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "15054:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15063:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15050:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15050:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15075:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "15046:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15046:32:12"
},
"nodeType": "YulIf",
"src": "15043:119:12"
},
{
"nodeType": "YulBlock",
"src": "15172:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "15187:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "15201:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "15191:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "15216:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15251:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "15262:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15247:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15247:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "15271:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "15226:20:12"
},
"nodeType": "YulFunctionCall",
"src": "15226:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15216:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "15299:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "15314:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "15328:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "15318:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "15344:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15379:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "15390:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15375:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15375:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "15399:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "15354:20:12"
},
"nodeType": "YulFunctionCall",
"src": "15354:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "15344:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14995:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "15006:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15018:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "15026:6:12",
"type": ""
}
],
"src": "14950:474:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15536:56:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15558:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15566:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15554:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15554:14:12"
},
{
"hexValue": "5a65726f2041646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15570:14:12",
"type": "",
"value": "Zero Address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15547:6:12"
},
"nodeType": "YulFunctionCall",
"src": "15547:38:12"
},
"nodeType": "YulExpressionStatement",
"src": "15547:38:12"
}
]
},
"name": "store_literal_in_memory_9ef4df38e17efa233f86f31ba1f777c86e862585794386894c50f894317da6be",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15528:6:12",
"type": ""
}
],
"src": "15430:162:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15744:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15754:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15820:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15825:2:12",
"type": "",
"value": "12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15761:58:12"
},
"nodeType": "YulFunctionCall",
"src": "15761:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15754:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15926:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_9ef4df38e17efa233f86f31ba1f777c86e862585794386894c50f894317da6be",
"nodeType": "YulIdentifier",
"src": "15837:88:12"
},
"nodeType": "YulFunctionCall",
"src": "15837:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "15837:93:12"
},
{
"nodeType": "YulAssignment",
"src": "15939:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15950:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15955:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15946:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15946:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15939:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9ef4df38e17efa233f86f31ba1f777c86e862585794386894c50f894317da6be_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15732:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15740:3:12",
"type": ""
}
],
"src": "15598:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16141:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16151:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16163:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16174:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16159:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16159:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16151:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16198:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16209:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16194:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16194:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16217:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16223:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16213:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16213:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16187:6:12"
},
"nodeType": "YulFunctionCall",
"src": "16187:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "16187:47:12"
},
{
"nodeType": "YulAssignment",
"src": "16243:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16377:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9ef4df38e17efa233f86f31ba1f777c86e862585794386894c50f894317da6be_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16251:124:12"
},
"nodeType": "YulFunctionCall",
"src": "16251:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16243:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9ef4df38e17efa233f86f31ba1f777c86e862585794386894c50f894317da6be__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16121:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16136:4:12",
"type": ""
}
],
"src": "15970:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16501:116:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16523:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16531:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16519:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16519:14:12"
},
{
"hexValue": "4552433732313a20717565727920666f72206e6f6e6578697374656e7420746f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16535:34:12",
"type": "",
"value": "ERC721: query for nonexistent to"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16512:6:12"
},
"nodeType": "YulFunctionCall",
"src": "16512:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "16512:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16591:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16599:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16587:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16587:15:12"
},
{
"hexValue": "6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16604:5:12",
"type": "",
"value": "ken"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16580:6:12"
},
"nodeType": "YulFunctionCall",
"src": "16580:30:12"
},
"nodeType": "YulExpressionStatement",
"src": "16580:30:12"
}
]
},
"name": "store_literal_in_memory_88848463b922b547420da91ed5c2f6fdb5047501bb1703b4042ab8f6709cd274",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16493:6:12",
"type": ""
}
],
"src": "16395:222:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16769:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16779:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16845:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16850:2:12",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16786:58:12"
},
"nodeType": "YulFunctionCall",
"src": "16786:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16779:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16951:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_88848463b922b547420da91ed5c2f6fdb5047501bb1703b4042ab8f6709cd274",
"nodeType": "YulIdentifier",
"src": "16862:88:12"
},
"nodeType": "YulFunctionCall",
"src": "16862:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "16862:93:12"
},
{
"nodeType": "YulAssignment",
"src": "16964:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16975:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16980:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16971:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16971:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16964:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_88848463b922b547420da91ed5c2f6fdb5047501bb1703b4042ab8f6709cd274_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16757:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16765:3:12",
"type": ""
}
],
"src": "16623:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17166:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17176:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17188:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17199:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17184:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17184:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17176:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17223:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17234:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17219:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17219:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17242:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17248:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17238:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17238:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17212:6:12"
},
"nodeType": "YulFunctionCall",
"src": "17212:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "17212:47:12"
},
{
"nodeType": "YulAssignment",
"src": "17268:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17402:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_88848463b922b547420da91ed5c2f6fdb5047501bb1703b4042ab8f6709cd274_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17276:124:12"
},
"nodeType": "YulFunctionCall",
"src": "17276:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17268:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_88848463b922b547420da91ed5c2f6fdb5047501bb1703b4042ab8f6709cd274__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17146:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17161:4:12",
"type": ""
}
],
"src": "16995:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17526:114:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17548:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17556:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17544:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17544:14:12"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17560:34:12",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17537:6:12"
},
"nodeType": "YulFunctionCall",
"src": "17537:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "17537:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17616:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17624:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17612:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17612:15:12"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17629:3:12",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17605:6:12"
},
"nodeType": "YulFunctionCall",
"src": "17605:28:12"
},
"nodeType": "YulExpressionStatement",
"src": "17605:28:12"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "17518:6:12",
"type": ""
}
],
"src": "17420:220:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17792:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17802:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17868:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17873:2:12",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17809:58:12"
},
"nodeType": "YulFunctionCall",
"src": "17809:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17802:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17974:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "17885:88:12"
},
"nodeType": "YulFunctionCall",
"src": "17885:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "17885:93:12"
},
{
"nodeType": "YulAssignment",
"src": "17987:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17998:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18003:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17994:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17994:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17987:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17780:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17788:3:12",
"type": ""
}
],
"src": "17646:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18189:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18199:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18211:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18222:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18207:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18207:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18199:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18246:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18257:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18242:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18242:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18265:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18271:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18261:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18261:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18235:6:12"
},
"nodeType": "YulFunctionCall",
"src": "18235:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "18235:47:12"
},
{
"nodeType": "YulAssignment",
"src": "18291:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18425:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18299:124:12"
},
"nodeType": "YulFunctionCall",
"src": "18299:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18291:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18169:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18184:4:12",
"type": ""
}
],
"src": "18018:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18549:73:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18571:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18579:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18567:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18567:14:12"
},
{
"hexValue": "4552433732313a206e6f7420617070726f766564206f72206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18583:31:12",
"type": "",
"value": "ERC721: not approved or owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18560:6:12"
},
"nodeType": "YulFunctionCall",
"src": "18560:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "18560:55:12"
}
]
},
"name": "store_literal_in_memory_cf98e2c7e6471b55ef385f51c74c84c95477e17e5d1f536e14e06ca88c8b73f5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18541:6:12",
"type": ""
}
],
"src": "18443:179:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18774:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18784:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18850:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18855:2:12",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18791:58:12"
},
"nodeType": "YulFunctionCall",
"src": "18791:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18784:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18956:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_cf98e2c7e6471b55ef385f51c74c84c95477e17e5d1f536e14e06ca88c8b73f5",
"nodeType": "YulIdentifier",
"src": "18867:88:12"
},
"nodeType": "YulFunctionCall",
"src": "18867:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "18867:93:12"
},
{
"nodeType": "YulAssignment",
"src": "18969:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18980:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18985:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18976:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18976:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18969:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_cf98e2c7e6471b55ef385f51c74c84c95477e17e5d1f536e14e06ca88c8b73f5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18762:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18770:3:12",
"type": ""
}
],
"src": "18628:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19171:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19181:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19193:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19204:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19189:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19189:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19181:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19228:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19239:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19224:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19224:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19247:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19253:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19243:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19243:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19217:6:12"
},
"nodeType": "YulFunctionCall",
"src": "19217:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "19217:47:12"
},
{
"nodeType": "YulAssignment",
"src": "19273:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19407:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_cf98e2c7e6471b55ef385f51c74c84c95477e17e5d1f536e14e06ca88c8b73f5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19281:124:12"
},
"nodeType": "YulFunctionCall",
"src": "19281:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19273:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_cf98e2c7e6471b55ef385f51c74c84c95477e17e5d1f536e14e06ca88c8b73f5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19151:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19166:4:12",
"type": ""
}
],
"src": "19000:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19531:73:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19553:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19561:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19549:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19549:14:12"
},
{
"hexValue": "63616c6c6572206e6f74206f776e6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19565:31:12",
"type": "",
"value": "caller not owner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19542:6:12"
},
"nodeType": "YulFunctionCall",
"src": "19542:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "19542:55:12"
}
]
},
"name": "store_literal_in_memory_596fde171685f779e1b097beb3cbd452f34cc68c0c184db949dc9c18c8f62a9c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19523:6:12",
"type": ""
}
],
"src": "19425:179:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19756:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19766:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19832:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19837:2:12",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19773:58:12"
},
"nodeType": "YulFunctionCall",
"src": "19773:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19766:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19938:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_596fde171685f779e1b097beb3cbd452f34cc68c0c184db949dc9c18c8f62a9c",
"nodeType": "YulIdentifier",
"src": "19849:88:12"
},
"nodeType": "YulFunctionCall",
"src": "19849:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "19849:93:12"
},
{
"nodeType": "YulAssignment",
"src": "19951:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19962:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19967:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19958:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19958:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19951:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_596fde171685f779e1b097beb3cbd452f34cc68c0c184db949dc9c18c8f62a9c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19744:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19752:3:12",
"type": ""
}
],
"src": "19610:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20153:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20163:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20175:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20186:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20171:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20171:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20163:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20210:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20221:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20206:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20206:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20229:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20235:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20225:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20225:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20199:6:12"
},
"nodeType": "YulFunctionCall",
"src": "20199:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "20199:47:12"
},
{
"nodeType": "YulAssignment",
"src": "20255:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20389:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_596fde171685f779e1b097beb3cbd452f34cc68c0c184db949dc9c18c8f62a9c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20263:124:12"
},
"nodeType": "YulFunctionCall",
"src": "20263:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20255:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_596fde171685f779e1b097beb3cbd452f34cc68c0c184db949dc9c18c8f62a9c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20133:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20148:4:12",
"type": ""
}
],
"src": "19982:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20520:34:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20530:18:12",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20545:3:12"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "20530:11:12"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20492:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20497:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "20508:11:12",
"type": ""
}
],
"src": "20407:147:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20666:8:12",
"statements": []
},
"name": "store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20658:6:12",
"type": ""
}
],
"src": "20560:114:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20843:235:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20853:90:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20936:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20941:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "20860:75:12"
},
"nodeType": "YulFunctionCall",
"src": "20860:83:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20853:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21041:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"nodeType": "YulIdentifier",
"src": "20952:88:12"
},
"nodeType": "YulFunctionCall",
"src": "20952:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "20952:93:12"
},
{
"nodeType": "YulAssignment",
"src": "21054:18:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21065:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21070:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21061:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21061:11:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "21054:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20831:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "20839:3:12",
"type": ""
}
],
"src": "20680:398:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21272:191:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21283:154:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21433:3:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "21290:141:12"
},
"nodeType": "YulFunctionCall",
"src": "21290:147:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21283:3:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "21447:10:12",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21454:3:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "21447:3:12"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "21259:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "21268:3:12",
"type": ""
}
],
"src": "21084:379:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21535:31:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21546:13:12",
"value": {
"name": "len",
"nodeType": "YulIdentifier",
"src": "21556:3:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21546:6:12"
}
]
}
]
},
"name": "array_length_t_string_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21513:5:12",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "21520:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "21528:6:12",
"type": ""
}
],
"src": "21469:97:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21600:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21617:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21620:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21610:6:12"
},
"nodeType": "YulFunctionCall",
"src": "21610:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "21610:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21714:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21717:4:12",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21707:6:12"
},
"nodeType": "YulFunctionCall",
"src": "21707:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "21707:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21738:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21741:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "21731:6:12"
},
"nodeType": "YulFunctionCall",
"src": "21731:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "21731:15:12"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "21572:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21809:269:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21819:22:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "21833:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21839:1:12",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "21829:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21829:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21819:6:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "21850:38:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "21880:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21886:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "21876:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21876:12:12"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "21854:18:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21927:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21941:27:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21955:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21963:4:12",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "21951:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21951:17:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21941:6:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "21907:18:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21900:6:12"
},
"nodeType": "YulFunctionCall",
"src": "21900:26:12"
},
"nodeType": "YulIf",
"src": "21897:81:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22030:42:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "22044:16:12"
},
"nodeType": "YulFunctionCall",
"src": "22044:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "22044:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "21994:18:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22017:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22025:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "22014:2:12"
},
"nodeType": "YulFunctionCall",
"src": "22014:14:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "21991:2:12"
},
"nodeType": "YulFunctionCall",
"src": "21991:38:12"
},
"nodeType": "YulIf",
"src": "21988:84:12"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "21793:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "21802:6:12",
"type": ""
}
],
"src": "21758:320:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22138:87:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22148:11:12",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "22156:3:12"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "22148:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22176:1:12",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "22179:3:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22169:6:12"
},
"nodeType": "YulFunctionCall",
"src": "22169:14:12"
},
"nodeType": "YulExpressionStatement",
"src": "22169:14:12"
},
{
"nodeType": "YulAssignment",
"src": "22192:26:12",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22210:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22213:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "22200:9:12"
},
"nodeType": "YulFunctionCall",
"src": "22200:18:12"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "22192:4:12"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "22125:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "22133:4:12",
"type": ""
}
],
"src": "22084:141:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22275:49:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22285:33:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22303:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22310:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22299:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22299:14:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22315:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "22295:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22295:23:12"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "22285:6:12"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22258:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "22268:6:12",
"type": ""
}
],
"src": "22231:93:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22383:54:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22393:37:12",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "22418:4:12"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22424:5:12"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "22414:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22414:16:12"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "22393:8:12"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "22358:4:12",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22364:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "22374:8:12",
"type": ""
}
],
"src": "22330:107:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22519:317:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "22529:35:12",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "22550:10:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22562:1:12",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "22546:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22546:18:12"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "22533:9:12",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "22573:109:12",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "22604:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22615:66:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "22585:18:12"
},
"nodeType": "YulFunctionCall",
"src": "22585:97:12"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "22577:4:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "22691:51:12",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "22722:9:12"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "22733:8:12"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "22703:18:12"
},
"nodeType": "YulFunctionCall",
"src": "22703:39:12"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "22691:8:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "22751:30:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22764:5:12"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "22775:4:12"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "22771:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22771:9:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "22760:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22760:21:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22751:5:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "22790:40:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22803:5:12"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "22814:8:12"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "22824:4:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "22810:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22810:19:12"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "22800:2:12"
},
"nodeType": "YulFunctionCall",
"src": "22800:30:12"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "22790:6:12"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22480:5:12",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "22487:10:12",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "22499:8:12",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "22512:6:12",
"type": ""
}
],
"src": "22443:393:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22902:82:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22912:66:12",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22970:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22952:17:12"
},
"nodeType": "YulFunctionCall",
"src": "22952:24:12"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "22943:8:12"
},
"nodeType": "YulFunctionCall",
"src": "22943:34:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22925:17:12"
},
"nodeType": "YulFunctionCall",
"src": "22925:53:12"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "22912:9:12"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22882:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "22892:9:12",
"type": ""
}
],
"src": "22842:142:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23037:28:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23047:12:12",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "23054:5:12"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "23047:3:12"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "23023:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "23033:3:12",
"type": ""
}
],
"src": "22990:75:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23147:193:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "23157:63:12",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "23212:7:12"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "23181:30:12"
},
"nodeType": "YulFunctionCall",
"src": "23181:39:12"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "23161:16:12",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "23236:4:12"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "23276:4:12"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "23270:5:12"
},
"nodeType": "YulFunctionCall",
"src": "23270:11:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "23283:6:12"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "23315:16:12"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "23291:23:12"
},
"nodeType": "YulFunctionCall",
"src": "23291:41:12"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "23242:27:12"
},
"nodeType": "YulFunctionCall",
"src": "23242:91:12"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "23229:6:12"
},
"nodeType": "YulFunctionCall",
"src": "23229:105:12"
},
"nodeType": "YulExpressionStatement",
"src": "23229:105:12"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "23124:4:12",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "23130:6:12",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "23138:7:12",
"type": ""
}
],
"src": "23071:269:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23395:24:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23405:8:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "23412:1:12",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "23405:3:12"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "23391:3:12",
"type": ""
}
],
"src": "23346:73:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23478:136:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "23488:46:12",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "23502:30:12"
},
"nodeType": "YulFunctionCall",
"src": "23502:32:12"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "23492:6:12",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "23587:4:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "23593:6:12"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "23601:6:12"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "23543:43:12"
},
"nodeType": "YulFunctionCall",
"src": "23543:65:12"
},
"nodeType": "YulExpressionStatement",
"src": "23543:65:12"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "23464:4:12",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "23470:6:12",
"type": ""
}
],
"src": "23425:189:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23670:136:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "23737:63:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "23781:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23788:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "23751:29:12"
},
"nodeType": "YulFunctionCall",
"src": "23751:39:12"
},
"nodeType": "YulExpressionStatement",
"src": "23751:39:12"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "23690:5:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "23697:3:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "23687:2:12"
},
"nodeType": "YulFunctionCall",
"src": "23687:14:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "23702:26:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23704:22:12",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "23717:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23724:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23713:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23713:13:12"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "23704:5:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "23684:2:12",
"statements": []
},
"src": "23680:120:12"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "23658:5:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "23665:3:12",
"type": ""
}
],
"src": "23620:186:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23891:464:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "23917:431:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "23931:54:12",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "23979:5:12"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "23947:31:12"
},
"nodeType": "YulFunctionCall",
"src": "23947:38:12"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "23935:8:12",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "23998:63:12",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "24021:8:12"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "24049:10:12"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "24031:17:12"
},
"nodeType": "YulFunctionCall",
"src": "24031:29:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24017:3:12"
},
"nodeType": "YulFunctionCall",
"src": "24017:44:12"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "24002:11:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "24218:27:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24220:23:12",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "24235:8:12"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "24220:11:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "24202:10:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24214:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "24199:2:12"
},
"nodeType": "YulFunctionCall",
"src": "24199:18:12"
},
"nodeType": "YulIf",
"src": "24196:49:12"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "24287:11:12"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "24304:8:12"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "24332:3:12"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "24314:17:12"
},
"nodeType": "YulFunctionCall",
"src": "24314:22:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24300:3:12"
},
"nodeType": "YulFunctionCall",
"src": "24300:37:12"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "24258:28:12"
},
"nodeType": "YulFunctionCall",
"src": "24258:80:12"
},
"nodeType": "YulExpressionStatement",
"src": "24258:80:12"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "23908:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23913:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "23905:2:12"
},
"nodeType": "YulFunctionCall",
"src": "23905:11:12"
},
"nodeType": "YulIf",
"src": "23902:446:12"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "23867:5:12",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "23874:3:12",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "23879:10:12",
"type": ""
}
],
"src": "23812:543:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24424:54:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24434:37:12",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "24459:4:12"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24465:5:12"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "24455:3:12"
},
"nodeType": "YulFunctionCall",
"src": "24455:16:12"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "24434:8:12"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "24399:4:12",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24405:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "24415:8:12",
"type": ""
}
],
"src": "24361:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24535:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "24545:68:12",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24594:1:12",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "24597:5:12"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "24590:3:12"
},
"nodeType": "YulFunctionCall",
"src": "24590:13:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24609:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "24605:3:12"
},
"nodeType": "YulFunctionCall",
"src": "24605:6:12"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "24561:28:12"
},
"nodeType": "YulFunctionCall",
"src": "24561:51:12"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "24557:3:12"
},
"nodeType": "YulFunctionCall",
"src": "24557:56:12"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "24549:4:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "24622:25:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "24636:4:12"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "24642:4:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "24632:3:12"
},
"nodeType": "YulFunctionCall",
"src": "24632:15:12"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "24622:6:12"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "24512:4:12",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "24518:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "24528:6:12",
"type": ""
}
],
"src": "24484:169:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24739:214:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24872:37:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "24899:4:12"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "24905:3:12"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "24880:18:12"
},
"nodeType": "YulFunctionCall",
"src": "24880:29:12"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "24872:4:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "24918:29:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "24929:4:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24939:1:12",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "24942:3:12"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "24935:3:12"
},
"nodeType": "YulFunctionCall",
"src": "24935:11:12"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "24926:2:12"
},
"nodeType": "YulFunctionCall",
"src": "24926:21:12"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "24918:4:12"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "24720:4:12",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "24726:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "24734:4:12",
"type": ""
}
],
"src": "24658:295:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25057:1304:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "25068:58:12",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "25117:3:12"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "25122:3:12"
}
],
"functionName": {
"name": "array_length_t_string_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "25082:34:12"
},
"nodeType": "YulFunctionCall",
"src": "25082:44:12"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "25072:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "25211:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "25213:16:12"
},
"nodeType": "YulFunctionCall",
"src": "25213:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "25213:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "25183:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25191:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "25180:2:12"
},
"nodeType": "YulFunctionCall",
"src": "25180:30:12"
},
"nodeType": "YulIf",
"src": "25177:56:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "25243:52:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "25289:4:12"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "25283:5:12"
},
"nodeType": "YulFunctionCall",
"src": "25283:11:12"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "25257:25:12"
},
"nodeType": "YulFunctionCall",
"src": "25257:38:12"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "25247:6:12",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "25388:4:12"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "25394:6:12"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "25402:6:12"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "25342:45:12"
},
"nodeType": "YulFunctionCall",
"src": "25342:67:12"
},
"nodeType": "YulExpressionStatement",
"src": "25342:67:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "25419:18:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "25436:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "25423:9:12",
"type": ""
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "25484:625:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "25498:37:12",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "25517:6:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25529:4:12",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "25525:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25525:9:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "25513:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25513:22:12"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "25502:7:12",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "25549:51:12",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "25595:4:12"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "25563:31:12"
},
"nodeType": "YulFunctionCall",
"src": "25563:37:12"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "25553:6:12",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "25613:10:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "25622:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "25617:1:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "25681:170:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "25706:6:12"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "25731:3:12"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "25736:9:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25727:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25727:19:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "25714:12:12"
},
"nodeType": "YulFunctionCall",
"src": "25714:33:12"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "25699:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25699:49:12"
},
"nodeType": "YulExpressionStatement",
"src": "25699:49:12"
},
{
"nodeType": "YulAssignment",
"src": "25765:24:12",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "25779:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25787:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25775:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25775:14:12"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "25765:6:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "25806:31:12",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "25823:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25834:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25819:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25819:18:12"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "25806:9:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "25647:1:12"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "25650:7:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "25644:2:12"
},
"nodeType": "YulFunctionCall",
"src": "25644:14:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "25659:21:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25661:17:12",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "25670:1:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25673:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25666:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25666:12:12"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "25661:1:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "25640:3:12",
"statements": []
},
"src": "25636:215:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25887:163:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "25905:50:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "25939:3:12"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "25944:9:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25935:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25935:19:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "25922:12:12"
},
"nodeType": "YulFunctionCall",
"src": "25922:33:12"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "25909:9:12",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "25979:6:12"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "26006:9:12"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "26021:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26029:4:12",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "26017:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26017:17:12"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "25987:18:12"
},
"nodeType": "YulFunctionCall",
"src": "25987:48:12"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "25972:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25972:64:12"
},
"nodeType": "YulExpressionStatement",
"src": "25972:64:12"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "25870:7:12"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "25879:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "25867:2:12"
},
"nodeType": "YulFunctionCall",
"src": "25867:19:12"
},
"nodeType": "YulIf",
"src": "25864:186:12"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "26070:4:12"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "26084:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26092:1:12",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "26080:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26080:14:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26096:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26076:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26076:22:12"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "26063:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26063:36:12"
},
"nodeType": "YulExpressionStatement",
"src": "26063:36:12"
}
]
},
"nodeType": "YulCase",
"src": "25477:632:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "25482:1:12",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "26126:229:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "26140:14:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "26153:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26144:5:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26177:74:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26195:42:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "26221:3:12"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "26226:9:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26217:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26217:19:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "26204:12:12"
},
"nodeType": "YulFunctionCall",
"src": "26204:33:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26195:5:12"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "26170:6:12"
},
"nodeType": "YulIf",
"src": "26167:84:12"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "26271:4:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26330:5:12"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "26337:6:12"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "26277:52:12"
},
"nodeType": "YulFunctionCall",
"src": "26277:67:12"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "26264:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26264:81:12"
},
"nodeType": "YulExpressionStatement",
"src": "26264:81:12"
}
]
},
"nodeType": "YulCase",
"src": "26118:237:12",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "25457:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25465:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "25454:2:12"
},
"nodeType": "YulFunctionCall",
"src": "25454:14:12"
},
"nodeType": "YulSwitch",
"src": "25447:908:12"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_calldata_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "25041:4:12",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "25047:3:12",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "25052:3:12",
"type": ""
}
],
"src": "24958:1403:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26395:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26412:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26415:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26405:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26405:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "26405:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26509:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26512:4:12",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26502:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26502:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "26502:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26533:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26536:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "26526:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26526:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "26526:15:12"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "26367:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26596:190:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26606:33:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26633:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26615:17:12"
},
"nodeType": "YulFunctionCall",
"src": "26615:24:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26606:5:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26729:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "26731:16:12"
},
"nodeType": "YulFunctionCall",
"src": "26731:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "26731:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26654:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26661:66:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "26651:2:12"
},
"nodeType": "YulFunctionCall",
"src": "26651:77:12"
},
"nodeType": "YulIf",
"src": "26648:103:12"
},
{
"nodeType": "YulAssignment",
"src": "26760:20:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26771:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26778:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26767:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26767:13:12"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "26760:3:12"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26582:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "26592:3:12",
"type": ""
}
],
"src": "26553:233:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26820:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26837:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26840:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26830:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26830:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "26830:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26934:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26937:4:12",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26927:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26927:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "26927:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26958:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26961:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "26951:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26951:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "26951:15:12"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "26792:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27084:71:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27106:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27114:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27102:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27102:14:12"
},
{
"hexValue": "717565727920666f72206e6f6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27118:29:12",
"type": "",
"value": "query for nonexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27095:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27095:53:12"
},
"nodeType": "YulExpressionStatement",
"src": "27095:53:12"
}
]
},
"name": "store_literal_in_memory_57e9689ce6708e3a387d8fe389b341bf9d24e490c2ad2ae04d9ed03d48b4dcdc",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27076:6:12",
"type": ""
}
],
"src": "26978:177:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27307:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27317:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27383:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27388:2:12",
"type": "",
"value": "27"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27324:58:12"
},
"nodeType": "YulFunctionCall",
"src": "27324:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27317:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27489:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_57e9689ce6708e3a387d8fe389b341bf9d24e490c2ad2ae04d9ed03d48b4dcdc",
"nodeType": "YulIdentifier",
"src": "27400:88:12"
},
"nodeType": "YulFunctionCall",
"src": "27400:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "27400:93:12"
},
{
"nodeType": "YulAssignment",
"src": "27502:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27513:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27518:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27509:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27509:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "27502:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_57e9689ce6708e3a387d8fe389b341bf9d24e490c2ad2ae04d9ed03d48b4dcdc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "27295:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "27303:3:12",
"type": ""
}
],
"src": "27161:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27704:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27714:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27726:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27737:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27722:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27722:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27714:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27761:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27772:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27757:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27757:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27780:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27786:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27776:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27776:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27750:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27750:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "27750:47:12"
},
{
"nodeType": "YulAssignment",
"src": "27806:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27940:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_57e9689ce6708e3a387d8fe389b341bf9d24e490c2ad2ae04d9ed03d48b4dcdc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27814:124:12"
},
"nodeType": "YulFunctionCall",
"src": "27814:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27806:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_57e9689ce6708e3a387d8fe389b341bf9d24e490c2ad2ae04d9ed03d48b4dcdc__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27684:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27699:4:12",
"type": ""
}
],
"src": "27533:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28064:70:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "28086:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28094:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28082:3:12"
},
"nodeType": "YulFunctionCall",
"src": "28082:14:12"
},
{
"hexValue": "717565727920666f7220746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "28098:28:12",
"type": "",
"value": "query for the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28075:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28075:52:12"
},
"nodeType": "YulExpressionStatement",
"src": "28075:52:12"
}
]
},
"name": "store_literal_in_memory_d0554d5ae8360a07c8f8df1cb1543c09d727ad1b93dfed42cd29b710c635481a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "28056:6:12",
"type": ""
}
],
"src": "27958:176:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28286:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28296:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28362:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28367:2:12",
"type": "",
"value": "26"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28303:58:12"
},
"nodeType": "YulFunctionCall",
"src": "28303:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28296:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28468:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_d0554d5ae8360a07c8f8df1cb1543c09d727ad1b93dfed42cd29b710c635481a",
"nodeType": "YulIdentifier",
"src": "28379:88:12"
},
"nodeType": "YulFunctionCall",
"src": "28379:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "28379:93:12"
},
{
"nodeType": "YulAssignment",
"src": "28481:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28492:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28497:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28488:3:12"
},
"nodeType": "YulFunctionCall",
"src": "28488:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "28481:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d0554d5ae8360a07c8f8df1cb1543c09d727ad1b93dfed42cd29b710c635481a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "28274:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "28282:3:12",
"type": ""
}
],
"src": "28140:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28683:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28693:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28705:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28716:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28701:3:12"
},
"nodeType": "YulFunctionCall",
"src": "28701:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28693:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28740:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28751:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28736:3:12"
},
"nodeType": "YulFunctionCall",
"src": "28736:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28759:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28765:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28755:3:12"
},
"nodeType": "YulFunctionCall",
"src": "28755:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28729:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28729:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "28729:47:12"
},
{
"nodeType": "YulAssignment",
"src": "28785:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28919:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d0554d5ae8360a07c8f8df1cb1543c09d727ad1b93dfed42cd29b710c635481a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28793:124:12"
},
"nodeType": "YulFunctionCall",
"src": "28793:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28785:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d0554d5ae8360a07c8f8df1cb1543c09d727ad1b93dfed42cd29b710c635481a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28663:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28678:4:12",
"type": ""
}
],
"src": "28512:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29000:80:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29010:22:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "29025:6:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "29019:5:12"
},
"nodeType": "YulFunctionCall",
"src": "29019:13:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29010:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29068:5:12"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "29041:26:12"
},
"nodeType": "YulFunctionCall",
"src": "29041:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "29041:33:12"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "28978:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "28986:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28994:5:12",
"type": ""
}
],
"src": "28937:143:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29163:274:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "29209:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "29211:77:12"
},
"nodeType": "YulFunctionCall",
"src": "29211:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "29211:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "29184:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29193:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29180:3:12"
},
"nodeType": "YulFunctionCall",
"src": "29180:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29205:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "29176:3:12"
},
"nodeType": "YulFunctionCall",
"src": "29176:32:12"
},
"nodeType": "YulIf",
"src": "29173:119:12"
},
{
"nodeType": "YulBlock",
"src": "29302:128:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "29317:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "29331:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "29321:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "29346:74:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29392:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "29403:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29388:3:12"
},
"nodeType": "YulFunctionCall",
"src": "29388:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "29412:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "29356:31:12"
},
"nodeType": "YulFunctionCall",
"src": "29356:64:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "29346:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29133:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "29144:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "29156:6:12",
"type": ""
}
],
"src": "29086:351:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29569:206:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29579:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29591:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29602:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29587:3:12"
},
"nodeType": "YulFunctionCall",
"src": "29587:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29579:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "29659:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29672:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29683:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29668:3:12"
},
"nodeType": "YulFunctionCall",
"src": "29668:17:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "29615:43:12"
},
"nodeType": "YulFunctionCall",
"src": "29615:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "29615:71:12"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "29740:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29753:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29764:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29749:3:12"
},
"nodeType": "YulFunctionCall",
"src": "29749:18:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "29696:43:12"
},
"nodeType": "YulFunctionCall",
"src": "29696:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "29696:72:12"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29533:9:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "29545:6:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "29553:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "29564:4:12",
"type": ""
}
],
"src": "29443:332:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29841:77:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29851:22:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "29866:6:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "29860:5:12"
},
"nodeType": "YulFunctionCall",
"src": "29860:13:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29851:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29906:5:12"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "29882:23:12"
},
"nodeType": "YulFunctionCall",
"src": "29882:30:12"
},
"nodeType": "YulExpressionStatement",
"src": "29882:30:12"
}
]
},
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "29819:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "29827:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29835:5:12",
"type": ""
}
],
"src": "29781:137:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29998:271:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "30044:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "30046:77:12"
},
"nodeType": "YulFunctionCall",
"src": "30046:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "30046:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "30019:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30028:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "30015:3:12"
},
"nodeType": "YulFunctionCall",
"src": "30015:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30040:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "30011:3:12"
},
"nodeType": "YulFunctionCall",
"src": "30011:32:12"
},
"nodeType": "YulIf",
"src": "30008:119:12"
},
{
"nodeType": "YulBlock",
"src": "30137:125:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "30152:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "30166:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "30156:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "30181:71:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30224:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "30235:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30220:3:12"
},
"nodeType": "YulFunctionCall",
"src": "30220:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "30244:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulIdentifier",
"src": "30191:28:12"
},
"nodeType": "YulFunctionCall",
"src": "30191:61:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "30181:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29968:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "29979:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "29991:6:12",
"type": ""
}
],
"src": "29924:345:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30381:63:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30403:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30411:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30399:3:12"
},
"nodeType": "YulFunctionCall",
"src": "30399:14:12"
},
{
"hexValue": "4d696e74696e67204e6f7420456e61626c6564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30415:21:12",
"type": "",
"value": "Minting Not Enabled"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30392:6:12"
},
"nodeType": "YulFunctionCall",
"src": "30392:45:12"
},
"nodeType": "YulExpressionStatement",
"src": "30392:45:12"
}
]
},
"name": "store_literal_in_memory_3a9974a74fc1b2245a0b9d753c25cc9a919ec15be33e2bbccd5aa3569c4ecad4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30373:6:12",
"type": ""
}
],
"src": "30275:169:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30596:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30606:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30672:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30677:2:12",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "30613:58:12"
},
"nodeType": "YulFunctionCall",
"src": "30613:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30606:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30778:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_3a9974a74fc1b2245a0b9d753c25cc9a919ec15be33e2bbccd5aa3569c4ecad4",
"nodeType": "YulIdentifier",
"src": "30689:88:12"
},
"nodeType": "YulFunctionCall",
"src": "30689:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "30689:93:12"
},
{
"nodeType": "YulAssignment",
"src": "30791:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30802:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30807:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30798:3:12"
},
"nodeType": "YulFunctionCall",
"src": "30798:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "30791:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3a9974a74fc1b2245a0b9d753c25cc9a919ec15be33e2bbccd5aa3569c4ecad4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "30584:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "30592:3:12",
"type": ""
}
],
"src": "30450:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30993:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31003:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31015:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31026:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31011:3:12"
},
"nodeType": "YulFunctionCall",
"src": "31011:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31003:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31050:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31061:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31046:3:12"
},
"nodeType": "YulFunctionCall",
"src": "31046:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31069:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31075:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "31065:3:12"
},
"nodeType": "YulFunctionCall",
"src": "31065:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31039:6:12"
},
"nodeType": "YulFunctionCall",
"src": "31039:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "31039:47:12"
},
{
"nodeType": "YulAssignment",
"src": "31095:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31229:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3a9974a74fc1b2245a0b9d753c25cc9a919ec15be33e2bbccd5aa3569c4ecad4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31103:124:12"
},
"nodeType": "YulFunctionCall",
"src": "31103:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31095:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3a9974a74fc1b2245a0b9d753c25cc9a919ec15be33e2bbccd5aa3569c4ecad4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "30973:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30988:4:12",
"type": ""
}
],
"src": "30822:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31353:57:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31375:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31383:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31371:3:12"
},
"nodeType": "YulFunctionCall",
"src": "31371:14:12"
},
{
"hexValue": "496e76616c696420496e707574",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31387:15:12",
"type": "",
"value": "Invalid Input"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31364:6:12"
},
"nodeType": "YulFunctionCall",
"src": "31364:39:12"
},
"nodeType": "YulExpressionStatement",
"src": "31364:39:12"
}
]
},
"name": "store_literal_in_memory_9404501c113e486e0697e27bc7935ec4eb29770a945d28921aff00cee17e3fed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31345:6:12",
"type": ""
}
],
"src": "31247:163:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31562:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31572:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31638:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31643:2:12",
"type": "",
"value": "13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31579:58:12"
},
"nodeType": "YulFunctionCall",
"src": "31579:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31572:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31744:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_9404501c113e486e0697e27bc7935ec4eb29770a945d28921aff00cee17e3fed",
"nodeType": "YulIdentifier",
"src": "31655:88:12"
},
"nodeType": "YulFunctionCall",
"src": "31655:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "31655:93:12"
},
{
"nodeType": "YulAssignment",
"src": "31757:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31768:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31773:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31764:3:12"
},
"nodeType": "YulFunctionCall",
"src": "31764:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "31757:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9404501c113e486e0697e27bc7935ec4eb29770a945d28921aff00cee17e3fed_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "31550:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "31558:3:12",
"type": ""
}
],
"src": "31416:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31959:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31969:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31981:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31992:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31977:3:12"
},
"nodeType": "YulFunctionCall",
"src": "31977:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31969:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32016:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32027:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32012:3:12"
},
"nodeType": "YulFunctionCall",
"src": "32012:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32035:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32041:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "32031:3:12"
},
"nodeType": "YulFunctionCall",
"src": "32031:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32005:6:12"
},
"nodeType": "YulFunctionCall",
"src": "32005:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "32005:47:12"
},
{
"nodeType": "YulAssignment",
"src": "32061:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32195:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9404501c113e486e0697e27bc7935ec4eb29770a945d28921aff00cee17e3fed_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32069:124:12"
},
"nodeType": "YulFunctionCall",
"src": "32069:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32061:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9404501c113e486e0697e27bc7935ec4eb29770a945d28921aff00cee17e3fed__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "31939:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "31954:4:12",
"type": ""
}
],
"src": "31788:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32261:362:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32271:25:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32294:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "32276:17:12"
},
"nodeType": "YulFunctionCall",
"src": "32276:20:12"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32271:1:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "32305:25:12",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32328:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "32310:17:12"
},
"nodeType": "YulFunctionCall",
"src": "32310:20:12"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32305:1:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "32339:28:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32362:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32365:1:12"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "32358:3:12"
},
"nodeType": "YulFunctionCall",
"src": "32358:9:12"
},
"variables": [
{
"name": "product_raw",
"nodeType": "YulTypedName",
"src": "32343:11:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "32376:41:12",
"value": {
"arguments": [
{
"name": "product_raw",
"nodeType": "YulIdentifier",
"src": "32405:11:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "32387:17:12"
},
"nodeType": "YulFunctionCall",
"src": "32387:30:12"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "32376:7:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "32594:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "32596:16:12"
},
"nodeType": "YulFunctionCall",
"src": "32596:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "32596:18:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32527:1:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "32520:6:12"
},
"nodeType": "YulFunctionCall",
"src": "32520:9:12"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32550:1:12"
},
{
"arguments": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "32557:7:12"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32566:1:12"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "32553:3:12"
},
"nodeType": "YulFunctionCall",
"src": "32553:15:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "32547:2:12"
},
"nodeType": "YulFunctionCall",
"src": "32547:22:12"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "32500:2:12"
},
"nodeType": "YulFunctionCall",
"src": "32500:83:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "32480:6:12"
},
"nodeType": "YulFunctionCall",
"src": "32480:113:12"
},
"nodeType": "YulIf",
"src": "32477:139:12"
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "32244:1:12",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "32247:1:12",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "32253:7:12",
"type": ""
}
],
"src": "32213:410:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32735:61:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32757:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32765:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32753:3:12"
},
"nodeType": "YulFunctionCall",
"src": "32753:14:12"
},
{
"hexValue": "6e6f6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32769:19:12",
"type": "",
"value": "nonexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32746:6:12"
},
"nodeType": "YulFunctionCall",
"src": "32746:43:12"
},
"nodeType": "YulExpressionStatement",
"src": "32746:43:12"
}
]
},
"name": "store_literal_in_memory_92f9e08ca9f4940db78443fe8b05b28dd97a65f97dd0cd6312a15bd070d61d04",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "32727:6:12",
"type": ""
}
],
"src": "32629:167:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32948:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32958:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33024:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33029:2:12",
"type": "",
"value": "17"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32965:58:12"
},
"nodeType": "YulFunctionCall",
"src": "32965:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32958:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33130:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_92f9e08ca9f4940db78443fe8b05b28dd97a65f97dd0cd6312a15bd070d61d04",
"nodeType": "YulIdentifier",
"src": "33041:88:12"
},
"nodeType": "YulFunctionCall",
"src": "33041:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "33041:93:12"
},
{
"nodeType": "YulAssignment",
"src": "33143:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33154:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33159:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33150:3:12"
},
"nodeType": "YulFunctionCall",
"src": "33150:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "33143:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_92f9e08ca9f4940db78443fe8b05b28dd97a65f97dd0cd6312a15bd070d61d04_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "32936:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "32944:3:12",
"type": ""
}
],
"src": "32802:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33345:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33355:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33367:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33378:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33363:3:12"
},
"nodeType": "YulFunctionCall",
"src": "33363:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33355:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33402:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33413:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33398:3:12"
},
"nodeType": "YulFunctionCall",
"src": "33398:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33421:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33427:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "33417:3:12"
},
"nodeType": "YulFunctionCall",
"src": "33417:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33391:6:12"
},
"nodeType": "YulFunctionCall",
"src": "33391:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "33391:47:12"
},
{
"nodeType": "YulAssignment",
"src": "33447:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33581:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_92f9e08ca9f4940db78443fe8b05b28dd97a65f97dd0cd6312a15bd070d61d04_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "33455:124:12"
},
"nodeType": "YulFunctionCall",
"src": "33455:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33447:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_92f9e08ca9f4940db78443fe8b05b28dd97a65f97dd0cd6312a15bd070d61d04__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "33325:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "33340:4:12",
"type": ""
}
],
"src": "33174:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33713:34:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33723:18:12",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33738:3:12"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "33723:11:12"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "33685:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "33690:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "33701:11:12",
"type": ""
}
],
"src": "33599:148:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33884:767:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "33894:29:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33917:5:12"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "33911:5:12"
},
"nodeType": "YulFunctionCall",
"src": "33911:12:12"
},
"variables": [
{
"name": "slotValue",
"nodeType": "YulTypedName",
"src": "33898:9:12",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "33932:50:12",
"value": {
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "33972:9:12"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "33946:25:12"
},
"nodeType": "YulFunctionCall",
"src": "33946:36:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "33936:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "33991:96:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34075:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "34080:6:12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "33998:76:12"
},
"nodeType": "YulFunctionCall",
"src": "33998:89:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33991:3:12"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "34136:159:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34189:3:12"
},
{
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "34198:9:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34213:4:12",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "34209:3:12"
},
"nodeType": "YulFunctionCall",
"src": "34209:9:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "34194:3:12"
},
"nodeType": "YulFunctionCall",
"src": "34194:25:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34182:6:12"
},
"nodeType": "YulFunctionCall",
"src": "34182:38:12"
},
"nodeType": "YulExpressionStatement",
"src": "34182:38:12"
},
{
"nodeType": "YulAssignment",
"src": "34233:52:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34244:3:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "34253:6:12"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "34275:6:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "34268:6:12"
},
"nodeType": "YulFunctionCall",
"src": "34268:14:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "34261:6:12"
},
"nodeType": "YulFunctionCall",
"src": "34261:22:12"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "34249:3:12"
},
"nodeType": "YulFunctionCall",
"src": "34249:35:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34240:3:12"
},
"nodeType": "YulFunctionCall",
"src": "34240:45:12"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "34233:3:12"
}
]
}
]
},
"nodeType": "YulCase",
"src": "34129:166:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "34134:1:12",
"type": "",
"value": "0"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "34311:334:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "34356:53:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "34403:5:12"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "34371:31:12"
},
"nodeType": "YulFunctionCall",
"src": "34371:38:12"
},
"variables": [
{
"name": "dataPos",
"nodeType": "YulTypedName",
"src": "34360:7:12",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "34422:10:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "34431:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "34426:1:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "34489:110:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34518:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "34523:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34514:3:12"
},
"nodeType": "YulFunctionCall",
"src": "34514:11:12"
},
{
"arguments": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "34533:7:12"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "34527:5:12"
},
"nodeType": "YulFunctionCall",
"src": "34527:14:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34507:6:12"
},
"nodeType": "YulFunctionCall",
"src": "34507:35:12"
},
"nodeType": "YulExpressionStatement",
"src": "34507:35:12"
},
{
"nodeType": "YulAssignment",
"src": "34559:26:12",
"value": {
"arguments": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "34574:7:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34583:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34570:3:12"
},
"nodeType": "YulFunctionCall",
"src": "34570:15:12"
},
"variableNames": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "34559:7:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "34456:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "34459:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "34453:2:12"
},
"nodeType": "YulFunctionCall",
"src": "34453:13:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "34467:21:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34469:17:12",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "34478:1:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34481:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34474:3:12"
},
"nodeType": "YulFunctionCall",
"src": "34474:12:12"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "34469:1:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "34449:3:12",
"statements": []
},
"src": "34445:154:12"
},
{
"nodeType": "YulAssignment",
"src": "34612:23:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34623:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "34628:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34619:3:12"
},
"nodeType": "YulFunctionCall",
"src": "34619:16:12"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "34612:3:12"
}
]
}
]
},
"nodeType": "YulCase",
"src": "34304:341:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "34309:1:12",
"type": "",
"value": "1"
}
}
],
"expression": {
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "34107:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34118:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "34103:3:12"
},
"nodeType": "YulFunctionCall",
"src": "34103:17:12"
},
"nodeType": "YulSwitch",
"src": "34096:549:12"
}
]
},
"name": "abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "33865:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "33872:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "33880:3:12",
"type": ""
}
],
"src": "33777:874:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34767:280:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "34777:53:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "34824:5:12"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "34791:32:12"
},
"nodeType": "YulFunctionCall",
"src": "34791:39:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "34781:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "34839:96:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34923:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "34928:6:12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "34846:76:12"
},
"nodeType": "YulFunctionCall",
"src": "34846:89:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34839:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "34983:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34990:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34979:3:12"
},
"nodeType": "YulFunctionCall",
"src": "34979:16:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34997:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35002:6:12"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "34944:34:12"
},
"nodeType": "YulFunctionCall",
"src": "34944:65:12"
},
"nodeType": "YulExpressionStatement",
"src": "34944:65:12"
},
{
"nodeType": "YulAssignment",
"src": "35018:23:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35029:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35034:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35025:3:12"
},
"nodeType": "YulFunctionCall",
"src": "35025:16:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "35018:3:12"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34748:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "34755:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "34763:3:12",
"type": ""
}
],
"src": "34657:390:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35234:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35245:99:12",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "35331:6:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35340:3:12"
}
],
"functionName": {
"name": "abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "35252:78:12"
},
"nodeType": "YulFunctionCall",
"src": "35252:92:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35245:3:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "35354:102:12",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "35443:6:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35452:3:12"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "35361:81:12"
},
"nodeType": "YulFunctionCall",
"src": "35361:95:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35354:3:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "35466:10:12",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35473:3:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "35466:3:12"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_storage_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "35205:3:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "35211:6:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "35219:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "35230:3:12",
"type": ""
}
],
"src": "35053:429:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35669:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35680:102:12",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "35769:6:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35778:3:12"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "35687:81:12"
},
"nodeType": "YulFunctionCall",
"src": "35687:95:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35680:3:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "35792:99:12",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "35878:6:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35887:3:12"
}
],
"functionName": {
"name": "abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "35799:78:12"
},
"nodeType": "YulFunctionCall",
"src": "35799:92:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35792:3:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "35901:10:12",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35908:3:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "35901:3:12"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "35640:3:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "35646:6:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "35654:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "35665:3:12",
"type": ""
}
],
"src": "35488:429:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36029:119:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36051:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36059:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36047:3:12"
},
"nodeType": "YulFunctionCall",
"src": "36047:14:12"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "36063:34:12",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36040:6:12"
},
"nodeType": "YulFunctionCall",
"src": "36040:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "36040:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36119:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36127:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36115:3:12"
},
"nodeType": "YulFunctionCall",
"src": "36115:15:12"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "36132:8:12",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36108:6:12"
},
"nodeType": "YulFunctionCall",
"src": "36108:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "36108:33:12"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "36021:6:12",
"type": ""
}
],
"src": "35923:225:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36300:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36310:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36376:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36381:2:12",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "36317:58:12"
},
"nodeType": "YulFunctionCall",
"src": "36317:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36310:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36482:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "36393:88:12"
},
"nodeType": "YulFunctionCall",
"src": "36393:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "36393:93:12"
},
{
"nodeType": "YulAssignment",
"src": "36495:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36506:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36511:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36502:3:12"
},
"nodeType": "YulFunctionCall",
"src": "36502:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "36495:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "36288:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "36296:3:12",
"type": ""
}
],
"src": "36154:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36697:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36707:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36719:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36730:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36715:3:12"
},
"nodeType": "YulFunctionCall",
"src": "36715:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36707:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36754:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36765:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36750:3:12"
},
"nodeType": "YulFunctionCall",
"src": "36750:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36773:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36779:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "36769:3:12"
},
"nodeType": "YulFunctionCall",
"src": "36769:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36743:6:12"
},
"nodeType": "YulFunctionCall",
"src": "36743:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "36743:47:12"
},
{
"nodeType": "YulAssignment",
"src": "36799:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36933:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "36807:124:12"
},
"nodeType": "YulFunctionCall",
"src": "36807:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36799:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "36677:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "36692:4:12",
"type": ""
}
],
"src": "36526:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37057:76:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "37079:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37087:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37075:3:12"
},
"nodeType": "YulFunctionCall",
"src": "37075:14:12"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "37091:34:12",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37068:6:12"
},
"nodeType": "YulFunctionCall",
"src": "37068:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "37068:58:12"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "37049:6:12",
"type": ""
}
],
"src": "36951:182:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37285:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37295:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37361:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37366:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "37302:58:12"
},
"nodeType": "YulFunctionCall",
"src": "37302:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37295:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37467:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "37378:88:12"
},
"nodeType": "YulFunctionCall",
"src": "37378:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "37378:93:12"
},
{
"nodeType": "YulAssignment",
"src": "37480:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37491:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37496:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37487:3:12"
},
"nodeType": "YulFunctionCall",
"src": "37487:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "37480:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "37273:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "37281:3:12",
"type": ""
}
],
"src": "37139:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37682:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37692:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37704:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37715:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37700:3:12"
},
"nodeType": "YulFunctionCall",
"src": "37700:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37692:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37739:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37750:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37735:3:12"
},
"nodeType": "YulFunctionCall",
"src": "37735:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37758:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37764:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "37754:3:12"
},
"nodeType": "YulFunctionCall",
"src": "37754:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37728:6:12"
},
"nodeType": "YulFunctionCall",
"src": "37728:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "37728:47:12"
},
{
"nodeType": "YulAssignment",
"src": "37784:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37918:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "37792:124:12"
},
"nodeType": "YulFunctionCall",
"src": "37792:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37784:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "37662:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "37677:4:12",
"type": ""
}
],
"src": "37511:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38042:69:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "38064:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38072:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38060:3:12"
},
"nodeType": "YulFunctionCall",
"src": "38060:14:12"
},
{
"hexValue": "4552433732313a206e6f6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "38076:27:12",
"type": "",
"value": "ERC721: nonexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38053:6:12"
},
"nodeType": "YulFunctionCall",
"src": "38053:51:12"
},
"nodeType": "YulExpressionStatement",
"src": "38053:51:12"
}
]
},
"name": "store_literal_in_memory_a34d5d5fb66a7aa1196581d4b63842b184b648ae201438341d04b3396c6896a9",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "38034:6:12",
"type": ""
}
],
"src": "37936:175:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38263:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38273:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38339:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38344:2:12",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "38280:58:12"
},
"nodeType": "YulFunctionCall",
"src": "38280:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38273:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38445:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_a34d5d5fb66a7aa1196581d4b63842b184b648ae201438341d04b3396c6896a9",
"nodeType": "YulIdentifier",
"src": "38356:88:12"
},
"nodeType": "YulFunctionCall",
"src": "38356:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "38356:93:12"
},
{
"nodeType": "YulAssignment",
"src": "38458:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38469:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38474:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38465:3:12"
},
"nodeType": "YulFunctionCall",
"src": "38465:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "38458:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a34d5d5fb66a7aa1196581d4b63842b184b648ae201438341d04b3396c6896a9_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "38251:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "38259:3:12",
"type": ""
}
],
"src": "38117:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38660:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38670:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "38682:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38693:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38678:3:12"
},
"nodeType": "YulFunctionCall",
"src": "38678:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38670:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "38717:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38728:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38713:3:12"
},
"nodeType": "YulFunctionCall",
"src": "38713:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38736:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "38742:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "38732:3:12"
},
"nodeType": "YulFunctionCall",
"src": "38732:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38706:6:12"
},
"nodeType": "YulFunctionCall",
"src": "38706:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "38706:47:12"
},
{
"nodeType": "YulAssignment",
"src": "38762:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38896:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a34d5d5fb66a7aa1196581d4b63842b184b648ae201438341d04b3396c6896a9_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "38770:124:12"
},
"nodeType": "YulFunctionCall",
"src": "38770:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38762:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a34d5d5fb66a7aa1196581d4b63842b184b648ae201438341d04b3396c6896a9__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "38640:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "38655:4:12",
"type": ""
}
],
"src": "38489:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39020:59:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "39042:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39050:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39038:3:12"
},
"nodeType": "YulFunctionCall",
"src": "39038:14:12"
},
{
"hexValue": "496e636f7272656374206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "39054:17:12",
"type": "",
"value": "Incorrect owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39031:6:12"
},
"nodeType": "YulFunctionCall",
"src": "39031:41:12"
},
"nodeType": "YulExpressionStatement",
"src": "39031:41:12"
}
]
},
"name": "store_literal_in_memory_9900d63c9427fcfb6b03a90ee47cc883388764d25cf9e1a8e8ec89b035a96b66",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "39012:6:12",
"type": ""
}
],
"src": "38914:165:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39231:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "39241:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39307:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39312:2:12",
"type": "",
"value": "15"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "39248:58:12"
},
"nodeType": "YulFunctionCall",
"src": "39248:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39241:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39413:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_9900d63c9427fcfb6b03a90ee47cc883388764d25cf9e1a8e8ec89b035a96b66",
"nodeType": "YulIdentifier",
"src": "39324:88:12"
},
"nodeType": "YulFunctionCall",
"src": "39324:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "39324:93:12"
},
{
"nodeType": "YulAssignment",
"src": "39426:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39437:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39442:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39433:3:12"
},
"nodeType": "YulFunctionCall",
"src": "39433:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "39426:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9900d63c9427fcfb6b03a90ee47cc883388764d25cf9e1a8e8ec89b035a96b66_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "39219:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "39227:3:12",
"type": ""
}
],
"src": "39085:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39628:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "39638:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "39650:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39661:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39646:3:12"
},
"nodeType": "YulFunctionCall",
"src": "39646:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "39638:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "39685:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39696:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39681:3:12"
},
"nodeType": "YulFunctionCall",
"src": "39681:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "39704:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "39710:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "39700:3:12"
},
"nodeType": "YulFunctionCall",
"src": "39700:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39674:6:12"
},
"nodeType": "YulFunctionCall",
"src": "39674:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "39674:47:12"
},
{
"nodeType": "YulAssignment",
"src": "39730:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "39864:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9900d63c9427fcfb6b03a90ee47cc883388764d25cf9e1a8e8ec89b035a96b66_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "39738:124:12"
},
"nodeType": "YulFunctionCall",
"src": "39738:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "39730:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9900d63c9427fcfb6b03a90ee47cc883388764d25cf9e1a8e8ec89b035a96b66__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "39608:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "39623:4:12",
"type": ""
}
],
"src": "39457:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39988:56:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "40010:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40018:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40006:3:12"
},
"nodeType": "YulFunctionCall",
"src": "40006:14:12"
},
{
"hexValue": "7a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "40022:14:12",
"type": "",
"value": "zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39999:6:12"
},
"nodeType": "YulFunctionCall",
"src": "39999:38:12"
},
"nodeType": "YulExpressionStatement",
"src": "39999:38:12"
}
]
},
"name": "store_literal_in_memory_a4b4461cfc9c1f0249c17896b005545dc5d1690f81d2023afc517b07ed3227a7",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "39980:6:12",
"type": ""
}
],
"src": "39882:162:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40196:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "40206:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "40272:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40277:2:12",
"type": "",
"value": "12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "40213:58:12"
},
"nodeType": "YulFunctionCall",
"src": "40213:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "40206:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "40378:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_a4b4461cfc9c1f0249c17896b005545dc5d1690f81d2023afc517b07ed3227a7",
"nodeType": "YulIdentifier",
"src": "40289:88:12"
},
"nodeType": "YulFunctionCall",
"src": "40289:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "40289:93:12"
},
{
"nodeType": "YulAssignment",
"src": "40391:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "40402:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40407:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40398:3:12"
},
"nodeType": "YulFunctionCall",
"src": "40398:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "40391:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a4b4461cfc9c1f0249c17896b005545dc5d1690f81d2023afc517b07ed3227a7_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "40184:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "40192:3:12",
"type": ""
}
],
"src": "40050:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40593:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "40603:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "40615:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40626:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40611:3:12"
},
"nodeType": "YulFunctionCall",
"src": "40611:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "40603:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "40650:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40661:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40646:3:12"
},
"nodeType": "YulFunctionCall",
"src": "40646:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "40669:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "40675:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "40665:3:12"
},
"nodeType": "YulFunctionCall",
"src": "40665:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40639:6:12"
},
"nodeType": "YulFunctionCall",
"src": "40639:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "40639:47:12"
},
{
"nodeType": "YulAssignment",
"src": "40695:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "40829:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a4b4461cfc9c1f0249c17896b005545dc5d1690f81d2023afc517b07ed3227a7_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "40703:124:12"
},
"nodeType": "YulFunctionCall",
"src": "40703:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "40695:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a4b4461cfc9c1f0249c17896b005545dc5d1690f81d2023afc517b07ed3227a7__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "40573:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "40588:4:12",
"type": ""
}
],
"src": "40422:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40953:56:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "40975:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40983:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40971:3:12"
},
"nodeType": "YulFunctionCall",
"src": "40971:14:12"
},
{
"hexValue": "5a65726f2042616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "40987:14:12",
"type": "",
"value": "Zero Balance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40964:6:12"
},
"nodeType": "YulFunctionCall",
"src": "40964:38:12"
},
"nodeType": "YulExpressionStatement",
"src": "40964:38:12"
}
]
},
"name": "store_literal_in_memory_f87c2236b6f963149e9d84fc6835c6b15e021240e639a7eac3a61ec6f2c4b762",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40945:6:12",
"type": ""
}
],
"src": "40847:162:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41161:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "41171:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "41237:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41242:2:12",
"type": "",
"value": "12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "41178:58:12"
},
"nodeType": "YulFunctionCall",
"src": "41178:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "41171:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "41343:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_f87c2236b6f963149e9d84fc6835c6b15e021240e639a7eac3a61ec6f2c4b762",
"nodeType": "YulIdentifier",
"src": "41254:88:12"
},
"nodeType": "YulFunctionCall",
"src": "41254:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "41254:93:12"
},
{
"nodeType": "YulAssignment",
"src": "41356:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "41367:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41372:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41363:3:12"
},
"nodeType": "YulFunctionCall",
"src": "41363:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "41356:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f87c2236b6f963149e9d84fc6835c6b15e021240e639a7eac3a61ec6f2c4b762_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "41149:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "41157:3:12",
"type": ""
}
],
"src": "41015:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41558:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "41568:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "41580:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41591:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41576:3:12"
},
"nodeType": "YulFunctionCall",
"src": "41576:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "41568:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "41615:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41626:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41611:3:12"
},
"nodeType": "YulFunctionCall",
"src": "41611:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "41634:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "41640:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "41630:3:12"
},
"nodeType": "YulFunctionCall",
"src": "41630:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41604:6:12"
},
"nodeType": "YulFunctionCall",
"src": "41604:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "41604:47:12"
},
{
"nodeType": "YulAssignment",
"src": "41660:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "41794:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f87c2236b6f963149e9d84fc6835c6b15e021240e639a7eac3a61ec6f2c4b762_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "41668:124:12"
},
"nodeType": "YulFunctionCall",
"src": "41668:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "41660:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f87c2236b6f963149e9d84fc6835c6b15e021240e639a7eac3a61ec6f2c4b762__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "41538:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "41553:4:12",
"type": ""
}
],
"src": "41387:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41857:149:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "41867:25:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "41890:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "41872:17:12"
},
"nodeType": "YulFunctionCall",
"src": "41872:20:12"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "41867:1:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "41901:25:12",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "41924:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "41906:17:12"
},
"nodeType": "YulFunctionCall",
"src": "41906:20:12"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "41901:1:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "41935:17:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "41947:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "41950:1:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "41943:3:12"
},
"nodeType": "YulFunctionCall",
"src": "41943:9:12"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "41935:4:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "41977:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "41979:16:12"
},
"nodeType": "YulFunctionCall",
"src": "41979:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "41979:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "41968:4:12"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "41974:1:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "41965:2:12"
},
"nodeType": "YulFunctionCall",
"src": "41965:11:12"
},
"nodeType": "YulIf",
"src": "41962:37:12"
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "41843:1:12",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "41846:1:12",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "41852:4:12",
"type": ""
}
],
"src": "41812:194:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42056:147:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "42066:25:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "42089:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "42071:17:12"
},
"nodeType": "YulFunctionCall",
"src": "42071:20:12"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "42066:1:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "42100:25:12",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "42123:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "42105:17:12"
},
"nodeType": "YulFunctionCall",
"src": "42105:20:12"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "42100:1:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "42134:16:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "42145:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "42148:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42141:3:12"
},
"nodeType": "YulFunctionCall",
"src": "42141:9:12"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "42134:3:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "42174:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "42176:16:12"
},
"nodeType": "YulFunctionCall",
"src": "42176:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "42176:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "42166:1:12"
},
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "42169:3:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "42163:2:12"
},
"nodeType": "YulFunctionCall",
"src": "42163:10:12"
},
"nodeType": "YulIf",
"src": "42160:36:12"
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "42043:1:12",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "42046:1:12",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "42052:3:12",
"type": ""
}
],
"src": "42012:191:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42315:131:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42337:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42345:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42333:3:12"
},
"nodeType": "YulFunctionCall",
"src": "42333:14:12"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "42349:34:12",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42326:6:12"
},
"nodeType": "YulFunctionCall",
"src": "42326:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "42326:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42405:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42413:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42401:3:12"
},
"nodeType": "YulFunctionCall",
"src": "42401:15:12"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "42418:20:12",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42394:6:12"
},
"nodeType": "YulFunctionCall",
"src": "42394:45:12"
},
"nodeType": "YulExpressionStatement",
"src": "42394:45:12"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "42307:6:12",
"type": ""
}
],
"src": "42209:237:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42598:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "42608:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "42674:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42679:2:12",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "42615:58:12"
},
"nodeType": "YulFunctionCall",
"src": "42615:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "42608:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "42780:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "42691:88:12"
},
"nodeType": "YulFunctionCall",
"src": "42691:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "42691:93:12"
},
{
"nodeType": "YulAssignment",
"src": "42793:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "42804:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42809:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42800:3:12"
},
"nodeType": "YulFunctionCall",
"src": "42800:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "42793:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "42586:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "42594:3:12",
"type": ""
}
],
"src": "42452:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42995:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "43005:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "43017:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43028:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43013:3:12"
},
"nodeType": "YulFunctionCall",
"src": "43013:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "43005:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "43052:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43063:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43048:3:12"
},
"nodeType": "YulFunctionCall",
"src": "43048:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "43071:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "43077:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "43067:3:12"
},
"nodeType": "YulFunctionCall",
"src": "43067:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43041:6:12"
},
"nodeType": "YulFunctionCall",
"src": "43041:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "43041:47:12"
},
{
"nodeType": "YulAssignment",
"src": "43097:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "43231:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "43105:124:12"
},
"nodeType": "YulFunctionCall",
"src": "43105:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "43097:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "42975:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "42990:4:12",
"type": ""
}
],
"src": "42824:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "43375:206:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "43385:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "43397:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43408:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43393:3:12"
},
"nodeType": "YulFunctionCall",
"src": "43393:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "43385:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "43465:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "43478:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43489:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43474:3:12"
},
"nodeType": "YulFunctionCall",
"src": "43474:17:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "43421:43:12"
},
"nodeType": "YulFunc
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