ETH Price: $3,077.98 (+1.87%)
 

Overview

Max Total Supply

19,834 OVFF

Holders

4,184

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 OVFF
0x1bc0ea41fffa20f3b4d18a5b8f8823e951d6f89c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Op_Virtual_Fisher_Fans

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at optimistic.etherscan.io on 2023-10-08
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

/**
 * @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) {
        this; 
        return msg.data;
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @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);
}

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

  
interface IERC20Core {
    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);
}

/**
 * @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 internal _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string internal _name;

    // Token symbol
    string internal _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() {
        _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();
        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();

        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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // 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, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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.
     * 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) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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();

        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);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (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();

        if (to == address(0)) revert TransferToZeroAddress();

        _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;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _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();
            }
    }

    /**
     * @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();
            } else {
                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();

        _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:
            // - `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)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // 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`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _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();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _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();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        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();
        }

        _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();
        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)
        }
    }
}

contract Op_Virtual_Fisher_Fans is ERC721A, Ownable {
    using Counters for Counters.Counter;

    string private _tokenURI = "ipfs://QmPeetRkPkZCH5CoSQC2SVhaiGZ3NZPweHQfrnSHixPPaH/metadata.json";
    uint256 public maxTotalSupply = 100000;

    mapping(address => bool) private _hasMinted;
    mapping(uint256 => uint256) private amountToPrice;

    event NewMint(address indexed msgSender, uint256 indexed mintQuantity);

    Counters.Counter private _tokenIdCounter;

    constructor() {
        _name = "Op Virtual Fisher Fans";
        _symbol = "OVFF";
        amountToPrice[1] = 0.00000 ether;
        amountToPrice[2] = 0.00000 ether;
        amountToPrice[3] = 0.00000 ether;
        amountToPrice[20] = 0.0001 ether; 
    }
   
    function _startTokenId() internal view override virtual returns (uint256) {
        return 1;
    }

    function addNewPrice(uint256 amount, uint256 price) public onlyOwner {
        amountToPrice[amount] = price;
    }

    function changeDefURI(string calldata _URI) external onlyOwner {
        _tokenURI = _URI;
    }
 
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
       require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
       return _tokenURI;  
    }

    function mint(uint256 quantity) public payable {
        require(maxTotalSupply == 0 || _currentIndex + quantity <= maxTotalSupply, "exceed max total supply.");
        require((quantity <= 3 && msg.value >= amountToPrice[quantity]) || (msg.value >= amountToPrice[quantity] && msg.value > 0), "ERC721: Insufficient payment");
        _safeMint(msg.sender, quantity);
        emit NewMint(msg.sender, quantity);
    }

    /**
     * @dev Sets a new name for all token types.
     */
    function setName(string calldata newName) external onlyOwner {
        _name = newName;
    }

    /**
     * @dev Sets a new symbol for all token types.
     */
    function setSymbol(string calldata newSymbol) external onlyOwner {
        _symbol = newSymbol;
    }

    function withdrawErc20(address t) external onlyOwner {
        uint256 amount =  IERC20Core(t).balanceOf(address(this));
        IERC20Core(t).transfer(address(owner()), amount);
    }

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"msgSender","type":"address"},{"indexed":true,"internalType":"uint256","name":"mintQuantity","type":"uint256"}],"name":"NewMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"addNewPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"changeDefURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newSymbol","type":"string"}],"name":"setSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"t","type":"address"}],"name":"withdrawErc20","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060800160405280604381526020016200323260439139600990816200002e9190620004cc565b50620186a0600a553480156200004357600080fd5b50620000546200017b60201b60201c565b6000819055506200007a6200006e6200018460201b60201c565b6200018c60201b60201c565b6040518060400160405280601681526020017f4f70205669727475616c204669736865722046616e730000000000000000000081525060029081620000c09190620004cc565b506040518060400160405280600481526020017f4f5646460000000000000000000000000000000000000000000000000000000081525060039081620001079190620004cc565b506000600c600060018152602001908152602001600020819055506000600c600060028152602001908152602001600020819055506000600c60006003815260200190815260200160002081905550655af3107a4000600c60006014815260200190815260200160002081905550620005b3565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d457607f821691505b602082108103620002ea57620002e96200028c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000315565b62000360868362000315565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003ad620003a7620003a18462000378565b62000382565b62000378565b9050919050565b6000819050919050565b620003c9836200038c565b620003e1620003d882620003b4565b84845462000322565b825550505050565b600090565b620003f8620003e9565b62000405818484620003be565b505050565b5b818110156200042d5762000421600082620003ee565b6001810190506200040b565b5050565b601f8211156200047c576200044681620002f0565b620004518462000305565b8101602085101562000461578190505b62000479620004708562000305565b8301826200040a565b50505b505050565b600082821c905092915050565b6000620004a16000198460080262000481565b1980831691505092915050565b6000620004bc83836200048e565b9150826002028217905092915050565b620004d78262000252565b67ffffffffffffffff811115620004f357620004f26200025d565b5b620004ff8254620002bb565b6200050c82828562000431565b600060209050601f8311600181146200054457600084156200052f578287015190505b6200053b8582620004ae565b865550620005ab565b601f1984166200055486620002f0565b60005b828110156200057e5784890151825560018201915060208501945060208101905062000557565b868310156200059e57848901516200059a601f8916826200048e565b8355505b6001600288020188555050505b505050505050565b612c6f80620005c36000396000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063b84c82461161008a578063c7e42b1b11610064578063c7e42b1b146104bd578063c87b56dd146104e6578063e985e9c514610523578063f2fde38b1461056057610166565b8063b84c82461461044f578063b88d4fde14610478578063c47f00271461049457610166565b806370a0823114610360578063715018a61461039d5780638da5cb5b146103b457806395d89b41146103df578063a0712d681461040a578063a22cb4651461042657610166565b806323b872dd1161012357806323b872dd146102805780632ab4d0521461029c5780633ccfd60b146102c757806342842e0e146102de57806343596aa2146102fa5780636352211e1461032357610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b3146102105780630e5c19191461022c57806318160ddd14610255575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190611ebc565b610589565b60405161019f9190611f04565b60405180910390f35b3480156101b457600080fd5b506101bd61061b565b6040516101ca9190611faf565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612007565b6106ad565b6040516102079190612075565b60405180910390f35b61022a600480360381019061022591906120bc565b61072c565b005b34801561023857600080fd5b50610253600480360381019061024e9190612161565b610870565b005b34801561026157600080fd5b5061026a610902565b60405161027791906121bd565b60405180910390f35b61029a600480360381019061029591906121d8565b610919565b005b3480156102a857600080fd5b506102b1610c3b565b6040516102be91906121bd565b60405180910390f35b3480156102d357600080fd5b506102dc610c41565b005b6102f860048036038101906102f391906121d8565b610d0d565b005b34801561030657600080fd5b50610321600480360381019061031c919061222b565b610d2d565b005b34801561032f57600080fd5b5061034a60048036038101906103459190612007565b610dc5565b6040516103579190612075565b60405180910390f35b34801561036c57600080fd5b506103876004803603810190610382919061226b565b610dd7565b60405161039491906121bd565b60405180910390f35b3480156103a957600080fd5b506103b2610e8f565b005b3480156103c057600080fd5b506103c9610f17565b6040516103d69190612075565b60405180910390f35b3480156103eb57600080fd5b506103f4610f41565b6040516104019190611faf565b60405180910390f35b610424600480360381019061041f9190612007565b610fd3565b005b34801561043257600080fd5b5061044d600480360381019061044891906122c4565b611110565b005b34801561045b57600080fd5b5061047660048036038101906104719190612161565b61121b565b005b610492600480360381019061048d9190612434565b6112ad565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190612161565b611320565b005b3480156104c957600080fd5b506104e460048036038101906104df919061226b565b6113b2565b005b3480156104f257600080fd5b5061050d60048036038101906105089190612007565b611536565b60405161051a9190611faf565b60405180910390f35b34801561052f57600080fd5b5061054a600480360381019061054591906124b7565b611612565b6040516105579190611f04565b60405180910390f35b34801561056c57600080fd5b506105876004803603810190610582919061226b565b6116a6565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106145750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461062a90612526565b80601f016020809104026020016040519081016040528092919081815260200182805461065690612526565b80156106a35780601f10610678576101008083540402835291602001916106a3565b820191906000526020600020905b81548152906001019060200180831161068657829003601f168201915b5050505050905090565b60006106b88261179d565b6106ee576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061073782610dc5565b90508073ffffffffffffffffffffffffffffffffffffffff166107586117fc565b73ffffffffffffffffffffffffffffffffffffffff16146107bb576107848161077f6117fc565b611612565b6107ba576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610878611804565b73ffffffffffffffffffffffffffffffffffffffff16610896610f17565b73ffffffffffffffffffffffffffffffffffffffff16146108ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e3906125a3565b60405180910390fd5b8181600991826108fd92919061277a565b505050565b600061090c61180c565b6001546000540303905090565b600061092482611815565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461098b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610997846118e1565b915091506109ad81876109a86117fc565b611908565b6109f9576109c2866109bd6117fc565b611612565b6109f8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610a5f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a6c868686600161194c565b8015610a7757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b4585610b21888887611952565b7c02000000000000000000000000000000000000000000000000000000001761197a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610bcb5760006001850190506000600460008381526020019081526020016000205403610bc9576000548114610bc8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c3386868660016119a5565b505050505050565b600a5481565b610c49611804565b73ffffffffffffffffffffffffffffffffffffffff16610c67610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb4906125a3565b60405180910390fd5b610cc5610f17565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d0a573d6000803e3d6000fd5b50565b610d28838383604051806020016040528060008152506112ad565b505050565b610d35611804565b73ffffffffffffffffffffffffffffffffffffffff16610d53610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da0906125a3565b60405180910390fd5b80600c6000848152602001908152602001600020819055505050565b6000610dd082611815565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e97611804565b73ffffffffffffffffffffffffffffffffffffffff16610eb5610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f02906125a3565b60405180910390fd5b610f1560006119ab565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f5090612526565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7c90612526565b8015610fc95780601f10610f9e57610100808354040283529160200191610fc9565b820191906000526020600020905b815481529060010190602001808311610fac57829003601f168201915b5050505050905090565b6000600a541480610ff35750600a5481600054610ff09190612879565b11155b611032576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611029906128f9565b60405180910390fd5b600381111580156110565750600c6000828152602001908152602001600020543410155b806110805750600c600082815260200190815260200160002054341015801561107f5750600034115b5b6110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690612965565b60405180910390fd5b6110c93382611a71565b803373ffffffffffffffffffffffffffffffffffffffff167f52277f0b4a9b555c5aa96900a13546f972bda413737ec164aac947c87eec602460405160405180910390a350565b806007600061111d6117fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111ca6117fc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161120f9190611f04565b60405180910390a35050565b611223611804565b73ffffffffffffffffffffffffffffffffffffffff16611241610f17565b73ffffffffffffffffffffffffffffffffffffffff1614611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e906125a3565b60405180910390fd5b8181600391826112a892919061277a565b505050565b6112b8848484610919565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461131a576112e384848484611a8f565b611319576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611328611804565b73ffffffffffffffffffffffffffffffffffffffff16611346610f17565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611393906125a3565b60405180910390fd5b8181600291826113ad92919061277a565b505050565b6113ba611804565b73ffffffffffffffffffffffffffffffffffffffff166113d8610f17565b73ffffffffffffffffffffffffffffffffffffffff161461142e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611425906125a3565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016114699190612075565b602060405180830381865afa158015611486573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114aa919061299a565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6114d0610f17565b836040518363ffffffff1660e01b81526004016114ee9291906129c7565b6020604051808303816000875af115801561150d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115319190612a05565b505050565b60606115418261179d565b611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790612aa4565b60405180910390fd5b6009805461158d90612526565b80601f01602080910402602001604051908101604052809291908181526020018280546115b990612526565b80156116065780601f106115db57610100808354040283529160200191611606565b820191906000526020600020905b8154815290600101906020018083116115e957829003601f168201915b50505050509050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116ae611804565b73ffffffffffffffffffffffffffffffffffffffff166116cc610f17565b73ffffffffffffffffffffffffffffffffffffffff1614611722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611719906125a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890612b36565b60405180910390fd5b61179a816119ab565b50565b6000816117a861180c565b111580156117b7575060005482105b80156117f5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b60006001905090565b6000808290508061182461180c565b116118aa576000548110156118a95760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036118a7575b6000810361189d576004600083600190039350838152602001908152602001600020549050611873565b80925050506118dc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611969868684611bdf565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a8b828260405180602001604052806000815250611be8565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ab56117fc565b8786866040518563ffffffff1660e01b8152600401611ad79493929190612bab565b6020604051808303816000875af1925050508015611b1357506040513d601f19601f82011682018060405250810190611b109190612c0c565b60015b611b8c573d8060008114611b43576040519150601f19603f3d011682016040523d82523d6000602084013e611b48565b606091505b506000815103611b84576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b611bf28383611c85565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c8057600080549050600083820390505b611c326000868380600101945086611a8f565b611c68576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c1f578160005414611c7d57600080fd5b50505b505050565b60008054905060008203611cc5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cd2600084838561194c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d4983611d3a6000866000611952565b611d4385611e40565b1761197a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611dea57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611daf565b5060008203611e25576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e3b60008483856119a5565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611e9981611e64565b8114611ea457600080fd5b50565b600081359050611eb681611e90565b92915050565b600060208284031215611ed257611ed1611e5a565b5b6000611ee084828501611ea7565b91505092915050565b60008115159050919050565b611efe81611ee9565b82525050565b6000602082019050611f196000830184611ef5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f59578082015181840152602081019050611f3e565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f8182611f1f565b611f8b8185611f2a565b9350611f9b818560208601611f3b565b611fa481611f65565b840191505092915050565b60006020820190508181036000830152611fc98184611f76565b905092915050565b6000819050919050565b611fe481611fd1565b8114611fef57600080fd5b50565b60008135905061200181611fdb565b92915050565b60006020828403121561201d5761201c611e5a565b5b600061202b84828501611ff2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061205f82612034565b9050919050565b61206f81612054565b82525050565b600060208201905061208a6000830184612066565b92915050565b61209981612054565b81146120a457600080fd5b50565b6000813590506120b681612090565b92915050565b600080604083850312156120d3576120d2611e5a565b5b60006120e1858286016120a7565b92505060206120f285828601611ff2565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112612121576121206120fc565b5b8235905067ffffffffffffffff81111561213e5761213d612101565b5b60208301915083600182028301111561215a57612159612106565b5b9250929050565b6000806020838503121561217857612177611e5a565b5b600083013567ffffffffffffffff81111561219657612195611e5f565b5b6121a28582860161210b565b92509250509250929050565b6121b781611fd1565b82525050565b60006020820190506121d260008301846121ae565b92915050565b6000806000606084860312156121f1576121f0611e5a565b5b60006121ff868287016120a7565b9350506020612210868287016120a7565b925050604061222186828701611ff2565b9150509250925092565b6000806040838503121561224257612241611e5a565b5b600061225085828601611ff2565b925050602061226185828601611ff2565b9150509250929050565b60006020828403121561228157612280611e5a565b5b600061228f848285016120a7565b91505092915050565b6122a181611ee9565b81146122ac57600080fd5b50565b6000813590506122be81612298565b92915050565b600080604083850312156122db576122da611e5a565b5b60006122e9858286016120a7565b92505060206122fa858286016122af565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61234182611f65565b810181811067ffffffffffffffff821117156123605761235f612309565b5b80604052505050565b6000612373611e50565b905061237f8282612338565b919050565b600067ffffffffffffffff82111561239f5761239e612309565b5b6123a882611f65565b9050602081019050919050565b82818337600083830152505050565b60006123d76123d284612384565b612369565b9050828152602081018484840111156123f3576123f2612304565b5b6123fe8482856123b5565b509392505050565b600082601f83011261241b5761241a6120fc565b5b813561242b8482602086016123c4565b91505092915050565b6000806000806080858703121561244e5761244d611e5a565b5b600061245c878288016120a7565b945050602061246d878288016120a7565b935050604061247e87828801611ff2565b925050606085013567ffffffffffffffff81111561249f5761249e611e5f565b5b6124ab87828801612406565b91505092959194509250565b600080604083850312156124ce576124cd611e5a565b5b60006124dc858286016120a7565b92505060206124ed858286016120a7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061253e57607f821691505b602082108103612551576125506124f7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061258d602083611f2a565b915061259882612557565b602082019050919050565b600060208201905081810360008301526125bc81612580565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026126307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826125f3565b61263a86836125f3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061267761267261266d84611fd1565b612652565b611fd1565b9050919050565b6000819050919050565b6126918361265c565b6126a561269d8261267e565b848454612600565b825550505050565b600090565b6126ba6126ad565b6126c5818484612688565b505050565b5b818110156126e9576126de6000826126b2565b6001810190506126cb565b5050565b601f82111561272e576126ff816125ce565b612708846125e3565b81016020851015612717578190505b61272b612723856125e3565b8301826126ca565b50505b505050565b600082821c905092915050565b600061275160001984600802612733565b1980831691505092915050565b600061276a8383612740565b9150826002028217905092915050565b61278483836125c3565b67ffffffffffffffff81111561279d5761279c612309565b5b6127a78254612526565b6127b28282856126ed565b6000601f8311600181146127e157600084156127cf578287013590505b6127d9858261275e565b865550612841565b601f1984166127ef866125ce565b60005b82811015612817578489013582556001820191506020850194506020810190506127f2565b868310156128345784890135612830601f891682612740565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061288482611fd1565b915061288f83611fd1565b92508282019050808211156128a7576128a661284a565b5b92915050565b7f657863656564206d617820746f74616c20737570706c792e0000000000000000600082015250565b60006128e3601883611f2a565b91506128ee826128ad565b602082019050919050565b60006020820190508181036000830152612912816128d6565b9050919050565b7f4552433732313a20496e73756666696369656e74207061796d656e7400000000600082015250565b600061294f601c83611f2a565b915061295a82612919565b602082019050919050565b6000602082019050818103600083015261297e81612942565b9050919050565b60008151905061299481611fdb565b92915050565b6000602082840312156129b0576129af611e5a565b5b60006129be84828501612985565b91505092915050565b60006040820190506129dc6000830185612066565b6129e960208301846121ae565b9392505050565b6000815190506129ff81612298565b92915050565b600060208284031215612a1b57612a1a611e5a565b5b6000612a29848285016129f0565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612a8e602f83611f2a565b9150612a9982612a32565b604082019050919050565b60006020820190508181036000830152612abd81612a81565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b20602683611f2a565b9150612b2b82612ac4565b604082019050919050565b60006020820190508181036000830152612b4f81612b13565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612b7d82612b56565b612b878185612b61565b9350612b97818560208601611f3b565b612ba081611f65565b840191505092915050565b6000608082019050612bc06000830187612066565b612bcd6020830186612066565b612bda60408301856121ae565b8181036060830152612bec8184612b72565b905095945050505050565b600081519050612c0681611e90565b92915050565b600060208284031215612c2257612c21611e5a565b5b6000612c3084828501612bf7565b9150509291505056fea2646970667358221220c7ada20d9811e5f5a0f3cb88e721664ee6488b8b1854e9d1d8213c44b317baa464736f6c63430008120033697066733a2f2f516d50656574526b506b5a434835436f535143325356686169475a334e5a507765485166726e53486978505061482f6d657461646174612e6a736f6e

