ETH Price: $3,306.78 (+2.06%)
Gas: 4 Gwei

Token

Lands of Mythesda (LOM)
 

Overview

Max Total Supply

1,000 LOM

Holders

163

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 LOM
0xa4251a0b75c99b7f0326f0fcc8fb41e672bad7af
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WomLand

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-26
*/

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // 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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external payable;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        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)
        }
    }
}

// File: operator-filter-registry/src/lib/Constants.sol


pragma solidity ^0.8.17;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

// File: operator-filter-registry/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

// File: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: operator-filter-registry/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

// File: contracts/WOM_LAND.sol



pragma solidity >=0.8.0 <0.9.0;




contract WomLand is ERC721A, DefaultOperatorFilterer, Ownable {
    string public baseURI;
    uint256 public maxSupply = 1000;
    uint256 public publicMaxNFTPerAddress = 1;
    uint256 public publicPriceMint = 0.04 ether;
    bool public paused = false;
    bool public publicMint = false;
    address public signerAddress = 0x4E99031f4C39cd1AE173Bc32e397dE77ac6D6395;
    mapping(address => uint256) public alreadyMintedPresale;
    mapping(address => uint256) public alreadyMintedPublic;

    using ECDSA for bytes32;

    constructor() ERC721A("Lands of Mythesda", "LOM") {}

    function mint(
        uint256 quantity,
        uint256 maxMint,
        uint256 unitPrice,
        bytes memory signature
    ) public payable {
        require(!paused, "The contract is paused");
        uint256 supply = totalSupply();
        require(quantity > 0, "Need to mint at least 1 NFT");
        require(supply + quantity <= maxSupply, "Max NFT limit exceeded");

        if (!publicMint) {
            uint256 ownerMintedPresaleCount = alreadyMintedPresale[msg.sender];

            verifyCoupon(maxMint, unitPrice, msg.sender, signature);
            require(
                ownerMintedPresaleCount + quantity <= maxMint,
                "Max NFT for address exceeded"
            );
            require(msg.value >= unitPrice * quantity, "Insufficient founds");

            alreadyMintedPresale[msg.sender] = ownerMintedPresaleCount + quantity;
        } else {
            uint256 ownerMintedPublicCount = alreadyMintedPublic[msg.sender];
            require(
                ownerMintedPublicCount + quantity <= publicMaxNFTPerAddress,
                "Max NFT for address exceeded"
            );
            require(
                msg.value >= publicPriceMint * quantity,
                "Insufficient founds"
            );

            alreadyMintedPublic[msg.sender] = ownerMintedPublicCount + quantity;
        }

        _mint(msg.sender, quantity);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function burn(uint256 tokenId) public onlyOwner {
        super._burn(tokenId);
    }

    function setBaseUri(string memory baseuri_) public onlyOwner {
        baseURI = baseuri_;
    }

    function ownerMint(address to, uint256 quantity) public onlyOwner {
        _mint(to, quantity);
    }

    function setSignerAddress(address signerAddress_) public onlyOwner {
        signerAddress = signerAddress_;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setPublicMint(bool _state) public onlyOwner {
        publicMint = _state;
    }

    function setPublicMaxNFTPerAddress(uint256 _state) public onlyOwner {
        publicMaxNFTPerAddress = _state;
    }

    function setPublicPrice(uint256 _state) public onlyOwner {
        publicPriceMint = _state;
    }

    function verifyCoupon(
        uint256 maxMint,
        uint256 unitPrice,
        address minterAddress,
        bytes memory signature
    ) public view virtual {
        bytes32 inputHash = keccak256(
            abi.encodePacked(maxMint, unitPrice, minterAddress)
        );

        bytes32 ethSignedMessageHash = inputHash.toEthSignedMessageHash();
        address recoveredAddress = ethSignedMessageHash.recover(signature);
        require(recoveredAddress == signerAddress, "Bad signature");
    }

    function withdraw() public payable onlyOwner {
        // This will payout the contract balance to the owner.
        // Do not remove this otherwise you will not be able to withdraw the funds.
        // =============================================================================
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        assert(os);
        // =============================================================================
    }

    // OPERATOR FILTER OVERRIDES

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
    super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        payable
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"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":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"alreadyMintedPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"alreadyMintedPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"unitPrice","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMaxNFTPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPriceMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseuri_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setPublicMaxNFTPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signerAddress_","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"unitPrice","type":"uint256"},{"internalType":"address","name":"minterAddress","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"verifyCoupon","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526103e8600a556001600b55668e1bc9bf040000600c55600d80546001600160b01b031916754e99031f4c39cd1ae173bc32e397de77ac6d639500001790553480156200004f57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb66001604051806040016040528060118152602001704c616e6473206f66204d7974686573646160781b815250604051806040016040528060038152602001624c4f4d60e81b8152508160029081620000be919062000324565b506003620000cd828262000324565b506000805550506daaeb6d7670e522a718067333cd4e3b15620002195780156200016757604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200014857600080fd5b505af11580156200015d573d6000803e3d6000fd5b5050505062000219565b6001600160a01b03821615620001b85760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200012d565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001ff57600080fd5b505af115801562000214573d6000803e3d6000fd5b505050505b50620002279050336200022d565b620003f0565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002aa57607f821691505b602082108103620002cb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200031f57600081815260208120601f850160051c81016020861015620002fa5750805b601f850160051c820191505b818110156200031b5782815560010162000306565b5050505b505050565b81516001600160401b038111156200034057620003406200027f565b620003588162000351845462000295565b84620002d1565b602080601f831160018114620003905760008415620003775750858301515b600019600386901b1c1916600185901b1785556200031b565b600085815260208120601f198616915b82811015620003c157888601518255948401946001909101908401620003a0565b5085821015620003e05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6120ee80620004006000396000f3fe6080604052600436106102255760003560e01c80635c975abb11610123578063a0bcfc7f116100ab578063c87b56dd1161006f578063c87b56dd14610617578063ceda0dbd14610637578063d5abeb011461064d578063e985e9c514610663578063f2fde38b1461068357600080fd5b8063a0bcfc7f14610584578063a22cb465146105a4578063b88d4fde146105c4578063c48b1fa6146105d7578063c6275255146105f757600080fd5b8063715018a6116100f2578063715018a6146104ef57806373bb4fb0146105045780638da5cb5b146105315780638f9db08c1461054f57806395d89b411461056f57600080fd5b80635c975abb146104805780636352211e1461049a5780636c0360eb146104ba57806370a08231146104cf57600080fd5b806323b872dd116101b157806342842e0e1161017557806342842e0e146103f457806342966c6814610407578063484b973c146104275780634a9eee69146104475780635b7633d01461045a57600080fd5b806323b872dd1461036b57806326092b831461037e578063312d7beb1461039d5780633ccfd60b146103ca57806341f43434146103d257600080fd5b8063081812fc116101f8578063081812fc146102c3578063095ea7b3146102fb5780630bab32621461030e5780630e2d56cf1461033257806318160ddd1461035257600080fd5b806301ffc9a71461022a57806302329a291461025f578063046dc1661461028157806306fdde03146102a1575b600080fd5b34801561023657600080fd5b5061024a610245366004611a93565b6106a3565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a366004611abe565b6106f5565b005b34801561028d57600080fd5b5061027f61029c366004611af7565b610710565b3480156102ad57600080fd5b506102b6610742565b6040516102569190611b62565b3480156102cf57600080fd5b506102e36102de366004611b75565b6107d4565b6040516001600160a01b039091168152602001610256565b61027f610309366004611b8e565b610818565b34801561031a57600080fd5b50610324600b5481565b604051908152602001610256565b34801561033e57600080fd5b5061027f61034d366004611abe565b610831565b34801561035e57600080fd5b5060015460005403610324565b61027f610379366004611bb8565b610853565b34801561038a57600080fd5b50600d5461024a90610100900460ff1681565b3480156103a957600080fd5b506103246103b8366004611af7565b600f6020526000908152604090205481565b61027f61087e565b3480156103de57600080fd5b506102e36daaeb6d7670e522a718067333cd4e81565b61027f610402366004611bb8565b6108fd565b34801561041357600080fd5b5061027f610422366004611b75565b610922565b34801561043357600080fd5b5061027f610442366004611b8e565b610933565b61027f610455366004611ca0565b610949565b34801561046657600080fd5b50600d546102e3906201000090046001600160a01b031681565b34801561048c57600080fd5b50600d5461024a9060ff1681565b3480156104a657600080fd5b506102e36104b5366004611b75565b610c30565b3480156104c657600080fd5b506102b6610c3b565b3480156104db57600080fd5b506103246104ea366004611af7565b610cc9565b3480156104fb57600080fd5b5061027f610d18565b34801561051057600080fd5b5061032461051f366004611af7565b600e6020526000908152604090205481565b34801561053d57600080fd5b506008546001600160a01b03166102e3565b34801561055b57600080fd5b5061027f61056a366004611cfa565b610d2c565b34801561057b57600080fd5b506102b6610e1c565b34801561059057600080fd5b5061027f61059f366004611d43565b610e2b565b3480156105b057600080fd5b5061027f6105bf366004611d8c565b610e3f565b61027f6105d2366004611dc3565b610e53565b3480156105e357600080fd5b5061027f6105f2366004611b75565b610e79565b34801561060357600080fd5b5061027f610612366004611b75565b610e86565b34801561062357600080fd5b506102b6610632366004611b75565b610e93565b34801561064357600080fd5b50610324600c5481565b34801561065957600080fd5b50610324600a5481565b34801561066f57600080fd5b5061024a61067e366004611e13565b610f17565b34801561068f57600080fd5b5061027f61069e366004611af7565b610f45565b60006301ffc9a760e01b6001600160e01b0319831614806106d457506380ac58cd60e01b6001600160e01b03198316145b806106ef5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6106fd610fbb565b600d805460ff1916911515919091179055565b610718610fbb565b600d80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b60606002805461075190611e46565b80601f016020809104026020016040519081016040528092919081815260200182805461077d90611e46565b80156107ca5780601f1061079f576101008083540402835291602001916107ca565b820191906000526020600020905b8154815290600101906020018083116107ad57829003601f168201915b5050505050905090565b60006107df82611015565b6107fc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816108228161103c565b61082c83836110f5565b505050565b610839610fbb565b600d80549115156101000261ff0019909216919091179055565b826001600160a01b038116331461086d5761086d3361103c565b610878848484611195565b50505050565b610886610fbb565b600061089a6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146108e4576040519150601f19603f3d011682016040523d82523d6000602084013e6108e9565b606091505b50509050806108fa576108fa611e80565b50565b826001600160a01b0381163314610917576109173361103c565b610878848484611326565b61092a610fbb565b6108fa81611341565b61093b610fbb565b610945828261134c565b5050565b600d5460ff161561099a5760405162461bcd60e51b8152602060048201526016602482015275151a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064015b60405180910390fd5b60006109a96001546000540390565b9050600085116109fb5760405162461bcd60e51b815260206004820152601b60248201527f4e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610991565b600a54610a088683611eac565b1115610a4f5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610991565b600d54610100900460ff16610b4557336000818152600e602052604090205490610a7d908690869086610d2c565b84610a888783611eac565b1115610ad65760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420666f722061646472657373206578636565646564000000006044820152606401610991565b610ae08685611ebf565b341015610b255760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e7420666f756e647360681b6044820152606401610991565b610b2f8682611eac565b336000908152600e602052604090205550610c1f565b336000908152600f6020526040902054600b54610b628783611eac565b1115610bb05760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420666f722061646472657373206578636565646564000000006044820152606401610991565b85600c54610bbe9190611ebf565b341015610c035760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e7420666f756e647360681b6044820152606401610991565b610c0d8682611eac565b336000908152600f6020526040902055505b610c29338661134c565b5050505050565b60006106ef82611426565b60098054610c4890611e46565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7490611e46565b8015610cc15780601f10610c9657610100808354040283529160200191610cc1565b820191906000526020600020905b815481529060010190602001808311610ca457829003601f168201915b505050505081565b60006001600160a01b038216610cf2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610d20610fbb565b610d2a600061148d565b565b604080516020808201879052818301869052606085811b6bffffffffffffffffffffffff191690830152825180830360540181526074830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a333200000000609484015260b08084018290528451808503909101815260d090930190935281519101206000610dbd82856114df565b600d549091506001600160a01b03808316620100009092041614610e135760405162461bcd60e51b815260206004820152600d60248201526c426164207369676e617475726560981b6044820152606401610991565b50505050505050565b60606003805461075190611e46565b610e33610fbb565b60096109458282611f1c565b81610e498161103c565b61082c8383611503565b836001600160a01b0381163314610e6d57610e6d3361103c565b610c298585858561156f565b610e81610fbb565b600b55565b610e8e610fbb565b600c55565b6060610e9e82611015565b610ebb57604051630a14c4b560e41b815260040160405180910390fd5b6000610ec56115b3565b90508051600003610ee55760405180602001604052806000815250610f10565b80610eef846115c2565b604051602001610f00929190611fdc565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610f4d610fbb565b6001600160a01b038116610fb25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610991565b6108fa8161148d565b6008546001600160a01b03163314610d2a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610991565b60008054821080156106ef575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b156108fa57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110cd919061200b565b6108fa57604051633b79c77360e21b81526001600160a01b0382166004820152602401610991565b600061110082610c30565b9050336001600160a01b038216146111395761111c8133610f17565b611139576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111a082611426565b9050836001600160a01b0316816001600160a01b0316146111d35760405162a1148160e81b815260040160405180910390fd5b600082815260066020526040902080546111ff8187335b6001600160a01b039081169116811491141790565b61122a5761120d8633610f17565b61122a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661125157604051633a954ecd60e21b815260040160405180910390fd5b801561125c57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036112ee576001840160008181526004602052604081205490036112ec5760005481146112ec5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061209983398151915260405160405180910390a45b505050505050565b61082c83838360405180602001604052806000815250610e53565b6108fa816000611606565b60008054908290036113715760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083906000805160206120998339815191528180a4600183015b8181146113fc5780836000600080516020612099833981519152600080a46001016113d6565b508160000361141d57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000816000548110156114745760008181526004602052604081205490600160e01b82169003611472575b80600003610f10575060001901600081815260046020526040902054611451565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060006114ee858561173e565b915091506114fb81611783565b509392505050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61157a848484610853565b6001600160a01b0383163b1561087857611596848484846118cd565b610878576040516368d2bf6b60e11b815260040160405180910390fd5b60606009805461075190611e46565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806115dc5750819003601f19909101908152919050565b600061161183611426565b90508060008061162f86600090815260066020526040902080549091565b91509150841561166f576116448184336111ea565b61166f576116528333610f17565b61166f57604051632ce44b5f60e11b815260040160405180910390fd5b801561167a57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003611708576001860160008181526004602052604081205490036117065760005481146117065760008181526004602052604090208590555b505b60405186906000906001600160a01b03861690600080516020612099833981519152908390a45050600180548101905550505050565b60008082516041036117745760208301516040840151606085015160001a611768878285856119b9565b9450945050505061177c565b506000905060025b9250929050565b600081600481111561179757611797612028565b0361179f5750565b60018160048111156117b3576117b3612028565b036118005760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610991565b600281600481111561181457611814612028565b036118615760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610991565b600381600481111561187557611875612028565b036108fa5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610991565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061190290339089908890889060040161203e565b6020604051808303816000875af192505050801561193d575060408051601f3d908101601f1916820190925261193a9181019061207b565b60015b61199b573d80801561196b576040519150601f19603f3d011682016040523d82523d6000602084013e611970565b606091505b508051600003611993576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156119f05750600090506003611a74565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611a44573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611a6d57600060019250925050611a74565b9150600090505b94509492505050565b6001600160e01b0319811681146108fa57600080fd5b600060208284031215611aa557600080fd5b8135610f1081611a7d565b80151581146108fa57600080fd5b600060208284031215611ad057600080fd5b8135610f1081611ab0565b80356001600160a01b0381168114611af257600080fd5b919050565b600060208284031215611b0957600080fd5b610f1082611adb565b60005b83811015611b2d578181015183820152602001611b15565b50506000910152565b60008151808452611b4e816020860160208601611b12565b601f01601f19169290920160200192915050565b602081526000610f106020830184611b36565b600060208284031215611b8757600080fd5b5035919050565b60008060408385031215611ba157600080fd5b611baa83611adb565b946020939093013593505050565b600080600060608486031215611bcd57600080fd5b611bd684611adb565b9250611be460208501611adb565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c2557611c25611bf4565b604051601f8501601f19908116603f01168101908282118183101715611c4d57611c4d611bf4565b81604052809350858152868686011115611c6657600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112611c9157600080fd5b610f1083833560208501611c0a565b60008060008060808587031215611cb657600080fd5b843593506020850135925060408501359150606085013567ffffffffffffffff811115611ce257600080fd5b611cee87828801611c80565b91505092959194509250565b60008060008060808587031215611d1057600080fd5b8435935060208501359250611d2760408601611adb565b9150606085013567ffffffffffffffff811115611ce257600080fd5b600060208284031215611d5557600080fd5b813567ffffffffffffffff811115611d6c57600080fd5b8201601f81018413611d7d57600080fd5b6119b184823560208401611c0a565b60008060408385031215611d9f57600080fd5b611da883611adb565b91506020830135611db881611ab0565b809150509250929050565b60008060008060808587031215611dd957600080fd5b611de285611adb565b9350611df060208601611adb565b925060408501359150606085013567ffffffffffffffff811115611ce257600080fd5b60008060408385031215611e2657600080fd5b611e2f83611adb565b9150611e3d60208401611adb565b90509250929050565b600181811c90821680611e5a57607f821691505b602082108103611e7a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156106ef576106ef611e96565b80820281158282048414176106ef576106ef611e96565b601f82111561082c57600081815260208120601f850160051c81016020861015611efd5750805b601f850160051c820191505b8181101561131e57828155600101611f09565b815167ffffffffffffffff811115611f3657611f36611bf4565b611f4a81611f448454611e46565b84611ed6565b602080601f831160018114611f7f5760008415611f675750858301515b600019600386901b1c1916600185901b17855561131e565b600085815260208120601f198616915b82811015611fae57888601518255948401946001909101908401611f8f565b5085821015611fcc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351611fee818460208801611b12565b835190830190612002818360208801611b12565b01949350505050565b60006020828403121561201d57600080fd5b8151610f1081611ab0565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061207190830184611b36565b9695505050505050565b60006020828403121561208d57600080fd5b8151610f1081611a7d56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212200eef0f74089e37e897bd8533a2cca2423ce2d2cf352032833deabb1edaaeb81c64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80635c975abb11610123578063a0bcfc7f116100ab578063c87b56dd1161006f578063c87b56dd14610617578063ceda0dbd14610637578063d5abeb011461064d578063e985e9c514610663578063f2fde38b1461068357600080fd5b8063a0bcfc7f14610584578063a22cb465146105a4578063b88d4fde146105c4578063c48b1fa6146105d7578063c6275255146105f757600080fd5b8063715018a6116100f2578063715018a6146104ef57806373bb4fb0146105045780638da5cb5b146105315780638f9db08c1461054f57806395d89b411461056f57600080fd5b80635c975abb146104805780636352211e1461049a5780636c0360eb146104ba57806370a08231146104cf57600080fd5b806323b872dd116101b157806342842e0e1161017557806342842e0e146103f457806342966c6814610407578063484b973c146104275780634a9eee69146104475780635b7633d01461045a57600080fd5b806323b872dd1461036b57806326092b831461037e578063312d7beb1461039d5780633ccfd60b146103ca57806341f43434146103d257600080fd5b8063081812fc116101f8578063081812fc146102c3578063095ea7b3146102fb5780630bab32621461030e5780630e2d56cf1461033257806318160ddd1461035257600080fd5b806301ffc9a71461022a57806302329a291461025f578063046dc1661461028157806306fdde03146102a1575b600080fd5b34801561023657600080fd5b5061024a610245366004611a93565b6106a3565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a366004611abe565b6106f5565b005b34801561028d57600080fd5b5061027f61029c366004611af7565b610710565b3480156102ad57600080fd5b506102b6610742565b6040516102569190611b62565b3480156102cf57600080fd5b506102e36102de366004611b75565b6107d4565b6040516001600160a01b039091168152602001610256565b61027f610309366004611b8e565b610818565b34801561031a57600080fd5b50610324600b5481565b604051908152602001610256565b34801561033e57600080fd5b5061027f61034d366004611abe565b610831565b34801561035e57600080fd5b5060015460005403610324565b61027f610379366004611bb8565b610853565b34801561038a57600080fd5b50600d5461024a90610100900460ff1681565b3480156103a957600080fd5b506103246103b8366004611af7565b600f6020526000908152604090205481565b61027f61087e565b3480156103de57600080fd5b506102e36daaeb6d7670e522a718067333cd4e81565b61027f610402366004611bb8565b6108fd565b34801561041357600080fd5b5061027f610422366004611b75565b610922565b34801561043357600080fd5b5061027f610442366004611b8e565b610933565b61027f610455366004611ca0565b610949565b34801561046657600080fd5b50600d546102e3906201000090046001600160a01b031681565b34801561048c57600080fd5b50600d5461024a9060ff1681565b3480156104a657600080fd5b506102e36104b5366004611b75565b610c30565b3480156104c657600080fd5b506102b6610c3b565b3480156104db57600080fd5b506103246104ea366004611af7565b610cc9565b3480156104fb57600080fd5b5061027f610d18565b34801561051057600080fd5b5061032461051f366004611af7565b600e6020526000908152604090205481565b34801561053d57600080fd5b506008546001600160a01b03166102e3565b34801561055b57600080fd5b5061027f61056a366004611cfa565b610d2c565b34801561057b57600080fd5b506102b6610e1c565b34801561059057600080fd5b5061027f61059f366004611d43565b610e2b565b3480156105b057600080fd5b5061027f6105bf366004611d8c565b610e3f565b61027f6105d2366004611dc3565b610e53565b3480156105e357600080fd5b5061027f6105f2366004611b75565b610e79565b34801561060357600080fd5b5061027f610612366004611b75565b610e86565b34801561062357600080fd5b506102b6610632366004611b75565b610e93565b34801561064357600080fd5b50610324600c5481565b34801561065957600080fd5b50610324600a5481565b34801561066f57600080fd5b5061024a61067e366004611e13565b610f17565b34801561068f57600080fd5b5061027f61069e366004611af7565b610f45565b60006301ffc9a760e01b6001600160e01b0319831614806106d457506380ac58cd60e01b6001600160e01b03198316145b806106ef5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6106fd610fbb565b600d805460ff1916911515919091179055565b610718610fbb565b600d80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b60606002805461075190611e46565b80601f016020809104026020016040519081016040528092919081815260200182805461077d90611e46565b80156107ca5780601f1061079f576101008083540402835291602001916107ca565b820191906000526020600020905b8154815290600101906020018083116107ad57829003601f168201915b5050505050905090565b60006107df82611015565b6107fc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816108228161103c565b61082c83836110f5565b505050565b610839610fbb565b600d80549115156101000261ff0019909216919091179055565b826001600160a01b038116331461086d5761086d3361103c565b610878848484611195565b50505050565b610886610fbb565b600061089a6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146108e4576040519150601f19603f3d011682016040523d82523d6000602084013e6108e9565b606091505b50509050806108fa576108fa611e80565b50565b826001600160a01b0381163314610917576109173361103c565b610878848484611326565b61092a610fbb565b6108fa81611341565b61093b610fbb565b610945828261134c565b5050565b600d5460ff161561099a5760405162461bcd60e51b8152602060048201526016602482015275151a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064015b60405180910390fd5b60006109a96001546000540390565b9050600085116109fb5760405162461bcd60e51b815260206004820152601b60248201527f4e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610991565b600a54610a088683611eac565b1115610a4f5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610991565b600d54610100900460ff16610b4557336000818152600e602052604090205490610a7d908690869086610d2c565b84610a888783611eac565b1115610ad65760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420666f722061646472657373206578636565646564000000006044820152606401610991565b610ae08685611ebf565b341015610b255760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e7420666f756e647360681b6044820152606401610991565b610b2f8682611eac565b336000908152600e602052604090205550610c1f565b336000908152600f6020526040902054600b54610b628783611eac565b1115610bb05760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420666f722061646472657373206578636565646564000000006044820152606401610991565b85600c54610bbe9190611ebf565b341015610c035760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e7420666f756e647360681b6044820152606401610991565b610c0d8682611eac565b336000908152600f6020526040902055505b610c29338661134c565b5050505050565b60006106ef82611426565b60098054610c4890611e46565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7490611e46565b8015610cc15780601f10610c9657610100808354040283529160200191610cc1565b820191906000526020600020905b815481529060010190602001808311610ca457829003601f168201915b505050505081565b60006001600160a01b038216610cf2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610d20610fbb565b610d2a600061148d565b565b604080516020808201879052818301869052606085811b6bffffffffffffffffffffffff191690830152825180830360540181526074830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a333200000000609484015260b08084018290528451808503909101815260d090930190935281519101206000610dbd82856114df565b600d549091506001600160a01b03808316620100009092041614610e135760405162461bcd60e51b815260206004820152600d60248201526c426164207369676e617475726560981b6044820152606401610991565b50505050505050565b60606003805461075190611e46565b610e33610fbb565b60096109458282611f1c565b81610e498161103c565b61082c8383611503565b836001600160a01b0381163314610e6d57610e6d3361103c565b610c298585858561156f565b610e81610fbb565b600b55565b610e8e610fbb565b600c55565b6060610e9e82611015565b610ebb57604051630a14c4b560e41b815260040160405180910390fd5b6000610ec56115b3565b90508051600003610ee55760405180602001604052806000815250610f10565b80610eef846115c2565b604051602001610f00929190611fdc565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610f4d610fbb565b6001600160a01b038116610fb25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610991565b6108fa8161148d565b6008546001600160a01b03163314610d2a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610991565b60008054821080156106ef575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b156108fa57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110cd919061200b565b6108fa57604051633b79c77360e21b81526001600160a01b0382166004820152602401610991565b600061110082610c30565b9050336001600160a01b038216146111395761111c8133610f17565b611139576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111a082611426565b9050836001600160a01b0316816001600160a01b0316146111d35760405162a1148160e81b815260040160405180910390fd5b600082815260066020526040902080546111ff8187335b6001600160a01b039081169116811491141790565b61122a5761120d8633610f17565b61122a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661125157604051633a954ecd60e21b815260040160405180910390fd5b801561125c57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036112ee576001840160008181526004602052604081205490036112ec5760005481146112ec5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061209983398151915260405160405180910390a45b505050505050565b61082c83838360405180602001604052806000815250610e53565b6108fa816000611606565b60008054908290036113715760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083906000805160206120998339815191528180a4600183015b8181146113fc5780836000600080516020612099833981519152600080a46001016113d6565b508160000361141d57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000816000548110156114745760008181526004602052604081205490600160e01b82169003611472575b80600003610f10575060001901600081815260046020526040902054611451565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060006114ee858561173e565b915091506114fb81611783565b509392505050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61157a848484610853565b6001600160a01b0383163b1561087857611596848484846118cd565b610878576040516368d2bf6b60e11b815260040160405180910390fd5b60606009805461075190611e46565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806115dc5750819003601f19909101908152919050565b600061161183611426565b90508060008061162f86600090815260066020526040902080549091565b91509150841561166f576116448184336111ea565b61166f576116528333610f17565b61166f57604051632ce44b5f60e11b815260040160405180910390fd5b801561167a57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003611708576001860160008181526004602052604081205490036117065760005481146117065760008181526004602052604090208590555b505b60405186906000906001600160a01b03861690600080516020612099833981519152908390a45050600180548101905550505050565b60008082516041036117745760208301516040840151606085015160001a611768878285856119b9565b9450945050505061177c565b506000905060025b9250929050565b600081600481111561179757611797612028565b0361179f5750565b60018160048111156117b3576117b3612028565b036118005760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610991565b600281600481111561181457611814612028565b036118615760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610991565b600381600481111561187557611875612028565b036108fa5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610991565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061190290339089908890889060040161203e565b6020604051808303816000875af192505050801561193d575060408051601f3d908101601f1916820190925261193a9181019061207b565b60015b61199b573d80801561196b576040519150601f19603f3d011682016040523d82523d6000602084013e611970565b606091505b508051600003611993576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156119f05750600090506003611a74565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611a44573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611a6d57600060019250925050611a74565b9150600090505b94509492505050565b6001600160e01b0319811681146108fa57600080fd5b600060208284031215611aa557600080fd5b8135610f1081611a7d565b80151581146108fa57600080fd5b600060208284031215611ad057600080fd5b8135610f1081611ab0565b80356001600160a01b0381168114611af257600080fd5b919050565b600060208284031215611b0957600080fd5b610f1082611adb565b60005b83811015611b2d578181015183820152602001611b15565b50506000910152565b60008151808452611b4e816020860160208601611b12565b601f01601f19169290920160200192915050565b602081526000610f106020830184611b36565b600060208284031215611b8757600080fd5b5035919050565b60008060408385031215611ba157600080fd5b611baa83611adb565b946020939093013593505050565b600080600060608486031215611bcd57600080fd5b611bd684611adb565b9250611be460208501611adb565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c2557611c25611bf4565b604051601f8501601f19908116603f01168101908282118183101715611c4d57611c4d611bf4565b81604052809350858152868686011115611c6657600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112611c9157600080fd5b610f1083833560208501611c0a565b60008060008060808587031215611cb657600080fd5b843593506020850135925060408501359150606085013567ffffffffffffffff811115611ce257600080fd5b611cee87828801611c80565b91505092959194509250565b60008060008060808587031215611d1057600080fd5b8435935060208501359250611d2760408601611adb565b9150606085013567ffffffffffffffff811115611ce257600080fd5b600060208284031215611d5557600080fd5b813567ffffffffffffffff811115611d6c57600080fd5b8201601f81018413611d7d57600080fd5b6119b184823560208401611c0a565b60008060408385031215611d9f57600080fd5b611da883611adb565b91506020830135611db881611ab0565b809150509250929050565b60008060008060808587031215611dd957600080fd5b611de285611adb565b9350611df060208601611adb565b925060408501359150606085013567ffffffffffffffff811115611ce257600080fd5b60008060408385031215611e2657600080fd5b611e2f83611adb565b9150611e3d60208401611adb565b90509250929050565b600181811c90821680611e5a57607f821691505b602082108103611e7a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156106ef576106ef611e96565b80820281158282048414176106ef576106ef611e96565b601f82111561082c57600081815260208120601f850160051c81016020861015611efd5750805b601f850160051c820191505b8181101561131e57828155600101611f09565b815167ffffffffffffffff811115611f3657611f36611bf4565b611f4a81611f448454611e46565b84611ed6565b602080601f831160018114611f7f5760008415611f675750858301515b600019600386901b1c1916600185901b17855561131e565b600085815260208120601f198616915b82811015611fae57888601518255948401946001909101908401611f8f565b5085821015611fcc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351611fee818460208801611b12565b835190830190612002818360208801611b12565b01949350505050565b60006020828403121561201d57600080fd5b8151610f1081611ab0565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061207190830184611b36565b9695505050505050565b60006020828403121561208d57600080fd5b8151610f1081611a7d56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212200eef0f74089e37e897bd8533a2cca2423ce2d2cf352032833deabb1edaaeb81c64736f6c63430008110033

Deployed Bytecode Sourcemap

77491:5022:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33292:639;;;;;;;;;;-1:-1:-1;33292:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;33292:639:0;;;;;;;;80073:79;;;;;;;;;;-1:-1:-1;80073:79:0;;;;;:::i;:::-;;:::i;:::-;;79949:116;;;;;;;;;;-1:-1:-1;79949:116:0;;;;;:::i;:::-;;:::i;34194:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40685:218::-;;;;;;;;;;-1:-1:-1;40685:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2435:32:1;;;2417:51;;2405:2;2390:18;40685:218:0;2271:203:1;81726:165:0;;;;;;:::i;:::-;;:::i;77626:41::-;;;;;;;;;;;;;;;;;;;2884:25:1;;;2872:2;2857:18;77626:41:0;2738:177:1;80160:91:0;;;;;;;;;;-1:-1:-1;80160:91:0;;;;;:::i;:::-;;:::i;29945:323::-;;;;;;;;;;-1:-1:-1;30219:12:0;;30006:7;30203:13;:28;29945:323;;81899:171;;;;;;:::i;:::-;;:::i;77757:30::-;;;;;;;;;;-1:-1:-1;77757:30:0;;;;;;;;;;;77936:54;;;;;;;;;;-1:-1:-1;77936:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;81019:483;;;:::i;74058:143::-;;;;;;;;;;;;66474:42;74058:143;;82078:179;;;;;;:::i;:::-;;:::i;79636:87::-;;;;;;;;;;-1:-1:-1;79636:87:0;;;;;:::i;:::-;;:::i;79837:104::-;;;;;;;;;;-1:-1:-1;79837:104:0;;;;;:::i;:::-;;:::i;78091:1421::-;;;;;;:::i;:::-;;:::i;77794:73::-;;;;;;;;;;-1:-1:-1;77794:73:0;;;;;;;-1:-1:-1;;;;;77794:73:0;;;77724:26;;;;;;;;;;-1:-1:-1;77724:26:0;;;;;;;;35587:152;;;;;;;;;;-1:-1:-1;35587:152:0;;;;;:::i;:::-;;:::i;77560:21::-;;;;;;;;;;;;;:::i;31129:233::-;;;;;;;;;;-1:-1:-1;31129:233:0;;;;;:::i;:::-;;:::i;14071:103::-;;;;;;;;;;;;;:::i;77874:55::-;;;;;;;;;;-1:-1:-1;77874:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;13423:87;;;;;;;;;;-1:-1:-1;13496:6:0;;-1:-1:-1;;;;;13496:6:0;13423:87;;80493:518;;;;;;;;;;-1:-1:-1;80493:518:0;;;;;:::i;:::-;;:::i;34370:104::-;;;;;;;;;;;;;:::i;79731:98::-;;;;;;;;;;-1:-1:-1;79731:98:0;;;;;:::i;:::-;;:::i;81546:172::-;;;;;;;;;;-1:-1:-1;81546:172:0;;;;;:::i;:::-;;:::i;82265:245::-;;;;;;:::i;:::-;;:::i;80259:118::-;;;;;;;;;;-1:-1:-1;80259:118:0;;;;;:::i;:::-;;:::i;80385:100::-;;;;;;;;;;-1:-1:-1;80385:100:0;;;;;:::i;:::-;;:::i;34580:318::-;;;;;;;;;;-1:-1:-1;34580:318:0;;;;;:::i;:::-;;:::i;77674:43::-;;;;;;;;;;;;;;;;77588:31;;;;;;;;;;;;;;;;41634:164;;;;;;;;;;-1:-1:-1;41634:164:0;;;;;:::i;:::-;;:::i;14329:201::-;;;;;;;;;;-1:-1:-1;14329:201:0;;;;;:::i;:::-;;:::i;33292:639::-;33377:4;-1:-1:-1;;;;;;;;;33701:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;33778:25:0;;;33701:102;:179;;;-1:-1:-1;;;;;;;;;;33855:25:0;;;33701:179;33681:199;33292:639;-1:-1:-1;;33292:639:0:o;80073:79::-;13309:13;:11;:13::i;:::-;80129:6:::1;:15:::0;;-1:-1:-1;;80129:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;80073:79::o;79949:116::-;13309:13;:11;:13::i;:::-;80027::::1;:30:::0;;-1:-1:-1;;;;;80027:30:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;80027:30:0;;::::1;::::0;;;::::1;::::0;;79949:116::o;34194:100::-;34248:13;34281:5;34274:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34194:100;:::o;40685:218::-;40761:7;40786:16;40794:7;40786;:16::i;:::-;40781:64;;40811:34;;-1:-1:-1;;;40811:34:0;;;;;;;;;;;40781:64;-1:-1:-1;40865:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;40865:30:0;;40685:218::o;81726:165::-;81830:8;75840:30;75861:8;75840:20;:30::i;:::-;81851:32:::1;81865:8;81875:7;81851:13;:32::i;:::-;81726:165:::0;;;:::o;80160:91::-;13309:13;:11;:13::i;:::-;80224:10:::1;:19:::0;;;::::1;;;;-1:-1:-1::0;;80224:19:0;;::::1;::::0;;;::::1;::::0;;80160:91::o;81899:171::-;82008:4;-1:-1:-1;;;;;75566:18:0;;75574:10;75566:18;75562:83;;75601:32;75622:10;75601:20;:32::i;:::-;82025:37:::1;82044:4;82050:2;82054:7;82025:18;:37::i;:::-;81899:171:::0;;;;:::o;81019:483::-;13309:13;:11;:13::i;:::-;81315:7:::1;81336;13496:6:::0;;-1:-1:-1;;;;;13496:6:0;;13423:87;81336:7:::1;-1:-1:-1::0;;;;;81328:21:0::1;81357;81328:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81314:69;;;81401:2;81394:10;;;;:::i;:::-;81064:438;81019:483::o:0;82078:179::-;82191:4;-1:-1:-1;;;;;75566:18:0;;75574:10;75566:18;75562:83;;75601:32;75622:10;75601:20;:32::i;:::-;82208:41:::1;82231:4;82237:2;82241:7;82208:22;:41::i;79636:87::-:0;13309:13;:11;:13::i;:::-;79695:20:::1;79707:7;79695:11;:20::i;79837:104::-:0;13309:13;:11;:13::i;:::-;79914:19:::1;79920:2;79924:8;79914:5;:19::i;:::-;79837:104:::0;;:::o;78091:1421::-;78261:6;;;;78260:7;78252:42;;;;-1:-1:-1;;;78252:42:0;;8063:2:1;78252:42:0;;;8045:21:1;8102:2;8082:18;;;8075:30;-1:-1:-1;;;8121:18:1;;;8114:52;8183:18;;78252:42:0;;;;;;;;;78305:14;78322:13;30219:12;;30006:7;30203:13;:28;;29945:323;78322:13;78305:30;;78365:1;78354:8;:12;78346:52;;;;-1:-1:-1;;;78346:52:0;;8414:2:1;78346:52:0;;;8396:21:1;8453:2;8433:18;;;8426:30;8492:29;8472:18;;;8465:57;8539:18;;78346:52:0;8212:351:1;78346:52:0;78438:9;;78417:17;78426:8;78417:6;:17;:::i;:::-;:30;;78409:65;;;;-1:-1:-1;;;78409:65:0;;9032:2:1;78409:65:0;;;9014:21:1;9071:2;9051:18;;;9044:30;-1:-1:-1;;;9090:18:1;;;9083:52;9152:18;;78409:65:0;8830:346:1;78409:65:0;78492:10;;;;;;;78487:978;;78574:10;78519:31;78553:32;;;:20;:32;;;;;;;78602:55;;78615:7;;78624:9;;78647;78602:12;:55::i;:::-;78736:7;78698:34;78724:8;78698:23;:34;:::i;:::-;:45;;78672:135;;;;-1:-1:-1;;;78672:135:0;;9383:2:1;78672:135:0;;;9365:21:1;9422:2;9402:18;;;9395:30;9461;9441:18;;;9434:58;9509:18;;78672:135:0;9181:352:1;78672:135:0;78843:20;78855:8;78843:9;:20;:::i;:::-;78830:9;:33;;78822:65;;;;-1:-1:-1;;;78822:65:0;;9913:2:1;78822:65:0;;;9895:21:1;9952:2;9932:18;;;9925:30;-1:-1:-1;;;9971:18:1;;;9964:49;10030:18;;78822:65:0;9711:343:1;78822:65:0;78939:34;78965:8;78939:23;:34;:::i;:::-;78925:10;78904:32;;;;:20;:32;;;;;:69;-1:-1:-1;78487:978:0;;;79059:10;79006:30;79039:31;;;:19;:31;;;;;;79148:22;;79111:33;79136:8;79039:31;79111:33;:::i;:::-;:59;;79085:149;;;;-1:-1:-1;;;79085:149:0;;9383:2:1;79085:149:0;;;9365:21:1;9422:2;9402:18;;;9395:30;9461;9441:18;;;9434:58;9509:18;;79085:149:0;9181:352:1;79085:149:0;79306:8;79288:15;;:26;;;;:::i;:::-;79275:9;:39;;79249:120;;;;-1:-1:-1;;;79249:120:0;;9913:2:1;79249:120:0;;;9895:21:1;9952:2;9932:18;;;9925:30;-1:-1:-1;;;9971:18:1;;;9964:49;10030:18;;79249:120:0;9711:343:1;79249:120:0;79420:33;79445:8;79420:22;:33;:::i;:::-;79406:10;79386:31;;;;:19;:31;;;;;:67;-1:-1:-1;78487:978:0;79477:27;79483:10;79495:8;79477:5;:27::i;:::-;78241:1271;78091:1421;;;;:::o;35587:152::-;35659:7;35702:27;35721:7;35702:18;:27::i;77560:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31129:233::-;31201:7;-1:-1:-1;;;;;31225:19:0;;31221:60;;31253:28;;-1:-1:-1;;;31253:28:0;;;;;;;;;;;31221:60;-1:-1:-1;;;;;;31299:25:0;;;;;:18;:25;;;;;;25288:13;31299:55;;31129:233::o;14071:103::-;13309:13;:11;:13::i;:::-;14136:30:::1;14163:1;14136:18;:30::i;:::-;14071:103::o:0;80493:518::-;80716:51;;;;;;;10244:19:1;;;10279:12;;;10272:28;;;10338:2;10334:15;;;-1:-1:-1;;10330:53:1;10316:12;;;10309:75;80716:51:0;;;;;;;;;10400:12:1;;;80716:51:0;;80692:86;;;;;;15039:66:1;10182:58:0;;;15027:79:1;15122:12;;;;15115:28;;;10182:58:0;;;;;;;;;;15159:12:1;;;;10182:58:0;;;10172:69;;;;;80867:24;80894:39;80791:65;80923:9;80894:28;:39::i;:::-;80972:13;;80867:66;;-1:-1:-1;;;;;;80952:33:0;;;80972:13;;;;;80952:33;80944:59;;;;-1:-1:-1;;;80944:59:0;;10625:2:1;80944:59:0;;;10607:21:1;10664:2;10644:18;;;10637:30;-1:-1:-1;;;10683:18:1;;;10676:43;10736:18;;80944:59:0;10423:337:1;80944:59:0;80661:350;;;80493:518;;;;:::o;34370:104::-;34426:13;34459:7;34452:14;;;;;:::i;79731:98::-;13309:13;:11;:13::i;:::-;79803:7:::1;:18;79813:8:::0;79803:7;:18:::1;:::i;81546:172::-:0;81650:8;75840:30;75861:8;75840:20;:30::i;:::-;81667:43:::1;81691:8;81701;81667:23;:43::i;82265:245::-:0;82433:4;-1:-1:-1;;;;;75566:18:0;;75574:10;75566:18;75562:83;;75601:32;75622:10;75601:20;:32::i;:::-;82455:47:::1;82478:4;82484:2;82488:7;82497:4;82455:22;:47::i;80259:118::-:0;13309:13;:11;:13::i;:::-;80338:22:::1;:31:::0;80259:118::o;80385:100::-;13309:13;:11;:13::i;:::-;80453:15:::1;:24:::0;80385:100::o;34580:318::-;34653:13;34684:16;34692:7;34684;:16::i;:::-;34679:59;;34709:29;;-1:-1:-1;;;34709:29:0;;;;;;;;;;;34679:59;34751:21;34775:10;:8;:10::i;:::-;34751:34;;34809:7;34803:21;34828:1;34803:26;:87;;;;;;;;;;;;;;;;;34856:7;34865:18;34875:7;34865:9;:18::i;:::-;34839:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34803:87;34796:94;34580:318;-1:-1:-1;;;34580:318:0:o;41634:164::-;-1:-1:-1;;;;;41755:25:0;;;41731:4;41755:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41634:164::o;14329:201::-;13309:13;:11;:13::i;:::-;-1:-1:-1;;;;;14418:22:0;::::1;14410:73;;;::::0;-1:-1:-1;;;14410:73:0;;13672:2:1;14410:73:0::1;::::0;::::1;13654:21:1::0;13711:2;13691:18;;;13684:30;13750:34;13730:18;;;13723:62;-1:-1:-1;;;13801:18:1;;;13794:36;13847:19;;14410:73:0::1;13470:402:1::0;14410:73:0::1;14494:28;14513:8;14494:18;:28::i;13588:132::-:0;13496:6;;-1:-1:-1;;;;;13496:6:0;12054:10;13652:23;13644:68;;;;-1:-1:-1;;;13644:68:0;;14079:2:1;13644:68:0;;;14061:21:1;;;14098:18;;;14091:30;14157:34;14137:18;;;14130:62;14209:18;;13644:68:0;13877:356:1;42056:282:0;42121:4;42211:13;;42201:7;:23;42158:153;;;;-1:-1:-1;;42262:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;42262:44:0;:49;;42056:282::o;75983:647::-;66474:42;76174:45;:49;76170:453;;76473:67;;-1:-1:-1;;;76473:67:0;;76524:4;76473:67;;;14450:34:1;-1:-1:-1;;;;;14520:15:1;;14500:18;;;14493:43;66474:42:0;;76473;;14385:18:1;;76473:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;76468:144;;76568:28;;-1:-1:-1;;;76568:28:0;;-1:-1:-1;;;;;2435:32:1;;76568:28:0;;;2417:51:1;2390:18;;76568:28:0;2271:203:1;40118:408:0;40207:13;40223:16;40231:7;40223;:16::i;:::-;40207:32;-1:-1:-1;12054:10:0;-1:-1:-1;;;;;40256:28:0;;;40252:175;;40304:44;40321:5;12054:10;41634:164;:::i;40304:44::-;40299:128;;40376:35;;-1:-1:-1;;;40376:35:0;;;;;;;;;;;40299:128;40439:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;40439:35:0;-1:-1:-1;;;;;40439:35:0;;;;;;;;;40490:28;;40439:24;;40490:28;;;;;;;40196:330;40118:408;;:::o;44324:2825::-;44466:27;44496;44515:7;44496:18;:27::i;:::-;44466:57;;44581:4;-1:-1:-1;;;;;44540:45:0;44556:19;-1:-1:-1;;;;;44540:45:0;;44536:86;;44594:28;;-1:-1:-1;;;44594:28:0;;;;;;;;;;;44536:86;44636:27;43432:24;;;:15;:24;;;;;43660:26;;44827:68;43660:26;44869:4;12054:10;44875:19;-1:-1:-1;;;;;42906:32:0;;;42750:28;;43035:20;;43057:30;;43032:56;;42447:659;44827:68;44822:180;;44915:43;44932:4;12054:10;41634:164;:::i;44915:43::-;44910:92;;44967:35;;-1:-1:-1;;;44967:35:0;;;;;;;;;;;44910:92;-1:-1:-1;;;;;45019:16:0;;45015:52;;45044:23;;-1:-1:-1;;;45044:23:0;;;;;;;;;;;45015:52;45216:15;45213:160;;;45356:1;45335:19;45328:30;45213:160;-1:-1:-1;;;;;45753:24:0;;;;;;;:18;:24;;;;;;45751:26;;-1:-1:-1;;45751:26:0;;;45822:22;;;;;;;;;45820:24;;-1:-1:-1;45820:24:0;;;38976:11;38951:23;38947:41;38934:63;-1:-1:-1;;;38934:63:0;46115:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;46410:47:0;;:52;;46406:627;;46515:1;46505:11;;46483:19;46638:30;;;:17;:30;;;;;;:35;;46634:384;;46776:13;;46761:11;:28;46757:242;;46923:30;;;;:17;:30;;;;;:52;;;46757:242;46464:569;46406:627;47080:7;47076:2;-1:-1:-1;;;;;47061:27:0;47070:4;-1:-1:-1;;;;;47061:27:0;-1:-1:-1;;;;;;;;;;;47061:27:0;;;;;;;;;47099:42;44455:2694;;;44324:2825;;;:::o;47245:193::-;47391:39;47408:4;47414:2;47418:7;47391:39;;;;;;;;;;;;:16;:39::i;58575:89::-;58635:21;58641:7;58650:5;58635;:21::i;51705:2966::-;51778:20;51801:13;;;51829;;;51825:44;;51851:18;;-1:-1:-1;;;51851:18:0;;;;;;;;;;;51825:44;-1:-1:-1;;;;;52357:22:0;;;;;;:18;:22;;;;25426:2;52357:22;;;:71;;52395:32;52383:45;;52357:71;;;52671:31;;;:17;:31;;;;;-1:-1:-1;39407:15:0;;39381:24;39377:46;38976:11;38951:23;38947:41;38944:52;38934:63;;52671:173;;52906:23;;;;52671:31;;52357:22;;-1:-1:-1;;;;;;;;;;;52357:22:0;;53524:335;54185:1;54171:12;54167:20;54125:346;54226:3;54217:7;54214:16;54125:346;;54444:7;54434:8;54431:1;-1:-1:-1;;;;;;;;;;;54401:1:0;54398;54393:59;54279:1;54266:15;54125:346;;;54129:77;54504:8;54516:1;54504:13;54500:45;;54526:19;;-1:-1:-1;;;54526:19:0;;;;;;;;;;;54500:45;54562:13;:19;-1:-1:-1;81726:165:0;;;:::o;36742:1275::-;36809:7;36844;36946:13;;36939:4;:20;36935:1015;;;36984:14;37001:23;;;:17;:23;;;;;;;-1:-1:-1;;;37090:24:0;;:29;;37086:845;;37755:113;37762:6;37772:1;37762:11;37755:113;;-1:-1:-1;;;37833:6:0;37815:25;;;;:17;:25;;;;;;37755:113;;37086:845;36961:989;36935:1015;37978:31;;-1:-1:-1;;;37978:31:0;;;;;;;;;;;14690:191;14783:6;;;-1:-1:-1;;;;;14800:17:0;;;-1:-1:-1;;;;;;14800:17:0;;;;;;;14833:40;;14783:6;;;14800:17;14783:6;;14833:40;;14764:16;;14833:40;14753:128;14690:191;:::o;6290:231::-;6368:7;6389:17;6408:18;6430:27;6441:4;6447:9;6430:10;:27::i;:::-;6388:69;;;;6468:18;6480:5;6468:11;:18::i;:::-;-1:-1:-1;6504:9:0;6290:231;-1:-1:-1;;;6290:231:0:o;41243:234::-;12054:10;41338:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;41338:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;41338:60:0;;;;;;;;;;41414:55;;540:41:1;;;41338:49:0;;12054:10;41414:55;;513:18:1;41414:55:0;;;;;;;41243:234;;:::o;48036:407::-;48211:31;48224:4;48230:2;48234:7;48211:12;:31::i;:::-;-1:-1:-1;;;;;48257:14:0;;;:19;48253:183;;48296:56;48327:4;48333:2;48337:7;48346:5;48296:30;:56::i;:::-;48291:145;;48380:40;;-1:-1:-1;;;48380:40:0;;;;;;;;;;;79520:108;79580:13;79613:7;79606:14;;;;;:::i;64571:1745::-;64636:17;65070:4;65063;65057:11;65053:22;65162:1;65156:4;65149:15;65237:4;65234:1;65230:12;65223:19;;;65319:1;65314:3;65307:14;65423:3;65662:5;65644:428;65710:1;65705:3;65701:11;65694:18;;65881:2;65875:4;65871:13;65867:2;65863:22;65858:3;65850:36;65975:2;65965:13;;66032:25;65644:428;66032:25;-1:-1:-1;66102:13:0;;;-1:-1:-1;;66217:14:0;;;66279:19;;;66217:14;64571:1745;-1:-1:-1;64571:1745:0:o;58893:3081::-;58973:27;59003;59022:7;59003:18;:27::i;:::-;58973:57;-1:-1:-1;58973:57:0;59043:12;;59165:35;59192:7;43321:27;43432:24;;;:15;:24;;;;;43660:26;;43432:24;;43219:485;59165:35;59108:92;;;;59217:13;59213:316;;;59338:68;59363:15;59380:4;12054:10;59386:19;11974:98;59338:68;59333:184;;59430:43;59447:4;12054:10;41634:164;:::i;59430:43::-;59425:92;;59482:35;;-1:-1:-1;;;59482:35:0;;;;;;;;;;;59425:92;59685:15;59682:160;;;59825:1;59804:19;59797:30;59682:160;-1:-1:-1;;;;;60444:24:0;;;;;;:18;:24;;;;;:60;;60472:32;60444:60;;;38976:11;38951:23;38947:41;38934:63;-1:-1:-1;;;38934:63:0;60742:26;;;;:17;:26;;;;;:205;;;;-1:-1:-1;;;61067:47:0;;:52;;61063:627;;61172:1;61162:11;;61140:19;61295:30;;;:17;:30;;;;;;:35;;61291:384;;61433:13;;61418:11;:28;61414:242;;61580:30;;;;:17;:30;;;;;:52;;;61414:242;61121:569;61063:627;61718:35;;61745:7;;61741:1;;-1:-1:-1;;;;;61718:35:0;;;-1:-1:-1;;;;;;;;;;;61718:35:0;61741:1;;61718:35;-1:-1:-1;;61941:12:0;:14;;;;;;-1:-1:-1;;;;58893:3081:0:o;4741:747::-;4822:7;4831:12;4860:9;:16;4880:2;4860:22;4856:625;;5204:4;5189:20;;5183:27;5254:4;5239:20;;5233:27;5312:4;5297:20;;5291:27;4899:9;5283:36;5355:25;5366:4;5283:36;5183:27;5233;5355:10;:25::i;:::-;5348:32;;;;;;;;;4856:625;-1:-1:-1;5429:1:0;;-1:-1:-1;5433:35:0;4856:625;4741:747;;;;;:::o;3134:521::-;3212:20;3203:5;:29;;;;;;;;:::i;:::-;;3199:449;;3134:521;:::o;3199:449::-;3310:29;3301:5;:38;;;;;;;;:::i;:::-;;3297:351;;3356:34;;-1:-1:-1;;;3356:34:0;;15516:2:1;3356:34:0;;;15498:21:1;15555:2;15535:18;;;15528:30;15594:26;15574:18;;;15567:54;15638:18;;3356:34:0;15314:348:1;3297:351:0;3421:35;3412:5;:44;;;;;;;;:::i;:::-;;3408:240;;3473:41;;-1:-1:-1;;;3473:41:0;;15869:2:1;3473:41:0;;;15851:21:1;15908:2;15888:18;;;15881:30;15947:33;15927:18;;;15920:61;15998:18;;3473:41:0;15667:355:1;3408:240:0;3545:30;3536:5;:39;;;;;;;;:::i;:::-;;3532:116;;3592:44;;-1:-1:-1;;;3592:44:0;;16229:2:1;3592:44:0;;;16211:21:1;16268:2;16248:18;;;16241:30;16307:34;16287:18;;;16280:62;-1:-1:-1;;;16358:18:1;;;16351:32;16400:19;;3592:44:0;16027:398:1;50527:716:0;50711:88;;-1:-1:-1;;;50711:88:0;;50690:4;;-1:-1:-1;;;;;50711:45:0;;;;;:88;;12054:10;;50778:4;;50784:7;;50793:5;;50711:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50711:88:0;;;;;;;;-1:-1:-1;;50711:88:0;;;;;;;;;;;;:::i;:::-;;;50707:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50994:6;:13;51011:1;50994:18;50990:235;;51040:40;;-1:-1:-1;;;51040:40:0;;;;;;;;;;;50990:235;51183:6;51177:13;51168:6;51164:2;51160:15;51153:38;50707:529;-1:-1:-1;;;;;;50870:64:0;-1:-1:-1;;;50870:64:0;;-1:-1:-1;50707:529:0;50527:716;;;;;;:::o;7742:1520::-;7873:7;;8807:66;8794:79;;8790:163;;;-1:-1:-1;8906:1:0;;-1:-1:-1;8910:30:0;8890:51;;8790:163;9067:24;;;9050:14;9067:24;;;;;;;;;17405:25:1;;;17478:4;17466:17;;17446:18;;;17439:45;;;;17500:18;;;17493:34;;;17543:18;;;17536:34;;;9067:24:0;;17377:19:1;;9067:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9067:24:0;;-1:-1:-1;;9067:24:0;;;-1:-1:-1;;;;;;;9106:20:0;;9102:103;;9159:1;9163:29;9143:50;;;;;;;9102:103;9225:6;-1:-1:-1;9233:20:0;;-1:-1:-1;7742:1520:0;;;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:118::-;678:5;671:13;664:21;657:5;654:32;644:60;;700:1;697;690:12;715:241;771:6;824:2;812:9;803:7;799:23;795:32;792:52;;;840:1;837;830:12;792:52;879:9;866:23;898:28;920:5;898:28;:::i;961:173::-;1029:20;;-1:-1:-1;;;;;1078:31:1;;1068:42;;1058:70;;1124:1;1121;1114:12;1058:70;961:173;;;:::o;1139:186::-;1198:6;1251:2;1239:9;1230:7;1226:23;1222:32;1219:52;;;1267:1;1264;1257:12;1219:52;1290:29;1309:9;1290:29;:::i;1330:250::-;1415:1;1425:113;1439:6;1436:1;1433:13;1425:113;;;1515:11;;;1509:18;1496:11;;;1489:39;1461:2;1454:10;1425:113;;;-1:-1:-1;;1572:1:1;1554:16;;1547:27;1330:250::o;1585:271::-;1627:3;1665:5;1659:12;1692:6;1687:3;1680:19;1708:76;1777:6;1770:4;1765:3;1761:14;1754:4;1747:5;1743:16;1708:76;:::i;:::-;1838:2;1817:15;-1:-1:-1;;1813:29:1;1804:39;;;;1845:4;1800:50;;1585:271;-1:-1:-1;;1585:271:1:o;1861:220::-;2010:2;1999:9;1992:21;1973:4;2030:45;2071:2;2060:9;2056:18;2048:6;2030:45;:::i;2086:180::-;2145:6;2198:2;2186:9;2177:7;2173:23;2169:32;2166:52;;;2214:1;2211;2204:12;2166:52;-1:-1:-1;2237:23:1;;2086:180;-1:-1:-1;2086:180:1:o;2479:254::-;2547:6;2555;2608:2;2596:9;2587:7;2583:23;2579:32;2576:52;;;2624:1;2621;2614:12;2576:52;2647:29;2666:9;2647:29;:::i;:::-;2637:39;2723:2;2708:18;;;;2695:32;;-1:-1:-1;;;2479:254:1:o;2920:328::-;2997:6;3005;3013;3066:2;3054:9;3045:7;3041:23;3037:32;3034:52;;;3082:1;3079;3072:12;3034:52;3105:29;3124:9;3105:29;:::i;:::-;3095:39;;3153:38;3187:2;3176:9;3172:18;3153:38;:::i;:::-;3143:48;;3238:2;3227:9;3223:18;3210:32;3200:42;;2920:328;;;;;:::o;3493:127::-;3554:10;3549:3;3545:20;3542:1;3535:31;3585:4;3582:1;3575:15;3609:4;3606:1;3599:15;3625:631;3689:5;3719:18;3760:2;3752:6;3749:14;3746:40;;;3766:18;;:::i;:::-;3841:2;3835:9;3809:2;3895:15;;-1:-1:-1;;3891:24:1;;;3917:2;3887:33;3883:42;3871:55;;;3941:18;;;3961:22;;;3938:46;3935:72;;;3987:18;;:::i;:::-;4027:10;4023:2;4016:22;4056:6;4047:15;;4086:6;4078;4071:22;4126:3;4117:6;4112:3;4108:16;4105:25;4102:45;;;4143:1;4140;4133:12;4102:45;4193:6;4188:3;4181:4;4173:6;4169:17;4156:44;4248:1;4241:4;4232:6;4224;4220:19;4216:30;4209:41;;;;3625:631;;;;;:::o;4261:220::-;4303:5;4356:3;4349:4;4341:6;4337:17;4333:27;4323:55;;4374:1;4371;4364:12;4323:55;4396:79;4471:3;4462:6;4449:20;4442:4;4434:6;4430:17;4396:79;:::i;4486:525::-;4581:6;4589;4597;4605;4658:3;4646:9;4637:7;4633:23;4629:33;4626:53;;;4675:1;4672;4665:12;4626:53;4711:9;4698:23;4688:33;;4768:2;4757:9;4753:18;4740:32;4730:42;;4819:2;4808:9;4804:18;4791:32;4781:42;;4874:2;4863:9;4859:18;4846:32;4901:18;4893:6;4890:30;4887:50;;;4933:1;4930;4923:12;4887:50;4956:49;4997:7;4988:6;4977:9;4973:22;4956:49;:::i;:::-;4946:59;;;4486:525;;;;;;;:::o;5016:531::-;5111:6;5119;5127;5135;5188:3;5176:9;5167:7;5163:23;5159:33;5156:53;;;5205:1;5202;5195:12;5156:53;5241:9;5228:23;5218:33;;5298:2;5287:9;5283:18;5270:32;5260:42;;5321:38;5355:2;5344:9;5340:18;5321:38;:::i;:::-;5311:48;;5410:2;5399:9;5395:18;5382:32;5437:18;5429:6;5426:30;5423:50;;;5469:1;5466;5459:12;5552:450;5621:6;5674:2;5662:9;5653:7;5649:23;5645:32;5642:52;;;5690:1;5687;5680:12;5642:52;5730:9;5717:23;5763:18;5755:6;5752:30;5749:50;;;5795:1;5792;5785:12;5749:50;5818:22;;5871:4;5863:13;;5859:27;-1:-1:-1;5849:55:1;;5900:1;5897;5890:12;5849:55;5923:73;5988:7;5983:2;5970:16;5965:2;5961;5957:11;5923:73;:::i;6007:315::-;6072:6;6080;6133:2;6121:9;6112:7;6108:23;6104:32;6101:52;;;6149:1;6146;6139:12;6101:52;6172:29;6191:9;6172:29;:::i;:::-;6162:39;;6251:2;6240:9;6236:18;6223:32;6264:28;6286:5;6264:28;:::i;:::-;6311:5;6301:15;;;6007:315;;;;;:::o;6327:537::-;6422:6;6430;6438;6446;6499:3;6487:9;6478:7;6474:23;6470:33;6467:53;;;6516:1;6513;6506:12;6467:53;6539:29;6558:9;6539:29;:::i;:::-;6529:39;;6587:38;6621:2;6610:9;6606:18;6587:38;:::i;:::-;6577:48;;6672:2;6661:9;6657:18;6644:32;6634:42;;6727:2;6716:9;6712:18;6699:32;6754:18;6746:6;6743:30;6740:50;;;6786:1;6783;6776:12;6869:260;6937:6;6945;6998:2;6986:9;6977:7;6973:23;6969:32;6966:52;;;7014:1;7011;7004:12;6966:52;7037:29;7056:9;7037:29;:::i;:::-;7027:39;;7085:38;7119:2;7108:9;7104:18;7085:38;:::i;:::-;7075:48;;6869:260;;;;;:::o;7134:380::-;7213:1;7209:12;;;;7256;;;7277:61;;7331:4;7323:6;7319:17;7309:27;;7277:61;7384:2;7376:6;7373:14;7353:18;7350:38;7347:161;;7430:10;7425:3;7421:20;7418:1;7411:31;7465:4;7462:1;7455:15;7493:4;7490:1;7483:15;7347:161;;7134:380;;;:::o;7729:127::-;7790:10;7785:3;7781:20;7778:1;7771:31;7821:4;7818:1;7811:15;7845:4;7842:1;7835:15;8568:127;8629:10;8624:3;8620:20;8617:1;8610:31;8660:4;8657:1;8650:15;8684:4;8681:1;8674:15;8700:125;8765:9;;;8786:10;;;8783:36;;;8799:18;;:::i;9538:168::-;9611:9;;;9642;;9659:15;;;9653:22;;9639:37;9629:71;;9680:18;;:::i;10891:545::-;10993:2;10988:3;10985:11;10982:448;;;11029:1;11054:5;11050:2;11043:17;11099:4;11095:2;11085:19;11169:2;11157:10;11153:19;11150:1;11146:27;11140:4;11136:38;11205:4;11193:10;11190:20;11187:47;;;-1:-1:-1;11228:4:1;11187:47;11283:2;11278:3;11274:12;11271:1;11267:20;11261:4;11257:31;11247:41;;11338:82;11356:2;11349:5;11346:13;11338:82;;;11401:17;;;11382:1;11371:13;11338:82;;11612:1352;11738:3;11732:10;11765:18;11757:6;11754:30;11751:56;;;11787:18;;:::i;:::-;11816:97;11906:6;11866:38;11898:4;11892:11;11866:38;:::i;:::-;11860:4;11816:97;:::i;:::-;11968:4;;12032:2;12021:14;;12049:1;12044:663;;;;12751:1;12768:6;12765:89;;;-1:-1:-1;12820:19:1;;;12814:26;12765:89;-1:-1:-1;;11569:1:1;11565:11;;;11561:24;11557:29;11547:40;11593:1;11589:11;;;11544:57;12867:81;;12014:944;;12044:663;10838:1;10831:14;;;10875:4;10862:18;;-1:-1:-1;;12080:20:1;;;12198:236;12212:7;12209:1;12206:14;12198:236;;;12301:19;;;12295:26;12280:42;;12393:27;;;;12361:1;12349:14;;;;12228:19;;12198:236;;;12202:3;12462:6;12453:7;12450:19;12447:201;;;12523:19;;;12517:26;-1:-1:-1;;12606:1:1;12602:14;;;12618:3;12598:24;12594:37;12590:42;12575:58;12560:74;;12447:201;-1:-1:-1;;;;;12694:1:1;12678:14;;;12674:22;12661:36;;-1:-1:-1;11612:1352:1:o;12969:496::-;13148:3;13186:6;13180:13;13202:66;13261:6;13256:3;13249:4;13241:6;13237:17;13202:66;:::i;:::-;13331:13;;13290:16;;;;13353:70;13331:13;13290:16;13400:4;13388:17;;13353:70;:::i;:::-;13439:20;;12969:496;-1:-1:-1;;;;12969:496:1:o;14547:245::-;14614:6;14667:2;14655:9;14646:7;14642:23;14638:32;14635:52;;;14683:1;14680;14673:12;14635:52;14715:9;14709:16;14734:28;14756:5;14734:28;:::i;15182:127::-;15243:10;15238:3;15234:20;15231:1;15224:31;15274:4;15271:1;15264:15;15298:4;15295:1;15288:15;16430:489;-1:-1:-1;;;;;16699:15:1;;;16681:34;;16751:15;;16746:2;16731:18;;16724:43;16798:2;16783:18;;16776:34;;;16846:3;16841:2;16826:18;;16819:31;;;16624:4;;16867:46;;16893:19;;16885:6;16867:46;:::i;:::-;16859:54;16430:489;-1:-1:-1;;;;;;16430:489:1:o;16924:249::-;16993:6;17046:2;17034:9;17025:7;17021:23;17017:32;17014:52;;;17062:1;17059;17052:12;17014:52;17094:9;17088:16;17113:30;17137:5;17113:30;:::i

Swarm Source

ipfs://0eef0f74089e37e897bd8533a2cca2423ce2d2cf352032833deabb1edaaeb81c
Loading...
Loading
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.