ETH Price: $3,459.48 (-1.35%)
Gas: 4 Gwei

Token

Archemist (ARC)
 

Overview

Max Total Supply

1,666 ARC

Holders

644

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ARC
0x6b3b5eEe8a7096110E8Cb63Be91bD6F37Ad3b219
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

ARCHΞM is an art-and-innovation based NFT project building a new world: The Tower of Archem.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Archemist

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-17
*/

// File: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of 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 through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

    /**
     * @dev 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 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.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        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;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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 {
        _mint(to, quantity);

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

    /**
     * @dev 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `_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) = _getApprovedAddress(tokenId);

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

// File: contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *   - `extraData` = `0`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *   - `extraData` = `<Extra data when token was burned>`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     *   - `extraData` = `<Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/Archemist.sol

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

//@author Zuka Archem






contract Archemist is ERC721AQueryable, ReentrancyGuard, Ownable {
    using Strings for uint256;

    uint public saleStartTime = 1666281600;
    bool public publicSaleActive;
    bool public whitelistSaleActive;

    uint public constant MAX_SUPPLY = 1666;
    uint private constant RESERVED_SUPPLY = 100;
    uint public constant MAX_WL_PER_WALLET = 3;
    uint public constant MAX_PUBLIC_PER_WALLET = 4;
    uint private constant PUBLIC_PRICE = 0.03 ether;
    uint private constant WL_PRICE = 0.02 ether;

    bytes32 private root;
    string private baseURI = "ipfs://QmUCjziHBdf5eCFUYfm2HQySL8Q1WcJmD2Wy9kymjVKtjW/";
    uint256 private reserveMinted = 0;
    
    constructor(
        string memory _name, 
        string memory _symbol 
    ) ERC721A(_name, _symbol){

    }

    function getPrice(address account, bytes32[] calldata proof) external view returns (uint256){
        if (_isWhitelisted(account, proof) && whitelistSaleActive) return WL_PRICE;
        else return PUBLIC_PRICE;
    }

    function mint(
        address account, 
        bytes32[] calldata proof, 
        uint _quantity
    ) 
        external
        payable 
        callerIsUser 
    {
        
        require(whitelistSaleActive || publicSaleActive,"Mint not allowed.");

        uint256 price = PUBLIC_PRICE;
        if (whitelistSaleActive){
            require(_isWhitelisted(account, proof), "Not in the whitelist.");
            if(_numberMinted(account)+_quantity > MAX_WL_PER_WALLET) revert("Whitelist mint amount exceeded for this wallet.");
            price = WL_PRICE;
        } else {
            if(_numberMinted(account)+_quantity > MAX_PUBLIC_PER_WALLET) revert("Mint amount exceeded for this wallet.");
        }

        if (totalSupply() + _quantity > MAX_SUPPLY) revert("Not enough NFT remaining for this collection.");

        if (msg.value < _quantity*price) revert("Not enough funds.");

        _mint(account, _quantity);
    }

    function airDrop(address[] memory targets, uint _quantity) external onlyOwner {
        if ((targets.length * _quantity) + reserveMinted > RESERVED_SUPPLY) revert("Exceeding max reserved supply.");

        reserveMinted += (targets.length * _quantity);

        for (uint256 i = 0; i < targets.length; i++) {
            _mint(targets[i], _quantity);
        }
    }

    function setSaleStartTime(uint _startTime) external onlyOwner {
        saleStartTime = _startTime;
    }

    function updatePhases(bool _wlSaleActive, bool _publicSaleActive) external onlyOwner {
        whitelistSaleActive = _wlSaleActive;
        publicSaleActive = _publicSaleActive;
    }

    function setBaseURI(string calldata _newURI) external onlyOwner {
        baseURI = _newURI;
    }

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

    // Withdrawal function
    function withdraw() external payable onlyOwner nonReentrant{
        payable(msg.sender).transfer(address(this).balance);
    }

    modifier callerIsUser(){
        require(tx.origin == msg.sender,"Caller is another contract");
        _;
    }
    
    // Whitelisting features
    function _isWhitelisted(address account, bytes32[] calldata proof) internal view returns(bool){
        return MerkleProof.verify(proof, root, _leaf(account));
    }

    function _leaf(address account) internal pure returns(bytes32){
        return keccak256(abi.encodePacked(account));
    }
    
    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        root = _merkleRoot;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"MAX_PUBLIC_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"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":"account","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"setSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_wlSaleActive","type":"bool"},{"internalType":"bool","name":"_publicSaleActive","type":"bool"}],"name":"updatePhases","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6363517080600a5560e060405260366080818152906200265f60a03980516200003191600d9160209091019062000107565b506000600e553480156200004457600080fd5b50604051620026953803806200269583398101604081905262000067916200027a565b8151829082906200008090600290602085019062000107565b5080516200009690600390602084019062000107565b506000805550506001600855620000ad33620000b5565b505062000321565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011590620002e4565b90600052602060002090601f01602090048101928262000139576000855562000184565b82601f106200015457805160ff191683800117855562000184565b8280016001018555821562000184579182015b828111156200018457825182559160200191906001019062000167565b506200019292915062000196565b5090565b5b8082111562000192576000815560010162000197565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001d557600080fd5b81516001600160401b0380821115620001f257620001f2620001ad565b604051601f8301601f19908116603f011681019082821181831017156200021d576200021d620001ad565b816040528381526020925086838588010111156200023a57600080fd5b600091505b838210156200025e57858201830151818301840152908201906200023f565b83821115620002705760008385830101525b9695505050505050565b600080604083850312156200028e57600080fd5b82516001600160401b0380821115620002a657600080fd5b620002b486838701620001c3565b93506020850151915080821115620002cb57600080fd5b50620002da85828601620001c3565b9150509250929050565b600181811c90821680620002f957607f821691505b602082108114156200031b57634e487b7160e01b600052602260045260246000fd5b50919050565b61232e80620003316000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a2dd9d87116100a0578063c87b56dd1161006f578063c87b56dd146105b6578063d74b3676146105d6578063e985e9c5146105f6578063f2fde38b14610616578063fd1fc4a01461063657600080fd5b8063a2dd9d871461053c578063b88d4fde1461054f578063bc8893b41461056f578063c23dc68f1461058957600080fd5b80638462151c116100e75780638462151c1461049c5780638da5cb5b146104c957806395d89b41146104e757806399a2557a146104fc578063a22cb4651461051c57600080fd5b8063715018a61461043257806371c5b42614610447578063737b1b4a1461045c5780637cb647591461047c57600080fd5b80633ad7f56c1161019b578063525f8a5c1161016a578063525f8a5c1461038557806355f804b3146103a55780635bbb2177146103c55780636352211e146103f257806370a082311461041257600080fd5b80633ad7f56c146103295780633ccfd60b1461034857806342842e0e146103505780634e26d1af1461037057600080fd5b806318160ddd116101d757806318160ddd146102ba5780631cbaee2d146102dd57806323b872dd146102f357806332cb6b0c1461031357600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611b37565b610656565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106a8565b6040516102359190611bac565b34801561026c57600080fd5b5061028061027b366004611bbf565b61073a565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611bf4565b61077e565b005b3480156102c657600080fd5b50600154600054035b604051908152602001610235565b3480156102e957600080fd5b506102cf600a5481565b3480156102ff57600080fd5b506102b861030e366004611c1e565b61081e565b34801561031f57600080fd5b506102cf61068281565b34801561033557600080fd5b50600b5461022990610100900460ff1681565b6102b86109af565b34801561035c57600080fd5b506102b861036b366004611c1e565b610a48565b34801561037c57600080fd5b506102cf600481565b34801561039157600080fd5b506102b86103a0366004611bbf565b610a68565b3480156103b157600080fd5b506102b86103c0366004611c5a565b610a75565b3480156103d157600080fd5b506103e56103e0366004611d34565b610a89565b6040516102359190611e05565b3480156103fe57600080fd5b5061028061040d366004611bbf565b610b56565b34801561041e57600080fd5b506102cf61042d366004611e47565b610b61565b34801561043e57600080fd5b506102b8610baf565b34801561045357600080fd5b506102cf600381565b34801561046857600080fd5b506102cf610477366004611ead565b610bc3565b34801561048857600080fd5b506102b8610497366004611bbf565b610c07565b3480156104a857600080fd5b506104bc6104b7366004611e47565b610c14565b6040516102359190611eff565b3480156104d557600080fd5b506009546001600160a01b0316610280565b3480156104f357600080fd5b50610253610d23565b34801561050857600080fd5b506104bc610517366004611f37565b610d32565b34801561052857600080fd5b506102b8610537366004611f7a565b610ead565b6102b861054a366004611fad565b610f43565b34801561055b57600080fd5b506102b861056a366004612006565b611271565b34801561057b57600080fd5b50600b546102299060ff1681565b34801561059557600080fd5b506105a96105a4366004611bbf565b6112bb565b60405161023591906120c5565b3480156105c257600080fd5b506102536105d1366004611bbf565b611333565b3480156105e257600080fd5b506102b86105f13660046120d3565b6113b7565b34801561060257600080fd5b506102296106113660046120ef565b6113e2565b34801561062257600080fd5b506102b8610631366004611e47565b611410565b34801561064257600080fd5b506102b8610651366004612119565b611489565b60006301ffc9a760e01b6001600160e01b03198316148061068757506380ac58cd60e01b6001600160e01b03198316145b806106a25750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106b7906121b6565b80601f01602080910402602001604051908101604052809291908181526020018280546106e3906121b6565b80156107305780601f1061070557610100808354040283529160200191610730565b820191906000526020600020905b81548152906001019060200180831161071357829003601f168201915b5050505050905090565b600061074582611560565b610762576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061078982610b56565b9050336001600160a01b038216146107c2576107a581336113e2565b6107c2576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061082982611587565b9050836001600160a01b0316816001600160a01b03161461085c5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108a95761088c86336113e2565b6108a957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108d057604051633a954ecd60e21b815260040160405180910390fd5b80156108db57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661096657600184016000818152600460205260409020546109645760005481146109645760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6109b76115e8565b60026008541415610a0f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260085560405133904780156108fc02916000818181858888f19350505050158015610a40573d6000803e3d6000fd5b506001600855565b610a6383838360405180602001604052806000815250611271565b505050565b610a706115e8565b600a55565b610a7d6115e8565b610a63600d8383611a88565b80516060906000816001600160401b03811115610aa857610aa8611ccb565b604051908082528060200260200182016040528015610afa57816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610ac65790505b50905060005b828114610b4e57610b29858281518110610b1c57610b1c6121f1565b60200260200101516112bb565b828281518110610b3b57610b3b6121f1565b6020908102919091010152600101610b00565b509392505050565b60006106a282611587565b60006001600160a01b038216610b8a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610bb76115e8565b610bc16000611642565b565b6000610bd0848484611694565b8015610be35750600b54610100900460ff165b15610bf6575066470de4df820000610c00565b50666a94d74f4300005b9392505050565b610c0f6115e8565b600c55565b60606000806000610c2485610b61565b90506000816001600160401b03811115610c4057610c40611ccb565b604051908082528060200260200182016040528015610c69578160200160208202803683370190505b509050610c9660408051608081018252600080825260208201819052918101829052606081019190915290565b60005b838614610d1757610ca981611717565b9150816040015115610cba57610d0f565b81516001600160a01b031615610ccf57815194505b876001600160a01b0316856001600160a01b03161415610d0f5780838780600101985081518110610d0257610d026121f1565b6020026020010181815250505b600101610c99565b50909695505050505050565b6060600380546106b7906121b6565b6060818310610d5457604051631960ccad60e11b815260040160405180910390fd5b600080610d6060005490565b905080841115610d6e578093505b6000610d7987610b61565b905084861015610d985785850381811015610d92578091505b50610d9c565b5060005b6000816001600160401b03811115610db657610db6611ccb565b604051908082528060200260200182016040528015610ddf578160200160208202803683370190505b50905081610df2579350610c0092505050565b6000610dfd886112bb565b905060008160400151610e0e575080515b885b888114158015610e205750848714155b15610e9c57610e2e81611717565b9250826040015115610e3f57610e94565b82516001600160a01b031615610e5457825191505b8a6001600160a01b0316826001600160a01b03161415610e945780848880600101995081518110610e8757610e876121f1565b6020026020010181815250505b600101610e10565b505050928352509095945050505050565b6001600160a01b038216331415610ed75760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b323314610f925760405162461bcd60e51b815260206004820152601a60248201527f43616c6c657220697320616e6f7468657220636f6e74726163740000000000006044820152606401610a06565b600b54610100900460ff1680610faa5750600b5460ff165b610fea5760405162461bcd60e51b815260206004820152601160248201527026b4b73a103737ba1030b63637bbb2b21760791b6044820152606401610a06565b600b54666a94d74f43000090610100900460ff16156110ff5761100e858585611694565b6110525760405162461bcd60e51b81526020600482015260156024820152742737ba1034b7103a3432903bb434ba32b634b9ba1760591b6044820152606401610a06565b600382611081876001600160a01b03166000908152600560205260409081902054901c6001600160401b031690565b61108b919061221d565b11156110f15760405162461bcd60e51b815260206004820152602f60248201527f57686974656c697374206d696e7420616d6f756e74206578636565646564206660448201526e37b9103a3434b9903bb0b63632ba1760891b6064820152608401610a06565b5066470de4df820000611194565b60048261112e876001600160a01b03166000908152600560205260409081902054901c6001600160401b031690565b611138919061221d565b11156111945760405162461bcd60e51b815260206004820152602560248201527f4d696e7420616d6f756e7420657863656564656420666f722074686973207761604482015264363632ba1760d91b6064820152608401610a06565b610682826111a56001546000540390565b6111af919061221d565b11156112135760405162461bcd60e51b815260206004820152602d60248201527f4e6f7420656e6f756768204e46542072656d61696e696e6720666f722074686960448201526c399031b7b63632b1ba34b7b71760991b6064820152608401610a06565b61121d8183612235565b3410156112605760405162461bcd60e51b81526020600482015260116024820152702737ba1032b737bab3b410333ab732399760791b6044820152606401610a06565b61126a8583611753565b5050505050565b61127c84848461081e565b6001600160a01b0383163b156112b55761129884848484611830565b6112b5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516080808201835260008083526020808401829052838501829052606080850183905285519384018652828452908301829052938201819052928101839052909150600054831061130f5792915050565b61131883611717565b905080604001511561132a5792915050565b610c0083611927565b606061133e82611560565b61135b57604051630a14c4b560e41b815260040160405180910390fd5b600061136561195c565b90508051600014156113865760405180602001604052806000815250610c00565b806113908461196b565b6040516020016113a1929190612254565b6040516020818303038152906040529392505050565b6113bf6115e8565b600b805461ffff19166101009315159390930260ff191692909217901515179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6114186115e8565b6001600160a01b03811661147d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a06565b61148681611642565b50565b6114916115e8565b6064600e548284516114a39190612235565b6114ad919061221d565b11156114fb5760405162461bcd60e51b815260206004820152601e60248201527f457863656564696e67206d617820726573657276656420737570706c792e00006044820152606401610a06565b8082516115089190612235565b600e6000828254611519919061221d565b90915550600090505b8251811015610a635761154e838281518110611540576115406121f1565b602002602001015183611753565b8061155881612283565b915050611522565b60008054821080156106a2575050600090815260046020526040902054600160e01b161590565b6000816000548110156115cf57600081815260046020526040902054600160e01b81166115cd575b80610c005750600019016000818152600460205260409020546115af565b505b604051636f96cda160e11b815260040160405180910390fd5b6009546001600160a01b03163314610bc15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a06565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061170f83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c546040805160608b901b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034909201909252805191012090925090506119ba565b949350505050565b6040805160808101825260008082526020820181905291810182905260608101919091526000828152600460205260409020546106a2906119d0565b6000546001600160a01b03831661177c57604051622e076360e81b815260040160405180910390fd5b8161179a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106117e45760005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061186590339089908890889060040161229e565b602060405180830381600087803b15801561187f57600080fd5b505af19250505080156118af575060408051601f3d908101601f191682019092526118ac918101906122db565b60015b61190a573d8080156118dd576040519150601f19603f3d011682016040523d82523d6000602084013e6118e2565b606091505b508051611902576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6040805160808101825260008082526020820181905291810182905260608101919091526106a261195783611587565b6119d0565b6060600d80546106b7906121b6565b604080516080810191829052607f0190826030600a8206018353600a90045b80156119a857600183039250600a81066030018353600a900461198a565b50819003601f19909101908152919050565b6000826119c78584611a17565b14949350505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b600081815b8451811015610b4e57611a4882868381518110611a3b57611a3b6121f1565b6020026020010151611a5c565b915080611a5481612283565b915050611a1c565b6000818310611a78576000828152602084905260409020610c00565b5060009182526020526040902090565b828054611a94906121b6565b90600052602060002090601f016020900481019282611ab65760008555611afc565b82601f10611acf5782800160ff19823516178555611afc565b82800160010185558215611afc579182015b82811115611afc578235825591602001919060010190611ae1565b50611b08929150611b0c565b5090565b5b80821115611b085760008155600101611b0d565b6001600160e01b03198116811461148657600080fd5b600060208284031215611b4957600080fd5b8135610c0081611b21565b60005b83811015611b6f578181015183820152602001611b57565b838111156112b55750506000910152565b60008151808452611b98816020860160208601611b54565b601f01601f19169290920160200192915050565b602081526000610c006020830184611b80565b600060208284031215611bd157600080fd5b5035919050565b80356001600160a01b0381168114611bef57600080fd5b919050565b60008060408385031215611c0757600080fd5b611c1083611bd8565b946020939093013593505050565b600080600060608486031215611c3357600080fd5b611c3c84611bd8565b9250611c4a60208501611bd8565b9150604084013590509250925092565b60008060208385031215611c6d57600080fd5b82356001600160401b0380821115611c8457600080fd5b818501915085601f830112611c9857600080fd5b813581811115611ca757600080fd5b866020828501011115611cb957600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611d0957611d09611ccb565b604052919050565b60006001600160401b03821115611d2a57611d2a611ccb565b5060051b60200190565b60006020808385031215611d4757600080fd5b82356001600160401b03811115611d5d57600080fd5b8301601f81018513611d6e57600080fd5b8035611d81611d7c82611d11565b611ce1565b81815260059190911b82018301908381019087831115611da057600080fd5b928401925b82841015611dbe57833582529284019290840190611da5565b979650505050505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610d1757611e34838551611dc9565b9284019260809290920191600101611e21565b600060208284031215611e5957600080fd5b610c0082611bd8565b60008083601f840112611e7457600080fd5b5081356001600160401b03811115611e8b57600080fd5b6020830191508360208260051b8501011115611ea657600080fd5b9250929050565b600080600060408486031215611ec257600080fd5b611ecb84611bd8565b925060208401356001600160401b03811115611ee657600080fd5b611ef286828701611e62565b9497909650939450505050565b6020808252825182820181905260009190848201906040850190845b81811015610d1757835183529284019291840191600101611f1b565b600080600060608486031215611f4c57600080fd5b611f5584611bd8565b95602085013595506040909401359392505050565b80358015158114611bef57600080fd5b60008060408385031215611f8d57600080fd5b611f9683611bd8565b9150611fa460208401611f6a565b90509250929050565b60008060008060608587031215611fc357600080fd5b611fcc85611bd8565b935060208501356001600160401b03811115611fe757600080fd5b611ff387828801611e62565b9598909750949560400135949350505050565b6000806000806080858703121561201c57600080fd5b61202585611bd8565b93506020612034818701611bd8565b93506040860135925060608601356001600160401b038082111561205757600080fd5b818801915088601f83011261206b57600080fd5b81358181111561207d5761207d611ccb565b61208f601f8201601f19168501611ce1565b915080825289848285010111156120a557600080fd5b808484018584013760008482840101525080935050505092959194509250565b608081016106a28284611dc9565b600080604083850312156120e657600080fd5b611f9683611f6a565b6000806040838503121561210257600080fd5b61210b83611bd8565b9150611fa460208401611bd8565b6000806040838503121561212c57600080fd5b82356001600160401b0381111561214257600080fd5b8301601f8101851361215357600080fd5b80356020612163611d7c83611d11565b82815260059290921b8301810191818101908884111561218257600080fd5b938201935b838510156121a75761219885611bd8565b82529382019390820190612187565b98969091013596505050505050565b600181811c908216806121ca57607f821691505b602082108114156121eb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111561223057612230612207565b500190565b600081600019048311821515161561224f5761224f612207565b500290565b60008351612266818460208801611b54565b83519083019061227a818360208801611b54565b01949350505050565b600060001982141561229757612297612207565b5060010190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122d190830184611b80565b9695505050505050565b6000602082840312156122ed57600080fd5b8151610c0081611b2156fea2646970667358221220278dbaf0451ccb9cf59e1d30d06b402ad27b5838053d2940ee82eaf86204dbb764736f6c63430008080033697066733a2f2f516d55436a7a6948426466356543465559666d32485179534c38513157634a6d44325779396b796d6a564b746a572f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000941726368656d697374000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034152430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063a2dd9d87116100a0578063c87b56dd1161006f578063c87b56dd146105b6578063d74b3676146105d6578063e985e9c5146105f6578063f2fde38b14610616578063fd1fc4a01461063657600080fd5b8063a2dd9d871461053c578063b88d4fde1461054f578063bc8893b41461056f578063c23dc68f1461058957600080fd5b80638462151c116100e75780638462151c1461049c5780638da5cb5b146104c957806395d89b41146104e757806399a2557a146104fc578063a22cb4651461051c57600080fd5b8063715018a61461043257806371c5b42614610447578063737b1b4a1461045c5780637cb647591461047c57600080fd5b80633ad7f56c1161019b578063525f8a5c1161016a578063525f8a5c1461038557806355f804b3146103a55780635bbb2177146103c55780636352211e146103f257806370a082311461041257600080fd5b80633ad7f56c146103295780633ccfd60b1461034857806342842e0e146103505780634e26d1af1461037057600080fd5b806318160ddd116101d757806318160ddd146102ba5780631cbaee2d146102dd57806323b872dd146102f357806332cb6b0c1461031357600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611b37565b610656565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106a8565b6040516102359190611bac565b34801561026c57600080fd5b5061028061027b366004611bbf565b61073a565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611bf4565b61077e565b005b3480156102c657600080fd5b50600154600054035b604051908152602001610235565b3480156102e957600080fd5b506102cf600a5481565b3480156102ff57600080fd5b506102b861030e366004611c1e565b61081e565b34801561031f57600080fd5b506102cf61068281565b34801561033557600080fd5b50600b5461022990610100900460ff1681565b6102b86109af565b34801561035c57600080fd5b506102b861036b366004611c1e565b610a48565b34801561037c57600080fd5b506102cf600481565b34801561039157600080fd5b506102b86103a0366004611bbf565b610a68565b3480156103b157600080fd5b506102b86103c0366004611c5a565b610a75565b3480156103d157600080fd5b506103e56103e0366004611d34565b610a89565b6040516102359190611e05565b3480156103fe57600080fd5b5061028061040d366004611bbf565b610b56565b34801561041e57600080fd5b506102cf61042d366004611e47565b610b61565b34801561043e57600080fd5b506102b8610baf565b34801561045357600080fd5b506102cf600381565b34801561046857600080fd5b506102cf610477366004611ead565b610bc3565b34801561048857600080fd5b506102b8610497366004611bbf565b610c07565b3480156104a857600080fd5b506104bc6104b7366004611e47565b610c14565b6040516102359190611eff565b3480156104d557600080fd5b506009546001600160a01b0316610280565b3480156104f357600080fd5b50610253610d23565b34801561050857600080fd5b506104bc610517366004611f37565b610d32565b34801561052857600080fd5b506102b8610537366004611f7a565b610ead565b6102b861054a366004611fad565b610f43565b34801561055b57600080fd5b506102b861056a366004612006565b611271565b34801561057b57600080fd5b50600b546102299060ff1681565b34801561059557600080fd5b506105a96105a4366004611bbf565b6112bb565b60405161023591906120c5565b3480156105c257600080fd5b506102536105d1366004611bbf565b611333565b3480156105e257600080fd5b506102b86105f13660046120d3565b6113b7565b34801561060257600080fd5b506102296106113660046120ef565b6113e2565b34801561062257600080fd5b506102b8610631366004611e47565b611410565b34801561064257600080fd5b506102b8610651366004612119565b611489565b60006301ffc9a760e01b6001600160e01b03198316148061068757506380ac58cd60e01b6001600160e01b03198316145b806106a25750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106b7906121b6565b80601f01602080910402602001604051908101604052809291908181526020018280546106e3906121b6565b80156107305780601f1061070557610100808354040283529160200191610730565b820191906000526020600020905b81548152906001019060200180831161071357829003601f168201915b5050505050905090565b600061074582611560565b610762576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061078982610b56565b9050336001600160a01b038216146107c2576107a581336113e2565b6107c2576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061082982611587565b9050836001600160a01b0316816001600160a01b03161461085c5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108a95761088c86336113e2565b6108a957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108d057604051633a954ecd60e21b815260040160405180910390fd5b80156108db57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661096657600184016000818152600460205260409020546109645760005481146109645760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6109b76115e8565b60026008541415610a0f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260085560405133904780156108fc02916000818181858888f19350505050158015610a40573d6000803e3d6000fd5b506001600855565b610a6383838360405180602001604052806000815250611271565b505050565b610a706115e8565b600a55565b610a7d6115e8565b610a63600d8383611a88565b80516060906000816001600160401b03811115610aa857610aa8611ccb565b604051908082528060200260200182016040528015610afa57816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610ac65790505b50905060005b828114610b4e57610b29858281518110610b1c57610b1c6121f1565b60200260200101516112bb565b828281518110610b3b57610b3b6121f1565b6020908102919091010152600101610b00565b509392505050565b60006106a282611587565b60006001600160a01b038216610b8a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610bb76115e8565b610bc16000611642565b565b6000610bd0848484611694565b8015610be35750600b54610100900460ff165b15610bf6575066470de4df820000610c00565b50666a94d74f4300005b9392505050565b610c0f6115e8565b600c55565b60606000806000610c2485610b61565b90506000816001600160401b03811115610c4057610c40611ccb565b604051908082528060200260200182016040528015610c69578160200160208202803683370190505b509050610c9660408051608081018252600080825260208201819052918101829052606081019190915290565b60005b838614610d1757610ca981611717565b9150816040015115610cba57610d0f565b81516001600160a01b031615610ccf57815194505b876001600160a01b0316856001600160a01b03161415610d0f5780838780600101985081518110610d0257610d026121f1565b6020026020010181815250505b600101610c99565b50909695505050505050565b6060600380546106b7906121b6565b6060818310610d5457604051631960ccad60e11b815260040160405180910390fd5b600080610d6060005490565b905080841115610d6e578093505b6000610d7987610b61565b905084861015610d985785850381811015610d92578091505b50610d9c565b5060005b6000816001600160401b03811115610db657610db6611ccb565b604051908082528060200260200182016040528015610ddf578160200160208202803683370190505b50905081610df2579350610c0092505050565b6000610dfd886112bb565b905060008160400151610e0e575080515b885b888114158015610e205750848714155b15610e9c57610e2e81611717565b9250826040015115610e3f57610e94565b82516001600160a01b031615610e5457825191505b8a6001600160a01b0316826001600160a01b03161415610e945780848880600101995081518110610e8757610e876121f1565b6020026020010181815250505b600101610e10565b505050928352509095945050505050565b6001600160a01b038216331415610ed75760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b323314610f925760405162461bcd60e51b815260206004820152601a60248201527f43616c6c657220697320616e6f7468657220636f6e74726163740000000000006044820152606401610a06565b600b54610100900460ff1680610faa5750600b5460ff165b610fea5760405162461bcd60e51b815260206004820152601160248201527026b4b73a103737ba1030b63637bbb2b21760791b6044820152606401610a06565b600b54666a94d74f43000090610100900460ff16156110ff5761100e858585611694565b6110525760405162461bcd60e51b81526020600482015260156024820152742737ba1034b7103a3432903bb434ba32b634b9ba1760591b6044820152606401610a06565b600382611081876001600160a01b03166000908152600560205260409081902054901c6001600160401b031690565b61108b919061221d565b11156110f15760405162461bcd60e51b815260206004820152602f60248201527f57686974656c697374206d696e7420616d6f756e74206578636565646564206660448201526e37b9103a3434b9903bb0b63632ba1760891b6064820152608401610a06565b5066470de4df820000611194565b60048261112e876001600160a01b03166000908152600560205260409081902054901c6001600160401b031690565b611138919061221d565b11156111945760405162461bcd60e51b815260206004820152602560248201527f4d696e7420616d6f756e7420657863656564656420666f722074686973207761604482015264363632ba1760d91b6064820152608401610a06565b610682826111a56001546000540390565b6111af919061221d565b11156112135760405162461bcd60e51b815260206004820152602d60248201527f4e6f7420656e6f756768204e46542072656d61696e696e6720666f722074686960448201526c399031b7b63632b1ba34b7b71760991b6064820152608401610a06565b61121d8183612235565b3410156112605760405162461bcd60e51b81526020600482015260116024820152702737ba1032b737bab3b410333ab732399760791b6044820152606401610a06565b61126a8583611753565b5050505050565b61127c84848461081e565b6001600160a01b0383163b156112b55761129884848484611830565b6112b5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516080808201835260008083526020808401829052838501829052606080850183905285519384018652828452908301829052938201819052928101839052909150600054831061130f5792915050565b61131883611717565b905080604001511561132a5792915050565b610c0083611927565b606061133e82611560565b61135b57604051630a14c4b560e41b815260040160405180910390fd5b600061136561195c565b90508051600014156113865760405180602001604052806000815250610c00565b806113908461196b565b6040516020016113a1929190612254565b6040516020818303038152906040529392505050565b6113bf6115e8565b600b805461ffff19166101009315159390930260ff191692909217901515179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6114186115e8565b6001600160a01b03811661147d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a06565b61148681611642565b50565b6114916115e8565b6064600e548284516114a39190612235565b6114ad919061221d565b11156114fb5760405162461bcd60e51b815260206004820152601e60248201527f457863656564696e67206d617820726573657276656420737570706c792e00006044820152606401610a06565b8082516115089190612235565b600e6000828254611519919061221d565b90915550600090505b8251811015610a635761154e838281518110611540576115406121f1565b602002602001015183611753565b8061155881612283565b915050611522565b60008054821080156106a2575050600090815260046020526040902054600160e01b161590565b6000816000548110156115cf57600081815260046020526040902054600160e01b81166115cd575b80610c005750600019016000818152600460205260409020546115af565b505b604051636f96cda160e11b815260040160405180910390fd5b6009546001600160a01b03163314610bc15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a06565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061170f83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c546040805160608b901b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034909201909252805191012090925090506119ba565b949350505050565b6040805160808101825260008082526020820181905291810182905260608101919091526000828152600460205260409020546106a2906119d0565b6000546001600160a01b03831661177c57604051622e076360e81b815260040160405180910390fd5b8161179a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106117e45760005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061186590339089908890889060040161229e565b602060405180830381600087803b15801561187f57600080fd5b505af19250505080156118af575060408051601f3d908101601f191682019092526118ac918101906122db565b60015b61190a573d8080156118dd576040519150601f19603f3d011682016040523d82523d6000602084013e6118e2565b606091505b508051611902576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6040805160808101825260008082526020820181905291810182905260608101919091526106a261195783611587565b6119d0565b6060600d80546106b7906121b6565b604080516080810191829052607f0190826030600a8206018353600a90045b80156119a857600183039250600a81066030018353600a900461198a565b50819003601f19909101908152919050565b6000826119c78584611a17565b14949350505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b600081815b8451811015610b4e57611a4882868381518110611a3b57611a3b6121f1565b6020026020010151611a5c565b915080611a5481612283565b915050611a1c565b6000818310611a78576000828152602084905260409020610c00565b5060009182526020526040902090565b828054611a94906121b6565b90600052602060002090601f016020900481019282611ab65760008555611afc565b82601f10611acf5782800160ff19823516178555611afc565b82800160010185558215611afc579182015b82811115611afc578235825591602001919060010190611ae1565b50611b08929150611b0c565b5090565b5b80821115611b085760008155600101611b0d565b6001600160e01b03198116811461148657600080fd5b600060208284031215611b4957600080fd5b8135610c0081611b21565b60005b83811015611b6f578181015183820152602001611b57565b838111156112b55750506000910152565b60008151808452611b98816020860160208601611b54565b601f01601f19169290920160200192915050565b602081526000610c006020830184611b80565b600060208284031215611bd157600080fd5b5035919050565b80356001600160a01b0381168114611bef57600080fd5b919050565b60008060408385031215611c0757600080fd5b611c1083611bd8565b946020939093013593505050565b600080600060608486031215611c3357600080fd5b611c3c84611bd8565b9250611c4a60208501611bd8565b9150604084013590509250925092565b60008060208385031215611c6d57600080fd5b82356001600160401b0380821115611c8457600080fd5b818501915085601f830112611c9857600080fd5b813581811115611ca757600080fd5b866020828501011115611cb957600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611d0957611d09611ccb565b604052919050565b60006001600160401b03821115611d2a57611d2a611ccb565b5060051b60200190565b60006020808385031215611d4757600080fd5b82356001600160401b03811115611d5d57600080fd5b8301601f81018513611d6e57600080fd5b8035611d81611d7c82611d11565b611ce1565b81815260059190911b82018301908381019087831115611da057600080fd5b928401925b82841015611dbe57833582529284019290840190611da5565b979650505050505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610d1757611e34838551611dc9565b9284019260809290920191600101611e21565b600060208284031215611e5957600080fd5b610c0082611bd8565b60008083601f840112611e7457600080fd5b5081356001600160401b03811115611e8b57600080fd5b6020830191508360208260051b8501011115611ea657600080fd5b9250929050565b600080600060408486031215611ec257600080fd5b611ecb84611bd8565b925060208401356001600160401b03811115611ee657600080fd5b611ef286828701611e62565b9497909650939450505050565b6020808252825182820181905260009190848201906040850190845b81811015610d1757835183529284019291840191600101611f1b565b600080600060608486031215611f4c57600080fd5b611f5584611bd8565b95602085013595506040909401359392505050565b80358015158114611bef57600080fd5b60008060408385031215611f8d57600080fd5b611f9683611bd8565b9150611fa460208401611f6a565b90509250929050565b60008060008060608587031215611fc357600080fd5b611fcc85611bd8565b935060208501356001600160401b03811115611fe757600080fd5b611ff387828801611e62565b9598909750949560400135949350505050565b6000806000806080858703121561201c57600080fd5b61202585611bd8565b93506020612034818701611bd8565b93506040860135925060608601356001600160401b038082111561205757600080fd5b818801915088601f83011261206b57600080fd5b81358181111561207d5761207d611ccb565b61208f601f8201601f19168501611ce1565b915080825289848285010111156120a557600080fd5b808484018584013760008482840101525080935050505092959194509250565b608081016106a28284611dc9565b600080604083850312156120e657600080fd5b611f9683611f6a565b6000806040838503121561210257600080fd5b61210b83611bd8565b9150611fa460208401611bd8565b6000806040838503121561212c57600080fd5b82356001600160401b0381111561214257600080fd5b8301601f8101851361215357600080fd5b80356020612163611d7c83611d11565b82815260059290921b8301810191818101908884111561218257600080fd5b938201935b838510156121a75761219885611bd8565b82529382019390820190612187565b98969091013596505050505050565b600181811c908216806121ca57607f821691505b602082108114156121eb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111561223057612230612207565b500190565b600081600019048311821515161561224f5761224f612207565b500290565b60008351612266818460208801611b54565b83519083019061227a818360208801611b54565b01949350505050565b600060001982141561229757612297612207565b5060010190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122d190830184611b80565b9695505050505050565b6000602082840312156122ed57600080fd5b8151610c0081611b2156fea2646970667358221220278dbaf0451ccb9cf59e1d30d06b402ad27b5838053d2940ee82eaf86204dbb764736f6c63430008080033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000941726368656d697374000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034152430000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Archemist
Arg [1] : _symbol (string): ARC

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 41726368656d6973740000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4152430000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

71201:3672:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14576:615;;;;;;;;;;-1:-1:-1;14576:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;14576:615:0;;;;;;;;20223:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22169:204::-;;;;;;;;;;-1:-1:-1;22169:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;22169:204:0;1528:203:1;21717:386:0;;;;;;;;;;-1:-1:-1;21717:386:0;;;;;:::i;:::-;;:::i;:::-;;13630:315;;;;;;;;;;-1:-1:-1;13896:12:0;;13683:7;13880:13;:28;13630:315;;;2319:25:1;;;2307:2;2292:18;13630:315:0;2173:177:1;71307:38:0;;;;;;;;;;;;;;;;31434:2800;;;;;;;;;;-1:-1:-1;31434:2800:0;;;;;:::i;:::-;;:::i;71427:38::-;;;;;;;;;;;;71461:4;71427:38;;71387:31;;;;;;;;;;-1:-1:-1;71387:31:0;;;;;;;;;;;74165:129;;;:::i;23059:185::-;;;;;;;;;;-1:-1:-1;23059:185:0;;;;;:::i;:::-;;:::i;71571:46::-;;;;;;;;;;;;71616:1;71571:46;;73595:107;;;;;;;;;;-1:-1:-1;73595:107:0;;;;;:::i;:::-;;:::i;73904:100::-;;;;;;;;;;-1:-1:-1;73904:100:0;;;;;:::i;:::-;;:::i;48786:468::-;;;;;;;;;;-1:-1:-1;48786:468:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;20012:144::-;;;;;;;;;;-1:-1:-1;20012:144:0;;;;;:::i;:::-;;:::i;15255:224::-;;;;;;;;;;-1:-1:-1;15255:224:0;;;;;:::i;:::-;;:::i;70254:103::-;;;;;;;;;;;;;:::i;71522:42::-;;;;;;;;;;;;71563:1;71522:42;;72015:220;;;;;;;;;;-1:-1:-1;72015:220:0;;;;;:::i;:::-;;:::i;74770:100::-;;;;;;;;;;-1:-1:-1;74770:100:0;;;;;:::i;:::-;;:::i;52598:892::-;;;;;;;;;;-1:-1:-1;52598:892:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;69606:87::-;;;;;;;;;;-1:-1:-1;69679:6:0;;-1:-1:-1;;;;;69679:6:0;69606:87;;20392:104;;;;;;;;;;;;;:::i;49644:2505::-;;;;;;;;;;-1:-1:-1;49644:2505:0;;;;;:::i;:::-;;:::i;22445:308::-;;;;;;;;;;-1:-1:-1;22445:308:0;;;;;:::i;:::-;;:::i;72243:961::-;;;;;;:::i;:::-;;:::i;23315:399::-;;;;;;;;;;-1:-1:-1;23315:399:0;;;;;:::i;:::-;;:::i;71352:28::-;;;;;;;;;;-1:-1:-1;71352:28:0;;;;;;;;48207:420;;;;;;;;;;-1:-1:-1;48207:420:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;20567:318::-;;;;;;;;;;-1:-1:-1;20567:318:0;;;;;:::i;:::-;;:::i;73710:186::-;;;;;;;;;;-1:-1:-1;73710:186:0;;;;;:::i;:::-;;:::i;22824:164::-;;;;;;;;;;-1:-1:-1;22824:164:0;;;;;:::i;:::-;;:::i;70512:201::-;;;;;;;;;;-1:-1:-1;70512:201:0;;;;;:::i;:::-;;:::i;73212:375::-;;;;;;;;;;-1:-1:-1;73212:375:0;;;;;:::i;:::-;;:::i;14576:615::-;14661:4;-1:-1:-1;;;;;;;;;14961:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15038:25:0;;;14961:102;:179;;;-1:-1:-1;;;;;;;;;;15115:25:0;;;14961:179;14941:199;14576:615;-1:-1:-1;;14576:615:0:o;20223:100::-;20277:13;20310:5;20303:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20223:100;:::o;22169:204::-;22237:7;22262:16;22270:7;22262;:16::i;:::-;22257:64;;22287:34;;-1:-1:-1;;;22287:34:0;;;;;;;;;;;22257:64;-1:-1:-1;22341:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22341:24:0;;22169:204::o;21717:386::-;21790:13;21806:16;21814:7;21806;:16::i;:::-;21790:32;-1:-1:-1;42617:10:0;-1:-1:-1;;;;;21839:28:0;;;21835:175;;21887:44;21904:5;42617:10;22824:164;:::i;21887:44::-;21882:128;;21959:35;;-1:-1:-1;;;21959:35:0;;;;;;;;;;;21882:128;22022:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22022:29:0;-1:-1:-1;;;;;22022:29:0;;;;;;;;;22067:28;;22022:24;;22067:28;;;;;;;21779:324;21717:386;;:::o;31434:2800::-;31568:27;31598;31617:7;31598:18;:27::i;:::-;31568:57;;31683:4;-1:-1:-1;;;;;31642:45:0;31658:19;-1:-1:-1;;;;;31642:45:0;;31638:86;;31696:28;;-1:-1:-1;;;31696:28:0;;;;;;;;;;;31638:86;31738:27;30164:21;;;29991:15;30206:4;30199:36;30288:4;30272:21;;30378:26;;42617:10;31131:30;;;-1:-1:-1;;;;;30829:26:0;;31110:19;;;31107:55;31917:174;;32004:43;32021:4;42617:10;22824:164;:::i;32004:43::-;31999:92;;32056:35;;-1:-1:-1;;;32056:35:0;;;;;;;;;;;31999:92;-1:-1:-1;;;;;32108:16:0;;32104:52;;32133:23;;-1:-1:-1;;;32133:23:0;;;;;;;;;;;32104:52;32305:15;32302:160;;;32445:1;32424:19;32417:30;32302:160;-1:-1:-1;;;;;32840:24:0;;;;;;;:18;:24;;;;;;32838:26;;-1:-1:-1;;32838:26:0;;;32909:22;;;;;;;;;32907:24;;-1:-1:-1;32907:24:0;;;19911:11;19887:22;19883:40;19870:62;-1:-1:-1;;;19870:62:0;33202:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;33496:46:0;;33492:626;;33600:1;33590:11;;33568:19;33723:30;;;:17;:30;;;;;;33719:384;;33861:13;;33846:11;:28;33842:242;;34008:30;;;;:17;:30;;;;;:52;;;33842:242;33549:569;33492:626;34165:7;34161:2;-1:-1:-1;;;;;34146:27:0;34155:4;-1:-1:-1;;;;;34146:27:0;;;;;;;;;;;31557:2677;;;31434:2800;;;:::o;74165:129::-;69492:13;:11;:13::i;:::-;55309:1:::1;55907:7;;:19;;55899:63;;;::::0;-1:-1:-1;;;55899:63:0;;12427:2:1;55899:63:0::1;::::0;::::1;12409:21:1::0;12466:2;12446:18;;;12439:30;12505:33;12485:18;;;12478:61;12556:18;;55899:63:0::1;;;;;;;;;55309:1;56040:7;:18:::0;74235:51:::2;::::0;74243:10:::2;::::0;74264:21:::2;74235:51:::0;::::2;;;::::0;::::2;::::0;;;74264:21;74243:10;74235:51;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;55265:1:0::1;56219:7;:22:::0;74165:129::o;23059:185::-;23197:39;23214:4;23220:2;23224:7;23197:39;;;;;;;;;;;;:16;:39::i;:::-;23059:185;;;:::o;73595:107::-;69492:13;:11;:13::i;:::-;73668::::1;:26:::0;73595:107::o;73904:100::-;69492:13;:11;:13::i;:::-;73979:17:::1;:7;73989::::0;;73979:17:::1;:::i;48786:468::-:0;48961:15;;48875:23;;48936:22;48961:15;-1:-1:-1;;;;;49028:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49028:36:0;;-1:-1:-1;;49028:36:0;;;;;;;;;;;;48991:73;;49084:9;49079:125;49100:14;49095:1;:19;49079:125;;49156:32;49176:8;49185:1;49176:11;;;;;;;;:::i;:::-;;;;;;;49156:19;:32::i;:::-;49140:10;49151:1;49140:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;49116:3;;49079:125;;;-1:-1:-1;49225:10:0;48786:468;-1:-1:-1;;;48786:468:0:o;20012:144::-;20076:7;20119:27;20138:7;20119:18;:27::i;15255:224::-;15319:7;-1:-1:-1;;;;;15343:19:0;;15339:60;;15371:28;;-1:-1:-1;;;15371:28:0;;;;;;;;;;;15339:60;-1:-1:-1;;;;;;15417:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;15417:54:0;;15255:224::o;70254:103::-;69492:13;:11;:13::i;:::-;70319:30:::1;70346:1;70319:18;:30::i;:::-;70254:103::o:0;72015:220::-;72099:7;72122:30;72137:7;72146:5;;72122:14;:30::i;:::-;:53;;;;-1:-1:-1;72156:19:0;;;;;;;72122:53;72118:109;;;-1:-1:-1;71711:10:0;72177:15;;72118:109;-1:-1:-1;71661:10:0;72118:109;72015:220;;;;;:::o;74770:100::-;69492:13;:11;:13::i;:::-;74844:4:::1;:18:::0;74770:100::o;52598:892::-;52668:16;52722:19;52756:25;52796:22;52821:16;52831:5;52821:9;:16::i;:::-;52796:41;;52852:25;52894:14;-1:-1:-1;;;;;52880:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52880:29:0;;52852:57;;52924:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52924:31:0;52975:9;52970:472;53019:14;53004:11;:29;52970:472;;53071:15;53084:1;53071:12;:15::i;:::-;53059:27;;53109:9;:16;;;53105:73;;;53150:8;;53105:73;53200:14;;-1:-1:-1;;;;;53200:28:0;;53196:111;;53273:14;;;-1:-1:-1;53196:111:0;53350:5;-1:-1:-1;;;;;53329:26:0;:17;-1:-1:-1;;;;;53329:26:0;;53325:102;;;53406:1;53380:8;53389:13;;;;;;53380:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;53325:102;53035:3;;52970:472;;;-1:-1:-1;53463:8:0;;52598:892;-1:-1:-1;;;;;;52598:892:0:o;20392:104::-;20448:13;20481:7;20474:14;;;;;:::i;49644:2505::-;49779:16;49846:4;49837:5;:13;49833:45;;49859:19;;-1:-1:-1;;;49859:19:0;;;;;;;;;;;49833:45;49893:19;49927:17;49947:14;13372:7;13399:13;;13325:95;49947:14;49927:34;-1:-1:-1;50198:9:0;50191:4;:16;50187:73;;;50235:9;50228:16;;50187:73;50274:25;50302:16;50312:5;50302:9;:16::i;:::-;50274:44;;50496:4;50488:5;:12;50484:278;;;50543:12;;;50578:31;;;50574:111;;;50654:11;50634:31;;50574:111;50502:198;50484:278;;;-1:-1:-1;50745:1:0;50484:278;50776:25;50818:17;-1:-1:-1;;;;;50804:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50804:32:0;-1:-1:-1;50776:60:0;-1:-1:-1;50855:22:0;50851:78;;50905:8;-1:-1:-1;50898:15:0;;-1:-1:-1;;;50898:15:0;50851:78;51073:31;51107:26;51127:5;51107:19;:26::i;:::-;51073:60;;51148:25;51393:9;:16;;;51388:92;;-1:-1:-1;51450:14:0;;51388:92;51511:5;51494:478;51523:4;51518:1;:9;;:45;;;;;51546:17;51531:11;:32;;51518:45;51494:478;;;51601:15;51614:1;51601:12;:15::i;:::-;51589:27;;51639:9;:16;;;51635:73;;;51680:8;;51635:73;51730:14;;-1:-1:-1;;;;;51730:28:0;;51726:111;;51803:14;;;-1:-1:-1;51726:111:0;51880:5;-1:-1:-1;;;;;51859:26:0;:17;-1:-1:-1;;;;;51859:26:0;;51855:102;;;51936:1;51910:8;51919:13;;;;;;51910:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;51855:102;51565:3;;51494:478;;;-1:-1:-1;;;52057:29:0;;;-1:-1:-1;52057:29:0;;49644:2505;-1:-1:-1;;;;;49644:2505:0:o;22445:308::-;-1:-1:-1;;;;;22544:31:0;;42617:10;22544:31;22540:61;;;22584:17;;-1:-1:-1;;;22584:17:0;;;;;;;;;;;22540:61;42617:10;22614:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22614:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22614:60:0;;;;;;;;;;22690:55;;540:41:1;;;22614:49:0;;42617:10;22690:55;;513:18:1;22690:55:0;;;;;;;22445:308;;:::o;72243:961::-;74344:9;74357:10;74344:23;74336:61;;;;-1:-1:-1;;;74336:61:0;;12919:2:1;74336:61:0;;;12901:21:1;12958:2;12938:18;;;12931:30;12997:28;12977:18;;;12970:56;13043:18;;74336:61:0;12717:350:1;74336:61:0;72446:19:::1;::::0;::::1;::::0;::::1;;;::::0;:39:::1;;-1:-1:-1::0;72469:16:0::1;::::0;::::1;;72446:39;72438:68;;;::::0;-1:-1:-1;;;72438:68:0;;13274:2:1;72438:68:0::1;::::0;::::1;13256:21:1::0;13313:2;13293:18;;;13286:30;-1:-1:-1;;;13332:18:1;;;13325:47;13389:18;;72438:68:0::1;13072:341:1::0;72438:68:0::1;72562:19;::::0;71661:10:::1;::::0;72562:19:::1;::::0;::::1;;;72558:416;;;72605:30;72620:7;72629:5;;72605:14;:30::i;:::-;72597:64;;;::::0;-1:-1:-1;;;72597:64:0;;13620:2:1;72597:64:0::1;::::0;::::1;13602:21:1::0;13659:2;13639:18;;;13632:30;-1:-1:-1;;;13678:18:1;;;13671:51;13739:18;;72597:64:0::1;13418:345:1::0;72597:64:0::1;71563:1;72702:9;72679:22;72693:7;-1:-1:-1::0;;;;;15650:25:0;15622:7;15650:25;;;:18;:25;;9947:2;15650:25;;;;;:49;;-1:-1:-1;;;;;15649:80:0;;15561:176;72679:22:::1;:32;;;;:::i;:::-;:52;72676:114;;;72733:57;::::0;-1:-1:-1;;;72733:57:0;;14235:2:1;72733:57:0::1;::::0;::::1;14217:21:1::0;14274:2;14254:18;;;14247:30;14313:34;14293:18;;;14286:62;-1:-1:-1;;;14364:18:1;;;14357:45;14419:19;;72733:57:0::1;14033:411:1::0;72676:114:0::1;-1:-1:-1::0;71711:10:0::1;72558:416;;;71616:1;72880:9;72857:22;72871:7;-1:-1:-1::0;;;;;15650:25:0;15622:7;15650:25;;;:18;:25;;9947:2;15650:25;;;;;:49;;-1:-1:-1;;;;;15649:80:0;;15561:176;72857:22:::1;:32;;;;:::i;:::-;:56;72854:108;;;72915:47;::::0;-1:-1:-1;;;72915:47:0;;14651:2:1;72915:47:0::1;::::0;::::1;14633:21:1::0;14690:2;14670:18;;;14663:30;14729:34;14709:18;;;14702:62;-1:-1:-1;;;14780:18:1;;;14773:35;14825:19;;72915:47:0::1;14449:401:1::0;72854:108:0::1;71461:4;73006:9;72990:13;13896:12:::0;;13683:7;13880:13;:28;;13630:315;72990:13:::1;:25;;;;:::i;:::-;:38;72986:99;;;73030:55;::::0;-1:-1:-1;;;73030:55:0;;15057:2:1;73030:55:0::1;::::0;::::1;15039:21:1::0;15096:2;15076:18;;;15069:30;15135:34;15115:18;;;15108:62;-1:-1:-1;;;15186:18:1;;;15179:43;15239:19;;73030:55:0::1;14855:409:1::0;72986:99:0::1;73114:15;73124:5:::0;73114:9;:15:::1;:::i;:::-;73102:9;:27;73098:60;;;73131:27;::::0;-1:-1:-1;;;73131:27:0;;15644:2:1;73131:27:0::1;::::0;::::1;15626:21:1::0;15683:2;15663:18;;;15656:30;-1:-1:-1;;;15702:18:1;;;15695:47;15759:18;;73131:27:0::1;15442:341:1::0;73098:60:0::1;73171:25;73177:7;73186:9;73171:5;:25::i;:::-;72417:787;72243:961:::0;;;;:::o;23315:399::-;23482:31;23495:4;23501:2;23505:7;23482:12;:31::i;:::-;-1:-1:-1;;;;;23528:14:0;;;:19;23524:183;;23567:56;23598:4;23604:2;23608:7;23617:5;23567:30;:56::i;:::-;23562:145;;23651:40;;-1:-1:-1;;;23651:40:0;;;;;;;;;;;23562:145;23315:399;;;;:::o;48207:420::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13372:7:0;13399:13;48392:7;:25;48359:103;;48441:9;48207:420;-1:-1:-1;;48207:420:0:o;48359:103::-;48484:21;48497:7;48484:12;:21::i;:::-;48472:33;;48520:9;:16;;;48516:65;;;48560:9;48207:420;-1:-1:-1;;48207:420:0:o;48516:65::-;48598:21;48611:7;48598:12;:21::i;20567:318::-;20640:13;20671:16;20679:7;20671;:16::i;:::-;20666:59;;20696:29;;-1:-1:-1;;;20696:29:0;;;;;;;;;;;20666:59;20738:21;20762:10;:8;:10::i;:::-;20738:34;;20796:7;20790:21;20815:1;20790:26;;:87;;;;;;;;;;;;;;;;;20843:7;20852:18;20862:7;20852:9;:18::i;:::-;20826:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20783:94;20567:318;-1:-1:-1;;;20567:318:0:o;73710:186::-;69492:13;:11;:13::i;:::-;73806:19:::1;:35:::0;;-1:-1:-1;;73852:36:0;73806:35:::1;::::0;::::1;;::::0;;;::::1;-1:-1:-1::0;;73852:36:0;;;;;;::::1;;;::::0;;73710:186::o;22824:164::-;-1:-1:-1;;;;;22945:25:0;;;22921:4;22945:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22824:164::o;70512:201::-;69492:13;:11;:13::i;:::-;-1:-1:-1;;;;;70601:22:0;::::1;70593:73;;;::::0;-1:-1:-1;;;70593:73:0;;16465:2:1;70593:73:0::1;::::0;::::1;16447:21:1::0;16504:2;16484:18;;;16477:30;16543:34;16523:18;;;16516:62;-1:-1:-1;;;16594:18:1;;;16587:36;16640:19;;70593:73:0::1;16263:402:1::0;70593:73:0::1;70677:28;70696:8;70677:18;:28::i;:::-;70512:201:::0;:::o;73212:375::-;69492:13;:11;:13::i;:::-;71512:3:::1;73336:13;;73323:9;73306:7;:14;:26;;;;:::i;:::-;73305:44;;;;:::i;:::-;:62;73301:108;;;73369:40;::::0;-1:-1:-1;;;73369:40:0;;16872:2:1;73369:40:0::1;::::0;::::1;16854:21:1::0;16911:2;16891:18;;;16884:30;16950:32;16930:18;;;16923:60;17000:18;;73369:40:0::1;16670:354:1::0;73301:108:0::1;73457:9;73440:7;:14;:26;;;;:::i;:::-;73422:13;;:45;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;73485:9:0::1;::::0;-1:-1:-1;73480:100:0::1;73504:7;:14;73500:1;:18;73480:100;;;73540:28;73546:7;73554:1;73546:10;;;;;;;;:::i;:::-;;;;;;;73558:9;73540:5;:28::i;:::-;73520:3:::0;::::1;::::0;::::1;:::i;:::-;;;;73480:100;;23969:273:::0;24026:4;24116:13;;24106:7;:23;24063:152;;;;-1:-1:-1;;24167:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24167:43:0;:48;;23969:273::o;16929:1129::-;16996:7;17031;17133:13;;17126:4;:20;17122:869;;;17171:14;17188:23;;;:17;:23;;;;;;-1:-1:-1;;;17277:23:0;;17273:699;;17796:113;17803:11;17796:113;;-1:-1:-1;;;17874:6:0;17856:25;;;;:17;:25;;;;;;17796:113;;17273:699;17148:843;17122:869;18019:31;;-1:-1:-1;;;18019:31:0;;;;;;;;;;;69771:132;69679:6;;-1:-1:-1;;;;;69679:6:0;42617:10;69835:23;69827:68;;;;-1:-1:-1;;;69827:68:0;;17371:2:1;69827:68:0;;;17353:21:1;;;17390:18;;;17383:30;17449:34;17429:18;;;17422:62;17501:18;;69827:68:0;17169:356:1;70873:191:0;70966:6;;;-1:-1:-1;;;;;70983:17:0;;;-1:-1:-1;;;;;;70983:17:0;;;;;;;71016:40;;70966:6;;;70983:17;70966:6;;71016:40;;70947:16;;71016:40;70936:128;70873:191;:::o;74459:167::-;74548:4;74571:47;74590:5;;74571:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;74597:4:0;;74724:25;;;18427:2:1;18423:15;;;-1:-1:-1;;18419:53:1;74724:25:0;;;;18407:66:1;;;;74724:25:0;;;;;;;;;18489:12:1;;;;74724:25:0;;;74714:36;;;;;74597:4;;-1:-1:-1;74714:36:0;-1:-1:-1;74571:18:0;:47::i;:::-;74564:54;74459:167;-1:-1:-1;;;;74459:167:0:o;18606:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18726:24:0;;;;:17;:24;;;;;;18707:44;;:18;:44::i;25800:1529::-;25865:20;25888:13;-1:-1:-1;;;;;25916:16:0;;25912:48;;25941:19;;-1:-1:-1;;;25941:19:0;;;;;;;;;;;25912:48;25975:13;25971:44;;25997:18;;-1:-1:-1;;;25997:18:0;;;;;;;;;;;25971:44;-1:-1:-1;;;;;26503:22:0;;;;;;:18;:22;;9947:2;26503:22;;:70;;26541:31;26529:44;;26503:70;;;19911:11;19887:22;19883:40;-1:-1:-1;21621:15:0;;21596:23;21592:45;19880:51;19870:62;26816:31;;;;:17;:31;;;;;:173;26834:12;27065:23;;;27103:101;27130:35;;27155:9;;;;;-1:-1:-1;;;;;27130:35:0;;;27147:1;;27130:35;;27147:1;;27130:35;27199:3;27189:7;:13;27103:101;;27220:13;:19;-1:-1:-1;23059:185:0;;;:::o;38185:716::-;38369:88;;-1:-1:-1;;;38369:88:0;;38348:4;;-1:-1:-1;;;;;38369:45:0;;;;;:88;;42617:10;;38436:4;;38442:7;;38451:5;;38369:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38369:88:0;;;;;;;;-1:-1:-1;;38369:88:0;;;;;;;;;;;;:::i;:::-;;;38365:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38652:13:0;;38648:235;;38698:40;;-1:-1:-1;;;38698:40:0;;;;;;;;;;;38648:235;38841:6;38835:13;38826:6;38822:2;38818:15;38811:38;38365:529;-1:-1:-1;;;;;;38528:64:0;-1:-1:-1;;;38528:64:0;;-1:-1:-1;38185:716:0;;;;;;:::o;19262:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19365:47:0;19384:27;19403:7;19384:18;:27::i;:::-;19365:18;:47::i;74012:117::-;74081:13;74114:7;74107:14;;;;;:::i;42741:1960::-;43210:4;43204:11;;43217:3;43200:21;;43295:17;;;;43991:11;;;43870:5;44123:2;44137;44127:13;;44119:22;43991:11;44106:36;44178:2;44168:13;;43762:697;44197:4;43762:697;;;44388:1;44383:3;44379:11;44372:18;;44439:2;44433:4;44429:13;44425:2;44421:22;44416:3;44408:36;44292:2;44282:13;;43762:697;;;-1:-1:-1;44489:13:0;;;-1:-1:-1;;44604:12:0;;;44664:19;;;44604:12;42741:1960;-1:-1:-1;42741:1960:0:o;57475:190::-;57600:4;57653;57624:25;57637:5;57644:4;57624:12;:25::i;:::-;:33;;57475:190;-1:-1:-1;;;;57475:190:0:o;18152:363::-;-1:-1:-1;;;;;;;;;;;;;18262:41:0;;;;10464:3;18348:32;;;-1:-1:-1;;;;;18314:67:0;-1:-1:-1;;;18314:67:0;-1:-1:-1;;;18411:23:0;;:28;;-1:-1:-1;;;18392:47:0;;;;10981:3;18479:27;;;;-1:-1:-1;;;18450:57:0;-1:-1:-1;18152:363:0:o;58342:296::-;58425:7;58468:4;58425:7;58483:118;58507:5;:12;58503:1;:16;58483:118;;;58556:33;58566:12;58580:5;58586:1;58580:8;;;;;;;;:::i;:::-;;;;;;;58556:9;:33::i;:::-;58541:48;-1:-1:-1;58521:3:0;;;;:::i;:::-;;;;58483:118;;64549:149;64612:7;64643:1;64639;:5;:51;;64774:13;64868:15;;;64904:4;64897:15;;;64951:4;64935:21;;64639:51;;;-1:-1:-1;64774:13:0;64868:15;;;64904:4;64897:15;64951:4;64935:21;;;64549:149::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;-1:-1:-1;;;;;2946:2:1;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:127::-;3346:10;3341:3;3337:20;3334:1;3327:31;3377:4;3374:1;3367:15;3401:4;3398:1;3391:15;3417:275;3488:2;3482:9;3553:2;3534:13;;-1:-1:-1;;3530:27:1;3518:40;;-1:-1:-1;;;;;3573:34:1;;3609:22;;;3570:62;3567:88;;;3635:18;;:::i;:::-;3671:2;3664:22;3417:275;;-1:-1:-1;3417:275:1:o;3697:183::-;3757:4;-1:-1:-1;;;;;3782:6:1;3779:30;3776:56;;;3812:18;;:::i;:::-;-1:-1:-1;3857:1:1;3853:14;3869:4;3849:25;;3697:183::o;3885:891::-;3969:6;4000:2;4043;4031:9;4022:7;4018:23;4014:32;4011:52;;;4059:1;4056;4049:12;4011:52;4099:9;4086:23;-1:-1:-1;;;;;4124:6:1;4121:30;4118:50;;;4164:1;4161;4154:12;4118:50;4187:22;;4240:4;4232:13;;4228:27;-1:-1:-1;4218:55:1;;4269:1;4266;4259:12;4218:55;4305:2;4292:16;4328:60;4344:43;4384:2;4344:43;:::i;:::-;4328:60;:::i;:::-;4422:15;;;4504:1;4500:10;;;;4492:19;;4488:28;;;4453:12;;;;4528:19;;;4525:39;;;4560:1;4557;4550:12;4525:39;4584:11;;;;4604:142;4620:6;4615:3;4612:15;4604:142;;;4686:17;;4674:30;;4637:12;;;;4724;;;;4604:142;;;4765:5;3885:891;-1:-1:-1;;;;;;;3885:891:1:o;4781:349::-;4865:12;;-1:-1:-1;;;;;4861:38:1;4849:51;;4953:4;4942:16;;;4936:23;-1:-1:-1;;;;;4932:48:1;4916:14;;;4909:72;5044:4;5033:16;;;5027:23;5020:31;5013:39;4997:14;;;4990:63;5106:4;5095:16;;;5089:23;5114:8;5085:38;5069:14;;5062:62;4781:349::o;5135:720::-;5366:2;5418:21;;;5488:13;;5391:18;;;5510:22;;;5337:4;;5366:2;5589:15;;;;5563:2;5548:18;;;5337:4;5632:197;5646:6;5643:1;5640:13;5632:197;;;5695:52;5743:3;5734:6;5728:13;5695:52;:::i;:::-;5804:15;;;;5776:4;5767:14;;;;;5668:1;5661:9;5632:197;;5860:186;5919:6;5972:2;5960:9;5951:7;5947:23;5943:32;5940:52;;;5988:1;5985;5978:12;5940:52;6011:29;6030:9;6011:29;:::i;6051:367::-;6114:8;6124:6;6178:3;6171:4;6163:6;6159:17;6155:27;6145:55;;6196:1;6193;6186:12;6145:55;-1:-1:-1;6219:20:1;;-1:-1:-1;;;;;6251:30:1;;6248:50;;;6294:1;6291;6284:12;6248:50;6331:4;6323:6;6319:17;6307:29;;6391:3;6384:4;6374:6;6371:1;6367:14;6359:6;6355:27;6351:38;6348:47;6345:67;;;6408:1;6405;6398:12;6345:67;6051:367;;;;;:::o;6423:511::-;6518:6;6526;6534;6587:2;6575:9;6566:7;6562:23;6558:32;6555:52;;;6603:1;6600;6593:12;6555:52;6626:29;6645:9;6626:29;:::i;:::-;6616:39;;6706:2;6695:9;6691:18;6678:32;-1:-1:-1;;;;;6725:6:1;6722:30;6719:50;;;6765:1;6762;6755:12;6719:50;6804:70;6866:7;6857:6;6846:9;6842:22;6804:70;:::i;:::-;6423:511;;6893:8;;-1:-1:-1;6778:96:1;;-1:-1:-1;;;;6423:511:1:o;7124:632::-;7295:2;7347:21;;;7417:13;;7320:18;;;7439:22;;;7266:4;;7295:2;7518:15;;;;7492:2;7477:18;;;7266:4;7561:169;7575:6;7572:1;7569:13;7561:169;;;7636:13;;7624:26;;7705:15;;;;7670:12;;;;7597:1;7590:9;7561:169;;7761:322;7838:6;7846;7854;7907:2;7895:9;7886:7;7882:23;7878:32;7875:52;;;7923:1;7920;7913:12;7875:52;7946:29;7965:9;7946:29;:::i;:::-;7936:39;8022:2;8007:18;;7994:32;;-1:-1:-1;8073:2:1;8058:18;;;8045:32;;7761:322;-1:-1:-1;;;7761:322:1:o;8088:160::-;8153:20;;8209:13;;8202:21;8192:32;;8182:60;;8238:1;8235;8228:12;8253:254;8318:6;8326;8379:2;8367:9;8358:7;8354:23;8350:32;8347:52;;;8395:1;8392;8385:12;8347:52;8418:29;8437:9;8418:29;:::i;:::-;8408:39;;8466:35;8497:2;8486:9;8482:18;8466:35;:::i;:::-;8456:45;;8253:254;;;;;:::o;8512:579::-;8616:6;8624;8632;8640;8693:2;8681:9;8672:7;8668:23;8664:32;8661:52;;;8709:1;8706;8699:12;8661:52;8732:29;8751:9;8732:29;:::i;:::-;8722:39;;8812:2;8801:9;8797:18;8784:32;-1:-1:-1;;;;;8831:6:1;8828:30;8825:50;;;8871:1;8868;8861:12;8825:50;8910:70;8972:7;8963:6;8952:9;8948:22;8910:70;:::i;:::-;8512:579;;8999:8;;-1:-1:-1;8884:96:1;;9081:2;9066:18;9053:32;;8512:579;-1:-1:-1;;;;8512:579:1:o;9096:980::-;9191:6;9199;9207;9215;9268:3;9256:9;9247:7;9243:23;9239:33;9236:53;;;9285:1;9282;9275:12;9236:53;9308:29;9327:9;9308:29;:::i;:::-;9298:39;;9356:2;9377:38;9411:2;9400:9;9396:18;9377:38;:::i;:::-;9367:48;;9462:2;9451:9;9447:18;9434:32;9424:42;;9517:2;9506:9;9502:18;9489:32;-1:-1:-1;;;;;9581:2:1;9573:6;9570:14;9567:34;;;9597:1;9594;9587:12;9567:34;9635:6;9624:9;9620:22;9610:32;;9680:7;9673:4;9669:2;9665:13;9661:27;9651:55;;9702:1;9699;9692:12;9651:55;9738:2;9725:16;9760:2;9756;9753:10;9750:36;;;9766:18;;:::i;:::-;9808:53;9851:2;9832:13;;-1:-1:-1;;9828:27:1;9824:36;;9808:53;:::i;:::-;9795:66;;9884:2;9877:5;9870:17;9924:7;9919:2;9914;9910;9906:11;9902:20;9899:33;9896:53;;;9945:1;9942;9935:12;9896:53;10000:2;9995;9991;9987:11;9982:2;9975:5;9971:14;9958:45;10044:1;10039:2;10034;10027:5;10023:14;10019:23;10012:34;;10065:5;10055:15;;;;;9096:980;;;;;;;:::o;10081:264::-;10275:3;10260:19;;10288:51;10264:9;10321:6;10288:51;:::i;10350:248::-;10412:6;10420;10473:2;10461:9;10452:7;10448:23;10444:32;10441:52;;;10489:1;10486;10479:12;10441:52;10512:26;10528:9;10512:26;:::i;10603:260::-;10671:6;10679;10732:2;10720:9;10711:7;10707:23;10703:32;10700:52;;;10748:1;10745;10738:12;10700:52;10771:29;10790:9;10771:29;:::i;:::-;10761:39;;10819:38;10853:2;10842:9;10838:18;10819:38;:::i;10868:967::-;10961:6;10969;11022:2;11010:9;11001:7;10997:23;10993:32;10990:52;;;11038:1;11035;11028:12;10990:52;11078:9;11065:23;-1:-1:-1;;;;;11103:6:1;11100:30;11097:50;;;11143:1;11140;11133:12;11097:50;11166:22;;11219:4;11211:13;;11207:27;-1:-1:-1;11197:55:1;;11248:1;11245;11238:12;11197:55;11284:2;11271:16;11306:4;11330:60;11346:43;11386:2;11346:43;:::i;11330:60::-;11424:15;;;11506:1;11502:10;;;;11494:19;;11490:28;;;11455:12;;;;11530:19;;;11527:39;;;11562:1;11559;11552:12;11527:39;11586:11;;;;11606:148;11622:6;11617:3;11614:15;11606:148;;;11688:23;11707:3;11688:23;:::i;:::-;11676:36;;11639:12;;;;11732;;;;11606:148;;;11773:5;11810:18;;;;11797:32;;-1:-1:-1;;;;;;10868:967:1:o;11840:380::-;11919:1;11915:12;;;;11962;;;11983:61;;12037:4;12029:6;12025:17;12015:27;;11983:61;12090:2;12082:6;12079:14;12059:18;12056:38;12053:161;;;12136:10;12131:3;12127:20;12124:1;12117:31;12171:4;12168:1;12161:15;12199:4;12196:1;12189:15;12053:161;;11840:380;;;:::o;12585:127::-;12646:10;12641:3;12637:20;12634:1;12627:31;12677:4;12674:1;12667:15;12701:4;12698:1;12691:15;13768:127;13829:10;13824:3;13820:20;13817:1;13810:31;13860:4;13857:1;13850:15;13884:4;13881:1;13874:15;13900:128;13940:3;13971:1;13967:6;13964:1;13961:13;13958:39;;;13977:18;;:::i;:::-;-1:-1:-1;14013:9:1;;13900:128::o;15269:168::-;15309:7;15375:1;15371;15367:6;15363:14;15360:1;15357:21;15352:1;15345:9;15338:17;15334:45;15331:71;;;15382:18;;:::i;:::-;-1:-1:-1;15422:9:1;;15269:168::o;15788:470::-;15967:3;16005:6;15999:13;16021:53;16067:6;16062:3;16055:4;16047:6;16043:17;16021:53;:::i;:::-;16137:13;;16096:16;;;;16159:57;16137:13;16096:16;16193:4;16181:17;;16159:57;:::i;:::-;16232:20;;15788:470;-1:-1:-1;;;;15788:470:1:o;17029:135::-;17068:3;-1:-1:-1;;17089:17:1;;17086:43;;;17109:18;;:::i;:::-;-1:-1:-1;17156:1:1;17145:13;;17029:135::o;17530:489::-;-1:-1:-1;;;;;17799:15:1;;;17781:34;;17851:15;;17846:2;17831:18;;17824:43;17898:2;17883:18;;17876:34;;;17946:3;17941:2;17926:18;;17919:31;;;17724:4;;17967:46;;17993:19;;17985:6;17967:46;:::i;:::-;17959:54;17530:489;-1:-1:-1;;;;;;17530:489:1:o;18024:249::-;18093:6;18146:2;18134:9;18125:7;18121:23;18117:32;18114:52;;;18162:1;18159;18152:12;18114:52;18194:9;18188:16;18213:30;18237:5;18213:30;:::i

Swarm Source

ipfs://278dbaf0451ccb9cf59e1d30d06b402ad27b5838053d2940ee82eaf86204dbb7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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