Deployed Bytecode

0x6080604052600436106101665760003560e01c806370a08231116100d1578063b84c82461161008a578063c7e42b1b11610064578063c7e42b1b146104bd578063c87b56dd146104e6578063e985e9c514610523578063f2fde38b1461056057610166565b8063b84c82461461044f578063b88d4fde14610478578063c47f00271461049457610166565b806370a0823114610360578063715018a61461039d5780638da5cb5b146103b457806395d89b41146103df578063a0712d681461040a578063a22cb4651461042657610166565b806323b872dd1161012357806323b872dd146102805780632ab4d0521461029c5780633ccfd60b146102c757806342842e0e146102de57806343596aa2146102fa5780636352211e1461032357610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b3146102105780630e5c19191461022c57806318160ddd14610255575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190611ebc565b610589565b60405161019f9190611f04565b60405180910390f35b3480156101b457600080fd5b506101bd61061b565b6040516101ca9190611faf565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612007565b6106ad565b6040516102079190612075565b60405180910390f35b61022a600480360381019061022591906120bc565b61072c565b005b34801561023857600080fd5b50610253600480360381019061024e9190612161565b610870565b005b34801561026157600080fd5b5061026a610902565b60405161027791906121bd565b60405180910390f35b61029a600480360381019061029591906121d8565b610919565b005b3480156102a857600080fd5b506102b1610c3b565b6040516102be91906121bd565b60405180910390f35b3480156102d357600080fd5b506102dc610c41565b005b6102f860048036038101906102f391906121d8565b610d0d565b005b34801561030657600080fd5b50610321600480360381019061031c919061222b565b610d2d565b005b34801561032f57600080fd5b5061034a60048036038101906103459190612007565b610dc5565b6040516103579190612075565b60405180910390f35b34801561036c57600080fd5b506103876004803603810190610382919061226b565b610dd7565b60405161039491906121bd565b60405180910390f35b3480156103a957600080fd5b506103b2610e8f565b005b3480156103c057600080fd5b506103c9610f17565b6040516103d69190612075565b60405180910390f35b3480156103eb57600080fd5b506103f4610f41565b6040516104019190611faf565b60405180910390f35b610424600480360381019061041f9190612007565b610fd3565b005b34801561043257600080fd5b5061044d600480360381019061044891906122c4565b611110565b005b34801561045b57600080fd5b5061047660048036038101906104719190612161565b61121b565b005b610492600480360381019061048d9190612434565b6112ad565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190612161565b611320565b005b3480156104c957600080fd5b506104e460048036038101906104df919061226b565b6113b2565b005b3480156104f257600080fd5b5061050d60048036038101906105089190612007565b611536565b60405161051a9190611faf565b60405180910390f35b34801561052f57600080fd5b5061054a600480360381019061054591906124b7565b611612565b6040516105579190611f04565b60405180910390f35b34801561056c57600080fd5b506105876004803603810190610582919061226b565b6116a6565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106145750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461062a90612526565b80601f016020809104026020016040519081016040528092919081815260200182805461065690612526565b80156106a35780601f10610678576101008083540402835291602001916106a3565b820191906000526020600020905b81548152906001019060200180831161068657829003601f168201915b5050505050905090565b60006106b88261179d565b6106ee576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061073782610dc5565b90508073ffffffffffffffffffffffffffffffffffffffff166107586117fc565b73ffffffffffffffffffffffffffffffffffffffff16146107bb576107848161077f6117fc565b611612565b6107ba576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610878611804565b73ffffffffffffffffffffffffffffffffffffffff16610896610f17565b73ffffffffffffffffffffffffffffffffffffffff16146108ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e3906125a3565b60405180910390fd5b8181600991826108fd92919061277a565b505050565b600061090c61180c565b6001546000540303905090565b600061092482611815565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461098b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610997846118e1565b915091506109ad81876109a86117fc565b611908565b6109f9576109c2866109bd6117fc565b611612565b6109f8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610a5f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a6c868686600161194c565b8015610a7757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b4585610b21888887611952565b7c02000000000000000000000000000000000000000000000000000000001761197a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610bcb5760006001850190506000600460008381526020019081526020016000205403610bc9576000548114610bc8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c3386868660016119a5565b505050505050565b600a5481565b610c49611804565b73ffffffffffffffffffffffffffffffffffffffff16610c67610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb4906125a3565b60405180910390fd5b610cc5610f17565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d0a573d6000803e3d6000fd5b50565b610d28838383604051806020016040528060008152506112ad565b505050565b610d35611804565b73ffffffffffffffffffffffffffffffffffffffff16610d53610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da0906125a3565b60405180910390fd5b80600c6000848152602001908152602001600020819055505050565b6000610dd082611815565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e97611804565b73ffffffffffffffffffffffffffffffffffffffff16610eb5610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f02906125a3565b60405180910390fd5b610f1560006119ab565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f5090612526565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7c90612526565b8015610fc95780601f10610f9e57610100808354040283529160200191610fc9565b820191906000526020600020905b815481529060010190602001808311610fac57829003601f168201915b5050505050905090565b6000600a541480610ff35750600a5481600054610ff09190612879565b11155b611032576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611029906128f9565b60405180910390fd5b600381111580156110565750600c6000828152602001908152602001600020543410155b806110805750600c600082815260200190815260200160002054341015801561107f5750600034115b5b6110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690612965565b60405180910390fd5b6110c93382611a71565b803373ffffffffffffffffffffffffffffffffffffffff167f52277f0b4a9b555c5aa96900a13546f972bda413737ec164aac947c87eec602460405160405180910390a350565b806007600061111d6117fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111ca6117fc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161120f9190611f04565b60405180910390a35050565b611223611804565b73ffffffffffffffffffffffffffffffffffffffff16611241610f17565b73ffffffffffffffffffffffffffffffffffffffff1614611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e906125a3565b60405180910390fd5b8181600391826112a892919061277a565b505050565b6112b8848484610919565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461131a576112e384848484611a8f565b611319576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611328611804565b73ffffffffffffffffffffffffffffffffffffffff16611346610f17565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611393906125a3565b60405180910390fd5b8181600291826113ad92919061277a565b505050565b6113ba611804565b73ffffffffffffffffffffffffffffffffffffffff166113d8610f17565b73ffffffffffffffffffffffffffffffffffffffff161461142e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611425906125a3565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016114699190612075565b602060405180830381865afa158015611486573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114aa919061299a565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6114d0610f17565b836040518363ffffffff1660e01b81526004016114ee9291906129c7565b6020604051808303816000875af115801561150d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115319190612a05565b505050565b60606115418261179d565b611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790612aa4565b60405180910390fd5b6009805461158d90612526565b80601f01602080910402602001604051908101604052809291908181526020018280546115b990612526565b80156116065780601f106115db57610100808354040283529160200191611606565b820191906000526020600020905b8154815290600101906020018083116115e957829003601f168201915b50505050509050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116ae611804565b73ffffffffffffffffffffffffffffffffffffffff166116cc610f17565b73ffffffffffffffffffffffffffffffffffffffff1614611722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611719906125a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890612b36565b60405180910390fd5b61179a816119ab565b50565b6000816117a861180c565b111580156117b7575060005482105b80156117f5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b60006001905090565b6000808290508061182461180c565b116118aa576000548110156118a95760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036118a7575b6000810361189d576004600083600190039350838152602001908152602001600020549050611873565b80925050506118dc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611969868684611bdf565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a8b828260405180602001604052806000815250611be8565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ab56117fc565b8786866040518563ffffffff1660e01b8152600401611ad79493929190612bab565b6020604051808303816000875af1925050508015611b1357506040513d601f19601f82011682018060405250810190611b109190612c0c565b60015b611b8c573d8060008114611b43576040519150601f19603f3d011682016040523d82523d6000602084013e611b48565b606091505b506000815103611b84576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b611bf28383611c85565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c8057600080549050600083820390505b611c326000868380600101945086611a8f565b611c68576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c1f578160005414611c7d57600080fd5b50505b505050565b60008054905060008203611cc5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cd2600084838561194c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d4983611d3a6000866000611952565b611d4385611e40565b1761197a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611dea57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611daf565b5060008203611e25576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e3b60008483856119a5565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611e9981611e64565b8114611ea457600080fd5b50565b600081359050611eb681611e90565b92915050565b600060208284031215611ed257611ed1611e5a565b5b6000611ee084828501611ea7565b91505092915050565b60008115159050919050565b611efe81611ee9565b82525050565b6000602082019050611f196000830184611ef5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f59578082015181840152602081019050611f3e565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f8182611f1f565b611f8b8185611f2a565b9350611f9b818560208601611f3b565b611fa481611f65565b840191505092915050565b60006020820190508181036000830152611fc98184611f76565b905092915050565b6000819050919050565b611fe481611fd1565b8114611fef57600080fd5b50565b60008135905061200181611fdb565b92915050565b60006020828403121561201d5761201c611e5a565b5b600061202b84828501611ff2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061205f82612034565b9050919050565b61206f81612054565b82525050565b600060208201905061208a6000830184612066565b92915050565b61209981612054565b81146120a457600080fd5b50565b6000813590506120b681612090565b92915050565b600080604083850312156120d3576120d2611e5a565b5b60006120e1858286016120a7565b92505060206120f285828601611ff2565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112612121576121206120fc565b5b8235905067ffffffffffffffff81111561213e5761213d612101565b5b60208301915083600182028301111561215a57612159612106565b5b9250929050565b6000806020838503121561217857612177611e5a565b5b600083013567ffffffffffffffff81111561219657612195611e5f565b5b6121a28582860161210b565b92509250509250929050565b6121b781611fd1565b82525050565b60006020820190506121d260008301846121ae565b92915050565b6000806000606084860312156121f1576121f0611e5a565b5b60006121ff868287016120a7565b9350506020612210868287016120a7565b925050604061222186828701611ff2565b9150509250925092565b6000806040838503121561224257612241611e5a565b5b600061225085828601611ff2565b925050602061226185828601611ff2565b9150509250929050565b60006020828403121561228157612280611e5a565b5b600061228f848285016120a7565b91505092915050565b6122a181611ee9565b81146122ac57600080fd5b50565b6000813590506122be81612298565b92915050565b600080604083850312156122db576122da611e5a565b5b60006122e9858286016120a7565b92505060206122fa858286016122af565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61234182611f65565b810181811067ffffffffffffffff821117156123605761235f612309565b5b80604052505050565b6000612373611e50565b905061237f8282612338565b919050565b600067ffffffffffffffff82111561239f5761239e612309565b5b6123a882611f65565b9050602081019050919050565b82818337600083830152505050565b60006123d76123d284612384565b612369565b9050828152602081018484840111156123f3576123f2612304565b5b6123fe8482856123b5565b509392505050565b600082601f83011261241b5761241a6120fc565b5b813561242b8482602086016123c4565b91505092915050565b6000806000806080858703121561244e5761244d611e5a565b5b600061245c878288016120a7565b945050602061246d878288016120a7565b935050604061247e87828801611ff2565b925050606085013567ffffffffffffffff81111561249f5761249e611e5f565b5b6124ab87828801612406565b91505092959194509250565b600080604083850312156124ce576124cd611e5a565b5b60006124dc858286016120a7565b92505060206124ed858286016120a7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061253e57607f821691505b602082108103612551576125506124f7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061258d602083611f2a565b915061259882612557565b602082019050919050565b600060208201905081810360008301526125bc81612580565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026126307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826125f3565b61263a86836125f3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061267761267261266d84611fd1565b612652565b611fd1565b9050919050565b6000819050919050565b6126918361265c565b6126a561269d8261267e565b848454612600565b825550505050565b600090565b6126ba6126ad565b6126c5818484612688565b505050565b5b818110156126e9576126de6000826126b2565b6001810190506126cb565b5050565b601f82111561272e576126ff816125ce565b612708846125e3565b81016020851015612717578190505b61272b612723856125e3565b8301826126ca565b50505b505050565b600082821c905092915050565b600061275160001984600802612733565b1980831691505092915050565b600061276a8383612740565b9150826002028217905092915050565b61278483836125c3565b67ffffffffffffffff81111561279d5761279c612309565b5b6127a78254612526565b6127b28282856126ed565b6000601f8311600181146127e157600084156127cf578287013590505b6127d9858261275e565b865550612841565b601f1984166127ef866125ce565b60005b82811015612817578489013582556001820191506020850194506020810190506127f2565b868310156128345784890135612830601f891682612740565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061288482611fd1565b915061288f83611fd1565b92508282019050808211156128a7576128a661284a565b5b92915050565b7f657863656564206d617820746f74616c20737570706c792e0000000000000000600082015250565b60006128e3601883611f2a565b91506128ee826128ad565b602082019050919050565b60006020820190508181036000830152612912816128d6565b9050919050565b7f4552433732313a20496e73756666696369656e74207061796d656e7400000000600082015250565b600061294f601c83611f2a565b915061295a82612919565b602082019050919050565b6000602082019050818103600083015261297e81612942565b9050919050565b60008151905061299481611fdb565b92915050565b6000602082840312156129b0576129af611e5a565b5b60006129be84828501612985565b91505092915050565b60006040820190506129dc6000830185612066565b6129e960208301846121ae565b9392505050565b6000815190506129ff81612298565b92915050565b600060208284031215612a1b57612a1a611e5a565b5b6000612a29848285016129f0565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612a8e602f83611f2a565b9150612a9982612a32565b604082019050919050565b60006020820190508181036000830152612abd81612a81565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b20602683611f2a565b9150612b2b82612ac4565b604082019050919050565b60006020820190508181036000830152612b4f81612b13565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612b7d82612b56565b612b878185612b61565b9350612b97818560208601611f3b565b612ba081611f65565b840191505092915050565b6000608082019050612bc06000830187612066565b612bcd6020830186612066565b612bda60408301856121ae565b8181036060830152612bec8184612b72565b905095945050505050565b600081519050612c0681611e90565b92915050565b600060208284031215612c2257612c21611e5a565b5b6000612c3084828501612bf7565b9150509291505056fea2646970667358221220c7ada20d9811e5f5a0f3cb88e721664ee6488b8b1854e9d1d8213c44b317baa464736f6c63430008120033

