ETH Price: $3,440.08 (+1.43%)
Gas: 5 Gwei

Token

PhasesNFT (PHASE)
 

Overview

Max Total Supply

2,222 PHASE

Holders

864

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 PHASE
0x1a71726b96b27c90a807b897502215be71761832
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Phases

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-21
*/

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

// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.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();

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

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

    // 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;
        assembly {
            // Cast aux without masking.
            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 value)
    {
        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`.
            value := 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), ".json"))
                : "";
    }

    /**
     * @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 Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @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 {
        _transfer(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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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,
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED) |
                    _nextExtraData(address(0), to, 0)
            );

            uint256 offset = startTokenId;
            uint256 end = quantity + startTokenId;
            do {
                emit Transfer(address(0), to, offset++);
            } while (offset < end);

            _currentIndex = startTokenId + quantity;
        }
        _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 number minted.
            _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,
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED) |
                    _nextExtraData(address(0), to, 0)
            );

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

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

    /**
     * @dev Zeroes out _tokenApprovals[tokenId]
     */
    function _removeTokenApproval(uint256 tokenId) private {
        mapping(uint256 => address) storage tokenApprovalPtr = _tokenApprovals;
        assembly {
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalPtr.slot)
            let hash := keccak256(0, 0x40)
            sstore(hash, 0)
        }
    }

    /**
     * @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 _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (approvedAddress != address(0)) {
            _removeTokenApproval(tokenId);
        }

        // 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));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (approvedAddress != address(0)) {
            _removeTokenApproval(tokenId);
        }

        // 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 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
    ) internal view virtual returns (uint256) {
        uint24 previousExtraData;
        assembly {
            previousExtraData := shr(BITPOS_EXTRA_DATA, prevOwnershipPacked)
        }
        return
            uint256(_extraData(from, to, previousExtraData)) <<
            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)
        }
    }
}
// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721AQueryable.
 */
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`
     * - `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)
        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 collections should be fine).
     */
    function tokensOfOwner(address owner)
        external
        view
        returns (uint256[] memory);
}
// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @title ERC721AQueryable.
 *
 * @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
        virtual
        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[] calldata tokenIds)
        external
        view
        virtual
        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 virtual 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 collections should be fine).
     */
    function tokensOfOwner(address owner)
        external
        view
        virtual
        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;
        }
    }
}

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
// 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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // 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;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}
pragma solidity ^0.8.0;

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

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(
                    abi.encodePacked(computedHash, proofElement)
                );
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(
                    abi.encodePacked(proofElement, computedHash)
                );
            }
        }
        return computedHash;
    }
}

error MintedOut();
error WLCap();
error SupplyCap();
pragma solidity ^0.8.4;

contract Phases is Ownable, ReentrancyGuard, ERC721A, ERC721AQueryable {
    uint256 public constant maxWL = 2;
    uint256 public constant maxPublic = 1;
    uint256 public maxSupply = 2222;
    bool public mintActive;
    bool public publicActive;
    bytes32 public provenance;
    bytes32 private _wlMerkleRoot;
    string private _baseTokenURI;

    mapping(address => uint256) public publicMintedBalance;

    constructor(
        string memory _inputURI,
        bytes32 _provenance,
        bytes32 _wlRoot
    ) ERC721A("PhasesNFT", "PHASE") {
        _baseTokenURI = _inputURI;
        provenance = _provenance;
        _wlMerkleRoot = _wlRoot;
    }

    modifier mintCompliance(uint256 _quantity) {
        require(tx.origin == msg.sender, "Wrong Caller");
        require(mintActive, "Mint inactive");
        if (maxSupply < totalSupply() + _quantity) revert MintedOut();
        _;
    }

    //External Functions
    function wlMint(uint256 _quantity, bytes32[] calldata proof)
        external
        mintCompliance(_quantity)
        nonReentrant
    {
        if(_numberMinted(msg.sender) + _quantity > maxWL)
            revert WLCap();
        require(MerkleProof.verify(proof, _wlMerkleRoot, _leaf(msg.sender)), "Not WL");
        _mint(msg.sender, _quantity);
    }

    function publicMint() external mintCompliance(1) {
        require(publicActive, "Public inactive");
        require(publicMintedBalance[msg.sender] == 0, "Already Minted Public");
        publicMintedBalance[msg.sender] = 1;
        _mint(msg.sender, 1);
    }

    // Internal Functions
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function _leaf(address _account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(_account));
    }

    //Ownable functions
    function teamMint(uint256 _quantity, address _to) external onlyOwner {
        if(maxSupply < totalSupply() + _quantity) 
            revert SupplyCap();
        _mint(_to, _quantity);
    }

    function setWhitelistMerkleRoot(bytes32 _root) public onlyOwner {
        _wlMerkleRoot = _root;
    }

    function flipMintState() external onlyOwner {
        mintActive = !mintActive;
    }

    function flipPublic() external onlyOwner {
        publicActive = !publicActive;
    }

    function reduceSupply(uint256 _amount) external onlyOwner {
        if(totalSupply() > _amount)
            revert SupplyCap();
        if(_amount > maxSupply) 
            revert SupplyCap();
        maxSupply = _amount;
    }

    function setBaseURI(string memory _inputURI) public onlyOwner {
        _baseTokenURI = _inputURI;
    }

    function withdrawFunds(address _to, uint256 _amount) external onlyOwner {
        (bool success, ) = payable(_to).call{value: _amount}("");
        require(success, "transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_inputURI","type":"string"},{"internalType":"bytes32","name":"_provenance","type":"bytes32"},{"internalType":"bytes32","name":"_wlRoot","type":"bytes32"}],"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":"MintedOut","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"SupplyCap","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"},{"inputs":[],"name":"WLCap","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":[{"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":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"provenance","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_inputURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":"_quantity","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"wlMint","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526108ae600a553480156200001757600080fd5b50604051620024b0380380620024b08339810160408190526200003a91620001eb565b60405180604001604052806009815260200168141a185cd95cd3919560ba1b81525060405180604001604052806005815260200164504841534560d81b815250620000946200008e620000f160201b60201c565b620000f5565b600180558151620000ad90600490602085019062000145565b508051620000c390600590602084019062000145565b50600060025550508251620000e090600e90602086019062000145565b50600c91909155600d555062000328565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200015390620002d5565b90600052602060002090601f016020900481019282620001775760008555620001c2565b82601f106200019257805160ff1916838001178555620001c2565b82800160010185558215620001c2579182015b82811115620001c2578251825591602001919060010190620001a5565b50620001d0929150620001d4565b5090565b5b80821115620001d05760008155600101620001d5565b60008060006060848603121562000200578283fd5b83516001600160401b038082111562000217578485fd5b818601915086601f8301126200022b578485fd5b81518181111562000240576200024062000312565b604051601f8201601f19908116603f011681019083821181831017156200026b576200026b62000312565b8160405282815260209350898484870101111562000287578788fd5b8791505b82821015620002aa57848201840151818301850152908301906200028b565b82821115620002bb57878484830101525b928801516040909801519299979850919695505050505050565b600181811c90821680620002ea57607f821691505b602082108114156200030c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61217880620003386000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c80637dc4297511610130578063bd32fb66116100b8578063c87b56dd1161007c578063c87b56dd146104a3578063cc2f10d4146104b6578063d5abeb01146104be578063e985e9c5146104c7578063f2fde38b1461050357600080fd5b8063bd32fb6614610442578063bfa457bc14610455578063c107532914610468578063c23dc68f1461047b578063c877142b1461049b57600080fd5b806395d89b41116100ff57806395d89b41146103e157806399a2557a146103e9578063a22cb465146103fc578063b592d0441461040f578063b88d4fde1461042f57600080fd5b80637dc4297514610395578063806234441461039d5780638462151c146103b05780638da5cb5b146103d057600080fd5b80633ef0d36d116101b357806359c74f291161018257806359c74f291461033f5780635bbb2177146103475780636352211e1461036757806370a082311461037a578063715018a61461038d57600080fd5b80633ef0d36d146102f45780633f2981cf1461030757806342842e0e1461031957806355f804b31461032c57600080fd5b80630f7309e8116101fa5780630f7309e8146102a957806318160ddd146102c057806323b872dd146102cc57806325fd90f3146102df57806326092b83146102ec57600080fd5b806301ffc9a71461022c57806306fdde0314610254578063081812fc14610269578063095ea7b314610294575b600080fd5b61023f61023a366004611dca565b610516565b60405190151581526020015b60405180910390f35b61025c610568565b60405161024b9190612010565b61027c610277366004611db2565b6105fa565b6040516001600160a01b03909116815260200161024b565b6102a76102a2366004611d18565b61063e565b005b6102b2600c5481565b60405190815260200161024b565b600354600254036102b2565b6102a76102da366004611c2b565b6106de565b600b5461023f9060ff1681565b6102a76106ee565b6102a7610302366004611e69565b61086f565b600b5461023f90610100900460ff1681565b6102a7610327366004611c2b565b610a41565b6102a761033a366004611e02565b610a5c565b6102a7610a9d565b61035a610355366004611d73565b610adb565b60405161024b9190611f96565b61027c610375366004611db2565b610bd0565b6102b2610388366004611bdf565b610bdb565b6102a7610c29565b6102b2600181565b6102a76103ab366004611db2565b610c5f565b6103c36103be366004611bdf565b610cde565b60405161024b9190611fd8565b6000546001600160a01b031661027c565b61025c610e09565b6103c36103f7366004611d41565b610e18565b6102a761040a366004611cde565b610fb1565b6102b261041d366004611bdf565b600f6020526000908152604090205481565b6102a761043d366004611c66565b611047565b6102a7610450366004611db2565b61108b565b6102a7610463366004611e47565b6110ba565b6102a7610476366004611d18565b611128565b61048e610489366004611db2565b6111e8565b60405161024b9190612058565b6102a7611260565b61025c6104b1366004611db2565b6112a7565b6102b2600281565b6102b2600a5481565b61023f6104d5366004611bf9565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b6102a7610511366004611bdf565b61132b565b60006301ffc9a760e01b6001600160e01b03198316148061054757506380ac58cd60e01b6001600160e01b03198316145b806105625750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060048054610577906120aa565b80601f01602080910402602001604051908101604052809291908181526020018280546105a3906120aa565b80156105f05780601f106105c5576101008083540402835291602001916105f0565b820191906000526020600020905b8154815290600101906020018083116105d357829003601f168201915b5050505050905090565b6000610605826113c3565b610622576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061064982610bd0565b9050336001600160a01b038216146106825761066581336104d5565b610682576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6106e98383836113eb565b505050565b60013233146107335760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b60448201526064015b60405180910390fd5b600b5460ff166107755760405162461bcd60e51b815260206004820152600d60248201526c4d696e7420696e61637469766560981b604482015260640161072a565b806107836003546002540390565b61078d9190612066565b600a5410156107af57604051634237dcf160e11b815260040160405180910390fd5b600b54610100900460ff166107f85760405162461bcd60e51b815260206004820152600f60248201526e5075626c696320696e61637469766560881b604482015260640161072a565b336000908152600f60205260409020541561084d5760405162461bcd60e51b8152602060048201526015602482015274416c7265616479204d696e746564205075626c696360581b604482015260640161072a565b336000818152600f6020526040902060019081905561086c91906115a6565b50565b823233146108ae5760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b604482015260640161072a565b600b5460ff166108f05760405162461bcd60e51b815260206004820152600d60248201526c4d696e7420696e61637469766560981b604482015260640161072a565b806108fe6003546002540390565b6109089190612066565b600a54101561092a57604051634237dcf160e11b815260040160405180910390fd5b610932611683565b33600090815260076020526040908190205460029161095c9187911c6001600160401b0316612066565b111561097b5760405163e83159d360e01b815260040160405180910390fd5b6109f383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d54604080513360601b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034909201909252805191012090925090506116dd565b610a285760405162461bcd60e51b8152602060048201526006602482015265139bdd0815d360d21b604482015260640161072a565b610a3233856115a6565b610a3b60018055565b50505050565b6106e983838360405180602001604052806000815250611047565b6000546001600160a01b03163314610a865760405162461bcd60e51b815260040161072a90612023565b8051610a9990600e906020840190611a6c565b5050565b6000546001600160a01b03163314610ac75760405162461bcd60e51b815260040161072a90612023565b600b805460ff19811660ff90911615179055565b6060816000816001600160401b03811115610b0657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610b5857816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610b245790505b50905060005b828114610bc757610b94868683818110610b8857634e487b7160e01b600052603260045260246000fd5b905060200201356111e8565b828281518110610bb457634e487b7160e01b600052603260045260246000fd5b6020908102919091010152600101610b5e565b50949350505050565b6000610562826116f3565b60006001600160a01b038216610c04576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b6000546001600160a01b03163314610c535760405162461bcd60e51b815260040161072a90612023565b610c5d6000611754565b565b6000546001600160a01b03163314610c895760405162461bcd60e51b815260040161072a90612023565b80610c976003546002540390565b1115610cb657604051632eec1e2160e11b815260040160405180910390fd5b600a54811115610cd957604051632eec1e2160e11b815260040160405180910390fd5b600a55565b60606000806000610cee85610bdb565b90506000816001600160401b03811115610d1857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610d41578160200160208202803683370190505b509050610d6e60408051608081018252600080825260208201819052918101829052606081019190915290565b60005b838614610dfd57610d81816117a4565b9150816040015115610d9257610df5565b81516001600160a01b031615610da757815194505b876001600160a01b0316856001600160a01b03161415610df55780838780600101985081518110610de857634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b600101610d71565b50909695505050505050565b606060058054610577906120aa565b6060818310610e3a57604051631960ccad60e11b815260040160405180910390fd5b600080610e4660025490565b905080841115610e54578093505b6000610e5f87610bdb565b905084861015610e7e5785850381811015610e78578091505b50610e82565b5060005b6000816001600160401b03811115610eaa57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ed3578160200160208202803683370190505b50905081610ee6579350610faa92505050565b6000610ef1886111e8565b905060008160400151610f02575080515b885b888114158015610f145750848714155b15610f9e57610f22816117a4565b9250826040015115610f3357610f96565b82516001600160a01b031615610f4857825191505b8a6001600160a01b0316826001600160a01b03161415610f965780848880600101995081518110610f8957634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b600101610f04565b50505092835250909150505b9392505050565b6001600160a01b038216331415610fdb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110528484846113eb565b6001600160a01b0383163b15610a3b5761106e848484846117e0565b610a3b576040516368d2bf6b60e11b815260040160405180910390fd5b6000546001600160a01b031633146110b55760405162461bcd60e51b815260040161072a90612023565b600d55565b6000546001600160a01b031633146110e45760405162461bcd60e51b815260040161072a90612023565b816110f26003546002540390565b6110fc9190612066565b600a54101561111e57604051632eec1e2160e11b815260040160405180910390fd5b610a9981836115a6565b6000546001600160a01b031633146111525760405162461bcd60e51b815260040161072a90612023565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461119f576040519150601f19603f3d011682016040523d82523d6000602084013e6111a4565b606091505b50509050806106e95760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b604482015260640161072a565b604080516080808201835260008083526020808401829052838501829052606080850183905285519384018652828452908301829052938201819052928101839052909150600254831061123c5792915050565b611245836117a4565b90508060400151156112575792915050565b610faa836118d8565b6000546001600160a01b0316331461128a5760405162461bcd60e51b815260040161072a90612023565b600b805461ff001981166101009182900460ff1615909102179055565b60606112b2826113c3565b6112cf57604051630a14c4b560e41b815260040160405180910390fd5b60006112d961190d565b90508051600014156112fa5760405180602001604052806000815250610faa565b806113048461191c565b604051602001611315929190611f1a565b6040516020818303038152906040529392505050565b6000546001600160a01b031633146113555760405162461bcd60e51b815260040161072a90612023565b6001600160a01b0381166113ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072a565b61086c81611754565b600060025482108015610562575050600090815260066020526040902054600160e01b161590565b60006113f6826116f3565b9050836001600160a01b0316816001600160a01b0316146114295760405162a1148160e81b815260040160405180910390fd5b6000828152600860205260408120546001600160a01b0390811691908616331480611459575061145986336104d5565b8061146c57506001600160a01b03821633145b90508061148c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166114b357604051633a954ecd60e21b815260040160405180910390fd5b6001600160a01b038216156114d2576000848152600860205260408120555b6001600160a01b038681166000908152600760205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260066020526040902055600160e11b831661155d576001840160008181526006602052604090205461155b57600254811461155b5760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6002546001600160a01b0383166115cf57604051622e076360e81b815260040160405180910390fd5b816115ed5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260076020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260066020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106116375750500160025550565b600260015414156116d65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161072a565b6002600155565b6000826116ea858461196b565b14949350505050565b60008160025481101561173b57600081815260066020526040902054600160e01b8116611739575b80610faa57506000190160008181526006602052604090205461171b565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526006602052604090205461056290611a25565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611815903390899088908890600401611f59565b602060405180830381600087803b15801561182f57600080fd5b505af192505050801561185f575060408051601f3d908101601f1916820190925261185c91810190611de6565b60015b6118ba573d80801561188d576040519150601f19603f3d011682016040523d82523d6000602084013e611892565b606091505b5080516118b2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610562611908836116f3565b611a25565b6060600e8054610577906120aa565b604080516080810191829052607f0190826030600a8206018353600a90045b801561195957600183039250600a81066030018353600a900461193b565b50819003601f19909101908152919050565b600081815b8451811015611a1d57600085828151811061199b57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116119dd576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611a0a565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611a15816120e5565b915050611970565b509392505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b828054611a78906120aa565b90600052602060002090601f016020900481019282611a9a5760008555611ae0565b82601f10611ab357805160ff1916838001178555611ae0565b82800160010185558215611ae0579182015b82811115611ae0578251825591602001919060010190611ac5565b50611aec929150611af0565b5090565b5b80821115611aec5760008155600101611af1565b60006001600160401b0380841115611b1f57611b1f612116565b604051601f8501601f19908116603f01168101908282118183101715611b4757611b47612116565b81604052809350858152868686011115611b6057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b9157600080fd5b919050565b60008083601f840112611ba7578081fd5b5081356001600160401b03811115611bbd578182fd5b6020830191508360208260051b8501011115611bd857600080fd5b9250929050565b600060208284031215611bf0578081fd5b610faa82611b7a565b60008060408385031215611c0b578081fd5b611c1483611b7a565b9150611c2260208401611b7a565b90509250929050565b600080600060608486031215611c3f578081fd5b611c4884611b7a565b9250611c5660208501611b7a565b9150604084013590509250925092565b60008060008060808587031215611c7b578081fd5b611c8485611b7a565b9350611c9260208601611b7a565b92506040850135915060608501356001600160401b03811115611cb3578182fd5b8501601f81018713611cc3578182fd5b611cd287823560208401611b05565b91505092959194509250565b60008060408385031215611cf0578182fd5b611cf983611b7a565b915060208301358015158114611d0d578182fd5b809150509250929050565b60008060408385031215611d2a578182fd5b611d3383611b7a565b946020939093013593505050565b600080600060608486031215611d55578283fd5b611d5e84611b7a565b95602085013595506040909401359392505050565b60008060208385031215611d85578182fd5b82356001600160401b03811115611d9a578283fd5b611da685828601611b96565b90969095509350505050565b600060208284031215611dc3578081fd5b5035919050565b600060208284031215611ddb578081fd5b8135610faa8161212c565b600060208284031215611df7578081fd5b8151610faa8161212c565b600060208284031215611e13578081fd5b81356001600160401b03811115611e28578182fd5b8201601f81018413611e38578182fd5b6118d084823560208401611b05565b60008060408385031215611e59578182fd5b82359150611c2260208401611b7a565b600080600060408486031215611e7d578081fd5b8335925060208401356001600160401b03811115611e99578182fd5b611ea586828701611b96565b9497909650939450505050565b60008151808452611eca81602086016020860161207e565b601f01601f19169290920160200192915050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b60008351611f2c81846020880161207e565b835190830190611f4081836020880161207e565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f8c90830184611eb2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610dfd57611fc5838551611ede565b9284019260809290920191600101611fb2565b6020808252825182820181905260009190848201906040850190845b81811015610dfd57835183529284019291840191600101611ff4565b602081526000610faa6020830184611eb2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b608081016105628284611ede565b6000821982111561207957612079612100565b500190565b60005b83811015612099578181015183820152602001612081565b83811115610a3b5750506000910152565b600181811c908216806120be57607f821691505b602082108114156120df57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120f9576120f9612100565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461086c57600080fdfea2646970667358221220071d911de3d521d29783e529ead031dde505393adfc505cebe05ad7c73b4e11c64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006057f6d572ff482445b69a63ce480321a899e3450467eae0f5bfa887d1157f1b06e04b5dce30a94358b8d07b7703b13d4f0c13c4b382f9cbc0b0a80cabb57f4e3f0000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696237706476326c373268646570326d73666f726471656f6176637279336f767733326d747371797474746d6e6e3567706c7667612f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102275760003560e01c80637dc4297511610130578063bd32fb66116100b8578063c87b56dd1161007c578063c87b56dd146104a3578063cc2f10d4146104b6578063d5abeb01146104be578063e985e9c5146104c7578063f2fde38b1461050357600080fd5b8063bd32fb6614610442578063bfa457bc14610455578063c107532914610468578063c23dc68f1461047b578063c877142b1461049b57600080fd5b806395d89b41116100ff57806395d89b41146103e157806399a2557a146103e9578063a22cb465146103fc578063b592d0441461040f578063b88d4fde1461042f57600080fd5b80637dc4297514610395578063806234441461039d5780638462151c146103b05780638da5cb5b146103d057600080fd5b80633ef0d36d116101b357806359c74f291161018257806359c74f291461033f5780635bbb2177146103475780636352211e1461036757806370a082311461037a578063715018a61461038d57600080fd5b80633ef0d36d146102f45780633f2981cf1461030757806342842e0e1461031957806355f804b31461032c57600080fd5b80630f7309e8116101fa5780630f7309e8146102a957806318160ddd146102c057806323b872dd146102cc57806325fd90f3146102df57806326092b83146102ec57600080fd5b806301ffc9a71461022c57806306fdde0314610254578063081812fc14610269578063095ea7b314610294575b600080fd5b61023f61023a366004611dca565b610516565b60405190151581526020015b60405180910390f35b61025c610568565b60405161024b9190612010565b61027c610277366004611db2565b6105fa565b6040516001600160a01b03909116815260200161024b565b6102a76102a2366004611d18565b61063e565b005b6102b2600c5481565b60405190815260200161024b565b600354600254036102b2565b6102a76102da366004611c2b565b6106de565b600b5461023f9060ff1681565b6102a76106ee565b6102a7610302366004611e69565b61086f565b600b5461023f90610100900460ff1681565b6102a7610327366004611c2b565b610a41565b6102a761033a366004611e02565b610a5c565b6102a7610a9d565b61035a610355366004611d73565b610adb565b60405161024b9190611f96565b61027c610375366004611db2565b610bd0565b6102b2610388366004611bdf565b610bdb565b6102a7610c29565b6102b2600181565b6102a76103ab366004611db2565b610c5f565b6103c36103be366004611bdf565b610cde565b60405161024b9190611fd8565b6000546001600160a01b031661027c565b61025c610e09565b6103c36103f7366004611d41565b610e18565b6102a761040a366004611cde565b610fb1565b6102b261041d366004611bdf565b600f6020526000908152604090205481565b6102a761043d366004611c66565b611047565b6102a7610450366004611db2565b61108b565b6102a7610463366004611e47565b6110ba565b6102a7610476366004611d18565b611128565b61048e610489366004611db2565b6111e8565b60405161024b9190612058565b6102a7611260565b61025c6104b1366004611db2565b6112a7565b6102b2600281565b6102b2600a5481565b61023f6104d5366004611bf9565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b6102a7610511366004611bdf565b61132b565b60006301ffc9a760e01b6001600160e01b03198316148061054757506380ac58cd60e01b6001600160e01b03198316145b806105625750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060048054610577906120aa565b80601f01602080910402602001604051908101604052809291908181526020018280546105a3906120aa565b80156105f05780601f106105c5576101008083540402835291602001916105f0565b820191906000526020600020905b8154815290600101906020018083116105d357829003601f168201915b5050505050905090565b6000610605826113c3565b610622576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061064982610bd0565b9050336001600160a01b038216146106825761066581336104d5565b610682576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6106e98383836113eb565b505050565b60013233146107335760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b60448201526064015b60405180910390fd5b600b5460ff166107755760405162461bcd60e51b815260206004820152600d60248201526c4d696e7420696e61637469766560981b604482015260640161072a565b806107836003546002540390565b61078d9190612066565b600a5410156107af57604051634237dcf160e11b815260040160405180910390fd5b600b54610100900460ff166107f85760405162461bcd60e51b815260206004820152600f60248201526e5075626c696320696e61637469766560881b604482015260640161072a565b336000908152600f60205260409020541561084d5760405162461bcd60e51b8152602060048201526015602482015274416c7265616479204d696e746564205075626c696360581b604482015260640161072a565b336000818152600f6020526040902060019081905561086c91906115a6565b50565b823233146108ae5760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b604482015260640161072a565b600b5460ff166108f05760405162461bcd60e51b815260206004820152600d60248201526c4d696e7420696e61637469766560981b604482015260640161072a565b806108fe6003546002540390565b6109089190612066565b600a54101561092a57604051634237dcf160e11b815260040160405180910390fd5b610932611683565b33600090815260076020526040908190205460029161095c9187911c6001600160401b0316612066565b111561097b5760405163e83159d360e01b815260040160405180910390fd5b6109f383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d54604080513360601b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034909201909252805191012090925090506116dd565b610a285760405162461bcd60e51b8152602060048201526006602482015265139bdd0815d360d21b604482015260640161072a565b610a3233856115a6565b610a3b60018055565b50505050565b6106e983838360405180602001604052806000815250611047565b6000546001600160a01b03163314610a865760405162461bcd60e51b815260040161072a90612023565b8051610a9990600e906020840190611a6c565b5050565b6000546001600160a01b03163314610ac75760405162461bcd60e51b815260040161072a90612023565b600b805460ff19811660ff90911615179055565b6060816000816001600160401b03811115610b0657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610b5857816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610b245790505b50905060005b828114610bc757610b94868683818110610b8857634e487b7160e01b600052603260045260246000fd5b905060200201356111e8565b828281518110610bb457634e487b7160e01b600052603260045260246000fd5b6020908102919091010152600101610b5e565b50949350505050565b6000610562826116f3565b60006001600160a01b038216610c04576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b6000546001600160a01b03163314610c535760405162461bcd60e51b815260040161072a90612023565b610c5d6000611754565b565b6000546001600160a01b03163314610c895760405162461bcd60e51b815260040161072a90612023565b80610c976003546002540390565b1115610cb657604051632eec1e2160e11b815260040160405180910390fd5b600a54811115610cd957604051632eec1e2160e11b815260040160405180910390fd5b600a55565b60606000806000610cee85610bdb565b90506000816001600160401b03811115610d1857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610d41578160200160208202803683370190505b509050610d6e60408051608081018252600080825260208201819052918101829052606081019190915290565b60005b838614610dfd57610d81816117a4565b9150816040015115610d9257610df5565b81516001600160a01b031615610da757815194505b876001600160a01b0316856001600160a01b03161415610df55780838780600101985081518110610de857634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b600101610d71565b50909695505050505050565b606060058054610577906120aa565b6060818310610e3a57604051631960ccad60e11b815260040160405180910390fd5b600080610e4660025490565b905080841115610e54578093505b6000610e5f87610bdb565b905084861015610e7e5785850381811015610e78578091505b50610e82565b5060005b6000816001600160401b03811115610eaa57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ed3578160200160208202803683370190505b50905081610ee6579350610faa92505050565b6000610ef1886111e8565b905060008160400151610f02575080515b885b888114158015610f145750848714155b15610f9e57610f22816117a4565b9250826040015115610f3357610f96565b82516001600160a01b031615610f4857825191505b8a6001600160a01b0316826001600160a01b03161415610f965780848880600101995081518110610f8957634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b600101610f04565b50505092835250909150505b9392505050565b6001600160a01b038216331415610fdb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110528484846113eb565b6001600160a01b0383163b15610a3b5761106e848484846117e0565b610a3b576040516368d2bf6b60e11b815260040160405180910390fd5b6000546001600160a01b031633146110b55760405162461bcd60e51b815260040161072a90612023565b600d55565b6000546001600160a01b031633146110e45760405162461bcd60e51b815260040161072a90612023565b816110f26003546002540390565b6110fc9190612066565b600a54101561111e57604051632eec1e2160e11b815260040160405180910390fd5b610a9981836115a6565b6000546001600160a01b031633146111525760405162461bcd60e51b815260040161072a90612023565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461119f576040519150601f19603f3d011682016040523d82523d6000602084013e6111a4565b606091505b50509050806106e95760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b604482015260640161072a565b604080516080808201835260008083526020808401829052838501829052606080850183905285519384018652828452908301829052938201819052928101839052909150600254831061123c5792915050565b611245836117a4565b90508060400151156112575792915050565b610faa836118d8565b6000546001600160a01b0316331461128a5760405162461bcd60e51b815260040161072a90612023565b600b805461ff001981166101009182900460ff1615909102179055565b60606112b2826113c3565b6112cf57604051630a14c4b560e41b815260040160405180910390fd5b60006112d961190d565b90508051600014156112fa5760405180602001604052806000815250610faa565b806113048461191c565b604051602001611315929190611f1a565b6040516020818303038152906040529392505050565b6000546001600160a01b031633146113555760405162461bcd60e51b815260040161072a90612023565b6001600160a01b0381166113ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072a565b61086c81611754565b600060025482108015610562575050600090815260066020526040902054600160e01b161590565b60006113f6826116f3565b9050836001600160a01b0316816001600160a01b0316146114295760405162a1148160e81b815260040160405180910390fd5b6000828152600860205260408120546001600160a01b0390811691908616331480611459575061145986336104d5565b8061146c57506001600160a01b03821633145b90508061148c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166114b357604051633a954ecd60e21b815260040160405180910390fd5b6001600160a01b038216156114d2576000848152600860205260408120555b6001600160a01b038681166000908152600760205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260066020526040902055600160e11b831661155d576001840160008181526006602052604090205461155b57600254811461155b5760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6002546001600160a01b0383166115cf57604051622e076360e81b815260040160405180910390fd5b816115ed5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260076020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260066020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106116375750500160025550565b600260015414156116d65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161072a565b6002600155565b6000826116ea858461196b565b14949350505050565b60008160025481101561173b57600081815260066020526040902054600160e01b8116611739575b80610faa57506000190160008181526006602052604090205461171b565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526006602052604090205461056290611a25565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611815903390899088908890600401611f59565b602060405180830381600087803b15801561182f57600080fd5b505af192505050801561185f575060408051601f3d908101601f1916820190925261185c91810190611de6565b60015b6118ba573d80801561188d576040519150601f19603f3d011682016040523d82523d6000602084013e611892565b606091505b5080516118b2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610562611908836116f3565b611a25565b6060600e8054610577906120aa565b604080516080810191829052607f0190826030600a8206018353600a90045b801561195957600183039250600a81066030018353600a900461193b565b50819003601f19909101908152919050565b600081815b8451811015611a1d57600085828151811061199b57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116119dd576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611a0a565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611a15816120e5565b915050611970565b509392505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b828054611a78906120aa565b90600052602060002090601f016020900481019282611a9a5760008555611ae0565b82601f10611ab357805160ff1916838001178555611ae0565b82800160010185558215611ae0579182015b82811115611ae0578251825591602001919060010190611ac5565b50611aec929150611af0565b5090565b5b80821115611aec5760008155600101611af1565b60006001600160401b0380841115611b1f57611b1f612116565b604051601f8501601f19908116603f01168101908282118183101715611b4757611b47612116565b81604052809350858152868686011115611b6057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b9157600080fd5b919050565b60008083601f840112611ba7578081fd5b5081356001600160401b03811115611bbd578182fd5b6020830191508360208260051b8501011115611bd857600080fd5b9250929050565b600060208284031215611bf0578081fd5b610faa82611b7a565b60008060408385031215611c0b578081fd5b611c1483611b7a565b9150611c2260208401611b7a565b90509250929050565b600080600060608486031215611c3f578081fd5b611c4884611b7a565b9250611c5660208501611b7a565b9150604084013590509250925092565b60008060008060808587031215611c7b578081fd5b611c8485611b7a565b9350611c9260208601611b7a565b92506040850135915060608501356001600160401b03811115611cb3578182fd5b8501601f81018713611cc3578182fd5b611cd287823560208401611b05565b91505092959194509250565b60008060408385031215611cf0578182fd5b611cf983611b7a565b915060208301358015158114611d0d578182fd5b809150509250929050565b60008060408385031215611d2a578182fd5b611d3383611b7a565b946020939093013593505050565b600080600060608486031215611d55578283fd5b611d5e84611b7a565b95602085013595506040909401359392505050565b60008060208385031215611d85578182fd5b82356001600160401b03811115611d9a578283fd5b611da685828601611b96565b90969095509350505050565b600060208284031215611dc3578081fd5b5035919050565b600060208284031215611ddb578081fd5b8135610faa8161212c565b600060208284031215611df7578081fd5b8151610faa8161212c565b600060208284031215611e13578081fd5b81356001600160401b03811115611e28578182fd5b8201601f81018413611e38578182fd5b6118d084823560208401611b05565b60008060408385031215611e59578182fd5b82359150611c2260208401611b7a565b600080600060408486031215611e7d578081fd5b8335925060208401356001600160401b03811115611e99578182fd5b611ea586828701611b96565b9497909650939450505050565b60008151808452611eca81602086016020860161207e565b601f01601f19169290920160200192915050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b60008351611f2c81846020880161207e565b835190830190611f4081836020880161207e565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f8c90830184611eb2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610dfd57611fc5838551611ede565b9284019260809290920191600101611fb2565b6020808252825182820181905260009190848201906040850190845b81811015610dfd57835183529284019291840191600101611ff4565b602081526000610faa6020830184611eb2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b608081016105628284611ede565b6000821982111561207957612079612100565b500190565b60005b83811015612099578181015183820152602001612081565b83811115610a3b5750506000910152565b600181811c908216806120be57607f821691505b602082108114156120df57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120f9576120f9612100565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461086c57600080fdfea2646970667358221220071d911de3d521d29783e529ead031dde505393adfc505cebe05ad7c73b4e11c64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006057f6d572ff482445b69a63ce480321a899e3450467eae0f5bfa887d1157f1b06e04b5dce30a94358b8d07b7703b13d4f0c13c4b382f9cbc0b0a80cabb57f4e3f0000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696237706476326c373268646570326d73666f726471656f6176637279336f767733326d747371797474746d6e6e3567706c7667612f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _inputURI (string): ipfs://bafybeib7pdv2l72hdep2msfordqeoavcry3ovw32mtsqytttmnn5gplvga/
Arg [1] : _provenance (bytes32): 0x57f6d572ff482445b69a63ce480321a899e3450467eae0f5bfa887d1157f1b06
Arg [2] : _wlRoot (bytes32): 0xe04b5dce30a94358b8d07b7703b13d4f0c13c4b382f9cbc0b0a80cabb57f4e3f

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 57f6d572ff482445b69a63ce480321a899e3450467eae0f5bfa887d1157f1b06
Arg [2] : e04b5dce30a94358b8d07b7703b13d4f0c13c4b382f9cbc0b0a80cabb57f4e3f
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [4] : 697066733a2f2f626166796265696237706476326c373268646570326d73666f
Arg [5] : 726471656f6176637279336f767733326d747371797474746d6e6e3567706c76
Arg [6] : 67612f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

61423:2977:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14391:665;;;;;;:::i;:::-;;:::i;:::-;;;10570:14:1;;10563:22;10545:41;;10533:2;10518:18;14391:665:0;;;;;;;;20324:100;;;:::i;:::-;;;;;;;:::i;22181:245::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8500:32:1;;;8482:51;;8470:2;8455:18;22181:245:0;8437:102:1;21729:386:0;;;;;;:::i;:::-;;:::i;:::-;;61683:25;;;;;;;;;10743::1;;;10731:2;10716:18;61683:25:0;10698:76:1;13445:315:0;13711:12;;13695:13;;:28;13445:315;;23190:170;;;;;;:::i;:::-;;:::i;61623:22::-;;;;;;;;;62759:266;;;:::i;62386:365::-;;;;;;:::i;:::-;;:::i;61652:24::-;;;;;;;;;;;;23431:185;;;;;;:::i;:::-;;:::i;64089:106::-;;;;;;:::i;:::-;;:::i;63657:87::-;;;:::i;48039:560::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;20113:144::-;;;;;;:::i;:::-;;:::i;15120:224::-;;;;;;:::i;:::-;;:::i;55496:103::-;;;:::i;61541:37::-;;61577:1;61541:37;;63848:233;;;;;;:::i;:::-;;:::i;52013:1016::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54845:87::-;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;54845:87;;20493:104;;;:::i;48987:2579::-;;;;;;:::i;:::-;;:::i;22498:340::-;;;;;;:::i;:::-;;:::i;61788:54::-;;;;;;:::i;:::-;;;;;;;;;;;;;;23687:396;;;;;;:::i;:::-;;:::i;63545:104::-;;;;;;:::i;:::-;;:::i;63343:194::-;;;;;;:::i;:::-;;:::i;64203:::-;;;;;;:::i;:::-;;:::i;47402:478::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;63752:88::-;;;:::i;20668:424::-;;;;;;:::i;:::-;;:::i;61501:33::-;;61533:1;61501:33;;61585:31;;;;;;22909:214;;;;;;:::i;:::-;-1:-1:-1;;;;;23080:25:0;;;23051:4;23080:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22909:214;55754:238;;;;;;:::i;:::-;;:::i;14391:665::-;14521:4;-1:-1:-1;;;;;;;;;14826:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;14903:25:0;;;14826:102;:179;;;-1:-1:-1;;;;;;;;;;14980:25:0;;;14826:179;14806:199;14391:665;-1:-1:-1;;14391:665:0:o;20324:100::-;20378:13;20411:5;20404:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20324:100;:::o;22181:245::-;22285:7;22315:16;22323:7;22315;:16::i;:::-;22310:64;;22340:34;;-1:-1:-1;;;22340:34:0;;;;;;;;;;;22310:64;-1:-1:-1;22394:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22394:24:0;;22181:245::o;21729:386::-;21802:13;21818:16;21826:7;21818;:16::i;:::-;21802:32;-1:-1:-1;41732:10:0;-1:-1:-1;;;;;21851:28:0;;;21847:175;;21899:44;21916:5;41732:10;22909:214;:::i;21899:44::-;21894:128;;21971:35;;-1:-1:-1;;;21971:35:0;;;;;;;;;;;21894:128;22034:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22034:29:0;-1:-1:-1;;;;;22034:29:0;;;;;;;;;22079:28;;22034:24;;22079:28;;;;;;;21729:386;;;:::o;23190:170::-;23324:28;23334:4;23340:2;23344:7;23324:9;:28::i;:::-;23190:170;;;:::o;62759:266::-;62805:1;62173:9;62186:10;62173:23;62165:48;;;;-1:-1:-1;;;62165:48:0;;13346:2:1;62165:48:0;;;13328:21:1;13385:2;13365:18;;;13358:30;-1:-1:-1;;;13404:18:1;;;13397:42;13456:18;;62165:48:0;;;;;;;;;62232:10;;;;62224:36;;;;-1:-1:-1;;;62224:36:0;;14047:2:1;62224:36:0;;;14029:21:1;14086:2;14066:18;;;14059:30;-1:-1:-1;;;14105:18:1;;;14098:43;14158:18;;62224:36:0;14019:163:1;62224:36:0;62303:9;62287:13;13711:12;;13695:13;;:28;;13445:315;62287:13;:25;;;;:::i;:::-;62275:9;;:37;62271:61;;;62321:11;;-1:-1:-1;;;62321:11:0;;;;;;;;;;;62271:61;62827:12:::1;::::0;::::1;::::0;::::1;;;62819:40;;;::::0;-1:-1:-1;;;62819:40:0;;11205:2:1;62819:40:0::1;::::0;::::1;11187:21:1::0;11244:2;11224:18;;;11217:30;-1:-1:-1;;;11263:18:1;;;11256:45;11318:18;;62819:40:0::1;11177:165:1::0;62819:40:0::1;62898:10;62878:31;::::0;;;:19:::1;:31;::::0;;;;;:36;62870:70:::1;;;::::0;-1:-1:-1;;;62870:70:0;;12996:2:1;62870:70:0::1;::::0;::::1;12978:21:1::0;13035:2;13015:18;;;13008:30;-1:-1:-1;;;13054:18:1;;;13047:51;13115:18;;62870:70:0::1;12968:171:1::0;62870:70:0::1;62971:10;62951:31;::::0;;;:19:::1;:31;::::0;;;;62985:1:::1;62951:35:::0;;;;62997:20:::1;::::0;62971:10;62997:5:::1;:20::i;:::-;62759:266:::0;:::o;62386:365::-;62489:9;62173;62186:10;62173:23;62165:48;;;;-1:-1:-1;;;62165:48:0;;13346:2:1;62165:48:0;;;13328:21:1;13385:2;13365:18;;;13358:30;-1:-1:-1;;;13404:18:1;;;13397:42;13456:18;;62165:48:0;13318:162:1;62165:48:0;62232:10;;;;62224:36;;;;-1:-1:-1;;;62224:36:0;;14047:2:1;62224:36:0;;;14029:21:1;14086:2;14066:18;;;14059:30;-1:-1:-1;;;14105:18:1;;;14098:43;14158:18;;62224:36:0;14019:163:1;62224:36:0;62303:9;62287:13;13711:12;;13695:13;;:28;;13445:315;62287:13;:25;;;;:::i;:::-;62275:9;;:37;62271:61;;;62321:11;;-1:-1:-1;;;62321:11:0;;;;;;;;;;;62271:61;58611:21:::1;:19;:21::i;:::-;62555:10:::2;15487:7:::0;15528:25;;;:18;:25;;9929:2;15528:25;;;;;61533:1:::2;::::0;62541:37:::2;::::0;62569:9;;15528:49;-1:-1:-1;;;;;15527:93:0;62541:37:::2;:::i;:::-;:45;62538:77;;;62608:7;;-1:-1:-1::0;;;62608:7:0::2;;;;;;;;;;;62538:77;62634:59;62653:5;;62634:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;62660:13:0::2;::::0;63275:26;;;62681:10:::2;7147:2:1::0;7143:15;-1:-1:-1;;7139:53:1;63275:26:0;;;;7127:66:1;;;;63275:26:0;;;;;;;;;7209:12:1;;;;63275:26:0;;;63265:37;;;;;62660:13;;-1:-1:-1;63265:37:0;-1:-1:-1;62634:18:0::2;:59::i;:::-;62626:78;;;::::0;-1:-1:-1;;;62626:78:0;;11956:2:1;62626:78:0::2;::::0;::::2;11938:21:1::0;11995:1;11975:18;;;11968:29;-1:-1:-1;;;12013:18:1;;;12006:36;12059:18;;62626:78:0::2;11928:155:1::0;62626:78:0::2;62715:28;62721:10;62733:9;62715:5;:28::i;:::-;58655:20:::1;58049:1:::0;59171:22;;58988:213;58655:20:::1;62386:365:::0;;;;:::o;23431:185::-;23569:39;23586:4;23592:2;23596:7;23569:39;;;;;;;;;;;;:16;:39::i;64089:106::-;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;64162:25;;::::1;::::0;:13:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;64089:106:::0;:::o;63657:87::-;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;63726:10:::1;::::0;;-1:-1:-1;;63712:24:0;::::1;63726:10;::::0;;::::1;63725:11;63712:24;::::0;;63657:87::o;48039:560::-;48183:23;48274:8;48249:22;48274:8;-1:-1:-1;;;;;48341:68:0;;;;;-1:-1:-1;;;48341:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48341:68:0;;-1:-1:-1;;48341:68:0;;;;;;;;;;;;48304:105;;48429:9;48424:125;48445:14;48440:1;:19;48424:125;;48501:32;48521:8;;48530:1;48521:11;;;;;-1:-1:-1;;;48521:11:0;;;;;;;;;;;;;;;48501:19;:32::i;:::-;48485:10;48496:1;48485:13;;;;;;-1:-1:-1;;;48485:13:0;;;;;;;;;;;;;;;;;;:48;48461:3;;48424:125;;;-1:-1:-1;48570:10:0;48039:560;-1:-1:-1;;;;48039:560:0:o;20113:144::-;20177:7;20220:27;20239:7;20220:18;:27::i;15120:224::-;15184:7;-1:-1:-1;;;;;15208:19:0;;15204:60;;15236:28;;-1:-1:-1;;;15236:28:0;;;;;;;;;;;15204:60;-1:-1:-1;;;;;;15282:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;15282:54:0;;15120:224::o;55496:103::-;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;55561:30:::1;55588:1;55561:18;:30::i;:::-;55496:103::o:0;63848:233::-;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;63936:7:::1;63920:13;13711:12:::0;;13695:13;;:28;;13445:315;63920:13:::1;:23;63917:59;;;63965:11;;-1:-1:-1::0;;;63965:11:0::1;;;;;;;;;;;63917:59;64000:9;;63990:7;:19;63987:56;;;64032:11;;-1:-1:-1::0;;;64032:11:0::1;;;;;;;;;;;63987:56;64054:9;:19:::0;63848:233::o;52013:1016::-;52136:16;52195:19;52229:25;52269:22;52294:16;52304:5;52294:9;:16::i;:::-;52269:41;;52325:25;52367:14;-1:-1:-1;;;;;52353:29:0;;;;;-1:-1:-1;;;52353:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52353:29:0;;52325:57;;52397:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52397:31:0;52466:9;52443:538;52527:14;52512:11;:29;52443:538;;52610:15;52623:1;52610:12;:15::i;:::-;52598:27;;52648:9;:16;;;52644:73;;;52689:8;;52644:73;52739:14;;-1:-1:-1;;;;;52739:28:0;;52735:111;;52812:14;;;-1:-1:-1;52735:111:0;52889:5;-1:-1:-1;;;;;52868:26:0;:17;-1:-1:-1;;;;;52868:26:0;;52864:102;;;52945:1;52919:8;52928:13;;;;;;52919:23;;;;;;-1:-1:-1;;;52919:23:0;;;;;;;;;;;;;;:27;;;;;52864:102;52560:3;;52443:538;;;-1:-1:-1;53002:8:0;;52013:1016;-1:-1:-1;;;;;;52013:1016:0:o;20493:104::-;20549:13;20582:7;20575:14;;;;;:::i;48987:2579::-;49130:16;49197:4;49188:5;:13;49184:45;;49210:19;;-1:-1:-1;;;49210:19:0;;;;;;;;;;;49184:45;49244:19;49278:17;49298:14;13214:13;;;13140:95;49298:14;49278:34;-1:-1:-1;49549:9:0;49542:4;:16;49538:73;;;49586:9;49579:16;;49538:73;49625:25;49653:16;49663:5;49653:9;:16::i;:::-;49625:44;;49847:4;49839:5;:12;49835:278;;;49894:12;;;49929:31;;;49925:111;;;50005:11;49985:31;;49925:111;49835:278;;;;-1:-1:-1;50096:1:0;49835:278;50127:25;50169:17;-1:-1:-1;;;;;50155:32:0;;;;;-1:-1:-1;;;50155:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50155:32:0;-1:-1:-1;50127:60:0;-1:-1:-1;50206:22:0;50202:78;;50256:8;-1:-1:-1;50249:15:0;;-1:-1:-1;;;50249:15:0;50202:78;50424:31;50458:26;50478:5;50458:19;:26::i;:::-;50424:60;;50499:25;50744:9;:16;;;50739:92;;-1:-1:-1;50801:14:0;;50739:92;50880:5;50845:544;50909:4;50904:1;:9;;:45;;;;;50932:17;50917:11;:32;;50904:45;50845:544;;;51018:15;51031:1;51018:12;:15::i;:::-;51006:27;;51056:9;:16;;;51052:73;;;51097:8;;51052:73;51147:14;;-1:-1:-1;;;;;51147:28:0;;51143:111;;51220:14;;;-1:-1:-1;51143:111:0;51297:5;-1:-1:-1;;;;;51276:26:0;:17;-1:-1:-1;;;;;51276:26:0;;51272:102;;;51353:1;51327:8;51336:13;;;;;;51327:23;;;;;;-1:-1:-1;;;51327:23:0;;;;;;;;;;;;;;:27;;;;;51272:102;50968:3;;50845:544;;;-1:-1:-1;;;51474:29:0;;;-1:-1:-1;51481:8:0;;-1:-1:-1;;48987:2579:0;;;;;;:::o;22498:340::-;-1:-1:-1;;;;;22629:31:0;;41732:10;22629:31;22625:61;;;22669:17;;-1:-1:-1;;;22669:17:0;;;;;;;;;;;22625:61;41732:10;22699:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22699:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22699:60:0;;;;;;;;;;22775:55;;10545:41:1;;;22699:49:0;;41732:10;22775:55;;10518:18:1;22775:55:0;;;;;;;22498:340;;:::o;23687:396::-;23854:28;23864:4;23870:2;23874:7;23854:9;:28::i;:::-;-1:-1:-1;;;;;23897:14:0;;;:19;23893:183;;23936:56;23967:4;23973:2;23977:7;23986:5;23936:30;:56::i;:::-;23931:145;;24020:40;;-1:-1:-1;;;24020:40:0;;;;;;;;;;;63545:104;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;63620:13:::1;:21:::0;63545:104::o;63343:194::-;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;63454:9:::1;63438:13;13711:12:::0;;13695:13;;:28;;13445:315;63438:13:::1;:25;;;;:::i;:::-;63426:9;;:37;63423:74;;;63486:11;;-1:-1:-1::0;;;63486:11:0::1;;;;;;;;;;;63423:74;63508:21;63514:3;63519:9;63508:5;:21::i;64203:194::-:0;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;64287:12:::1;64313:3;-1:-1:-1::0;;;;;64305:17:0::1;64330:7;64305:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64286:56;;;64361:7;64353:36;;;::::0;-1:-1:-1;;;64353:36:0;;12290:2:1;64353:36:0::1;::::0;::::1;12272:21:1::0;12329:2;12309:18;;;12302:30;-1:-1:-1;;;12348:18:1;;;12341:46;12404:18;;64353:36:0::1;12262:166:1::0;47402:478:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13214:13:0;;47645:7;:25;47612:103;;47694:9;47402:478;-1:-1:-1;;47402:478:0:o;47612:103::-;47737:21;47750:7;47737:12;:21::i;:::-;47725:33;;47773:9;:16;;;47769:65;;;47813:9;47402:478;-1:-1:-1;;47402:478:0:o;47769:65::-;47851:21;47864:7;47851:12;:21::i;63752:88::-;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;63820:12:::1;::::0;;-1:-1:-1;;63804:28:0;::::1;63820:12;::::0;;;::::1;;;63819:13;63804:28:::0;;::::1;;::::0;;63752:88::o;20668:424::-;20786:13;20822:16;20830:7;20822;:16::i;:::-;20817:59;;20847:29;;-1:-1:-1;;;20847:29:0;;;;;;;;;;;20817:59;20889:21;20913:10;:8;:10::i;:::-;20889:34;;20960:7;20954:21;20979:1;20954:26;;:130;;;;;;;;;;;;;;;;;21024:7;21033:18;21043:7;21033:9;:18::i;:::-;21007:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20934:150;20668:424;-1:-1:-1;;;20668:424:0:o;55754:238::-;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55857:22:0;::::1;55835:110;;;::::0;-1:-1:-1;;;55835:110:0;;11549:2:1;55835:110:0::1;::::0;::::1;11531:21:1::0;11588:2;11568:18;;;11561:30;11627:34;11607:18;;;11600:62;-1:-1:-1;;;11678:18:1;;;11671:36;11724:19;;55835:110:0::1;11521:228:1::0;55835:110:0::1;55956:28;55975:8;55956:18;:28::i;24338:273::-:0;24395:4;24485:13;;24475:7;:23;24432:152;;;;-1:-1:-1;;24536:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24536:43:0;:48;;24338:273::o;31215:2666::-;31330:27;31360;31379:7;31360:18;:27::i;:::-;31330:57;;31445:4;-1:-1:-1;;;;;31404:45:0;31420:19;-1:-1:-1;;;;;31404:45:0;;31400:99;;31471:28;;-1:-1:-1;;;31471:28:0;;;;;;;;;;;31400:99;31512:23;31538:24;;;:15;:24;;;;;;-1:-1:-1;;;;;31538:24:0;;;;31512:23;31601:27;;41732:10;31601:27;;:87;;-1:-1:-1;31645:43:0;31662:4;41732:10;22909:214;:::i;31645:43::-;31601:142;;;-1:-1:-1;;;;;;31705:38:0;;41732:10;31705:38;31601:142;31575:169;;31762:17;31757:66;;31788:35;;-1:-1:-1;;;31788:35:0;;;;;;;;;;;31757:66;-1:-1:-1;;;;;31838:16:0;;31834:52;;31863:23;;-1:-1:-1;;;31863:23:0;;;;;;;;;;;31834:52;-1:-1:-1;;;;;32012:29:0;;;32008:91;;30695:52;30800:21;;;30750:15;30842:4;30835:35;30909:4;30896:18;;30928:15;32058:29;-1:-1:-1;;;;;32466:24:0;;;;;;;:18;:24;;;;;;32464:26;;-1:-1:-1;;32464:26:0;;;32535:22;;;;;;;;;32533:24;;-1:-1:-1;32533:24:0;;;19998:11;19974:22;19970:40;19922:111;-1:-1:-1;;;19922:111:0;32828:26;;;;:17;:26;;;;;:195;-1:-1:-1;;;33143:46:0;;33139:626;;33247:1;33237:11;;33215:19;33370:30;;;:17;:30;;;;;;33366:384;;33508:13;;33493:11;:28;33489:242;;33655:30;;;;:17;:30;;;;;:52;;;33489:242;33139:626;;33812:7;33808:2;-1:-1:-1;;;;;33793:27:0;33802:4;-1:-1:-1;;;;;33793:27:0;;;;;;;;;;;31215:2666;;;;;;:::o;26360:1690::-;26448:13;;-1:-1:-1;;;;;26476:16:0;;26472:48;;26501:19;;-1:-1:-1;;;26501:19:0;;;;;;;;;;;26472:48;26535:13;26531:44;;26557:18;;-1:-1:-1;;;26557:18:0;;;;;;;;;;;26531:44;-1:-1:-1;;;;;27124:22:0;;;;;;:18;:22;;9929:2;27124:22;;:104;;27196:31;27167:61;;27124:104;;;19998:11;19974:22;19970:40;-1:-1:-1;27579:13:0;;10705:3;27564:56;19967:51;19922:111;27471:31;;;;:17;:31;;;;;:222;27489:12;27768:23;;;27806:99;27833:34;;27858:8;;;;;-1:-1:-1;;;;;27833:34:0;;;27850:1;;27833:34;;27850:1;;27833:34;27900:3;27891:6;:12;27806:99;;-1:-1:-1;;27937:23:0;27921:13;:39;-1:-1:-1;23190:170:0:o;58691:289::-;58093:1;58821:7;;:19;;58813:63;;;;-1:-1:-1;;;58813:63:0;;13687:2:1;58813:63:0;;;13669:21:1;13726:2;13706:18;;;13699:30;13765:33;13745:18;;;13738:61;13816:18;;58813:63:0;13659:181:1;58813:63:0;58093:1;58954:7;:18;58691:289::o;59968:190::-;60093:4;60146;60117:25;60130:5;60137:4;60117:12;:25::i;:::-;:33;;59968:190;-1:-1:-1;;;;59968:190:0:o;16823:1161::-;16917:7;16957;17059:13;;17052:4;:20;17048:869;;;17097:14;17114:23;;;:17;:23;;;;;;-1:-1:-1;;;17203:23:0;;17199:699;;17722:113;17729:11;17722:113;;-1:-1:-1;;;17800:6:0;17782:25;;;;:17;:25;;;;;;17722:113;;17199:699;17048:869;;17945:31;;-1:-1:-1;;;17945:31:0;;;;;;;;;;;56152:191;56226:16;56245:6;;-1:-1:-1;;;;;56262:17:0;;;-1:-1:-1;;;;;;56262:17:0;;;;;;56295:40;;56245:6;;;;;;;56295:40;;56226:16;56295:40;56152:191;;:::o;18564:185::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18716:24:0;;;;:17;:24;;;;;;18697:44;;:18;:44::i;37706:831::-;37903:171;;-1:-1:-1;;;37903:171:0;;37869:4;;-1:-1:-1;;;;;37903:45:0;;;;;:171;;41732:10;;38005:4;;38028:7;;38054:5;;37903:171;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37903:171:0;;;;;;;;-1:-1:-1;;37903:171:0;;;;;;;;;;;;:::i;:::-;;;37886:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38288:13:0;;38284:235;;38334:40;;-1:-1:-1;;;38334:40:0;;;;;;;;;;;38284:235;38477:6;38471:13;38462:6;38458:2;38454:15;38447:38;37886:644;-1:-1:-1;;;;;;38147:81:0;-1:-1:-1;;;38147:81:0;;-1:-1:-1;37886:644:0;37706:831;;;;;;:::o;19252:190::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19387:47:0;19406:27;19425:7;19406:18;:27::i;:::-;19387:18;:47::i;63060:114::-;63120:13;63153;63146:20;;;;;:::i;41856:1992::-;42357:4;42351:11;;42364:3;42347:21;;42442:17;;;;43138:11;;;43017:5;43270:2;43284;43274:13;;43266:22;43138:11;43253:36;43325:2;43315:13;;42909:697;43344:4;42909:697;;;43535:1;43530:3;43526:11;43519:18;;43586:2;43580:4;43576:13;43572:2;43568:22;43563:3;43555:36;43439:2;43429:13;;42909:697;;;-1:-1:-1;43636:13:0;;;-1:-1:-1;;43751:12:0;;;43811:19;;;43751:12;41984:1857;-1:-1:-1;41984:1857:0:o;60520:813::-;60630:7;60678:4;60630:7;60693:603;60717:5;:12;60713:1;:16;60693:603;;;60751:20;60774:5;60780:1;60774:8;;;;;;-1:-1:-1;;;60774:8:0;;;;;;;;;;;;;;;60751:31;;60817:12;60801;:28;60797:488;;60976:44;;;;;;7389:19:1;;;7424:12;;;7417:28;;;7461:12;;60976:44:0;;;;;;;;;;;;60944:95;;;;;;60929:110;;60797:488;;;61206:44;;;;;;7389:19:1;;;7424:12;;;7417:28;;;7461:12;;61206:44:0;;;;;;;;;;;;61174:95;;;;;;61159:110;;60797:488;-1:-1:-1;60731:3:0;;;;:::i;:::-;;;;60693:603;;;-1:-1:-1;61313:12:0;60520:813;-1:-1:-1;;;60520:813:0:o;18078:395::-;-1:-1:-1;;;;;;;;;;;;;18220:41:0;;;;10446:3;18306:32;;;-1:-1:-1;;;;;18272:67:0;-1:-1:-1;;;18272:67:0;-1:-1:-1;;;18369:23:0;;:28;;-1:-1:-1;;;18350:47:0;;;;10963:3;18437:27;;;;-1:-1:-1;;;18408:57:0;-1:-1:-1;18078:395:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:391::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:2;;978:6;970;963:22;922:2;-1:-1:-1;1006:20:1;;-1:-1:-1;;;;;1038:30:1;;1035:2;;;1088:8;1078;1071:26;1035:2;1132:4;1124:6;1120:17;1108:29;;1192:3;1185:4;1175:6;1172:1;1168:14;1160:6;1156:27;1152:38;1149:47;1146:2;;;1209:1;1206;1199:12;1146:2;912:307;;;;;:::o;1224:196::-;1283:6;1336:2;1324:9;1315:7;1311:23;1307:32;1304:2;;;1357:6;1349;1342:22;1304:2;1385:29;1404:9;1385:29;:::i;1425:270::-;1493:6;1501;1554:2;1542:9;1533:7;1529:23;1525:32;1522:2;;;1575:6;1567;1560:22;1522:2;1603:29;1622:9;1603:29;:::i;:::-;1593:39;;1651:38;1685:2;1674:9;1670:18;1651:38;:::i;:::-;1641:48;;1512:183;;;;;:::o;1700:338::-;1777:6;1785;1793;1846:2;1834:9;1825:7;1821:23;1817:32;1814:2;;;1867:6;1859;1852:22;1814:2;1895:29;1914:9;1895:29;:::i;:::-;1885:39;;1943:38;1977:2;1966:9;1962:18;1943:38;:::i;:::-;1933:48;;2028:2;2017:9;2013:18;2000:32;1990:42;;1804:234;;;;;:::o;2043:696::-;2138:6;2146;2154;2162;2215:3;2203:9;2194:7;2190:23;2186:33;2183:2;;;2237:6;2229;2222:22;2183:2;2265:29;2284:9;2265:29;:::i;:::-;2255:39;;2313:38;2347:2;2336:9;2332:18;2313:38;:::i;:::-;2303:48;;2398:2;2387:9;2383:18;2370:32;2360:42;;2453:2;2442:9;2438:18;2425:32;-1:-1:-1;;;;;2472:6:1;2469:30;2466:2;;;2517:6;2509;2502:22;2466:2;2545:22;;2598:4;2590:13;;2586:27;-1:-1:-1;2576:2:1;;2632:6;2624;2617:22;2576:2;2660:73;2725:7;2720:2;2707:16;2702:2;2698;2694:11;2660:73;:::i;:::-;2650:83;;;2173:566;;;;;;;:::o;2744:367::-;2809:6;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:2;;;2891:6;2883;2876:22;2838:2;2919:29;2938:9;2919:29;:::i;:::-;2909:39;;2998:2;2987:9;2983:18;2970:32;3045:5;3038:13;3031:21;3024:5;3021:32;3011:2;;3072:6;3064;3057:22;3011:2;3100:5;3090:15;;;2828:283;;;;;:::o;3116:264::-;3184:6;3192;3245:2;3233:9;3224:7;3220:23;3216:32;3213:2;;;3266:6;3258;3251:22;3213:2;3294:29;3313:9;3294:29;:::i;:::-;3284:39;3370:2;3355:18;;;;3342:32;;-1:-1:-1;;;3203:177:1:o;3385:332::-;3462:6;3470;3478;3531:2;3519:9;3510:7;3506:23;3502:32;3499:2;;;3552:6;3544;3537:22;3499:2;3580:29;3599:9;3580:29;:::i;:::-;3570:39;3656:2;3641:18;;3628:32;;-1:-1:-1;3707:2:1;3692:18;;;3679:32;;3489:228;-1:-1:-1;;;3489:228:1:o;3722:457::-;3808:6;3816;3869:2;3857:9;3848:7;3844:23;3840:32;3837:2;;;3890:6;3882;3875:22;3837:2;3935:9;3922:23;-1:-1:-1;;;;;3960:6:1;3957:30;3954:2;;;4005:6;3997;3990:22;3954:2;4049:70;4111:7;4102:6;4091:9;4087:22;4049:70;:::i;:::-;4138:8;;4023:96;;-1:-1:-1;3827:352:1;-1:-1:-1;;;;3827:352:1:o;4184:190::-;4243:6;4296:2;4284:9;4275:7;4271:23;4267:32;4264:2;;;4317:6;4309;4302:22;4264:2;-1:-1:-1;4345:23:1;;4254:120;-1:-1:-1;4254:120:1:o;4379:255::-;4437:6;4490:2;4478:9;4469:7;4465:23;4461:32;4458:2;;;4511:6;4503;4496:22;4458:2;4555:9;4542:23;4574:30;4598:5;4574:30;:::i;4639:259::-;4708:6;4761:2;4749:9;4740:7;4736:23;4732:32;4729:2;;;4782:6;4774;4767:22;4729:2;4819:9;4813:16;4838:30;4862:5;4838:30;:::i;4903:480::-;4972:6;5025:2;5013:9;5004:7;5000:23;4996:32;4993:2;;;5046:6;5038;5031:22;4993:2;5091:9;5078:23;-1:-1:-1;;;;;5116:6:1;5113:30;5110:2;;;5161:6;5153;5146:22;5110:2;5189:22;;5242:4;5234:13;;5230:27;-1:-1:-1;5220:2:1;;5276:6;5268;5261:22;5220:2;5304:73;5369:7;5364:2;5351:16;5346:2;5342;5338:11;5304:73;:::i;5583:264::-;5651:6;5659;5712:2;5700:9;5691:7;5687:23;5683:32;5680:2;;;5733:6;5725;5718:22;5680:2;5774:9;5761:23;5751:33;;5803:38;5837:2;5826:9;5822:18;5803:38;:::i;5852:525::-;5947:6;5955;5963;6016:2;6004:9;5995:7;5991:23;5987:32;5984:2;;;6037:6;6029;6022:22;5984:2;6078:9;6065:23;6055:33;;6139:2;6128:9;6124:18;6111:32;-1:-1:-1;;;;;6158:6:1;6155:30;6152:2;;;6203:6;6195;6188:22;6152:2;6247:70;6309:7;6300:6;6289:9;6285:22;6247:70;:::i;:::-;5974:403;;6336:8;;-1:-1:-1;6221:96:1;;-1:-1:-1;;;;5974:403:1:o;6382:257::-;6423:3;6461:5;6455:12;6488:6;6483:3;6476:19;6504:63;6560:6;6553:4;6548:3;6544:14;6537:4;6530:5;6526:16;6504:63;:::i;:::-;6621:2;6600:15;-1:-1:-1;;6596:29:1;6587:39;;;;6628:4;6583:50;;6431:208;-1:-1:-1;;6431:208:1:o;6644:349::-;6728:12;;-1:-1:-1;;;;;6724:38:1;6712:51;;6816:4;6805:16;;;6799:23;-1:-1:-1;;;;;6795:48:1;6779:14;;;6772:72;6907:4;6896:16;;;6890:23;6883:31;6876:39;6860:14;;;6853:63;6969:4;6958:16;;;6952:23;6977:8;6948:38;6932:14;;6925:62;6702:291::o;7484:637::-;7764:3;7802:6;7796:13;7818:53;7864:6;7859:3;7852:4;7844:6;7840:17;7818:53;:::i;:::-;7934:13;;7893:16;;;;7956:57;7934:13;7893:16;7990:4;7978:17;;7956:57;:::i;:::-;-1:-1:-1;;;8035:20:1;;8064:22;;;8113:1;8102:13;;7772:349;-1:-1:-1;;;;7772:349:1:o;8544:488::-;-1:-1:-1;;;;;8813:15:1;;;8795:34;;8865:15;;8860:2;8845:18;;8838:43;8912:2;8897:18;;8890:34;;;8960:3;8955:2;8940:18;;8933:31;;;8738:4;;8981:45;;9006:19;;8998:6;8981:45;:::i;:::-;8973:53;8747:285;-1:-1:-1;;;;;;8747:285:1:o;9037:723::-;9268:2;9320:21;;;9390:13;;9293:18;;;9412:22;;;9239:4;;9268:2;9491:15;;;;9465:2;9450:18;;;9239:4;9537:197;9551:6;9548:1;9545:13;9537:197;;;9600:52;9648:3;9639:6;9633:13;9600:52;:::i;:::-;9709:15;;;;9681:4;9672:14;;;;;9573:1;9566:9;9537:197;;9765:635;9936:2;9988:21;;;10058:13;;9961:18;;;10080:22;;;9907:4;;9936:2;10159:15;;;;10133:2;10118:18;;;9907:4;10205:169;10219:6;10216:1;10213:13;10205:169;;;10280:13;;10268:26;;10349:15;;;;10314:12;;;;10241:1;10234:9;10205:169;;10779:219;10928:2;10917:9;10910:21;10891:4;10948:44;10988:2;10977:9;10973:18;10965:6;10948:44;:::i;12433:356::-;12635:2;12617:21;;;12654:18;;;12647:30;12713:34;12708:2;12693:18;;12686:62;12780:2;12765:18;;12607:182::o;14187:264::-;14381:3;14366:19;;14394:51;14370:9;14427:6;14394:51;:::i;14638:128::-;14678:3;14709:1;14705:6;14702:1;14699:13;14696:2;;;14715:18;;:::i;:::-;-1:-1:-1;14751:9:1;;14686:80::o;14771:258::-;14843:1;14853:113;14867:6;14864:1;14861:13;14853:113;;;14943:11;;;14937:18;14924:11;;;14917:39;14889:2;14882:10;14853:113;;;14984:6;14981:1;14978:13;14975:2;;;-1:-1:-1;;15019:1:1;15001:16;;14994:27;14824:205::o;15034:380::-;15113:1;15109:12;;;;15156;;;15177:2;;15231:4;15223:6;15219:17;15209:27;;15177:2;15284;15276:6;15273:14;15253:18;15250:38;15247:2;;;15330:10;15325:3;15321:20;15318:1;15311:31;15365:4;15362:1;15355:15;15393:4;15390:1;15383:15;15247:2;;15089:325;;;:::o;15419:135::-;15458:3;-1:-1:-1;;15479:17:1;;15476:2;;;15499:18;;:::i;:::-;-1:-1:-1;15546:1:1;15535:13;;15466:88::o;15559:127::-;15620:10;15615:3;15611:20;15608:1;15601:31;15651:4;15648:1;15641:15;15675:4;15672:1;15665:15;15691:127;15752:10;15747:3;15743:20;15740:1;15733:31;15783:4;15780:1;15773:15;15807:4;15804:1;15797:15;15823:131;-1:-1:-1;;;;;;15897:32:1;;15887:43;;15877:2;;15944:1;15941;15934:12

Swarm Source

ipfs://071d911de3d521d29783e529ead031dde505393adfc505cebe05ad7c73b4e11c
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.