ETH Price: $3,306.57 (-0.10%)

Artpocalypse (ART)
 

Overview

TokenID

97

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

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:
Artpocalypse

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-27
*/

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.20;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 tokenId => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev The default royalty set is invalid (eg. (numerator / denominator) >= 1).
     */
    error ERC2981InvalidDefaultRoyalty(uint256 numerator, uint256 denominator);

    /**
     * @dev The default royalty receiver is invalid.
     */
    error ERC2981InvalidDefaultRoyaltyReceiver(address receiver);

    /**
     * @dev The royalty set for an specific `tokenId` is invalid (eg. (numerator / denominator) >= 1).
     */
    error ERC2981InvalidTokenRoyalty(uint256 tokenId, uint256 numerator, uint256 denominator);

    /**
     * @dev The royalty receiver for `tokenId` is invalid.
     */
    error ERC2981InvalidTokenRoyaltyReceiver(uint256 tokenId, address receiver);

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice) public view virtual returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        uint256 denominator = _feeDenominator();
        if (feeNumerator > denominator) {
            // Royalty fee will exceed the sale price
            revert ERC2981InvalidDefaultRoyalty(feeNumerator, denominator);
        }
        if (receiver == address(0)) {
            revert ERC2981InvalidDefaultRoyaltyReceiver(address(0));
        }

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual {
        uint256 denominator = _feeDenominator();
        if (feeNumerator > denominator) {
            // Royalty fee will exceed the sale price
            revert ERC2981InvalidTokenRoyalty(tokenId, feeNumerator, denominator);
        }
        if (receiver == address(0)) {
            revert ERC2981InvalidTokenRoyaltyReceiver(tokenId, address(0));
        }

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

// File: @openzeppelin/contracts/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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

// File: 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: 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.selector);
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) _revert(URIQueryForNonexistentToken.selector);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Returns whether the ownership slot at `index` is initialized.
     * An uninitialized slot does not necessarily mean that the slot has no owner.
     */
    function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) {
        return _packedOwnerships[index] != 0;
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If the data at the starting slot does not exist, start the scan.
            if (packed == 0) {
                if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                // Invariant:
                // There will always be an initialized ownership slot
                // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                // before an unintialized ownership slot
                // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                // Hence, `tokenId` will not underflow.
                //
                // We can directly compare the packed value.
                // If the address is zero, packed will be zero.
                for (;;) {
                    unchecked {
                        packed = _packedOwnerships[--tokenId];
                    }
                    if (packed == 0) continue;
                    if (packed & _BITMASK_BURNED == 0) return packed;
                    // Otherwise, the token is burned, and we must revert.
                    // This handles the case of batch burned tokens, where only the burned bit
                    // of the starting slot is set, and remaining slots are left uninitialized.
                    _revert(OwnerQueryForNonexistentToken.selector);
                }
            }
            // Otherwise, the data exists and we can skip the scan.
            // This is possible because we have already achieved the target condition.
            // This saves 2143 gas on transfers of initialized tokens.
            // If the token is not burned, return `packed`. Otherwise, revert.
            if (packed & _BITMASK_BURNED == 0) return packed;
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) _revert(ApprovalQueryForNonexistentToken.selector);

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool result) {
        if (_startTokenId() <= tokenId) {
            if (tokenId < _currentIndex) {
                uint256 packed;
                while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId;
                result = packed & _BITMASK_BURNED == 0;
            }
        }
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
        from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));

        if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector);

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // Emit the `Transfer` event.
            log4(
                0, // Start of data (0, since no data).
                0, // End of data (0, since no data).
                _TRANSFER_EVENT_SIGNATURE, // Signature.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                _revert(TransferToNonERC721ReceiverImplementer.selector);
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                _revert(TransferToNonERC721ReceiverImplementer.selector);
            }
            assembly {
                revert(add(32, reason), mload(reason))
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) _revert(MintZeroQuantity.selector);

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            uint256 end = startTokenId + quantity;
            uint256 tokenId = startTokenId;

            do {
                assembly {
                    // Emit the `Transfer` event.
                    log4(
                        0, // Start of data (0, since no data).
                        0, // End of data (0, since no data).
                        _TRANSFER_EVENT_SIGNATURE, // Signature.
                        0, // `address(0)`.
                        toMasked, // `to`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) _revert(MintToZeroAddress.selector);
        if (quantity == 0) _revert(MintZeroQuantity.selector);
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector);

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        _revert(TransferToNonERC721ReceiverImplementer.selector);
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) _revert(bytes4(0));
            }
        }
    }

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

    // =============================================================
    //                       APPROVAL OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_approve(to, tokenId, false)`.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _approve(to, tokenId, false);
    }

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector);
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) _revert(OwnershipNotInitializedForExtraData.selector);
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }

    /**
     * @dev For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}
// File: contracts/Artpocalypse.sol


// Authored by NoahN w/ Metavate ✌️
pragma solidity ^0.8.18;






contract Artpocalypse is ERC721A, ERC2981, Ownable {
    using Strings for uint256;

    //------------------//
    //     VARIABLES    //
    //------------------//

    bool public sale = false;
    bool public frozen = false;

    string public baseURI =
        "https://40vfvvnds3.execute-api.us-east-1.amazonaws.com/default/artpocalypse-metadata-api?tokenId=";
    string public metadataExtension = "";

    address public admin = 0x8DFdD0FF4661abd44B06b1204C6334eACc8575af;
    address public famAddress = 0xF0031782d37819F8E209C4421C774eD1f6163052;

    bytes32 public merkleRoot;

    mapping(address => bool) public knifeyClaimed;
    mapping(uint256 => bool) public famClaimed;

    error Paused();
    error AccessDenied();

    constructor() ERC721A("Artpocalypse", "ART") {
        _setDefaultRoyalty(msg.sender, 500); // 5% default royalties
        _safeMint(msg.sender, 1);
    }

    //------------------//
    //     MODIFIERS    //
    //------------------//

    modifier onlyTeam() {
        if (msg.sender != owner() && msg.sender != admin) {
            revert AccessDenied();
        }
        _;
    }

    //------------------//
    //       MINT       //
    //------------------//

    function mint(uint256[] memory tokenIds) external {
        if (sale == false) revert Paused();
        // Ensure the minter owns the token and it has not been claimed, then set FAM token as claimed
        for (uint256 i = 0; i < tokenIds.length; i++) {
            if (
                IERC721A(famAddress).ownerOf(tokenIds[i]) != msg.sender ||
                famClaimed[tokenIds[i]] == true
            ) {
                revert AccessDenied();
            }
            famClaimed[tokenIds[i]] = true;
        }
        _safeMint(msg.sender, tokenIds.length);
    }

    function knifeyMint(bytes32[] memory proof, uint256 amount) external {
        if (sale == false) revert Paused();
        if (knifeyClaimed[msg.sender] == true) revert AccessDenied();

        if (
            !MerkleProof.verify(
                proof,
                merkleRoot,
                keccak256(abi.encodePacked(msg.sender, amount))
            )
        ) revert AccessDenied();

        knifeyClaimed[msg.sender] = true;

        _safeMint(msg.sender, amount);
    }

    //------------------//
    //      SETTERS     //
    //------------------//

    function setAdmin(address _admin) external onlyTeam {
        admin = _admin;
    }

    function setRoyalty(address receiver, uint96 feeNumerator)
        external
        onlyTeam
    {
        _setDefaultRoyalty(receiver, feeNumerator);
    }

    function setBaseURI(string memory _newBaseURI) external onlyTeam {
        if (frozen == true) {
            revert Paused();
        }
        baseURI = _newBaseURI;
    }

    function setMetadataExtension(string memory _newExtension)
        external
        onlyTeam
    {
        if (frozen == true) {
            revert Paused();
        }
        metadataExtension = _newExtension;
    }

    function toggleSale() external onlyTeam {
        if (sale == false && frozen == true) {
            revert Paused();
        }
        sale = !sale;
    }

    function permanentlyFreezeContract() external onlyTeam {
        frozen = true;
    }

    function setMerkleRoot(bytes32 root) external onlyTeam {
        if (frozen == true) {
            revert Paused();
        }
        merkleRoot = root;
    }

    //------------------//
    //      GETTERS     //
    //------------------//

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        return
            string(
                abi.encodePacked(baseURI, tokenId.toString(), metadataExtension)
            );
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 0;
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessDenied","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidDefaultRoyalty","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidDefaultRoyaltyReceiver","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidTokenRoyalty","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidTokenRoyaltyReceiver","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"Paused","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":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"famAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"famClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"knifeyClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"knifeyMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"permanentlyFreezeContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newExtension","type":"string"}],"name":"setMetadataExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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"}]

600a805461ffff60a01b1916905561012060405260616080818152906200277860a039600b9062000031908262000513565b5060408051602081019091525f8152600c906200004f908262000513565b50600d80546001600160a01b0319908116738dfdd0ff4661abd44b06b1204c6334eacc8575af17909155600e805490911673f0031782d37819f8e209c4421c774ed1f6163052179055348015620000a4575f80fd5b506040518060400160405280600c81526020016b417274706f63616c7970736560a01b8152506040518060400160405280600381526020016210549560ea1b8152508160029081620000f7919062000513565b50600362000106828262000513565b50505f805550620001173362000138565b62000125336101f462000189565b6200013233600162000233565b62000680565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6127106001600160601b038216811015620001ce57604051636f483d0960e01b81526001600160601b0383166004820152602481018290526044015b60405180910390fd5b6001600160a01b038316620001f957604051635b6cc80560e11b81525f6004820152602401620001c5565b50604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b62000254828260405180602001604052805f8152506200025860201b60201c565b5050565b620002648383620002cb565b6001600160a01b0383163b15620002c6575f548281035b600181019062000290905f908790866200038c565b620002a757620002a76368d2bf6b60e11b62000475565b8181106200027b57815f5414620002c357620002c35f62000475565b50505b505050565b5f805490829003620002e957620002e963b562e8dd60e01b62000475565b5f8181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b17811790915580845260059092528220805468010000000000000001860201905590819003620003495762000349622e076360e81b62000475565b818301825b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a48181600101915081036200034e57505f5550505050565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290620003c2903390899088908890600401620005df565b6020604051808303815f875af1925050508015620003ff575060408051601f3d908101601f19168201909252620003fc9181019062000650565b60015b62000458573d8080156200042f576040519150601f19603f3d011682016040523d82523d5f602084013e62000434565b606091505b5080515f036200045057620004506368d2bf6b60e11b62000475565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b805f5260045ffd5b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620004a657607f821691505b602082108103620004c557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620002c657805f5260205f20601f840160051c81016020851015620004f25750805b601f840160051c820191505b81811015620002c3575f8155600101620004fe565b81516001600160401b038111156200052f576200052f6200047d565b620005478162000540845462000491565b84620004cb565b602080601f8311600181146200057d575f8415620005655750858301515b5f19600386901b1c1916600185901b178555620005d7565b5f85815260208120601f198616915b82811015620005ad578886015182559484019460019091019084016200058c565b5085821015620005cb57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f60018060a01b0380871683526020818716602085015285604085015260806060850152845191508160808501525f5b828110156200062d5785810182015185820160a0015281016200060f565b50505f60a0828501015260a0601f19601f83011684010191505095945050505050565b5f6020828403121562000661575f80fd5b81516001600160e01b03198116811462000679575f80fd5b9392505050565b6120ea806200068e5f395ff3fe608060405260043610610207575f3560e01c80637cb6475911610113578063b88d4fde1161009d578063e985e9c51161006d578063e985e9c5146105cb578063ebf72a5f146105ea578063f2fde38b146105fe578063f851a4401461061d578063f8e93ef91461063c575f80fd5b8063b88d4fde14610566578063c431e9e614610579578063c87b56dd1461058d578063d7a37f8f146105ac575f80fd5b80638f2fc60b116100e35780638f2fc60b146104c75780639248a5d0146104e657806395d89b41146105145780639f6350e614610528578063a22cb46514610547575f80fd5b80637cb64759146104585780637d8966e4146104775780638c692ffb1461048b5780638da5cb5b146104aa575f80fd5b806342842e0e116101945780636c0360eb116101645780636c0360eb146103c45780636db27461146103d8578063704b6c021461040657806370a0823114610425578063715018a614610444575f80fd5b806342842e0e1461035357806355f804b3146103665780636352211e146103855780636ad1fe02146103a4575f80fd5b8063095ea7b3116101da578063095ea7b3146102b757806318160ddd146102cc57806323b872dd146102ed5780632a55205a146103005780632eb4a7ab1461033e575f80fd5b806301ffc9a71461020b578063054f7d9c1461023f57806306fdde031461025f578063081812fc14610280575b5f80fd5b348015610216575f80fd5b5061022a610225366004611917565b61065b565b60405190151581526020015b60405180910390f35b34801561024a575f80fd5b50600a5461022a90600160a81b900460ff1681565b34801561026a575f80fd5b5061027361066b565b6040516102369190611986565b34801561028b575f80fd5b5061029f61029a366004611998565b6106fb565b6040516001600160a01b039091168152602001610236565b6102ca6102c53660046119c3565b610734565b005b3480156102d7575f80fd5b506001545f54035b604051908152602001610236565b6102ca6102fb3660046119ed565b610744565b34801561030b575f80fd5b5061031f61031a366004611a2b565b61089e565b604080516001600160a01b039093168352602083019190915201610236565b348015610349575f80fd5b506102df600f5481565b6102ca6103613660046119ed565b610948565b348015610371575f80fd5b506102ca610380366004611ae5565b610967565b348015610390575f80fd5b5061029f61039f366004611998565b6109e6565b3480156103af575f80fd5b50600a5461022a90600160a01b900460ff1681565b3480156103cf575f80fd5b506102736109f0565b3480156103e3575f80fd5b5061022a6103f2366004611b2a565b60106020525f908152604090205460ff1681565b348015610411575f80fd5b506102ca610420366004611b2a565b610a7c565b348015610430575f80fd5b506102df61043f366004611b2a565b610ae2565b34801561044f575f80fd5b506102ca610b26565b348015610463575f80fd5b506102ca610472366004611998565b610b90565b348015610482575f80fd5b506102ca610c08565b348015610496575f80fd5b506102ca6104a5366004611b68565b610cb3565b3480156104b5575f80fd5b50600a546001600160a01b031661029f565b3480156104d2575f80fd5b506102ca6104e1366004611bff565b610d9e565b3480156104f1575f80fd5b5061022a610500366004611998565b60116020525f908152604090205460ff1681565b34801561051f575f80fd5b50610273610dec565b348015610533575f80fd5b506102ca610542366004611ae5565b610dfb565b348015610552575f80fd5b506102ca610561366004611c41565b610e7a565b6102ca610574366004611c71565b610ee5565b348015610584575f80fd5b506102ca610f26565b348015610598575f80fd5b506102736105a7366004611998565b610f7f565b3480156105b7575f80fd5b50600e5461029f906001600160a01b031681565b3480156105d6575f80fd5b5061022a6105e5366004611cec565b611023565b3480156105f5575f80fd5b50610273611050565b348015610609575f80fd5b506102ca610618366004611b2a565b61105d565b348015610628575f80fd5b50600d5461029f906001600160a01b031681565b348015610647575f80fd5b506102ca610656366004611d18565b611128565b5f610665826112a9565b92915050565b60606002805461067a90611da4565b80601f01602080910402602001604051908101604052809291908181526020018280546106a690611da4565b80156106f15780601f106106c8576101008083540402835291602001916106f1565b820191905f5260205f20905b8154815290600101906020018083116106d457829003601f168201915b5050505050905090565b5f610705826112dd565b610719576107196333d1c03960e21b61131f565b505f908152600660205260409020546001600160a01b031690565b61074082826001611327565b5050565b5f61074e826113c8565b6001600160a01b0394851694909150811684146107745761077462a1148160e81b61131f565b5f8281526006602052604090208054338082146001600160a01b038816909114176107b7576107a38633611023565b6107b7576107b7632ce44b5f60e11b61131f565b80156107c1575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b8416900361084d57600184015f81815260046020526040812054900361084b575f54811461084b575f8181526004602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4805f0361089557610895633a954ecd60e21b61131f565b50505050505050565b5f8281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916109125750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101515f9061271090610930906001600160601b031687611df0565b61093a9190611e1b565b915196919550909350505050565b61096283838360405180602001604052805f815250610ee5565b505050565b600a546001600160a01b0316331480159061098d5750600d546001600160a01b03163314155b156109ab57604051634ca8886760e01b815260040160405180910390fd5b600a54600160a81b900460ff1615156001036109da576040516313d0ff5960e31b815260040160405180910390fd5b600b6107408282611e72565b5f610665826113c8565b600b80546109fd90611da4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2990611da4565b8015610a745780601f10610a4b57610100808354040283529160200191610a74565b820191905f5260205f20905b815481529060010190602001808311610a5757829003601f168201915b505050505081565b600a546001600160a01b03163314801590610aa25750600d546001600160a01b03163314155b15610ac057604051634ca8886760e01b815260040160405180910390fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b5f6001600160a01b038216610b0157610b016323d3ad8160e21b61131f565b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b600a546001600160a01b03163314610b855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610b8e5f611458565b565b600a546001600160a01b03163314801590610bb65750600d546001600160a01b03163314155b15610bd457604051634ca8886760e01b815260040160405180910390fd5b600a54600160a81b900460ff161515600103610c03576040516313d0ff5960e31b815260040160405180910390fd5b600f55565b600a546001600160a01b03163314801590610c2e5750600d546001600160a01b03163314155b15610c4c57604051634ca8886760e01b815260040160405180910390fd5b600a54600160a01b900460ff16158015610c745750600a54600160a81b900460ff1615156001145b15610c92576040516313d0ff5960e31b815260040160405180910390fd5b600a805460ff60a01b198116600160a01b9182900460ff1615909102179055565b600a54600160a01b900460ff1615155f03610ce1576040516313d0ff5960e31b815260040160405180910390fd5b335f9081526010602052604090205460ff161515600103610d1557604051634ca8886760e01b815260040160405180910390fd5b600f546040516bffffffffffffffffffffffff193360601b16602082015260348101839052610d5e918491605401604051602081830303815290604052805190602001206114a9565b610d7b57604051634ca8886760e01b815260040160405180910390fd5b335f818152601060205260409020805460ff19166001179055610740908261154c565b600a546001600160a01b03163314801590610dc45750600d546001600160a01b03163314155b15610de257604051634ca8886760e01b815260040160405180910390fd5b6107408282611565565b60606003805461067a90611da4565b600a546001600160a01b03163314801590610e215750600d546001600160a01b03163314155b15610e3f57604051634ca8886760e01b815260040160405180910390fd5b600a54600160a81b900460ff161515600103610e6e576040516313d0ff5960e31b815260040160405180910390fd5b600c6107408282611e72565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ef0848484610744565b6001600160a01b0383163b15610f2057610f0c84848484611607565b610f2057610f206368d2bf6b60e11b61131f565b50505050565b600a546001600160a01b03163314801590610f4c5750600d546001600160a01b03163314155b15610f6a57604051634ca8886760e01b815260040160405180910390fd5b600a805460ff60a81b1916600160a81b179055565b6060610f8a826112dd565b610fee5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b7c565b600b610ff9836116e6565b600c60405160200161100d93929190611fa1565b6040516020818303038152906040529050919050565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b600c80546109fd90611da4565b600a546001600160a01b031633146110b75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b7c565b6001600160a01b03811661111c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b7c565b61112581611458565b50565b600a54600160a01b900460ff1615155f03611156576040516313d0ff5960e31b815260040160405180910390fd5b5f5b815181101561129d57600e54825133916001600160a01b031690636352211e9085908590811061118a5761118a611fc8565b60200260200101516040518263ffffffff1660e01b81526004016111b091815260200190565b602060405180830381865afa1580156111cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ef9190611fdc565b6001600160a01b0316141580611238575060115f83838151811061121557611215611fc8565b60209081029190910181015182528101919091526040015f205460ff1615156001145b1561125657604051634ca8886760e01b815260040160405180910390fd5b600160115f84848151811061126d5761126d611fc8565b60209081029190910181015182528101919091526040015f20805460ff1916911515919091179055600101611158565b5061112533825161154c565b5f6001600160e01b0319821663152a902d60e11b148061066557506301ffc9a760e01b6001600160e01b0319831614610665565b5f805482101561131a575f5b505f82815260046020526040812054908190036113105761130983611ff7565b92506112e9565b600160e01b161590505b919050565b805f5260045ffd5b5f611331836109e6565b90508180156113495750336001600160a01b03821614155b1561136c576113588133611023565b61136c5761136c6367d9dca160e11b61131f565b5f8381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b5f8181526004602052604081205490819003611436575f5482106113f6576113f6636f96cda160e11b61131f565b5b505f19015f8181526004602052604090205480156113f757600160e01b81165f0361142157919050565b611431636f96cda160e11b61131f565b6113f7565b600160e01b81165f0361144857919050565b61131a636f96cda160e11b61131f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f81815b8551811015611541575f8682815181106114c9576114c9611fc8565b6020026020010151905080831161150b576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611538565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b506001016114ad565b509092149392505050565b610740828260405180602001604052805f8152506117e3565b6127106001600160601b0382168110156115a457604051636f483d0960e01b81526001600160601b038316600482015260248101829052604401610b7c565b6001600160a01b0383166115cd57604051635b6cc80560e11b81525f6004820152602401610b7c565b50604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a029061163b90339089908890889060040161200c565b6020604051808303815f875af1925050508015611675575060408051601f3d908101601f1916820190925261167291810190612048565b60015b6116c8573d8080156116a2576040519150601f19603f3d011682016040523d82523d5f602084013e6116a7565b606091505b5080515f036116c0576116c06368d2bf6b60e11b61131f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060815f0361170c5750506040805180820190915260018152600360fc1b602082015290565b815f5b8115611735578061171f81612063565b915061172e9050600a83611e1b565b915061170f565b5f8167ffffffffffffffff81111561174f5761174f611a4b565b6040519080825280601f01601f191660200182016040528015611779576020820181803683370190505b5090505b84156116de5761178e60018361207b565b915061179b600a8661208e565b6117a69060306120a1565b60f81b8183815181106117bb576117bb611fc8565b60200101906001600160f81b03191690815f1a9053506117dc600a86611e1b565b945061177d565b6117ed8383611848565b6001600160a01b0383163b15610962575f548281035b6118155f868380600101945086611607565b611829576118296368d2bf6b60e11b61131f565b81811061180357815f5414611841576118415f61131f565b5050505050565b5f8054908290036118635761186363b562e8dd60e01b61131f565b5f8181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b178117909155808452600590925282208054680100000000000000018602019055908190036118c0576118c0622e076360e81b61131f565b818301825b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a48181600101915081036118c557505f5550505050565b6001600160e01b031981168114611125575f80fd5b5f60208284031215611927575f80fd5b813561193281611902565b9392505050565b5f5b8381101561195357818101518382015260200161193b565b50505f910152565b5f8151808452611972816020860160208601611939565b601f01601f19169290920160200192915050565b602081525f611932602083018461195b565b5f602082840312156119a8575f80fd5b5035919050565b6001600160a01b0381168114611125575f80fd5b5f80604083850312156119d4575f80fd5b82356119df816119af565b946020939093013593505050565b5f805f606084860312156119ff575f80fd5b8335611a0a816119af565b92506020840135611a1a816119af565b929592945050506040919091013590565b5f8060408385031215611a3c575f80fd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611a8857611a88611a4b565b604052919050565b5f67ffffffffffffffff831115611aa957611aa9611a4b565b611abc601f8401601f1916602001611a5f565b9050828152838383011115611acf575f80fd5b828260208301375f602084830101529392505050565b5f60208284031215611af5575f80fd5b813567ffffffffffffffff811115611b0b575f80fd5b8201601f81018413611b1b575f80fd5b6116de84823560208401611a90565b5f60208284031215611b3a575f80fd5b8135611932816119af565b5f67ffffffffffffffff821115611b5e57611b5e611a4b565b5060051b60200190565b5f8060408385031215611b79575f80fd5b823567ffffffffffffffff811115611b8f575f80fd5b8301601f81018513611b9f575f80fd5b80356020611bb4611baf83611b45565b611a5f565b82815260059290921b83018101918181019088841115611bd2575f80fd5b938201935b83851015611bf057843582529382019390820190611bd7565b98969091013596505050505050565b5f8060408385031215611c10575f80fd5b8235611c1b816119af565b915060208301356001600160601b0381168114611c36575f80fd5b809150509250929050565b5f8060408385031215611c52575f80fd5b8235611c5d816119af565b915060208301358015158114611c36575f80fd5b5f805f8060808587031215611c84575f80fd5b8435611c8f816119af565b93506020850135611c9f816119af565b925060408501359150606085013567ffffffffffffffff811115611cc1575f80fd5b8501601f81018713611cd1575f80fd5b611ce087823560208401611a90565b91505092959194509250565b5f8060408385031215611cfd575f80fd5b8235611d08816119af565b91506020830135611c36816119af565b5f6020808385031215611d29575f80fd5b823567ffffffffffffffff811115611d3f575f80fd5b8301601f81018513611d4f575f80fd5b8035611d5d611baf82611b45565b81815260059190911b82018301908381019087831115611d7b575f80fd5b928401925b82841015611d9957833582529284019290840190611d80565b979650505050505050565b600181811c90821680611db857607f821691505b602082108103611dd657634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761066557610665611ddc565b634e487b7160e01b5f52601260045260245ffd5b5f82611e2957611e29611e07565b500490565b601f82111561096257805f5260205f20601f840160051c81016020851015611e535750805b601f840160051c820191505b81811015611841575f8155600101611e5f565b815167ffffffffffffffff811115611e8c57611e8c611a4b565b611ea081611e9a8454611da4565b84611e2e565b602080601f831160018114611ed3575f8415611ebc5750858301515b5f19600386901b1c1916600185901b178555611f2a565b5f85815260208120601f198616915b82811015611f0157888601518255948401946001909101908401611ee2565b5085821015611f1e57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f8154611f3e81611da4565b60018281168015611f565760018114611f6b57611f97565b60ff1984168752821515830287019450611f97565b855f526020805f205f5b85811015611f8e5781548a820152908401908201611f75565b50505082870194505b5050505092915050565b5f611fac8286611f32565b8451611fbc818360208901611939565b611d9981830186611f32565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611fec575f80fd5b8151611932816119af565b5f8161200557612005611ddc565b505f190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061203e9083018461195b565b9695505050505050565b5f60208284031215612058575f80fd5b815161193281611902565b5f6001820161207457612074611ddc565b5060010190565b8181038181111561066557610665611ddc565b5f8261209c5761209c611e07565b500690565b8082018082111561066557610665611ddc56fea26469706673582212201042281fd6dbbebebfeada4225b1a3aee6de9050c3d123dc89e640d1f923049964736f6c6343000816003368747470733a2f2f3430766676766e6473332e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f64656661756c742f617274706f63616c797073652d6d657461646174612d6170693f746f6b656e49643d

Deployed Bytecode

0x608060405260043610610207575f3560e01c80637cb6475911610113578063b88d4fde1161009d578063e985e9c51161006d578063e985e9c5146105cb578063ebf72a5f146105ea578063f2fde38b146105fe578063f851a4401461061d578063f8e93ef91461063c575f80fd5b8063b88d4fde14610566578063c431e9e614610579578063c87b56dd1461058d578063d7a37f8f146105ac575f80fd5b80638f2fc60b116100e35780638f2fc60b146104c75780639248a5d0146104e657806395d89b41146105145780639f6350e614610528578063a22cb46514610547575f80fd5b80637cb64759146104585780637d8966e4146104775780638c692ffb1461048b5780638da5cb5b146104aa575f80fd5b806342842e0e116101945780636c0360eb116101645780636c0360eb146103c45780636db27461146103d8578063704b6c021461040657806370a0823114610425578063715018a614610444575f80fd5b806342842e0e1461035357806355f804b3146103665780636352211e146103855780636ad1fe02146103a4575f80fd5b8063095ea7b3116101da578063095ea7b3146102b757806318160ddd146102cc57806323b872dd146102ed5780632a55205a146103005780632eb4a7ab1461033e575f80fd5b806301ffc9a71461020b578063054f7d9c1461023f57806306fdde031461025f578063081812fc14610280575b5f80fd5b348015610216575f80fd5b5061022a610225366004611917565b61065b565b60405190151581526020015b60405180910390f35b34801561024a575f80fd5b50600a5461022a90600160a81b900460ff1681565b34801561026a575f80fd5b5061027361066b565b6040516102369190611986565b34801561028b575f80fd5b5061029f61029a366004611998565b6106fb565b6040516001600160a01b039091168152602001610236565b6102ca6102c53660046119c3565b610734565b005b3480156102d7575f80fd5b506001545f54035b604051908152602001610236565b6102ca6102fb3660046119ed565b610744565b34801561030b575f80fd5b5061031f61031a366004611a2b565b61089e565b604080516001600160a01b039093168352602083019190915201610236565b348015610349575f80fd5b506102df600f5481565b6102ca6103613660046119ed565b610948565b348015610371575f80fd5b506102ca610380366004611ae5565b610967565b348015610390575f80fd5b5061029f61039f366004611998565b6109e6565b3480156103af575f80fd5b50600a5461022a90600160a01b900460ff1681565b3480156103cf575f80fd5b506102736109f0565b3480156103e3575f80fd5b5061022a6103f2366004611b2a565b60106020525f908152604090205460ff1681565b348015610411575f80fd5b506102ca610420366004611b2a565b610a7c565b348015610430575f80fd5b506102df61043f366004611b2a565b610ae2565b34801561044f575f80fd5b506102ca610b26565b348015610463575f80fd5b506102ca610472366004611998565b610b90565b348015610482575f80fd5b506102ca610c08565b348015610496575f80fd5b506102ca6104a5366004611b68565b610cb3565b3480156104b5575f80fd5b50600a546001600160a01b031661029f565b3480156104d2575f80fd5b506102ca6104e1366004611bff565b610d9e565b3480156104f1575f80fd5b5061022a610500366004611998565b60116020525f908152604090205460ff1681565b34801561051f575f80fd5b50610273610dec565b348015610533575f80fd5b506102ca610542366004611ae5565b610dfb565b348015610552575f80fd5b506102ca610561366004611c41565b610e7a565b6102ca610574366004611c71565b610ee5565b348015610584575f80fd5b506102ca610f26565b348015610598575f80fd5b506102736105a7366004611998565b610f7f565b3480156105b7575f80fd5b50600e5461029f906001600160a01b031681565b3480156105d6575f80fd5b5061022a6105e5366004611cec565b611023565b3480156105f5575f80fd5b50610273611050565b348015610609575f80fd5b506102ca610618366004611b2a565b61105d565b348015610628575f80fd5b50600d5461029f906001600160a01b031681565b348015610647575f80fd5b506102ca610656366004611d18565b611128565b5f610665826112a9565b92915050565b60606002805461067a90611da4565b80601f01602080910402602001604051908101604052809291908181526020018280546106a690611da4565b80156106f15780601f106106c8576101008083540402835291602001916106f1565b820191905f5260205f20905b8154815290600101906020018083116106d457829003601f168201915b5050505050905090565b5f610705826112dd565b610719576107196333d1c03960e21b61131f565b505f908152600660205260409020546001600160a01b031690565b61074082826001611327565b5050565b5f61074e826113c8565b6001600160a01b0394851694909150811684146107745761077462a1148160e81b61131f565b5f8281526006602052604090208054338082146001600160a01b038816909114176107b7576107a38633611023565b6107b7576107b7632ce44b5f60e11b61131f565b80156107c1575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b8416900361084d57600184015f81815260046020526040812054900361084b575f54811461084b575f8181526004602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4805f0361089557610895633a954ecd60e21b61131f565b50505050505050565b5f8281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916109125750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101515f9061271090610930906001600160601b031687611df0565b61093a9190611e1b565b915196919550909350505050565b61096283838360405180602001604052805f815250610ee5565b505050565b600a546001600160a01b0316331480159061098d5750600d546001600160a01b03163314155b156109ab57604051634ca8886760e01b815260040160405180910390fd5b600a54600160a81b900460ff1615156001036109da576040516313d0ff5960e31b815260040160405180910390fd5b600b6107408282611e72565b5f610665826113c8565b600b80546109fd90611da4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2990611da4565b8015610a745780601f10610a4b57610100808354040283529160200191610a74565b820191905f5260205f20905b815481529060010190602001808311610a5757829003601f168201915b505050505081565b600a546001600160a01b03163314801590610aa25750600d546001600160a01b03163314155b15610ac057604051634ca8886760e01b815260040160405180910390fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b5f6001600160a01b038216610b0157610b016323d3ad8160e21b61131f565b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b600a546001600160a01b03163314610b855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610b8e5f611458565b565b600a546001600160a01b03163314801590610bb65750600d546001600160a01b03163314155b15610bd457604051634ca8886760e01b815260040160405180910390fd5b600a54600160a81b900460ff161515600103610c03576040516313d0ff5960e31b815260040160405180910390fd5b600f55565b600a546001600160a01b03163314801590610c2e5750600d546001600160a01b03163314155b15610c4c57604051634ca8886760e01b815260040160405180910390fd5b600a54600160a01b900460ff16158015610c745750600a54600160a81b900460ff1615156001145b15610c92576040516313d0ff5960e31b815260040160405180910390fd5b600a805460ff60a01b198116600160a01b9182900460ff1615909102179055565b600a54600160a01b900460ff1615155f03610ce1576040516313d0ff5960e31b815260040160405180910390fd5b335f9081526010602052604090205460ff161515600103610d1557604051634ca8886760e01b815260040160405180910390fd5b600f546040516bffffffffffffffffffffffff193360601b16602082015260348101839052610d5e918491605401604051602081830303815290604052805190602001206114a9565b610d7b57604051634ca8886760e01b815260040160405180910390fd5b335f818152601060205260409020805460ff19166001179055610740908261154c565b600a546001600160a01b03163314801590610dc45750600d546001600160a01b03163314155b15610de257604051634ca8886760e01b815260040160405180910390fd5b6107408282611565565b60606003805461067a90611da4565b600a546001600160a01b03163314801590610e215750600d546001600160a01b03163314155b15610e3f57604051634ca8886760e01b815260040160405180910390fd5b600a54600160a81b900460ff161515600103610e6e576040516313d0ff5960e31b815260040160405180910390fd5b600c6107408282611e72565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ef0848484610744565b6001600160a01b0383163b15610f2057610f0c84848484611607565b610f2057610f206368d2bf6b60e11b61131f565b50505050565b600a546001600160a01b03163314801590610f4c5750600d546001600160a01b03163314155b15610f6a57604051634ca8886760e01b815260040160405180910390fd5b600a805460ff60a81b1916600160a81b179055565b6060610f8a826112dd565b610fee5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b7c565b600b610ff9836116e6565b600c60405160200161100d93929190611fa1565b6040516020818303038152906040529050919050565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b600c80546109fd90611da4565b600a546001600160a01b031633146110b75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b7c565b6001600160a01b03811661111c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b7c565b61112581611458565b50565b600a54600160a01b900460ff1615155f03611156576040516313d0ff5960e31b815260040160405180910390fd5b5f5b815181101561129d57600e54825133916001600160a01b031690636352211e9085908590811061118a5761118a611fc8565b60200260200101516040518263ffffffff1660e01b81526004016111b091815260200190565b602060405180830381865afa1580156111cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ef9190611fdc565b6001600160a01b0316141580611238575060115f83838151811061121557611215611fc8565b60209081029190910181015182528101919091526040015f205460ff1615156001145b1561125657604051634ca8886760e01b815260040160405180910390fd5b600160115f84848151811061126d5761126d611fc8565b60209081029190910181015182528101919091526040015f20805460ff1916911515919091179055600101611158565b5061112533825161154c565b5f6001600160e01b0319821663152a902d60e11b148061066557506301ffc9a760e01b6001600160e01b0319831614610665565b5f805482101561131a575f5b505f82815260046020526040812054908190036113105761130983611ff7565b92506112e9565b600160e01b161590505b919050565b805f5260045ffd5b5f611331836109e6565b90508180156113495750336001600160a01b03821614155b1561136c576113588133611023565b61136c5761136c6367d9dca160e11b61131f565b5f8381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b5f8181526004602052604081205490819003611436575f5482106113f6576113f6636f96cda160e11b61131f565b5b505f19015f8181526004602052604090205480156113f757600160e01b81165f0361142157919050565b611431636f96cda160e11b61131f565b6113f7565b600160e01b81165f0361144857919050565b61131a636f96cda160e11b61131f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f81815b8551811015611541575f8682815181106114c9576114c9611fc8565b6020026020010151905080831161150b576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611538565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b506001016114ad565b509092149392505050565b610740828260405180602001604052805f8152506117e3565b6127106001600160601b0382168110156115a457604051636f483d0960e01b81526001600160601b038316600482015260248101829052604401610b7c565b6001600160a01b0383166115cd57604051635b6cc80560e11b81525f6004820152602401610b7c565b50604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a029061163b90339089908890889060040161200c565b6020604051808303815f875af1925050508015611675575060408051601f3d908101601f1916820190925261167291810190612048565b60015b6116c8573d8080156116a2576040519150601f19603f3d011682016040523d82523d5f602084013e6116a7565b606091505b5080515f036116c0576116c06368d2bf6b60e11b61131f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060815f0361170c5750506040805180820190915260018152600360fc1b602082015290565b815f5b8115611735578061171f81612063565b915061172e9050600a83611e1b565b915061170f565b5f8167ffffffffffffffff81111561174f5761174f611a4b565b6040519080825280601f01601f191660200182016040528015611779576020820181803683370190505b5090505b84156116de5761178e60018361207b565b915061179b600a8661208e565b6117a69060306120a1565b60f81b8183815181106117bb576117bb611fc8565b60200101906001600160f81b03191690815f1a9053506117dc600a86611e1b565b945061177d565b6117ed8383611848565b6001600160a01b0383163b15610962575f548281035b6118155f868380600101945086611607565b611829576118296368d2bf6b60e11b61131f565b81811061180357815f5414611841576118415f61131f565b5050505050565b5f8054908290036118635761186363b562e8dd60e01b61131f565b5f8181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b178117909155808452600590925282208054680100000000000000018602019055908190036118c0576118c0622e076360e81b61131f565b818301825b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a48181600101915081036118c557505f5550505050565b6001600160e01b031981168114611125575f80fd5b5f60208284031215611927575f80fd5b813561193281611902565b9392505050565b5f5b8381101561195357818101518382015260200161193b565b50505f910152565b5f8151808452611972816020860160208601611939565b601f01601f19169290920160200192915050565b602081525f611932602083018461195b565b5f602082840312156119a8575f80fd5b5035919050565b6001600160a01b0381168114611125575f80fd5b5f80604083850312156119d4575f80fd5b82356119df816119af565b946020939093013593505050565b5f805f606084860312156119ff575f80fd5b8335611a0a816119af565b92506020840135611a1a816119af565b929592945050506040919091013590565b5f8060408385031215611a3c575f80fd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611a8857611a88611a4b565b604052919050565b5f67ffffffffffffffff831115611aa957611aa9611a4b565b611abc601f8401601f1916602001611a5f565b9050828152838383011115611acf575f80fd5b828260208301375f602084830101529392505050565b5f60208284031215611af5575f80fd5b813567ffffffffffffffff811115611b0b575f80fd5b8201601f81018413611b1b575f80fd5b6116de84823560208401611a90565b5f60208284031215611b3a575f80fd5b8135611932816119af565b5f67ffffffffffffffff821115611b5e57611b5e611a4b565b5060051b60200190565b5f8060408385031215611b79575f80fd5b823567ffffffffffffffff811115611b8f575f80fd5b8301601f81018513611b9f575f80fd5b80356020611bb4611baf83611b45565b611a5f565b82815260059290921b83018101918181019088841115611bd2575f80fd5b938201935b83851015611bf057843582529382019390820190611bd7565b98969091013596505050505050565b5f8060408385031215611c10575f80fd5b8235611c1b816119af565b915060208301356001600160601b0381168114611c36575f80fd5b809150509250929050565b5f8060408385031215611c52575f80fd5b8235611c5d816119af565b915060208301358015158114611c36575f80fd5b5f805f8060808587031215611c84575f80fd5b8435611c8f816119af565b93506020850135611c9f816119af565b925060408501359150606085013567ffffffffffffffff811115611cc1575f80fd5b8501601f81018713611cd1575f80fd5b611ce087823560208401611a90565b91505092959194509250565b5f8060408385031215611cfd575f80fd5b8235611d08816119af565b91506020830135611c36816119af565b5f6020808385031215611d29575f80fd5b823567ffffffffffffffff811115611d3f575f80fd5b8301601f81018513611d4f575f80fd5b8035611d5d611baf82611b45565b81815260059190911b82018301908381019087831115611d7b575f80fd5b928401925b82841015611d9957833582529284019290840190611d80565b979650505050505050565b600181811c90821680611db857607f821691505b602082108103611dd657634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761066557610665611ddc565b634e487b7160e01b5f52601260045260245ffd5b5f82611e2957611e29611e07565b500490565b601f82111561096257805f5260205f20601f840160051c81016020851015611e535750805b601f840160051c820191505b81811015611841575f8155600101611e5f565b815167ffffffffffffffff811115611e8c57611e8c611a4b565b611ea081611e9a8454611da4565b84611e2e565b602080601f831160018114611ed3575f8415611ebc5750858301515b5f19600386901b1c1916600185901b178555611f2a565b5f85815260208120601f198616915b82811015611f0157888601518255948401946001909101908401611ee2565b5085821015611f1e57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f8154611f3e81611da4565b60018281168015611f565760018114611f6b57611f97565b60ff1984168752821515830287019450611f97565b855f526020805f205f5b85811015611f8e5781548a820152908401908201611f75565b50505082870194505b5050505092915050565b5f611fac8286611f32565b8451611fbc818360208901611939565b611d9981830186611f32565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611fec575f80fd5b8151611932816119af565b5f8161200557612005611ddc565b505f190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061203e9083018461195b565b9695505050505050565b5f60208284031215612058575f80fd5b815161193281611902565b5f6001820161207457612074611ddc565b5060010190565b8181038181111561066557610665611ddc565b5f8261209c5761209c611e07565b500690565b8082018082111561066557610665611ddc56fea26469706673582212201042281fd6dbbebebfeada4225b1a3aee6de9050c3d123dc89e640d1f923049964736f6c63430008160033

Deployed Bytecode Sourcemap

68745:4390:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72911:221;;;;;;;;;;-1:-1:-1;72911:221:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;72911:221:0;;;;;;;;68954:26;;;;;;;;;;-1:-1:-1;68954:26:0;;;;-1:-1:-1;;;68954:26:0;;;;;;34263:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41297:227::-;;;;;;;;;;-1:-1:-1;41297:227:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;41297:227:0;1533:203:1;41014:124:0;;;;;;:::i;:::-;;:::i;:::-;;30005:323;;;;;;;;;;-1:-1:-1;30279:12:0;;30066:7;30263:13;:28;30005:323;;;2343:25:1;;;2331:2;2316:18;30005:323:0;2197:177:1;45031:3523:0;;;;;;:::i;:::-;;:::i;5019:429::-;;;;;;;;;;-1:-1:-1;5019:429:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3285:32:1;;;3267:51;;3349:2;3334:18;;3327:34;;;;3240:18;5019:429:0;3093:274:1;69324:25:0;;;;;;;;;;;;;;;;48650:193;;;;;;:::i;:::-;;:::i;71450:177::-;;;;;;;;;;-1:-1:-1;71450:177:0;;;;;:::i;:::-;;:::i;35665:152::-;;;;;;;;;;-1:-1:-1;35665:152:0;;;;;:::i;:::-;;:::i;68923:24::-;;;;;;;;;;-1:-1:-1;68923:24:0;;;;-1:-1:-1;;;68923:24:0;;;;;;68989:132;;;;;;;;;;;;;:::i;69358:45::-;;;;;;;;;;-1:-1:-1;69358:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;71188:85;;;;;;;;;;-1:-1:-1;71188:85:0;;;;;:::i;:::-;;:::i;31189:242::-;;;;;;;;;;-1:-1:-1;31189:242:0;;;;;:::i;:::-;;:::i;12079:103::-;;;;;;;;;;;;;:::i;72130:163::-;;;;;;;;;;-1:-1:-1;72130:163:0;;;;;:::i;:::-;;:::i;71867:160::-;;;;;;;;;;;;;:::i;70597:497::-;;;;;;;;;;-1:-1:-1;70597:497:0;;;;;:::i;:::-;;:::i;11428:87::-;;;;;;;;;;-1:-1:-1;11501:6:0;;-1:-1:-1;;;;;11501:6:0;11428:87;;71281:161;;;;;;;;;;-1:-1:-1;71281:161:0;;;;;:::i;:::-;;:::i;69410:42::-;;;;;;;;;;-1:-1:-1;69410:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34439:104;;;;;;;;;;;;;:::i;71635:224::-;;;;;;;;;;-1:-1:-1;71635:224:0;;;;;:::i;:::-;;:::i;41864:234::-;;;;;;;;;;-1:-1:-1;41864:234:0;;;;;:::i;:::-;;:::i;49441:416::-;;;;;;:::i;:::-;;:::i;72035:87::-;;;;;;;;;;;;;:::i;72387:407::-;;;;;;;;;;-1:-1:-1;72387:407:0;;;;;:::i;:::-;;:::i;69245:70::-;;;;;;;;;;-1:-1:-1;69245:70:0;;;;-1:-1:-1;;;;;69245:70:0;;;42255:164;;;;;;;;;;-1:-1:-1;42255:164:0;;;;;:::i;:::-;;:::i;69128:36::-;;;;;;;;;;;;;:::i;12337:201::-;;;;;;;;;;-1:-1:-1;12337:201:0;;;;;:::i;:::-;;:::i;69173:65::-;;;;;;;;;;-1:-1:-1;69173:65:0;;;;-1:-1:-1;;;;;69173:65:0;;;70005:584;;;;;;;;;;-1:-1:-1;70005:584:0;;;;;:::i;:::-;;:::i;72911:221::-;73059:4;73088:36;73112:11;73088:23;:36::i;:::-;73081:43;72911:221;-1:-1:-1;;72911:221:0:o;34263:100::-;34317:13;34350:5;34343:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34263:100;:::o;41297:227::-;41373:7;41398:16;41406:7;41398;:16::i;:::-;41393:73;;41416:50;-1:-1:-1;;;41416:7:0;:50::i;:::-;-1:-1:-1;41486:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;41486:30:0;;41297:227::o;41014:124::-;41103:27;41112:2;41116:7;41125:4;41103:8;:27::i;:::-;41014:124;;:::o;45031:3523::-;45173:27;45203;45222:7;45203:18;:27::i;:::-;-1:-1:-1;;;;;45358:22:0;;;;45173:57;;-1:-1:-1;45418:45:0;;;;45414:95;;45465:44;-1:-1:-1;;;45465:7:0;:44::i;:::-;45523:27;44139:24;;;:15;:24;;;;;44367:26;;66523:10;43764:30;;;-1:-1:-1;;;;;43457:28:0;;43742:20;;;43739:56;45709:189;;45802:43;45819:4;66523:10;42255:164;:::i;45802:43::-;45797:101;;45847:51;-1:-1:-1;;;45847:7:0;:51::i;:::-;46047:15;46044:160;;;46187:1;46166:19;46159:30;46044:160;-1:-1:-1;;;;;46584:24:0;;;;;;;:18;:24;;;;;;46582:26;;-1:-1:-1;;46582:26:0;;;46653:22;;;;;;;;;46651:24;;-1:-1:-1;46651:24:0;;;40116:11;40091:23;40087:41;40074:63;-1:-1:-1;;;40074:63:0;46946:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;47241:47:0;;:52;;47237:627;;47346:1;47336:11;;47314:19;47469:30;;;:17;:30;;;;;;:35;;47465:384;;47607:13;;47592:11;:28;47588:242;;47754:30;;;;:17;:30;;;;;:52;;;47588:242;47295:569;47237:627;-1:-1:-1;;;;;47996:20:0;;48376:7;47996:20;48306:4;48248:25;47977:16;;48113:299;48437:8;48449:1;48437:13;48433:58;;48452:39;-1:-1:-1;;;48452:7:0;:39::i;:::-;45162:3392;;;;45031:3523;;;:::o;5019:429::-;5105:7;5163:26;;;:17;:26;;;;;;;;5134:55;;;;;;;;;-1:-1:-1;;;;;5134:55:0;;;;;-1:-1:-1;;;5134:55:0;;;-1:-1:-1;;;;;5134:55:0;;;;;;;;5105:7;;5202:92;;-1:-1:-1;5253:29:0;;;;;;;;;5263:19;5253:29;-1:-1:-1;;;;;5253:29:0;;;;-1:-1:-1;;;5253:29:0;;-1:-1:-1;;;;;5253:29:0;;;;;5202:92;5343:23;;;;5306:21;;5814:5;;5331:35;;-1:-1:-1;;;;;5331:35:0;:9;:35;:::i;:::-;5330:57;;;;:::i;:::-;5408:16;;;;;-1:-1:-1;5019:429:0;;-1:-1:-1;;;;5019:429:0:o;48650:193::-;48796:39;48813:4;48819:2;48823:7;48796:39;;;;;;;;;;;;:16;:39::i;:::-;48650:193;;;:::o;71450:177::-;11501:6;;-1:-1:-1;;;;;11501:6:0;69798:10;:21;;;;:44;;-1:-1:-1;69837:5:0;;-1:-1:-1;;;;;69837:5:0;69823:10;:19;;69798:44;69794:98;;;69866:14;;-1:-1:-1;;;69866:14:0;;;;;;;;;;;69794:98;71530:6:::1;::::0;-1:-1:-1;;;71530:6:0;::::1;;;:14;;71540:4;71530:14:::0;71526:62:::1;;71568:8;;-1:-1:-1::0;;;71568:8:0::1;;;;;;;;;;;71526:62;71598:7;:21;71608:11:::0;71598:7;:21:::1;:::i;35665:152::-:0;35737:7;35780:27;35799:7;35780:18;:27::i;68989:132::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71188:85::-;11501:6;;-1:-1:-1;;;;;11501:6:0;69798:10;:21;;;;:44;;-1:-1:-1;69837:5:0;;-1:-1:-1;;;;;69837:5:0;69823:10;:19;;69798:44;69794:98;;;69866:14;;-1:-1:-1;;;69866:14:0;;;;;;;;;;;69794:98;71251:5:::1;:14:::0;;-1:-1:-1;;;;;;71251:14:0::1;-1:-1:-1::0;;;;;71251:14:0;;;::::1;::::0;;;::::1;::::0;;71188:85::o;31189:242::-;31261:7;-1:-1:-1;;;;;31285:19:0;;31281:69;;31306:44;-1:-1:-1;;;31306:7:0;:44::i;:::-;-1:-1:-1;;;;;;31368:25:0;;;;;:18;:25;;;;;;25348:13;31368:55;;31189:242::o;12079:103::-;11501:6;;-1:-1:-1;;;;;11501:6:0;66523:10;11648:23;11640:68;;;;-1:-1:-1;;;11640:68:0;;12694:2:1;11640:68:0;;;12676:21:1;;;12713:18;;;12706:30;12772:34;12752:18;;;12745:62;12824:18;;11640:68:0;;;;;;;;;12144:30:::1;12171:1;12144:18;:30::i;:::-;12079:103::o:0;72130:163::-;11501:6;;-1:-1:-1;;;;;11501:6:0;69798:10;:21;;;;:44;;-1:-1:-1;69837:5:0;;-1:-1:-1;;;;;69837:5:0;69823:10;:19;;69798:44;69794:98;;;69866:14;;-1:-1:-1;;;69866:14:0;;;;;;;;;;;69794:98;72200:6:::1;::::0;-1:-1:-1;;;72200:6:0;::::1;;;:14;;72210:4;72200:14:::0;72196:62:::1;;72238:8;;-1:-1:-1::0;;;72238:8:0::1;;;;;;;;;;;72196:62;72268:10;:17:::0;72130:163::o;71867:160::-;11501:6;;-1:-1:-1;;;;;11501:6:0;69798:10;:21;;;;:44;;-1:-1:-1;69837:5:0;;-1:-1:-1;;;;;69837:5:0;69823:10;:19;;69798:44;69794:98;;;69866:14;;-1:-1:-1;;;69866:14:0;;;;;;;;;;;69794:98;71922:4:::1;::::0;-1:-1:-1;;;71922:4:0;::::1;;;:13;::::0;::::1;:31;;-1:-1:-1::0;71939:6:0::1;::::0;-1:-1:-1;;;71939:6:0;::::1;;;:14;;71949:4;71939:14;71922:31;71918:79;;;71977:8;;-1:-1:-1::0;;;71977:8:0::1;;;;;;;;;;;71918:79;72015:4;::::0;;-1:-1:-1;;;;72007:12:0;::::1;-1:-1:-1::0;;;72015:4:0;;;::::1;;;72014:5;72007:12:::0;;::::1;;::::0;;71867:160::o;70597:497::-;70681:4;;-1:-1:-1;;;70681:4:0;;;;:13;;70689:5;70681:13;70677:34;;70703:8;;-1:-1:-1;;;70703:8:0;;;;;;;;;;;70677:34;70740:10;70726:25;;;;:13;:25;;;;;;;;:33;;:25;:33;70722:60;;70768:14;;-1:-1:-1;;;70768:14:0;;;;;;;;;;;70722:60;70875:10;;70914:36;;-1:-1:-1;;70931:10:0;13030:2:1;13026:15;13022:53;70914:36:0;;;13010:66:1;13092:12;;;13085:28;;;70814:152:0;;70851:5;;13129:12:1;;70914:36:0;;;;;;;;;;;;70904:47;;;;;;70814:18;:152::i;:::-;70795:204;;70985:14;;-1:-1:-1;;;70985:14:0;;;;;;;;;;;70795:204;71026:10;71012:25;;;;:13;:25;;;;;:32;;-1:-1:-1;;71012:32:0;71040:4;71012:32;;;71057:29;;71079:6;71057:9;:29::i;71281:161::-;11501:6;;-1:-1:-1;;;;;11501:6:0;69798:10;:21;;;;:44;;-1:-1:-1;69837:5:0;;-1:-1:-1;;;;;69837:5:0;69823:10;:19;;69798:44;69794:98;;;69866:14;;-1:-1:-1;;;69866:14:0;;;;;;;;;;;69794:98;71392:42:::1;71411:8;71421:12;71392:18;:42::i;34439:104::-:0;34495:13;34528:7;34521:14;;;;;:::i;71635:224::-;11501:6;;-1:-1:-1;;;;;11501:6:0;69798:10;:21;;;;:44;;-1:-1:-1;69837:5:0;;-1:-1:-1;;;;;69837:5:0;69823:10;:19;;69798:44;69794:98;;;69866:14;;-1:-1:-1;;;69866:14:0;;;;;;;;;;;69794:98;71750:6:::1;::::0;-1:-1:-1;;;71750:6:0;::::1;;;:14;;71760:4;71750:14:::0;71746:62:::1;;71788:8;;-1:-1:-1::0;;;71788:8:0::1;;;;;;;;;;;71746:62;71818:17;:33;71838:13:::0;71818:17;:33:::1;:::i;41864:234::-:0;66523:10;41959:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;41959:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;41959:60:0;;;;;;;;;;42035:55;;540:41:1;;;41959:49:0;;66523:10;42035:55;;513:18:1;42035:55:0;;;;;;;41864:234;;:::o;49441:416::-;49616:31;49629:4;49635:2;49639:7;49616:12;:31::i;:::-;-1:-1:-1;;;;;49662:14:0;;;:19;49658:192;;49701:56;49732:4;49738:2;49742:7;49751:5;49701:30;:56::i;:::-;49696:154;;49778:56;-1:-1:-1;;;49778:7:0;:56::i;:::-;49441:416;;;;:::o;72035:87::-;11501:6;;-1:-1:-1;;;;;11501:6:0;69798:10;:21;;;;:44;;-1:-1:-1;69837:5:0;;-1:-1:-1;;;;;69837:5:0;69823:10;:19;;69798:44;69794:98;;;69866:14;;-1:-1:-1;;;69866:14:0;;;;;;;;;;;69794:98;72101:6:::1;:13:::0;;-1:-1:-1;;;;72101:13:0::1;-1:-1:-1::0;;;72101:13:0::1;::::0;;72035:87::o;72387:407::-;72505:13;72558:16;72566:7;72558;:16::i;:::-;72536:113;;;;-1:-1:-1;;;72536:113:0;;13354:2:1;72536:113:0;;;13336:21:1;13393:2;13373:18;;;13366:30;13432:34;13412:18;;;13405:62;-1:-1:-1;;;13483:18:1;;;13476:45;13538:19;;72536:113:0;13152:411:1;72536:113:0;72724:7;72733:18;:7;:16;:18::i;:::-;72753:17;72707:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72662:124;;72387:407;;;:::o;42255:164::-;-1:-1:-1;;;;;42376:25:0;;;42352:4;42376:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42255:164::o;69128:36::-;;;;;;;:::i;12337:201::-;11501:6;;-1:-1:-1;;;;;11501:6:0;66523:10;11648:23;11640:68;;;;-1:-1:-1;;;11640:68:0;;12694:2:1;11640:68:0;;;12676:21:1;;;12713:18;;;12706:30;12772:34;12752:18;;;12745:62;12824:18;;11640:68:0;12492:356:1;11640:68:0;-1:-1:-1;;;;;12426:22:0;::::1;12418:73;;;::::0;-1:-1:-1;;;12418:73:0;;14972:2:1;12418:73:0::1;::::0;::::1;14954:21:1::0;15011:2;14991:18;;;14984:30;15050:34;15030:18;;;15023:62;-1:-1:-1;;;15101:18:1;;;15094:36;15147:19;;12418:73:0::1;14770:402:1::0;12418:73:0::1;12502:28;12521:8;12502:18;:28::i;:::-;12337:201:::0;:::o;70005:584::-;70070:4;;-1:-1:-1;;;70070:4:0;;;;:13;;70078:5;70070:13;70066:34;;70092:8;;-1:-1:-1;;;70092:8:0;;;;;;;;;;;70066:34;70220:9;70215:318;70239:8;:15;70235:1;:19;70215:318;;;70307:10;;70327:11;;70343:10;;-1:-1:-1;;;;;70307:10:0;;70298:28;;70327:8;;70336:1;;70327:11;;;;;;:::i;:::-;;;;;;;70298:41;;;;;;;;;;;;;2343:25:1;;2331:2;2316:18;;2197:177;70298:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;70298:55:0;;;:107;;;;70374:10;:23;70385:8;70394:1;70385:11;;;;;;;;:::i;:::-;;;;;;;;;;;;70374:23;;;;;;;;;;-1:-1:-1;70374:23:0;;;;:31;;:23;:31;70298:107;70276:201;;;70447:14;;-1:-1:-1;;;70447:14:0;;;;;;;;;;;70276:201;70517:4;70491:10;:23;70502:8;70511:1;70502:11;;;;;;;;:::i;:::-;;;;;;;;;;;;70491:23;;;;;;;;;;-1:-1:-1;70491:23:0;:30;;-1:-1:-1;;70491:30:0;;;;;;;;;;-1:-1:-1;70256:3:0;70215:318;;;;70543:38;70553:10;70565:8;:15;70543:9;:38::i;4749:215::-;4851:4;-1:-1:-1;;;;;;4875:41:0;;-1:-1:-1;;;4875:41:0;;:81;;-1:-1:-1;;;;;;;;;;1756:40:0;;;4920:36;1647:157;42677:368;42742:11;42827:13;;42817:7;:23;42813:214;;;42861:14;42894:60;-1:-1:-1;42911:26:0;;;;:17;:26;;;;;;;42901:42;;;42894:60;;42945:9;;;:::i;:::-;;;42894:60;;;-1:-1:-1;;;42982:24:0;:29;;-1:-1:-1;42813:214:0;42677:368;;;:::o;68455:165::-;68556:13;68550:4;68543:27;68597:4;68591;68584:18;59888:474;60017:13;60033:16;60041:7;60033;:16::i;:::-;60017:32;;60066:13;:45;;;;-1:-1:-1;66523:10:0;-1:-1:-1;;;;;60083:28:0;;;;60066:45;60062:201;;;60131:44;60148:5;66523:10;42255:164;:::i;60131:44::-;60126:137;;60196:51;-1:-1:-1;;;60196:7:0;:51::i;:::-;60275:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;60275:35:0;-1:-1:-1;;;;;60275:35:0;;;;;;;;;60326:28;;60275:24;;60326:28;;;;;;;60006:356;59888:474;;;:::o;37145:2012::-;37295:26;;;;:17;:26;;;;;;;37421:11;;;37417:1292;;37468:13;;37457:7;:24;37453:77;;37483:47;-1:-1:-1;;;37483:7:0;:47::i;:::-;38087:607;-1:-1:-1;;;38183:9:0;38165:28;;;;:17;:28;;;;;;38239:25;;38087:607;38239:25;-1:-1:-1;;;38291:6:0;:24;38319:1;38291:29;38287:48;;37145:2012;;;:::o;38287:48::-;38627:47;-1:-1:-1;;;38627:7:0;:47::i;:::-;38087:607;;37417:1292;-1:-1:-1;;;39036:6:0;:24;39064:1;39036:29;39032:48;;37145:2012;;;:::o;39032:48::-;39102:47;-1:-1:-1;;;39102:7:0;:47::i;12698:191::-;12791:6;;;-1:-1:-1;;;;;12808:17:0;;;-1:-1:-1;;;;;;12808:17:0;;;;;;;12841:40;;12791:6;;;12808:17;12791:6;;12841:40;;12772:16;;12841:40;12761:128;12698:191;:::o;8690:830::-;8815:4;8855;8815;8872:525;8896:5;:12;8892:1;:16;8872:525;;;8930:20;8953:5;8959:1;8953:8;;;;;;;;:::i;:::-;;;;;;;8930:31;;8998:12;8982;:28;8978:408;;9135:44;;;;;;15863:19:1;;;15898:12;;;15891:28;;;15935:12;;9135:44:0;;;;;;;;;;;;9125:55;;;;;;9110:70;;8978:408;;;9325:44;;;;;;15863:19:1;;;15898:12;;;15891:28;;;15935:12;;9325:44:0;;;;;;;;;;;;9315:55;;;;;;9300:70;;8978:408;-1:-1:-1;8910:3:0;;8872:525;;;-1:-1:-1;9492:20:0;;;;8690:830;-1:-1:-1;;;8690:830:0:o;58970:112::-;59047:27;59057:2;59061:8;59047:27;;;;;;;;;;;;:9;:27::i;6098:518::-;5814:5;-1:-1:-1;;;;;6247:26:0;;;-1:-1:-1;6243:176:0;;;6352:55;;-1:-1:-1;;;6352:55:0;;-1:-1:-1;;;;;16149:39:1;;6352:55:0;;;16131:58:1;16205:18;;;16198:34;;;16104:18;;6352:55:0;15958:280:1;6243:176:0;-1:-1:-1;;;;;6433:22:0;;6429:110;;6479:48;;-1:-1:-1;;;6479:48:0;;6524:1;6479:48;;;1679:51:1;1652:18;;6479:48:0;1533:203:1;6429:110:0;-1:-1:-1;6573:35:0;;;;;;;;;-1:-1:-1;;;;;6573:35:0;;;;;;-1:-1:-1;;;;;6573:35:0;;;;;;;;;;-1:-1:-1;;;6551:57:0;;;;:19;:57;6098:518::o;51941:691::-;52125:88;;-1:-1:-1;;;52125:88:0;;52104:4;;-1:-1:-1;;;;;52125:45:0;;;;;:88;;66523:10;;52192:4;;52198:7;;52207:5;;52125:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52125:88:0;;;;;;;;-1:-1:-1;;52125:88:0;;;;;;;;;;;;:::i;:::-;;;52121:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52408:6;:13;52425:1;52408:18;52404:115;;52447:56;-1:-1:-1;;;52447:7:0;:56::i;:::-;52591:6;52585:13;52576:6;52572:2;52568:15;52561:38;52121:504;-1:-1:-1;;;;;;52284:64:0;-1:-1:-1;;;52284:64:0;;-1:-1:-1;52121:504:0;51941:691;;;;;;:::o;13207:723::-;13263:13;13484:5;13493:1;13484:10;13480:53;;-1:-1:-1;;13511:10:0;;;;;;;;;;;;-1:-1:-1;;;13511:10:0;;;;;13207:723::o;13480:53::-;13558:5;13543:12;13599:78;13606:9;;13599:78;;13632:8;;;;:::i;:::-;;-1:-1:-1;13655:10:0;;-1:-1:-1;13663:2:0;13655:10;;:::i;:::-;;;13599:78;;;13687:19;13719:6;13709:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13709:17:0;;13687:39;;13737:154;13744:10;;13737:154;;13771:11;13781:1;13771:11;;:::i;:::-;;-1:-1:-1;13840:10:0;13848:2;13840:5;:10;:::i;:::-;13827:24;;:2;:24;:::i;:::-;13814:39;;13797:6;13804;13797:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;13797:56:0;;;;;;;;-1:-1:-1;13868:11:0;13877:2;13868:11;;:::i;:::-;;;13737:154;;58178:708;58309:19;58315:2;58319:8;58309:5;:19::i;:::-;-1:-1:-1;;;;;58370:14:0;;;:19;58366:502;;58410:11;58424:13;58472:14;;;58505:242;58536:62;58575:1;58579:2;58583:7;;;;;;58592:5;58536:30;:62::i;:::-;58531:176;;58627:56;-1:-1:-1;;;58627:7:0;:56::i;:::-;58742:3;58734:5;:11;58505:242;;58829:3;58812:13;;:20;58808:44;;58834:18;58849:1;58834:7;:18::i;:::-;58391:477;;58178:708;;;:::o;53094:2305::-;53167:20;53190:13;;;53218;;;53214:53;;53233:34;-1:-1:-1;;;53233:7:0;:34::i;:::-;53780:31;;;;:17;:31;;;;;;;;-1:-1:-1;;;;;39942:28:0;;40116:11;40091:23;40087:41;40560:1;40547:15;;40521:24;40517:46;40084:52;40074:63;;53780:173;;;54171:22;;;:18;:22;;;;;:71;;54209:32;54197:45;;54171:71;;;39942:28;54432:13;;;54428:54;;54447:35;-1:-1:-1;;;54447:7:0;:35::i;:::-;54513:23;;;:12;54598:676;55017:7;54973:8;54928:1;54862:25;54799:1;54734;54703:358;55269:3;55256:9;;;;;;:16;54598:676;;-1:-1:-1;55290:13:0;:19;-1:-1:-1;48650:193: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;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:131::-;-1:-1:-1;;;;;1816:31:1;;1806:42;;1796:70;;1862:1;1859;1852:12;1877:315;1945:6;1953;2006:2;1994:9;1985:7;1981:23;1977:32;1974:52;;;2022:1;2019;2012:12;1974:52;2061:9;2048:23;2080:31;2105:5;2080:31;:::i;:::-;2130:5;2182:2;2167:18;;;;2154:32;;-1:-1:-1;;;1877:315:1:o;2379:456::-;2456:6;2464;2472;2525:2;2513:9;2504:7;2500:23;2496:32;2493:52;;;2541:1;2538;2531:12;2493:52;2580:9;2567:23;2599:31;2624:5;2599:31;:::i;:::-;2649:5;-1:-1:-1;2706:2:1;2691:18;;2678:32;2719:33;2678:32;2719:33;:::i;:::-;2379:456;;2771:7;;-1:-1:-1;;;2825:2:1;2810:18;;;;2797:32;;2379:456::o;2840:248::-;2908:6;2916;2969:2;2957:9;2948:7;2944:23;2940:32;2937:52;;;2985:1;2982;2975:12;2937:52;-1:-1:-1;;3008:23:1;;;3078:2;3063:18;;;3050:32;;-1:-1:-1;2840:248:1:o;3554:127::-;3615:10;3610:3;3606:20;3603:1;3596:31;3646:4;3643:1;3636:15;3670:4;3667:1;3660:15;3686:275;3757:2;3751:9;3822:2;3803:13;;-1:-1:-1;;3799:27:1;3787:40;;3857:18;3842:34;;3878:22;;;3839:62;3836:88;;;3904:18;;:::i;:::-;3940:2;3933:22;3686:275;;-1:-1:-1;3686:275:1:o;3966:407::-;4031:5;4065:18;4057:6;4054:30;4051:56;;;4087:18;;:::i;:::-;4125:57;4170:2;4149:15;;-1:-1:-1;;4145:29:1;4176:4;4141:40;4125:57;:::i;:::-;4116:66;;4205:6;4198:5;4191:21;4245:3;4236:6;4231:3;4227:16;4224:25;4221:45;;;4262:1;4259;4252:12;4221:45;4311:6;4306:3;4299:4;4292:5;4288:16;4275:43;4365:1;4358:4;4349:6;4342:5;4338:18;4334:29;4327:40;3966:407;;;;;:::o;4378:451::-;4447:6;4500:2;4488:9;4479:7;4475:23;4471:32;4468:52;;;4516:1;4513;4506:12;4468:52;4556:9;4543:23;4589:18;4581:6;4578:30;4575:50;;;4621:1;4618;4611:12;4575:50;4644:22;;4697:4;4689:13;;4685:27;-1:-1:-1;4675:55:1;;4726:1;4723;4716:12;4675:55;4749:74;4815:7;4810:2;4797:16;4792:2;4788;4784:11;4749:74;:::i;4834:247::-;4893:6;4946:2;4934:9;4925:7;4921:23;4917:32;4914:52;;;4962:1;4959;4952:12;4914:52;5001:9;4988:23;5020:31;5045:5;5020:31;:::i;5271:183::-;5331:4;5364:18;5356:6;5353:30;5350:56;;;5386:18;;:::i;:::-;-1:-1:-1;5431:1:1;5427:14;5443:4;5423:25;;5271:183::o;5459:961::-;5552:6;5560;5613:2;5601:9;5592:7;5588:23;5584:32;5581:52;;;5629:1;5626;5619:12;5581:52;5669:9;5656:23;5702:18;5694:6;5691:30;5688:50;;;5734:1;5731;5724:12;5688:50;5757:22;;5810:4;5802:13;;5798:27;-1:-1:-1;5788:55:1;;5839:1;5836;5829:12;5788:55;5875:2;5862:16;5897:4;5921:60;5937:43;5977:2;5937:43;:::i;:::-;5921:60;:::i;:::-;6015:15;;;6097:1;6093:10;;;;6085:19;;6081:28;;;6046:12;;;;6121:19;;;6118:39;;;6153:1;6150;6143:12;6118:39;6177:11;;;;6197:142;6213:6;6208:3;6205:15;6197:142;;;6279:17;;6267:30;;6230:12;;;;6317;;;;6197:142;;;6358:5;6395:18;;;;6382:32;;-1:-1:-1;;;;;;5459:961:1:o;6425:435::-;6492:6;6500;6553:2;6541:9;6532:7;6528:23;6524:32;6521:52;;;6569:1;6566;6559:12;6521:52;6608:9;6595:23;6627:31;6652:5;6627:31;:::i;:::-;6677:5;-1:-1:-1;6734:2:1;6719:18;;6706:32;-1:-1:-1;;;;;6769:40:1;;6757:53;;6747:81;;6824:1;6821;6814:12;6747:81;6847:7;6837:17;;;6425:435;;;;;:::o;6865:416::-;6930:6;6938;6991:2;6979:9;6970:7;6966:23;6962:32;6959:52;;;7007:1;7004;6997:12;6959:52;7046:9;7033:23;7065:31;7090:5;7065:31;:::i;:::-;7115:5;-1:-1:-1;7172:2:1;7157:18;;7144:32;7214:15;;7207:23;7195:36;;7185:64;;7245:1;7242;7235:12;7286:795;7381:6;7389;7397;7405;7458:3;7446:9;7437:7;7433:23;7429:33;7426:53;;;7475:1;7472;7465:12;7426:53;7514:9;7501:23;7533:31;7558:5;7533:31;:::i;:::-;7583:5;-1:-1:-1;7640:2:1;7625:18;;7612:32;7653:33;7612:32;7653:33;:::i;:::-;7705:7;-1:-1:-1;7759:2:1;7744:18;;7731:32;;-1:-1:-1;7814:2:1;7799:18;;7786:32;7841:18;7830:30;;7827:50;;;7873:1;7870;7863:12;7827:50;7896:22;;7949:4;7941:13;;7937:27;-1:-1:-1;7927:55:1;;7978:1;7975;7968:12;7927:55;8001:74;8067:7;8062:2;8049:16;8044:2;8040;8036:11;8001:74;:::i;:::-;7991:84;;;7286:795;;;;;;;:::o;8086:388::-;8154:6;8162;8215:2;8203:9;8194:7;8190:23;8186:32;8183:52;;;8231:1;8228;8221:12;8183:52;8270:9;8257:23;8289:31;8314:5;8289:31;:::i;:::-;8339:5;-1:-1:-1;8396:2:1;8381:18;;8368:32;8409:33;8368:32;8409:33;:::i;8479:891::-;8563:6;8594:2;8637;8625:9;8616:7;8612:23;8608:32;8605:52;;;8653:1;8650;8643:12;8605:52;8693:9;8680:23;8726:18;8718:6;8715:30;8712:50;;;8758:1;8755;8748:12;8712:50;8781:22;;8834:4;8826:13;;8822:27;-1:-1:-1;8812:55:1;;8863:1;8860;8853:12;8812:55;8899:2;8886:16;8922:60;8938:43;8978:2;8938:43;:::i;8922:60::-;9016:15;;;9098:1;9094:10;;;;9086:19;;9082:28;;;9047:12;;;;9122:19;;;9119:39;;;9154:1;9151;9144:12;9119:39;9178:11;;;;9198:142;9214:6;9209:3;9206:15;9198:142;;;9280:17;;9268:30;;9231:12;;;;9318;;;;9198:142;;;9359:5;8479:891;-1:-1:-1;;;;;;;8479:891:1:o;9375:380::-;9454:1;9450:12;;;;9497;;;9518:61;;9572:4;9564:6;9560:17;9550:27;;9518:61;9625:2;9617:6;9614:14;9594:18;9591:38;9588:161;;9671:10;9666:3;9662:20;9659:1;9652:31;9706:4;9703:1;9696:15;9734:4;9731:1;9724:15;9588:161;;9375:380;;;:::o;9760:127::-;9821:10;9816:3;9812:20;9809:1;9802:31;9852:4;9849:1;9842:15;9876:4;9873:1;9866:15;9892:168;9965:9;;;9996;;10013:15;;;10007:22;;9993:37;9983:71;;10034:18;;:::i;10065:127::-;10126:10;10121:3;10117:20;10114:1;10107:31;10157:4;10154:1;10147:15;10181:4;10178:1;10171:15;10197:120;10237:1;10263;10253:35;;10268:18;;:::i;:::-;-1:-1:-1;10302:9:1;;10197:120::o;10448:518::-;10550:2;10545:3;10542:11;10539:421;;;10586:5;10583:1;10576:16;10630:4;10627:1;10617:18;10700:2;10688:10;10684:19;10681:1;10677:27;10671:4;10667:38;10736:4;10724:10;10721:20;10718:47;;;-1:-1:-1;10759:4:1;10718:47;10814:2;10809:3;10805:12;10802:1;10798:20;10792:4;10788:31;10778:41;;10869:81;10887:2;10880:5;10877:13;10869:81;;;10946:1;10932:16;;10913:1;10902:13;10869:81;;11142:1345;11268:3;11262:10;11295:18;11287:6;11284:30;11281:56;;;11317:18;;:::i;:::-;11346:97;11436:6;11396:38;11428:4;11422:11;11396:38;:::i;:::-;11390:4;11346:97;:::i;:::-;11498:4;;11555:2;11544:14;;11572:1;11567:663;;;;12274:1;12291:6;12288:89;;;-1:-1:-1;12343:19:1;;;12337:26;12288:89;-1:-1:-1;;11099:1:1;11095:11;;;11091:24;11087:29;11077:40;11123:1;11119:11;;;11074:57;12390:81;;11537:944;;11567:663;10395:1;10388:14;;;10432:4;10419:18;;-1:-1:-1;;11603:20:1;;;11721:236;11735:7;11732:1;11729:14;11721:236;;;11824:19;;;11818:26;11803:42;;11916:27;;;;11884:1;11872:14;;;;11751:19;;11721:236;;;11725:3;11985:6;11976:7;11973:19;11970:201;;;12046:19;;;12040:26;-1:-1:-1;;12129:1:1;12125:14;;;12141:3;12121:24;12117:37;12113:42;12098:58;12083:74;;11970:201;;;12217:1;12208:6;12205:1;12201:14;12197:22;12191:4;12184:36;11537:944;;;;;11142:1345;;:::o;13568:723::-;13618:3;13659:5;13653:12;13688:36;13714:9;13688:36;:::i;:::-;13743:1;13760:17;;;13786:133;;;;13933:1;13928:357;;;;13753:532;;13786:133;-1:-1:-1;;13819:24:1;;13807:37;;13892:14;;13885:22;13873:35;;13864:45;;;-1:-1:-1;13786:133:1;;13928:357;13959:5;13956:1;13949:16;13988:4;14033;14030:1;14020:18;14060:1;14074:165;14088:6;14085:1;14082:13;14074:165;;;14166:14;;14153:11;;;14146:35;14209:16;;;;14103:10;;14074:165;;;14078:3;;;14268:6;14263:3;14259:16;14252:23;;13753:532;;;;;13568:723;;;;:::o;14296:469::-;14517:3;14545:38;14579:3;14571:6;14545:38;:::i;:::-;14612:6;14606:13;14628:65;14686:6;14682:2;14675:4;14667:6;14663:17;14628:65;:::i;:::-;14709:50;14751:6;14747:2;14743:15;14735:6;14709:50;:::i;15177:127::-;15238:10;15233:3;15229:20;15226:1;15219:31;15269:4;15266:1;15259:15;15293:4;15290:1;15283:15;15309:251;15379:6;15432:2;15420:9;15411:7;15407:23;15403:32;15400:52;;;15448:1;15445;15438:12;15400:52;15480:9;15474:16;15499:31;15524:5;15499:31;:::i;15565:136::-;15604:3;15632:5;15622:39;;15641:18;;:::i;:::-;-1:-1:-1;;;15677:18:1;;15565:136::o;16243:489::-;-1:-1:-1;;;;;16512:15:1;;;16494:34;;16564:15;;16559:2;16544:18;;16537:43;16611:2;16596:18;;16589:34;;;16659:3;16654:2;16639:18;;16632:31;;;16437:4;;16680:46;;16706:19;;16698:6;16680:46;:::i;:::-;16672:54;16243:489;-1:-1:-1;;;;;;16243:489:1:o;16737:249::-;16806:6;16859:2;16847:9;16838:7;16834:23;16830:32;16827:52;;;16875:1;16872;16865:12;16827:52;16907:9;16901:16;16926:30;16950:5;16926:30;:::i;16991:135::-;17030:3;17051:17;;;17048:43;;17071:18;;:::i;:::-;-1:-1:-1;17118:1:1;17107:13;;16991:135::o;17131:128::-;17198:9;;;17219:11;;;17216:37;;;17233:18;;:::i;17264:112::-;17296:1;17322;17312:35;;17327:18;;:::i;:::-;-1:-1:-1;17361:9:1;;17264:112::o;17381:125::-;17446:9;;;17467:10;;;17464:36;;;17480:18;;:::i

Swarm Source

ipfs://1042281fd6dbbebebfeada4225b1a3aee6de9050c3d123dc89e640d1f9230499
Loading...
Loading
Loading...
Loading
[ 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.