Deployed Bytecode Sourcemap

57807:2401:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24776:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25678:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32169:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31602:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58806:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21429:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35808:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58013:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60099:106;;;;;;;;;;;;;:::i;:::-;;38729:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58681:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27071:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22613:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5709:103;;;;;;;;;;;;;:::i;:::-;;5058:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25854:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59123:421;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32727:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59793:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39520:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59620:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59904:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58913:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33118:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5967:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24776:639;24861:4;25200:10;25185:25;;:11;:25;;;;:102;;;;25277:10;25262:25;;:11;:25;;;;25185:102;:179;;;;25354:10;25339:25;;:11;:25;;;;25185:179;25165:199;;24776:639;;;:::o;25678:100::-;25732:13;25765:5;25758:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25678:100;:::o;32169:218::-;32245:7;32270:16;32278:7;32270;:16::i;:::-;32265:64;;32295:34;;;;;;;;;;;;;;32265:64;32349:15;:24;32365:7;32349:24;;;;;;;;;;;:30;;;;;;;;;;;;32342:37;;32169:218;;;:::o;31602:408::-;31691:13;31707:16;31715:7;31707;:16::i;:::-;31691:32;;31763:5;31740:28;;:19;:17;:19::i;:::-;:28;;;31736:175;;31788:44;31805:5;31812:19;:17;:19::i;:::-;31788:16;:44::i;:::-;31783:128;;31860:35;;;;;;;;;;;;;;31783:128;31736:175;31956:2;31923:15;:24;31939:7;31923:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31994:7;31990:2;31974:28;;31983:5;31974:28;;;;;;;;;;;;31680:330;31602:408;;:::o;58806:98::-;5289:12;:10;:12::i;:::-;5278:23;;:7;:5;:7::i;:::-;:23;;;5270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58892:4:::1;;58880:9;:16;;;;;;;:::i;:::-;;58806:98:::0;;:::o;21429:323::-;21490:7;21718:15;:13;:15::i;:::-;21703:12;;21687:13;;:28;:46;21680:53;;21429:323;:::o;35808:2825::-;35950:27;35980;35999:7;35980:18;:27::i;:::-;35950:57;;36065:4;36024:45;;36040:19;36024:45;;;36020:86;;36078:28;;;;;;;;;;;;;;36020:86;36120:27;36149:23;36176:35;36203:7;36176:26;:35::i;:::-;36119:92;;;;36311:68;36336:15;36353:4;36359:19;:17;:19::i;:::-;36311:24;:68::i;:::-;36306:180;;36399:43;36416:4;36422:19;:17;:19::i;:::-;36399:16;:43::i;:::-;36394:92;;36451:35;;;;;;;;;;;;;;36394:92;36306:180;36517:1;36503:16;;:2;:16;;;36499:52;;36528:23;;;;;;;;;;;;;;36499:52;36564:43;36586:4;36592:2;36596:7;36605:1;36564:21;:43::i;:::-;36700:15;36697:160;;;36840:1;36819:19;36812:30;36697:160;37237:18;:24;37256:4;37237:24;;;;;;;;;;;;;;;;37235:26;;;;;;;;;;;;37306:18;:22;37325:2;37306:22;;;;;;;;;;;;;;;;37304:24;;;;;;;;;;;37628:146;37665:2;37714:45;37729:4;37735:2;37739:19;37714:14;:45::i;:::-;17919:8;37686:73;37628:18;:146::i;:::-;37599:17;:26;37617:7;37599:26;;;;;;;;;;;:175;;;;37945:1;17919:8;37894:19;:47;:52;37890:627;;37967:19;37999:1;37989:7;:11;37967:33;;38156:1;38122:17;:30;38140:11;38122:30;;;;;;;;;;;;:35;38118:384;;38260:13;;38245:11;:28;38241:242;;38440:19;38407:17;:30;38425:11;38407:30;;;;;;;;;;;:52;;;;38241:242;38118:384;37948:569;37890:627;38564:7;38560:2;38545:27;;38554:4;38545:27;;;;;;;;;;;;38583:42;38604:4;38610:2;38614:7;38623:1;38583:20;:42::i;:::-;35939:2694;;;35808:2825;;;:::o;58013:38::-;;;;:::o;60099:106::-;5289:12;:10;:12::i;:::-;5278:23;;:7;:5;:7::i;:::-;:23;;;5270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60157:7:::1;:5;:7::i;:::-;60149:25;;:48;60175:21;60149:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60099:106::o:0;38729:193::-;38875:39;38892:4;38898:2;38902:7;38875:39;;;;;;;;;;;;:16;:39::i;:::-;38729:193;;;:::o;58681:117::-;5289:12;:10;:12::i;:::-;5278:23;;:7;:5;:7::i;:::-;:23;;;5270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58785:5:::1;58761:13;:21;58775:6;58761:21;;;;;;;;;;;:29;;;;58681:117:::0;;:::o;27071:152::-;27143:7;27186:27;27205:7;27186:18;:27::i;:::-;27163:52;;27071:152;;;:::o;22613:233::-;22685:7;22726:1;22709:19;;:5;:19;;;22705:60;;22737:28;;;;;;;;;;;;;;22705:60;16863:13;22783:18;:25;22802:5;22783:25;;;;;;;;;;;;;;;;:55;22776:62;;22613:233;;;:::o;5709:103::-;5289:12;:10;:12::i;:::-;5278:23;;:7;:5;:7::i;:::-;:23;;;5270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5774:30:::1;5801:1;5774:18;:30::i;:::-;5709:103::o:0;5058:87::-;5104:7;5131:6;;;;;;;;;;;5124:13;;5058:87;:::o;25854:104::-;25910:13;25943:7;25936:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25854:104;:::o;59123:421::-;59207:1;59189:14;;:19;:65;;;;59240:14;;59228:8;59212:13;;:24;;;;:::i;:::-;:42;;59189:65;59181:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;59315:1;59303:8;:13;;:53;;;;;59333:13;:23;59347:8;59333:23;;;;;;;;;;;;59320:9;:36;;59303:53;59302:114;;;;59375:13;:23;59389:8;59375:23;;;;;;;;;;;;59362:9;:36;;:53;;;;;59414:1;59402:9;:13;59362:53;59302:114;59294:155;;;;;;;;;;;;:::i;:::-;;;;;;;;;59460:31;59470:10;59482:8;59460:9;:31::i;:::-;59527:8;59515:10;59507:29;;;;;;;;;;;;59123:421;:::o;32727:234::-;32874:8;32822:18;:39;32841:19;:17;:19::i;:::-;32822:39;;;;;;;;;;;;;;;:49;32862:8;32822:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32934:8;32898:55;;32913:19;:17;:19::i;:::-;32898:55;;;32944:8;32898:55;;;;;;:::i;:::-;;;;;;;;32727:234;;:::o;59793:103::-;5289:12;:10;:12::i;:::-;5278:23;;:7;:5;:7::i;:::-;:23;;;5270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59879:9:::1;;59869:7;:19;;;;;;;:::i;:::-;;59793:103:::0;;:::o;39520:407::-;39695:31;39708:4;39714:2;39718:7;39695:12;:31::i;:::-;39759:1;39741:2;:14;;;:19;39737:183;;39780:56;39811:4;39817:2;39821:7;39830:5;39780:30;:56::i;:::-;39775:145;;39864:40;;;;;;;;;;;;;;39775:145;39737:183;39520:407;;;;:::o;59620:95::-;5289:12;:10;:12::i;:::-;5278:23;;:7;:5;:7::i;:::-;:23;;;5270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59700:7:::1;;59692:5;:15;;;;;;;:::i;:::-;;59620:95:::0;;:::o;59904:187::-;5289:12;:10;:12::i;:::-;5278:23;;:7;:5;:7::i;:::-;:23;;;5270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59968:14:::1;59997:1;59986:23;;;60018:4;59986:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59968:56;;60046:1;60035:22;;;60066:7;:5;:7::i;:::-;60076:6;60035:48;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59957:134;59904:187:::0;:::o;58913:202::-;58978:13;59011:16;59019:7;59011;:16::i;:::-;59003:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;59096:9;59089:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58913:202;;;:::o;33118:164::-;33215:4;33239:18;:25;33258:5;33239:25;;;;;;;;;;;;;;;:35;33265:8;33239:35;;;;;;;;;;;;;;;;;;;;;;;;;33232:42;;33118:164;;;;:::o;5967:201::-;5289:12;:10;:12::i;:::-;5278:23;;:7;:5;:7::i;:::-;:23;;;5270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6076:1:::1;6056:22;;:8;:22;;::::0;6048:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6132:28;6151:8;6132:18;:28::i;:::-;5967:201:::0;:::o;33540:282::-;33605:4;33661:7;33642:15;:13;:15::i;:::-;:26;;:66;;;;;33695:13;;33685:7;:23;33642:66;:153;;;;;33794:1;17639:8;33746:17;:26;33764:7;33746:26;;;;;;;;;;;;:44;:49;33642:153;33622:173;;33540:282;;;:::o;55848:105::-;55908:7;55935:10;55928:17;;55848:105;:::o;3909:98::-;3962:7;3989:10;3982:17;;3909:98;:::o;58572:101::-;58637:7;58664:1;58657:8;;58572:101;:::o;28226:1275::-;28293:7;28313:12;28328:7;28313:22;;28396:4;28377:15;:13;:15::i;:::-;:23;28373:1061;;28430:13;;28423:4;:20;28419:1015;;;28468:14;28485:17;:23;28503:4;28485:23;;;;;;;;;;;;28468:40;;28602:1;17639:8;28574:6;:24;:29;28570:845;;29239:113;29256:1;29246:6;:11;29239:113;;29299:17;:25;29317:6;;;;;;;29299:25;;;;;;;;;;;;29290:34;;29239:113;;;29385:6;29378:13;;;;;;28570:845;28445:989;28419:1015;28373:1061;29462:31;;;;;;;;;;;;;;28226:1275;;;;:::o;34703:485::-;34805:27;34834:23;34875:38;34916:15;:24;34932:7;34916:24;;;;;;;;;;;34875:65;;35093:18;35070:41;;35150:19;35144:26;35125:45;;35055:126;34703:485;;;:::o;33931:659::-;34080:11;34245:16;34238:5;34234:28;34225:37;;34405:16;34394:9;34390:32;34377:45;;34555:15;34544:9;34541:30;34533:5;34522:9;34519:20;34516:56;34506:66;;33931:659;;;;;:::o;40589:159::-;;;;;:::o;55157:311::-;55292:7;55312:16;18043:3;55338:19;:41;;55312:68;;18043:3;55406:31;55417:4;55423:2;55427:9;55406:10;:31::i;:::-;55398:40;;:62;;55391:69;;;55157:311;;;;;:::o;30049:450::-;30129:14;30297:16;30290:5;30286:28;30277:37;;30474:5;30460:11;30435:23;30431:41;30428:52;30421:5;30418:63;30408:73;;30049:450;;;;:::o;41413:158::-;;;;;:::o;6328:191::-;6402:16;6421:6;;;;;;;;;;;6402:25;;6447:8;6438:6;;:17;;;;;;;;;;;;;;;;;;6502:8;6471:40;;6492:8;6471:40;;;;;;;;;;;;6391:128;6328:191;:::o;49680:112::-;49757:27;49767:2;49771:8;49757:27;;;;;;;;;;;;:9;:27::i;:::-;49680:112;;:::o;42011:716::-;42174:4;42220:2;42195:45;;;42241:19;:17;:19::i;:::-;42262:4;42268:7;42277:5;42195:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42191:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42495:1;42478:6;:13;:18;42474:235;;42524:40;;;;;;;;;;;;;;42474:235;42667:6;42661:13;42652:6;42648:2;42644:15;42637:38;42191:529;42364:54;;;42354:64;;;:6;:64;;;;42347:71;;;42011:716;;;;;;:::o;54858:147::-;54995:6;54858:147;;;;;:::o;48907:689::-;49038:19;49044:2;49048:8;49038:5;:19::i;:::-;49117:1;49099:2;:14;;;:19;49095:483;;49139:11;49153:13;;49139:27;;49185:13;49207:8;49201:3;:14;49185:30;;49234:233;49265:62;49304:1;49308:2;49312:7;;;;;;49321:5;49265:30;:62::i;:::-;49260:167;;49363:40;;;;;;;;;;;;;;49260:167;49462:3;49454:5;:11;49234:233;;49549:3;49532:13;;:20;49528:34;;49554:8;;;49528:34;49120:458;;49095:483;48907:689;;;:::o;43189:2966::-;43262:20;43285:13;;43262:36;;43325:1;43313:8;:13;43309:44;;43335:18;;;;;;;;;;;;;;43309:44;43366:61;43396:1;43400:2;43404:12;43418:8;43366:21;:61::i;:::-;43910:1;17001:2;43880:1;:26;;43879:32;43867:8;:45;43841:18;:22;43860:2;43841:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44189:139;44226:2;44280:33;44303:1;44307:2;44311:1;44280:14;:33::i;:::-;44247:30;44268:8;44247:20;:30::i;:::-;:66;44189:18;:139::i;:::-;44155:17;:31;44173:12;44155:31;;;;;;;;;;;:173;;;;44345:16;44376:11;44405:8;44390:12;:23;44376:37;;44926:16;44922:2;44918:25;44906:37;;45298:12;45258:8;45217:1;45155:25;45096:1;45035;45008:335;45669:1;45655:12;45651:20;45609:346;45710:3;45701:7;45698:16;45609:346;;45928:7;45918:8;45915:1;45888:25;45885:1;45882;45877:59;45763:1;45754:7;45750:15;45739:26;;45609:346;;;45613:77;46000:1;45988:8;:13;45984:45;;46010:19;;;;;;;;;;;;;;45984:45;46062:3;46046:13;:19;;;;43615:2462;;46087:60;46116:1;46120:2;46124:12;46138:8;46087:20;:60::i;:::-;43251:2904;43189:2966;;:::o;30601:324::-;30671:14;30904:1;30894:8;30891:15;30865:24;30861:46;30851:56;;30601:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:117::-;4999:1;4996;4989:12;5013:117;5122:1;5119;5112:12;5136:117;5245:1;5242;5235:12;5273:553;5331:8;5341:6;5391:3;5384:4;5376:6;5372:17;5368:27;5358:122;;5399:79;;:::i;:::-;5358:122;5512:6;5499:20;5489:30;;5542:18;5534:6;5531:30;5528:117;;;5564:79;;:::i;:::-;5528:117;5678:4;5670:6;5666:17;5654:29;;5732:3;5724:4;5716:6;5712:17;5702:8;5698:32;5695:41;5692:128;;;5739:79;;:::i;:::-;5692:128;5273:553;;;;;:::o;5832:529::-;5903:6;5911;5960:2;5948:9;5939:7;5935:23;5931:32;5928:119;;;5966:79;;:::i;:::-;5928:119;6114:1;6103:9;6099:17;6086:31;6144:18;6136:6;6133:30;6130:117;;;6166:79;;:::i;:::-;6130:117;6279:65;6336:7;6327:6;6316:9;6312:22;6279:65;:::i;:::-;6261:83;;;;6057:297;5832:529;;;;;:::o;6367:118::-;6454:24;6472:5;6454:24;:::i;:::-;6449:3;6442:37;6367:118;;:::o;6491:222::-;6584:4;6622:2;6611:9;6607:18;6599:26;;6635:71;6703:1;6692:9;6688:17;6679:6;6635:71;:::i;:::-;6491:222;;;;:::o;6719:619::-;6796:6;6804;6812;6861:2;6849:9;6840:7;6836:23;6832:32;6829:119;;;6867:79;;:::i;:::-;6829:119;6987:1;7012:53;7057:7;7048:6;7037:9;7033:22;7012:53;:::i;:::-;7002:63;;6958:117;7114:2;7140:53;7185:7;7176:6;7165:9;7161:22;7140:53;:::i;:::-;7130:63;;7085:118;7242:2;7268:53;7313:7;7304:6;7293:9;7289:22;7268:53;:::i;:::-;7258:63;;7213:118;6719:619;;;;;:::o;7344:474::-;7412:6;7420;7469:2;7457:9;7448:7;7444:23;7440:32;7437:119;;;7475:79;;:::i;:::-;7437:119;7595:1;7620:53;7665:7;7656:6;7645:9;7641:22;7620:53;:::i;:::-;7610:63;;7566:117;7722:2;7748:53;7793:7;7784:6;7773:9;7769:22;7748:53;:::i;:::-;7738:63;;7693:118;7344:474;;;;;:::o;7824:329::-;7883:6;7932:2;7920:9;7911:7;7907:23;7903:32;7900:119;;;7938:79;;:::i;:::-;7900:119;8058:1;8083:53;8128:7;8119:6;8108:9;8104:22;8083:53;:::i;:::-;8073:63;;8029:117;7824:329;;;;:::o;8159:116::-;8229:21;8244:5;8229:21;:::i;:::-;8222:5;8219:32;8209:60;;8265:1;8262;8255:12;8209:60;8159:116;:::o;8281:133::-;8324:5;8362:6;8349:20;8340:29;;8378:30;8402:5;8378:30;:::i;:::-;8281:133;;;;:::o;8420:468::-;8485:6;8493;8542:2;8530:9;8521:7;8517:23;8513:32;8510:119;;;8548:79;;:::i;:::-;8510:119;8668:1;8693:53;8738:7;8729:6;8718:9;8714:22;8693:53;:::i;:::-;8683:63;;8639:117;8795:2;8821:50;8863:7;8854:6;8843:9;8839:22;8821:50;:::i;:::-;8811:60;;8766:115;8420:468;;;;;:::o;8894:117::-;9003:1;9000;8993:12;9017:180;9065:77;9062:1;9055:88;9162:4;9159:1;9152:15;9186:4;9183:1;9176:15;9203:281;9286:27;9308:4;9286:27;:::i;:::-;9278:6;9274:40;9416:6;9404:10;9401:22;9380:18;9368:10;9365:34;9362:62;9359:88;;;9427:18;;:::i;:::-;9359:88;9467:10;9463:2;9456:22;9246:238;9203:281;;:::o;9490:129::-;9524:6;9551:20;;:::i;:::-;9541:30;;9580:33;9608:4;9600:6;9580:33;:::i;:::-;9490:129;;;:::o;9625:307::-;9686:4;9776:18;9768:6;9765:30;9762:56;;;9798:18;;:::i;:::-;9762:56;9836:29;9858:6;9836:29;:::i;:::-;9828:37;;9920:4;9914;9910:15;9902:23;;9625:307;;;:::o;9938:146::-;10035:6;10030:3;10025;10012:30;10076:1;10067:6;10062:3;10058:16;10051:27;9938:146;;;:::o;10090:423::-;10167:5;10192:65;10208:48;10249:6;10208:48;:::i;:::-;10192:65;:::i;:::-;10183:74;;10280:6;10273:5;10266:21;10318:4;10311:5;10307:16;10356:3;10347:6;10342:3;10338:16;10335:25;10332:112;;;10363:79;;:::i;:::-;10332:112;10453:54;10500:6;10495:3;10490;10453:54;:::i;:::-;10173:340;10090:423;;;;;:::o;10532:338::-;10587:5;10636:3;10629:4;10621:6;10617:17;10613:27;10603:122;;10644:79;;:::i;:::-;10603:122;10761:6;10748:20;10786:78;10860:3;10852:6;10845:4;10837:6;10833:17;10786:78;:::i;:::-;10777:87;;10593:277;10532:338;;;;:::o;10876:943::-;10971:6;10979;10987;10995;11044:3;11032:9;11023:7;11019:23;11015:33;11012:120;;;11051:79;;:::i;:::-;11012:120;11171:1;11196:53;11241:7;11232:6;11221:9;11217:22;11196:53;:::i;:::-;11186:63;;11142:117;11298:2;11324:53;11369:7;11360:6;11349:9;11345:22;11324:53;:::i;:::-;11314:63;;11269:118;11426:2;11452:53;11497:7;11488:6;11477:9;11473:22;11452:53;:::i;:::-;11442:63;;11397:118;11582:2;11571:9;11567:18;11554:32;11613:18;11605:6;11602:30;11599:117;;;11635:79;;:::i;:::-;11599:117;11740:62;11794:7;11785:6;11774:9;11770:22;11740:62;:::i;:::-;11730:72;;11525:287;10876:943;;;;;;;:::o;11825:474::-;11893:6;11901;11950:2;11938:9;11929:7;11925:23;11921:32;11918:119;;;11956:79;;:::i;:::-;11918:119;12076:1;12101:53;12146:7;12137:6;12126:9;12122:22;12101:53;:::i;:::-;12091:63;;12047:117;12203:2;12229:53;12274:7;12265:6;12254:9;12250:22;12229:53;:::i;:::-;12219:63;;12174:118;11825:474;;;;;:::o;12305:180::-;12353:77;12350:1;12343:88;12450:4;12447:1;12440:15;12474:4;12471:1;12464:15;12491:320;12535:6;12572:1;12566:4;12562:12;12552:22;;12619:1;12613:4;12609:12;12640:18;12630:81;;12696:4;12688:6;12684:17;12674:27;;12630:81;12758:2;12750:6;12747:14;12727:18;12724:38;12721:84;;12777:18;;:::i;:::-;12721:84;12542:269;12491:320;;;:::o;12817:182::-;12957:34;12953:1;12945:6;12941:14;12934:58;12817:182;:::o;13005:366::-;13147:3;13168:67;13232:2;13227:3;13168:67;:::i;:::-;13161:74;;13244:93;13333:3;13244:93;:::i;:::-;13362:2;13357:3;13353:12;13346:19;;13005:366;;;:::o;13377:419::-;13543:4;13581:2;13570:9;13566:18;13558:26;;13630:9;13624:4;13620:20;13616:1;13605:9;13601:17;13594:47;13658:131;13784:4;13658:131;:::i;:::-;13650:139;;13377:419;;;:::o;13802:97::-;13861:6;13889:3;13879:13;;13802:97;;;;:::o;13905:141::-;13954:4;13977:3;13969:11;;14000:3;13997:1;13990:14;14034:4;14031:1;14021:18;14013:26;;13905:141;;;:::o;14052:93::-;14089:6;14136:2;14131;14124:5;14120:14;14116:23;14106:33;;14052:93;;;:::o;14151:107::-;14195:8;14245:5;14239:4;14235:16;14214:37;;14151:107;;;;:::o;14264:393::-;14333:6;14383:1;14371:10;14367:18;14406:97;14436:66;14425:9;14406:97;:::i;:::-;14524:39;14554:8;14543:9;14524:39;:::i;:::-;14512:51;;14596:4;14592:9;14585:5;14581:21;14572:30;;14645:4;14635:8;14631:19;14624:5;14621:30;14611:40;;14340:317;;14264:393;;;;;:::o;14663:60::-;14691:3;14712:5;14705:12;;14663:60;;;:::o;14729:142::-;14779:9;14812:53;14830:34;14839:24;14857:5;14839:24;:::i;:::-;14830:34;:::i;:::-;14812:53;:::i;:::-;14799:66;;14729:142;;;:::o;14877:75::-;14920:3;14941:5;14934:12;;14877:75;;;:::o;14958:269::-;15068:39;15099:7;15068:39;:::i;:::-;15129:91;15178:41;15202:16;15178:41;:::i;:::-;15170:6;15163:4;15157:11;15129:91;:::i;:::-;15123:4;15116:105;15034:193;14958:269;;;:::o;15233:73::-;15278:3;15233:73;:::o;15312:189::-;15389:32;;:::i;:::-;15430:65;15488:6;15480;15474:4;15430:65;:::i;:::-;15365:136;15312:189;;:::o;15507:186::-;15567:120;15584:3;15577:5;15574:14;15567:120;;;15638:39;15675:1;15668:5;15638:39;:::i;:::-;15611:1;15604:5;15600:13;15591:22;;15567:120;;;15507:186;;:::o;15699:543::-;15800:2;15795:3;15792:11;15789:446;;;15834:38;15866:5;15834:38;:::i;:::-;15918:29;15936:10;15918:29;:::i;:::-;15908:8;15904:44;16101:2;16089:10;16086:18;16083:49;;;16122:8;16107:23;;16083:49;16145:80;16201:22;16219:3;16201:22;:::i;:::-;16191:8;16187:37;16174:11;16145:80;:::i;:::-;15804:431;;15789:446;15699:543;;;:::o;16248:117::-;16302:8;16352:5;16346:4;16342:16;16321:37;;16248:117;;;;:::o;16371:169::-;16415:6;16448:51;16496:1;16492:6;16484:5;16481:1;16477:13;16448:51;:::i;:::-;16444:56;16529:4;16523;16519:15;16509:25;;16422:118;16371:169;;;;:::o;16545:295::-;16621:4;16767:29;16792:3;16786:4;16767:29;:::i;:::-;16759:37;;16829:3;16826:1;16822:11;16816:4;16813:21;16805:29;;16545:295;;;;:::o;16845:1403::-;16969:44;17009:3;17004;16969:44;:::i;:::-;17078:18;17070:6;17067:30;17064:56;;;17100:18;;:::i;:::-;17064:56;17144:38;17176:4;17170:11;17144:38;:::i;:::-;17229:67;17289:6;17281;17275:4;17229:67;:::i;:::-;17323:1;17352:2;17344:6;17341:14;17369:1;17364:632;;;;18040:1;18057:6;18054:84;;;18113:9;18108:3;18104:19;18091:33;18082:42;;18054:84;18164:67;18224:6;18217:5;18164:67;:::i;:::-;18158:4;18151:81;18013:229;17334:908;;17364:632;17416:4;17412:9;17404:6;17400:22;17450:37;17482:4;17450:37;:::i;:::-;17509:1;17523:215;17537:7;17534:1;17531:14;17523:215;;;17623:9;17618:3;17614:19;17601:33;17593:6;17586:49;17674:1;17666:6;17662:14;17652:24;;17721:2;17710:9;17706:18;17693:31;;17560:4;17557:1;17553:12;17548:17;;17523:215;;;17766:6;17757:7;17754:19;17751:186;;;17831:9;17826:3;17822:19;17809:33;17874:48;17916:4;17908:6;17904:17;17893:9;17874:48;:::i;:::-;17866:6;17859:64;17774:163;17751:186;17983:1;17979;17971:6;17967:14;17963:22;17957:4;17950:36;17371:625;;;17334:908;;16944:1304;;;16845:1403;;;:::o;18254:180::-;18302:77;18299:1;18292:88;18399:4;18396:1;18389:15;18423:4;18420:1;18413:15;18440:191;18480:3;18499:20;18517:1;18499:20;:::i;:::-;18494:25;;18533:20;18551:1;18533:20;:::i;:::-;18528:25;;18576:1;18573;18569:9;18562:16;;18597:3;18594:1;18591:10;18588:36;;;18604:18;;:::i;:::-;18588:36;18440:191;;;;:::o;18637:174::-;18777:26;18773:1;18765:6;18761:14;18754:50;18637:174;:::o;18817:366::-;18959:3;18980:67;19044:2;19039:3;18980:67;:::i;:::-;18973:74;;19056:93;19145:3;19056:93;:::i;:::-;19174:2;19169:3;19165:12;19158:19;;18817:366;;;:::o;19189:419::-;19355:4;19393:2;19382:9;19378:18;19370:26;;19442:9;19436:4;19432:20;19428:1;19417:9;19413:17;19406:47;19470:131;19596:4;19470:131;:::i;:::-;19462:139;;19189:419;;;:::o;19614:178::-;19754:30;19750:1;19742:6;19738:14;19731:54;19614:178;:::o;19798:366::-;19940:3;19961:67;20025:2;20020:3;19961:67;:::i;:::-;19954:74;;20037:93;20126:3;20037:93;:::i;:::-;20155:2;20150:3;20146:12;20139:19;;19798:366;;;:::o;20170:419::-;20336:4;20374:2;20363:9;20359:18;20351:26;;20423:9;20417:4;20413:20;20409:1;20398:9;20394:17;20387:47;20451:131;20577:4;20451:131;:::i;:::-;20443:139;;20170:419;;;:::o;20595:143::-;20652:5;20683:6;20677:13;20668:22;;20699:33;20726:5;20699:33;:::i;:::-;20595:143;;;;:::o;20744:351::-;20814:6;20863:2;20851:9;20842:7;20838:23;20834:32;20831:119;;;20869:79;;:::i;:::-;20831:119;20989:1;21014:64;21070:7;21061:6;21050:9;21046:22;21014:64;:::i;:::-;21004:74;;20960:128;20744:351;;;;:::o;21101:332::-;21222:4;21260:2;21249:9;21245:18;21237:26;;21273:71;21341:1;21330:9;21326:17;21317:6;21273:71;:::i;:::-;21354:72;21422:2;21411:9;21407:18;21398:6;21354:72;:::i;:::-;21101:332;;;;;:::o;21439:137::-;21493:5;21524:6;21518:13;21509:22;;21540:30;21564:5;21540:30;:::i;:::-;21439:137;;;;:::o;21582:345::-;21649:6;21698:2;21686:9;21677:7;21673:23;21669:32;21666:119;;;21704:79;;:::i;:::-;21666:119;21824:1;21849:61;21902:7;21893:6;21882:9;21878:22;21849:61;:::i;:::-;21839:71;;21795:125;21582:345;;;;:::o;21933:234::-;22073:34;22069:1;22061:6;22057:14;22050:58;22142:17;22137:2;22129:6;22125:15;22118:42;21933:234;:::o;22173:366::-;22315:3;22336:67;22400:2;22395:3;22336:67;:::i;:::-;22329:74;;22412:93;22501:3;22412:93;:::i;:::-;22530:2;22525:3;22521:12;22514:19;;22173:366;;;:::o;22545:419::-;22711:4;22749:2;22738:9;22734:18;22726:26;;22798:9;22792:4;22788:20;22784:1;22773:9;22769:17;22762:47;22826:131;22952:4;22826:131;:::i;:::-;22818:139;;22545:419;;;:::o;22970:225::-;23110:34;23106:1;23098:6;23094:14;23087:58;23179:8;23174:2;23166:6;23162:15;23155:33;22970:225;:::o;23201:366::-;23343:3;23364:67;23428:2;23423:3;23364:67;:::i;:::-;23357:74;;23440:93;23529:3;23440:93;:::i;:::-;23558:2;23553:3;23549:12;23542:19;;23201:366;;;:::o;23573:419::-;23739:4;23777:2;23766:9;23762:18;23754:26;;23826:9;23820:4;23816:20;23812:1;23801:9;23797:17;23790:47;23854:131;23980:4;23854:131;:::i;:::-;23846:139;;23573:419;;;:::o;23998:98::-;24049:6;24083:5;24077:12;24067:22;;23998:98;;;:::o;24102:168::-;24185:11;24219:6;24214:3;24207:19;24259:4;24254:3;24250:14;24235:29;;24102:168;;;;:::o;24276:373::-;24362:3;24390:38;24422:5;24390:38;:::i;:::-;24444:70;24507:6;24502:3;24444:70;:::i;:::-;24437:77;;24523:65;24581:6;24576:3;24569:4;24562:5;24558:16;24523:65;:::i;:::-;24613:29;24635:6;24613:29;:::i;:::-;24608:3;24604:39;24597:46;;24366:283;24276:373;;;;:::o;24655:640::-;24850:4;24888:3;24877:9;24873:19;24865:27;;24902:71;24970:1;24959:9;24955:17;24946:6;24902:71;:::i;:::-;24983:72;25051:2;25040:9;25036:18;25027:6;24983:72;:::i;:::-;25065;25133:2;25122:9;25118:18;25109:6;25065:72;:::i;:::-;25184:9;25178:4;25174:20;25169:2;25158:9;25154:18;25147:48;25212:76;25283:4;25274:6;25212:76;:::i;:::-;25204:84;;24655:640;;;;;;;:::o;25301:141::-;25357:5;25388:6;25382:13;25373:22;;25404:32;25430:5;25404:32;:::i;:::-;25301:141;;;;:::o;25448:349::-;25517:6;25566:2;25554:9;25545:7;25541:23;25537:32;25534:119;;;25572:79;;:::i;:::-;25534:119;25692:1;25717:63;25772:7;25763:6;25752:9;25748:22;25717:63;:::i;:::-;25707:73;;25663:127;25448:349;;;;:::o

Swarm Source

ipfs://c7ada20d9811e5f5a0f3cb88e721664ee6488b8b1854e9d1d8213c44b317baa4
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.