ETH Price: $3,099.98 (+1.06%)
Gas: 17 Gwei

Token

wulftown.wtf (WFT)
 

Overview

Max Total Supply

1,240 WFT

Holders

688

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
florasnaturals.eth
Balance
2 WFT
0x5a3f81d29b66849a7f986d39df3d53fa6b6470ae
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:
wulftownwtf

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: erc721a/contracts/IERC721A.sol


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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

    // The 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`
    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 auxillary 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 auxillary 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;
    }

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

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

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

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

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @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 = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: contracts/wulftown.sol










pragma solidity >=0.8.13 <0.9.0;

contract wulftownwtf is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

// ================== Variables Start =======================
    
  string public uri;
  string public uriSuffix = ".json";
  uint256 public cost1 = 0 ether;
  uint256 public cost2 = 0.003 ether;
  uint256 public supplyLimit = 3333;
  uint256 public maxMintAmountPerTxPhase1 = 2;
  uint256 public maxMintAmountPerTxPhase2 = 18;
  uint256 public maxLimitPerWallet = 20;
  bool public sale = false;
  bool public revealed = true;

// ================== Variables End =======================  

// ================== Constructor Start =======================

  constructor(
    string memory _uri
  ) ERC721A("wulftown.wtf", "WFT")  {
    seturi(_uri);
  }

// ================== Constructor End =======================

// ================== Mint Functions Start =======================

  function UpdateCost(uint256 _supply, uint256 _mintAmount) internal view returns  (uint256 _cost) {

    if (balanceOf(msg.sender) + _mintAmount <= 2 && _supply <1000) {
        return cost1;
    }
    if (balanceOf(msg.sender) + _mintAmount <= 10 && _supply < supplyLimit){
        return cost2;
    }
  }
  
  function Mint(uint256 _mintAmount) public payable {
    //Dynamic Price
    uint256 supply = totalSupply();
    // Normal requirements 
    require(sale, 'The Sale is paused!');
    require(_mintAmount > 0 && _mintAmount <= 10, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= supplyLimit, 'Max supply exceeded!');
    require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!');
    require(msg.value >= UpdateCost(supply, _mintAmount) * _mintAmount, 'Insufficient funds!');
     
    // Mint
     _safeMint(_msgSender(), _mintAmount);
  }  

  function Airdrop(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= supplyLimit, 'Max supply exceeded!');
    _safeMint(_receiver, _mintAmount);
  }

// ================== Mint Functions End =======================  

// ================== Set Functions Start =======================

// reveal
  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

// uri
  function seturi(string memory _uri) public onlyOwner {
    uri = _uri;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

// sales toggle
  function setSaleStatus(bool _sale) public onlyOwner {
    sale = _sale;
  }

// max per tx Phase1
  function setMaxMintAmountPerTxPhase1(uint256 _maxMintAmountPerTxPhase1) public onlyOwner {
    maxMintAmountPerTxPhase1 = _maxMintAmountPerTxPhase1;
  }

  // max per tx Phase2
  function setMaxMintAmountPerTxPhase2(uint256 _maxMintAmountPerTxPhase2) public onlyOwner {
    maxMintAmountPerTxPhase2 = _maxMintAmountPerTxPhase2;
  }

// max per wallet
  function setmaxLimitPerWallet(uint256 _maxLimitPerWallet) public onlyOwner {
    maxLimitPerWallet = _maxLimitPerWallet;
  }

// price

  function setcost1(uint256 _cost1) public onlyOwner {
    cost1 = _cost1;
  }  

  function setcost2(uint256 _cost2) public onlyOwner {
    cost2 = _cost2;
  }  

// supply limit
  function setsupplyLimit(uint256 _supplyLimit) public onlyOwner {
    supplyLimit = _supplyLimit;
  }

// ================== Set Functions End =======================

// ================== Withdraw Function Start =======================
  
  function withdraw() public onlyOwner nonReentrant {
        uint _balance = address(this).balance;
        payable(0x3c8AED7aF5004dB3Cf1594e54DC598f678fb7E0a).transfer(_balance);
         (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
  }
// ================== Withdraw Function End=======================  

// ================== Read Functions Start =======================
 
  function price(uint256 _mintAmount) public view returns (uint256){
         if (balanceOf(msg.sender) + _mintAmount <= 2 && totalSupply() <1000) {
          return cost1;
          }
         if (balanceOf(msg.sender) + _mintAmount <= 10 && totalSupply() < supplyLimit){
          return cost2;
        }
  }

function tokensOfOwner(address owner) external view returns (uint256[] memory) {
    unchecked {
        uint256[] memory a = new uint256[](balanceOf(owner)); 
        uint256 end = _nextTokenId();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;
        for (uint256 i; i < end; i++) {
            TokenOwnership memory ownership = _ownershipAt(i);
            if (ownership.burned) {
                continue;
            }
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                a[tokenIdsIdx++] = i;
            }
        }
        return a;    
    }
}

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

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

    //if (revealed == false) {
    //  return hiddenMetadataUri;
    //}

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

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

// ================== Read Functions End =======================  

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTxPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTxPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTxPhase1","type":"uint256"}],"name":"setMaxMintAmountPerTxPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTxPhase2","type":"uint256"}],"name":"setMaxMintAmountPerTxPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost1","type":"uint256"}],"name":"setcost1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost2","type":"uint256"}],"name":"setcost2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxLimitPerWallet","type":"uint256"}],"name":"setmaxLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"setsupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"seturi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","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":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600b9190620001e6565b506000600c55660aa87bee538000600d55610d05600e556002600f55601260108190556014601155805461ffff19166101001790553480156200006a57600080fd5b50604051620025d7380380620025d78339810160408190526200008d91620002a2565b604080518082018252600c81526b3bbab6333a37bbb7173bba3360a11b60208083019182528351808501909452600384526215d19560ea1b908401528151919291620000dc91600291620001e6565b508051620000f2906003906020840190620001e6565b505060016000555062000105336200011c565b600160095562000115816200016e565b50620003ba565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001e290600a906020840190620001e6565b5050565b828054620001f4906200037e565b90600052602060002090601f01602090048101928262000218576000855562000263565b82601f106200023357805160ff191683800117855562000263565b8280016001018555821562000263579182015b828111156200026357825182559160200191906001019062000246565b506200027192915062000275565b5090565b5b8082111562000271576000815560010162000276565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620002b657600080fd5b82516001600160401b0380821115620002ce57600080fd5b818501915085601f830112620002e357600080fd5b815181811115620002f857620002f86200028c565b604051601f8201601f19908116603f011681019083821181831017156200032357620003236200028c565b8160405282815288868487010111156200033c57600080fd5b600093505b8284101562000360578484018601518185018701529285019262000341565b82841115620003725760008684830101525b98975050505050505050565b600181811c908216806200039357607f821691505b602082108103620003b457634e487b7160e01b600052602260045260246000fd5b50919050565b61220d80620003ca6000396000f3fe6080604052600436106102505760003560e01c8063684ed5f211610139578063a22cb465116100b6578063da5e1f4d1161007a578063da5e1f4d14610698578063e0a80853146106b8578063e985e9c5146106d8578063eac989f8146106f8578063f2fde38b1461070d578063f64849801461072d57600080fd5b8063a22cb465146105f8578063b88d4fde14610618578063c87b56dd14610638578063d897833e14610658578063d9f0a6711461067857600080fd5b80637871e154116100fd5780637871e154146105625780638462151c146105825780638da5cb5b146105af57806395d89b41146105cd5780639a1b2885146105e257600080fd5b8063684ed5f2146104dd5780636ad1fe02146104f357806370a082311461050d578063715018a61461052d578063783806411461054257600080fd5b806321f6b017116101d257806342842e0e1161019657806342842e0e1461043357806351830227146104535780635503a0e8146104725780635a0b8b231461048757806360bb41b61461049d5780636352211e146104bd57600080fd5b806321f6b017146103b257806323b872dd146103c857806326a49e37146103e857806333573dc2146104085780633ccfd60b1461041e57600080fd5b8063095ea7b311610219578063095ea7b31461031957806316ba10e01461033957806318160ddd1461035957806319d1997a1461037c57806321a3c2481461039257600080fd5b806275770a1461025557806301ffc9a71461027757806306fdde03146102ac57806307883703146102ce578063081812fc146102e1575b600080fd5b34801561026157600080fd5b50610275610270366004611beb565b61074d565b005b34801561028357600080fd5b50610297610292366004611c1a565b610785565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c16107d7565b6040516102a39190611c8f565b6102756102dc366004611beb565b610869565b3480156102ed57600080fd5b506103016102fc366004611beb565b610a3a565b6040516001600160a01b0390911681526020016102a3565b34801561032557600080fd5b50610275610334366004611cb9565b610a7e565b34801561034557600080fd5b50610275610354366004611d6f565b610b50565b34801561036557600080fd5b5061036e610b8d565b6040519081526020016102a3565b34801561038857600080fd5b5061036e600e5481565b34801561039e57600080fd5b506102756103ad366004611beb565b610b9b565b3480156103be57600080fd5b5061036e600f5481565b3480156103d457600080fd5b506102756103e3366004611db8565b610bca565b3480156103f457600080fd5b5061036e610403366004611beb565b610bda565b34801561041457600080fd5b5061036e600c5481565b34801561042a57600080fd5b50610275610c53565b34801561043f57600080fd5b5061027561044e366004611db8565b610d92565b34801561045f57600080fd5b5060125461029790610100900460ff1681565b34801561047e57600080fd5b506102c1610dad565b34801561049357600080fd5b5061036e60115481565b3480156104a957600080fd5b506102756104b8366004611beb565b610e3b565b3480156104c957600080fd5b506103016104d8366004611beb565b610e6a565b3480156104e957600080fd5b5061036e60105481565b3480156104ff57600080fd5b506012546102979060ff1681565b34801561051957600080fd5b5061036e610528366004611df4565b610e75565b34801561053957600080fd5b50610275610ec4565b34801561054e57600080fd5b5061027561055d366004611beb565b610efa565b34801561056e57600080fd5b5061027561057d366004611e0f565b610f29565b34801561058e57600080fd5b506105a261059d366004611df4565b610fb8565b6040516102a39190611e3b565b3480156105bb57600080fd5b506008546001600160a01b0316610301565b3480156105d957600080fd5b506102c16110aa565b3480156105ee57600080fd5b5061036e600d5481565b34801561060457600080fd5b50610275610613366004611e8f565b6110b9565b34801561062457600080fd5b50610275610633366004611eb9565b61114e565b34801561064457600080fd5b506102c1610653366004611beb565b611198565b34801561066457600080fd5b50610275610673366004611f35565b611266565b34801561068457600080fd5b50610275610693366004611beb565b6112a3565b3480156106a457600080fd5b506102756106b3366004611beb565b6112d2565b3480156106c457600080fd5b506102756106d3366004611f35565b611301565b3480156106e457600080fd5b506102976106f3366004611f50565b611345565b34801561070457600080fd5b506102c1611373565b34801561071957600080fd5b50610275610728366004611df4565b611380565b34801561073957600080fd5b50610275610748366004611d6f565b61141b565b6008546001600160a01b031633146107805760405162461bcd60e51b815260040161077790611f7a565b60405180910390fd5b600e55565b60006301ffc9a760e01b6001600160e01b0319831614806107b657506380ac58cd60e01b6001600160e01b03198316145b806107d15750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107e690611faf565b80601f016020809104026020016040519081016040528092919081815260200182805461081290611faf565b801561085f5780601f106108345761010080835404028352916020019161085f565b820191906000526020600020905b81548152906001019060200180831161084257829003601f168201915b5050505050905090565b6000610873610b8d565b60125490915060ff166108be5760405162461bcd60e51b81526020600482015260136024820152725468652053616c65206973207061757365642160681b6044820152606401610777565b6000821180156108cf5750600a8211155b6109125760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610777565b600e548261091e610b8d565b6109289190611fff565b111561096d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610777565b6011548261097a33610e75565b6109849190611fff565b11156109d25760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c6574206578636565646564210000006044820152606401610777565b816109dd8284611458565b6109e79190612017565b341015610a2c5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b610a3633836114c0565b5050565b6000610a45826114da565b610a62576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a898261150f565b9050806001600160a01b0316836001600160a01b031603610abd5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610af457610ad78133611345565b610af4576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610b7a5760405162461bcd60e51b815260040161077790611f7a565b8051610a3690600b906020840190611b52565b600154600054036000190190565b6008546001600160a01b03163314610bc55760405162461bcd60e51b815260040161077790611f7a565b600d55565b610bd583838361157e565b505050565b6000600282610be833610e75565b610bf29190611fff565b11158015610c0857506103e8610c06610b8d565b105b15610c15575050600c5490565b600a82610c2133610e75565b610c2b9190611fff565b11158015610c415750600e54610c3f610b8d565b105b15610c4e575050600d5490565b919050565b6008546001600160a01b03163314610c7d5760405162461bcd60e51b815260040161077790611f7a565b600260095403610ccf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610777565b60026009556040514790733c8aed7af5004db3cf1594e54dc598f678fb7e0a9082156108fc029083906000818181858888f19350505050158015610d17573d6000803e3d6000fd5b506000610d2c6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d76576040519150601f19603f3d011682016040523d82523d6000602084013e610d7b565b606091505b5050905080610d8957600080fd5b50506001600955565b610bd58383836040518060200160405280600081525061114e565b600b8054610dba90611faf565b80601f0160208091040260200160405190810160405280929190818152602001828054610de690611faf565b8015610e335780601f10610e0857610100808354040283529160200191610e33565b820191906000526020600020905b815481529060010190602001808311610e1657829003601f168201915b505050505081565b6008546001600160a01b03163314610e655760405162461bcd60e51b815260040161077790611f7a565b600f55565b60006107d18261150f565b60006001600160a01b038216610e9e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610eee5760405162461bcd60e51b815260040161077790611f7a565b610ef86000611725565b565b6008546001600160a01b03163314610f245760405162461bcd60e51b815260040161077790611f7a565b601055565b6008546001600160a01b03163314610f535760405162461bcd60e51b815260040161077790611f7a565b600e5482610f5f610b8d565b610f699190611fff565b1115610fae5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610777565b610a3681836114c0565b60606000610fc583610e75565b67ffffffffffffffff811115610fdd57610fdd611ce3565b604051908082528060200260200182016040528015611006578160200160208202803683370190505b509050600061101460005490565b905060008060005b8381101561109f57600061102f82611777565b90508060400151156110415750611097565b80516001600160a01b03161561105657805192505b876001600160a01b0316836001600160a01b031603611095578186858060010196508151811061108857611088612036565b6020026020010181815250505b505b60010161101c565b509295945050505050565b6060600380546107e690611faf565b336001600160a01b038316036110e25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61115984848461157e565b6001600160a01b0383163b1561119257611175848484846117e2565b611192576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606111a3826114da565b6112075760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610777565b60006112116118ce565b90506000815111611231576040518060200160405280600081525061125f565b8061123b846118dd565b600b60405160200161124f9392919061204c565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146112905760405162461bcd60e51b815260040161077790611f7a565b6012805460ff1916911515919091179055565b6008546001600160a01b031633146112cd5760405162461bcd60e51b815260040161077790611f7a565b601155565b6008546001600160a01b031633146112fc5760405162461bcd60e51b815260040161077790611f7a565b600c55565b6008546001600160a01b0316331461132b5760405162461bcd60e51b815260040161077790611f7a565b601280549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600a8054610dba90611faf565b6008546001600160a01b031633146113aa5760405162461bcd60e51b815260040161077790611f7a565b6001600160a01b03811661140f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610777565b61141881611725565b50565b6008546001600160a01b031633146114455760405162461bcd60e51b815260040161077790611f7a565b8051610a3690600a906020840190611b52565b600060028261146633610e75565b6114709190611fff565b1115801561147f57506103e883105b1561148d5750600c546107d1565b600a8261149933610e75565b6114a39190611fff565b111580156114b25750600e5483105b156107d15750600d546107d1565b610a368282604051806020016040528060008152506119de565b6000816001111580156114ee575060005482105b80156107d1575050600090815260046020526040902054600160e01b161590565b60008180600111611565576000548110156115655760008181526004602052604081205490600160e01b82169003611563575b8060000361125f575060001901600081815260046020526040902054611542565b505b604051636f96cda160e11b815260040160405180910390fd5b60006115898261150f565b9050836001600160a01b0316816001600160a01b0316146115bc5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115da57506115da8533611345565b806115f55750336115ea84610a3a565b6001600160a01b0316145b90508061161557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661163c57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b87178117909155831690036116dd576001830160008181526004602052604081205490036116db5760005481146116db5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051606081018252600080825260208201819052918101919091526000828152600460205260409020546107d190604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061181790339089908890889060040161210f565b6020604051808303816000875af1925050508015611852575060408051601f3d908101601f1916820190925261184f9181019061214c565b60015b6118b0573d808015611880576040519150601f19603f3d011682016040523d82523d6000602084013e611885565b606091505b5080516000036118a8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546107e690611faf565b6060816000036119045750506040805180820190915260018152600360fc1b602082015290565b8160005b811561192e578061191881612169565b91506119279050600a83612198565b9150611908565b60008167ffffffffffffffff81111561194957611949611ce3565b6040519080825280601f01601f191660200182016040528015611973576020820181803683370190505b5090505b84156118c6576119886001836121ac565b9150611995600a866121c3565b6119a0906030611fff565b60f81b8183815181106119b5576119b5612036565b60200101906001600160f81b031916908160001a9053506119d7600a86612198565b9450611977565b6000546001600160a01b038416611a0757604051622e076360e81b815260040160405180910390fd5b82600003611a285760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611afd575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ac660008784806001019550876117e2565b611ae3576040516368d2bf6b60e11b815260040160405180910390fd5b808210611a7b578260005414611af857600080fd5b611b42565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611afe575b5060009081556111929085838684565b828054611b5e90611faf565b90600052602060002090601f016020900481019282611b805760008555611bc6565b82601f10611b9957805160ff1916838001178555611bc6565b82800160010185558215611bc6579182015b82811115611bc6578251825591602001919060010190611bab565b50611bd2929150611bd6565b5090565b5b80821115611bd25760008155600101611bd7565b600060208284031215611bfd57600080fd5b5035919050565b6001600160e01b03198116811461141857600080fd5b600060208284031215611c2c57600080fd5b813561125f81611c04565b60005b83811015611c52578181015183820152602001611c3a565b838111156111925750506000910152565b60008151808452611c7b816020860160208601611c37565b601f01601f19169290920160200192915050565b60208152600061125f6020830184611c63565b80356001600160a01b0381168114610c4e57600080fd5b60008060408385031215611ccc57600080fd5b611cd583611ca2565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d1457611d14611ce3565b604051601f8501601f19908116603f01168101908282118183101715611d3c57611d3c611ce3565b81604052809350858152868686011115611d5557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d8157600080fd5b813567ffffffffffffffff811115611d9857600080fd5b8201601f81018413611da957600080fd5b6118c684823560208401611cf9565b600080600060608486031215611dcd57600080fd5b611dd684611ca2565b9250611de460208501611ca2565b9150604084013590509250925092565b600060208284031215611e0657600080fd5b61125f82611ca2565b60008060408385031215611e2257600080fd5b82359150611e3260208401611ca2565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015611e7357835183529284019291840191600101611e57565b50909695505050505050565b80358015158114610c4e57600080fd5b60008060408385031215611ea257600080fd5b611eab83611ca2565b9150611e3260208401611e7f565b60008060008060808587031215611ecf57600080fd5b611ed885611ca2565b9350611ee660208601611ca2565b925060408501359150606085013567ffffffffffffffff811115611f0957600080fd5b8501601f81018713611f1a57600080fd5b611f2987823560208401611cf9565b91505092959194509250565b600060208284031215611f4757600080fd5b61125f82611e7f565b60008060408385031215611f6357600080fd5b611f6c83611ca2565b9150611e3260208401611ca2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611fc357607f821691505b602082108103611fe357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561201257612012611fe9565b500190565b600081600019048311821515161561203157612031611fe9565b500290565b634e487b7160e01b600052603260045260246000fd5b60008451602061205f8285838a01611c37565b8551918401916120728184848a01611c37565b8554920191600090600181811c908083168061208f57607f831692505b85831081036120ac57634e487b7160e01b85526022600452602485fd5b8080156120c057600181146120d1576120fe565b60ff198516885283880195506120fe565b60008b81526020902060005b858110156120f65781548a8201529084019088016120dd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061214290830184611c63565b9695505050505050565b60006020828403121561215e57600080fd5b815161125f81611c04565b60006001820161217b5761217b611fe9565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826121a7576121a7612182565b500490565b6000828210156121be576121be611fe9565b500390565b6000826121d2576121d2612182565b50069056fea264697066735822122069d7f598a2aaf37e1fc8f4fc6653f64bbdf703a0e369f5c8680680be16fd45a564736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d636d385951714450377357314d5a4465684a6d564b755a4a3232557a784762436a684b566639486b674647792f00000000000000000000

Deployed Bytecode

0x6080604052600436106102505760003560e01c8063684ed5f211610139578063a22cb465116100b6578063da5e1f4d1161007a578063da5e1f4d14610698578063e0a80853146106b8578063e985e9c5146106d8578063eac989f8146106f8578063f2fde38b1461070d578063f64849801461072d57600080fd5b8063a22cb465146105f8578063b88d4fde14610618578063c87b56dd14610638578063d897833e14610658578063d9f0a6711461067857600080fd5b80637871e154116100fd5780637871e154146105625780638462151c146105825780638da5cb5b146105af57806395d89b41146105cd5780639a1b2885146105e257600080fd5b8063684ed5f2146104dd5780636ad1fe02146104f357806370a082311461050d578063715018a61461052d578063783806411461054257600080fd5b806321f6b017116101d257806342842e0e1161019657806342842e0e1461043357806351830227146104535780635503a0e8146104725780635a0b8b231461048757806360bb41b61461049d5780636352211e146104bd57600080fd5b806321f6b017146103b257806323b872dd146103c857806326a49e37146103e857806333573dc2146104085780633ccfd60b1461041e57600080fd5b8063095ea7b311610219578063095ea7b31461031957806316ba10e01461033957806318160ddd1461035957806319d1997a1461037c57806321a3c2481461039257600080fd5b806275770a1461025557806301ffc9a71461027757806306fdde03146102ac57806307883703146102ce578063081812fc146102e1575b600080fd5b34801561026157600080fd5b50610275610270366004611beb565b61074d565b005b34801561028357600080fd5b50610297610292366004611c1a565b610785565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c16107d7565b6040516102a39190611c8f565b6102756102dc366004611beb565b610869565b3480156102ed57600080fd5b506103016102fc366004611beb565b610a3a565b6040516001600160a01b0390911681526020016102a3565b34801561032557600080fd5b50610275610334366004611cb9565b610a7e565b34801561034557600080fd5b50610275610354366004611d6f565b610b50565b34801561036557600080fd5b5061036e610b8d565b6040519081526020016102a3565b34801561038857600080fd5b5061036e600e5481565b34801561039e57600080fd5b506102756103ad366004611beb565b610b9b565b3480156103be57600080fd5b5061036e600f5481565b3480156103d457600080fd5b506102756103e3366004611db8565b610bca565b3480156103f457600080fd5b5061036e610403366004611beb565b610bda565b34801561041457600080fd5b5061036e600c5481565b34801561042a57600080fd5b50610275610c53565b34801561043f57600080fd5b5061027561044e366004611db8565b610d92565b34801561045f57600080fd5b5060125461029790610100900460ff1681565b34801561047e57600080fd5b506102c1610dad565b34801561049357600080fd5b5061036e60115481565b3480156104a957600080fd5b506102756104b8366004611beb565b610e3b565b3480156104c957600080fd5b506103016104d8366004611beb565b610e6a565b3480156104e957600080fd5b5061036e60105481565b3480156104ff57600080fd5b506012546102979060ff1681565b34801561051957600080fd5b5061036e610528366004611df4565b610e75565b34801561053957600080fd5b50610275610ec4565b34801561054e57600080fd5b5061027561055d366004611beb565b610efa565b34801561056e57600080fd5b5061027561057d366004611e0f565b610f29565b34801561058e57600080fd5b506105a261059d366004611df4565b610fb8565b6040516102a39190611e3b565b3480156105bb57600080fd5b506008546001600160a01b0316610301565b3480156105d957600080fd5b506102c16110aa565b3480156105ee57600080fd5b5061036e600d5481565b34801561060457600080fd5b50610275610613366004611e8f565b6110b9565b34801561062457600080fd5b50610275610633366004611eb9565b61114e565b34801561064457600080fd5b506102c1610653366004611beb565b611198565b34801561066457600080fd5b50610275610673366004611f35565b611266565b34801561068457600080fd5b50610275610693366004611beb565b6112a3565b3480156106a457600080fd5b506102756106b3366004611beb565b6112d2565b3480156106c457600080fd5b506102756106d3366004611f35565b611301565b3480156106e457600080fd5b506102976106f3366004611f50565b611345565b34801561070457600080fd5b506102c1611373565b34801561071957600080fd5b50610275610728366004611df4565b611380565b34801561073957600080fd5b50610275610748366004611d6f565b61141b565b6008546001600160a01b031633146107805760405162461bcd60e51b815260040161077790611f7a565b60405180910390fd5b600e55565b60006301ffc9a760e01b6001600160e01b0319831614806107b657506380ac58cd60e01b6001600160e01b03198316145b806107d15750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107e690611faf565b80601f016020809104026020016040519081016040528092919081815260200182805461081290611faf565b801561085f5780601f106108345761010080835404028352916020019161085f565b820191906000526020600020905b81548152906001019060200180831161084257829003601f168201915b5050505050905090565b6000610873610b8d565b60125490915060ff166108be5760405162461bcd60e51b81526020600482015260136024820152725468652053616c65206973207061757365642160681b6044820152606401610777565b6000821180156108cf5750600a8211155b6109125760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610777565b600e548261091e610b8d565b6109289190611fff565b111561096d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610777565b6011548261097a33610e75565b6109849190611fff565b11156109d25760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c6574206578636565646564210000006044820152606401610777565b816109dd8284611458565b6109e79190612017565b341015610a2c5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b610a3633836114c0565b5050565b6000610a45826114da565b610a62576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a898261150f565b9050806001600160a01b0316836001600160a01b031603610abd5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610af457610ad78133611345565b610af4576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610b7a5760405162461bcd60e51b815260040161077790611f7a565b8051610a3690600b906020840190611b52565b600154600054036000190190565b6008546001600160a01b03163314610bc55760405162461bcd60e51b815260040161077790611f7a565b600d55565b610bd583838361157e565b505050565b6000600282610be833610e75565b610bf29190611fff565b11158015610c0857506103e8610c06610b8d565b105b15610c15575050600c5490565b600a82610c2133610e75565b610c2b9190611fff565b11158015610c415750600e54610c3f610b8d565b105b15610c4e575050600d5490565b919050565b6008546001600160a01b03163314610c7d5760405162461bcd60e51b815260040161077790611f7a565b600260095403610ccf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610777565b60026009556040514790733c8aed7af5004db3cf1594e54dc598f678fb7e0a9082156108fc029083906000818181858888f19350505050158015610d17573d6000803e3d6000fd5b506000610d2c6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d76576040519150601f19603f3d011682016040523d82523d6000602084013e610d7b565b606091505b5050905080610d8957600080fd5b50506001600955565b610bd58383836040518060200160405280600081525061114e565b600b8054610dba90611faf565b80601f0160208091040260200160405190810160405280929190818152602001828054610de690611faf565b8015610e335780601f10610e0857610100808354040283529160200191610e33565b820191906000526020600020905b815481529060010190602001808311610e1657829003601f168201915b505050505081565b6008546001600160a01b03163314610e655760405162461bcd60e51b815260040161077790611f7a565b600f55565b60006107d18261150f565b60006001600160a01b038216610e9e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610eee5760405162461bcd60e51b815260040161077790611f7a565b610ef86000611725565b565b6008546001600160a01b03163314610f245760405162461bcd60e51b815260040161077790611f7a565b601055565b6008546001600160a01b03163314610f535760405162461bcd60e51b815260040161077790611f7a565b600e5482610f5f610b8d565b610f699190611fff565b1115610fae5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610777565b610a3681836114c0565b60606000610fc583610e75565b67ffffffffffffffff811115610fdd57610fdd611ce3565b604051908082528060200260200182016040528015611006578160200160208202803683370190505b509050600061101460005490565b905060008060005b8381101561109f57600061102f82611777565b90508060400151156110415750611097565b80516001600160a01b03161561105657805192505b876001600160a01b0316836001600160a01b031603611095578186858060010196508151811061108857611088612036565b6020026020010181815250505b505b60010161101c565b509295945050505050565b6060600380546107e690611faf565b336001600160a01b038316036110e25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61115984848461157e565b6001600160a01b0383163b1561119257611175848484846117e2565b611192576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606111a3826114da565b6112075760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610777565b60006112116118ce565b90506000815111611231576040518060200160405280600081525061125f565b8061123b846118dd565b600b60405160200161124f9392919061204c565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146112905760405162461bcd60e51b815260040161077790611f7a565b6012805460ff1916911515919091179055565b6008546001600160a01b031633146112cd5760405162461bcd60e51b815260040161077790611f7a565b601155565b6008546001600160a01b031633146112fc5760405162461bcd60e51b815260040161077790611f7a565b600c55565b6008546001600160a01b0316331461132b5760405162461bcd60e51b815260040161077790611f7a565b601280549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600a8054610dba90611faf565b6008546001600160a01b031633146113aa5760405162461bcd60e51b815260040161077790611f7a565b6001600160a01b03811661140f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610777565b61141881611725565b50565b6008546001600160a01b031633146114455760405162461bcd60e51b815260040161077790611f7a565b8051610a3690600a906020840190611b52565b600060028261146633610e75565b6114709190611fff565b1115801561147f57506103e883105b1561148d5750600c546107d1565b600a8261149933610e75565b6114a39190611fff565b111580156114b25750600e5483105b156107d15750600d546107d1565b610a368282604051806020016040528060008152506119de565b6000816001111580156114ee575060005482105b80156107d1575050600090815260046020526040902054600160e01b161590565b60008180600111611565576000548110156115655760008181526004602052604081205490600160e01b82169003611563575b8060000361125f575060001901600081815260046020526040902054611542565b505b604051636f96cda160e11b815260040160405180910390fd5b60006115898261150f565b9050836001600160a01b0316816001600160a01b0316146115bc5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115da57506115da8533611345565b806115f55750336115ea84610a3a565b6001600160a01b0316145b90508061161557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661163c57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b87178117909155831690036116dd576001830160008181526004602052604081205490036116db5760005481146116db5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051606081018252600080825260208201819052918101919091526000828152600460205260409020546107d190604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061181790339089908890889060040161210f565b6020604051808303816000875af1925050508015611852575060408051601f3d908101601f1916820190925261184f9181019061214c565b60015b6118b0573d808015611880576040519150601f19603f3d011682016040523d82523d6000602084013e611885565b606091505b5080516000036118a8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546107e690611faf565b6060816000036119045750506040805180820190915260018152600360fc1b602082015290565b8160005b811561192e578061191881612169565b91506119279050600a83612198565b9150611908565b60008167ffffffffffffffff81111561194957611949611ce3565b6040519080825280601f01601f191660200182016040528015611973576020820181803683370190505b5090505b84156118c6576119886001836121ac565b9150611995600a866121c3565b6119a0906030611fff565b60f81b8183815181106119b5576119b5612036565b60200101906001600160f81b031916908160001a9053506119d7600a86612198565b9450611977565b6000546001600160a01b038416611a0757604051622e076360e81b815260040160405180910390fd5b82600003611a285760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611afd575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ac660008784806001019550876117e2565b611ae3576040516368d2bf6b60e11b815260040160405180910390fd5b808210611a7b578260005414611af857600080fd5b611b42565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611afe575b5060009081556111929085838684565b828054611b5e90611faf565b90600052602060002090601f016020900481019282611b805760008555611bc6565b82601f10611b9957805160ff1916838001178555611bc6565b82800160010185558215611bc6579182015b82811115611bc6578251825591602001919060010190611bab565b50611bd2929150611bd6565b5090565b5b80821115611bd25760008155600101611bd7565b600060208284031215611bfd57600080fd5b5035919050565b6001600160e01b03198116811461141857600080fd5b600060208284031215611c2c57600080fd5b813561125f81611c04565b60005b83811015611c52578181015183820152602001611c3a565b838111156111925750506000910152565b60008151808452611c7b816020860160208601611c37565b601f01601f19169290920160200192915050565b60208152600061125f6020830184611c63565b80356001600160a01b0381168114610c4e57600080fd5b60008060408385031215611ccc57600080fd5b611cd583611ca2565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d1457611d14611ce3565b604051601f8501601f19908116603f01168101908282118183101715611d3c57611d3c611ce3565b81604052809350858152868686011115611d5557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d8157600080fd5b813567ffffffffffffffff811115611d9857600080fd5b8201601f81018413611da957600080fd5b6118c684823560208401611cf9565b600080600060608486031215611dcd57600080fd5b611dd684611ca2565b9250611de460208501611ca2565b9150604084013590509250925092565b600060208284031215611e0657600080fd5b61125f82611ca2565b60008060408385031215611e2257600080fd5b82359150611e3260208401611ca2565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015611e7357835183529284019291840191600101611e57565b50909695505050505050565b80358015158114610c4e57600080fd5b60008060408385031215611ea257600080fd5b611eab83611ca2565b9150611e3260208401611e7f565b60008060008060808587031215611ecf57600080fd5b611ed885611ca2565b9350611ee660208601611ca2565b925060408501359150606085013567ffffffffffffffff811115611f0957600080fd5b8501601f81018713611f1a57600080fd5b611f2987823560208401611cf9565b91505092959194509250565b600060208284031215611f4757600080fd5b61125f82611e7f565b60008060408385031215611f6357600080fd5b611f6c83611ca2565b9150611e3260208401611ca2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611fc357607f821691505b602082108103611fe357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561201257612012611fe9565b500190565b600081600019048311821515161561203157612031611fe9565b500290565b634e487b7160e01b600052603260045260246000fd5b60008451602061205f8285838a01611c37565b8551918401916120728184848a01611c37565b8554920191600090600181811c908083168061208f57607f831692505b85831081036120ac57634e487b7160e01b85526022600452602485fd5b8080156120c057600181146120d1576120fe565b60ff198516885283880195506120fe565b60008b81526020902060005b858110156120f65781548a8201529084019088016120dd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061214290830184611c63565b9695505050505050565b60006020828403121561215e57600080fd5b815161125f81611c04565b60006001820161217b5761217b611fe9565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826121a7576121a7612182565b500490565b6000828210156121be576121be611fe9565b500390565b6000826121d2576121d2612182565b50069056fea264697066735822122069d7f598a2aaf37e1fc8f4fc6653f64bbdf703a0e369f5c8680680be16fd45a564736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d636d385951714450377357314d5a4465684a6d564b755a4a3232557a784762436a684b566639486b674647792f00000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://Qmcm8YQqDP7sW1MZDehJmVKuZJ22UzxGbCjhKVf9HkgFGy/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d636d385951714450377357314d5a4465684a6d564b755a
Arg [3] : 4a3232557a784762436a684b566639486b674647792f00000000000000000000


Deployed Bytecode Sourcemap

58297:5763:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61607:102;;;;;;;;;;-1:-1:-1;61607:102:0;;;;;:::i;:::-;;:::i;:::-;;13106:615;;;;;;;;;;-1:-1:-1;13106:615:0;;;;;:::i;:::-;;:::i;:::-;;;750:14:1;;743:22;725:41;;713:2;698:18;13106:615:0;;;;;;;;18119:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;59530:610::-;;;;;;:::i;:::-;;:::i;20187:204::-;;;;;;;;;;-1:-1:-1;20187:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;20187:204:0;1528:203:1;19647:474:0;;;;;;;;;;-1:-1:-1;19647:474:0;;;;;:::i;:::-;;:::i;60683:100::-;;;;;;;;;;-1:-1:-1;60683:100:0;;;;;:::i;:::-;;:::i;12160:315::-;;;;;;;;;;;;;:::i;:::-;;;3544:25:1;;;3532:2;3517:18;12160:315:0;3398:177:1;58597:33:0;;;;;;;;;;;;;;;;61504:78;;;;;;;;;;-1:-1:-1;61504:78:0;;;;;:::i;:::-;;:::i;58635:43::-;;;;;;;;;;;;;;;;21073:170;;;;;;;;;;-1:-1:-1;21073:170:0;;;;;:::i;:::-;;:::i;62292:315::-;;;;;;;;;;-1:-1:-1;62292:315:0;;;;;:::i;:::-;;:::i;58523:30::-;;;;;;;;;;;;;;;;61857:288;;;;;;;;;;;;;:::i;21314:185::-;;;;;;;;;;-1:-1:-1;21314:185:0;;;;;:::i;:::-;;:::i;58803:27::-;;;;;;;;;;-1:-1:-1;58803:27:0;;;;;;;;;;;58485:33;;;;;;;;;;;;;:::i;58732:37::-;;;;;;;;;;;;;;;;60911:154;;;;;;;;;;-1:-1:-1;60911:154:0;;;;;:::i;:::-;;:::i;17908:144::-;;;;;;;;;;-1:-1:-1;17908:144:0;;;;;:::i;:::-;;:::i;58683:44::-;;;;;;;;;;;;;;;;58774:24;;;;;;;;;;-1:-1:-1;58774:24:0;;;;;;;;13785:224;;;;;;;;;;-1:-1:-1;13785:224:0;;;;;:::i;:::-;;:::i;54632:103::-;;;;;;;;;;;;;:::i;61095:154::-;;;;;;;;;;-1:-1:-1;61095:154:0;;;;;:::i;:::-;;:::i;60148:202::-;;;;;;;;;;-1:-1:-1;60148:202:0;;;;;:::i;:::-;;:::i;62611:712::-;;;;;;;;;;-1:-1:-1;62611:712:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53981:87::-;;;;;;;;;;-1:-1:-1;54054:6:0;;-1:-1:-1;;;;;54054:6:0;53981:87;;18288:104;;;;;;;;;;;;;:::i;58558:34::-;;;;;;;;;;;;;;;;20463:308;;;;;;;;;;-1:-1:-1;20463:308:0;;;;;:::i;:::-;;:::i;21570:396::-;;;;;;;;;;-1:-1:-1;21570:396:0;;;;;:::i;:::-;;:::i;63430:451::-;;;;;;;;;;-1:-1:-1;63430:451:0;;;;;:::i;:::-;;:::i;60806:77::-;;;;;;;;;;-1:-1:-1;60806:77:0;;;;;:::i;:::-;;:::i;61274:126::-;;;;;;;;;;-1:-1:-1;61274:126:0;;;;;:::i;:::-;;:::i;61418:78::-;;;;;;;;;;-1:-1:-1;61418:78:0;;;;;:::i;:::-;;:::i;60506:81::-;;;;;;;;;;-1:-1:-1;60506:81:0;;;;;:::i;:::-;;:::i;20842:164::-;;;;;;;;;;-1:-1:-1;20842:164:0;;;;;:::i;:::-;;:::i;58463:17::-;;;;;;;;;;;;;:::i;54890:201::-;;;;;;;;;;-1:-1:-1;54890:201:0;;;;;:::i;:::-;;:::i;60601:76::-;;;;;;;;;;-1:-1:-1;60601:76:0;;;;;:::i;:::-;;:::i;61607:102::-;54054:6;;-1:-1:-1;;;;;54054:6:0;52785:10;54201:23;54193:68;;;;-1:-1:-1;;;54193:68:0;;;;;;;:::i;:::-;;;;;;;;;61677:11:::1;:26:::0;61607:102::o;13106:615::-;13191:4;-1:-1:-1;;;;;;;;;13491:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;13568:25:0;;;13491:102;:179;;;-1:-1:-1;;;;;;;;;;13645:25:0;;;13491:179;13471:199;13106:615;-1:-1:-1;;13106:615:0:o;18119:100::-;18173:13;18206:5;18199:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18119:100;:::o;59530:610::-;59608:14;59625:13;:11;:13::i;:::-;59682:4;;59608:30;;-1:-1:-1;59682:4:0;;59674:36;;;;-1:-1:-1;;;59674:36:0;;7494:2:1;59674:36:0;;;7476:21:1;7533:2;7513:18;;;7506:30;-1:-1:-1;;;7552:18:1;;;7545:49;7611:18;;59674:36:0;7292:343:1;59674:36:0;59739:1;59725:11;:15;:36;;;;;59759:2;59744:11;:17;;59725:36;59717:69;;;;-1:-1:-1;;;59717:69:0;;7842:2:1;59717:69:0;;;7824:21:1;7881:2;7861:18;;;7854:30;-1:-1:-1;;;7900:18:1;;;7893:50;7960:18;;59717:69:0;7640:344:1;59717:69:0;59832:11;;59817;59801:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;59793:75;;;;-1:-1:-1;;;59793:75:0;;8456:2:1;59793:75:0;;;8438:21:1;8495:2;8475:18;;;8468:30;-1:-1:-1;;;8514:18:1;;;8507:50;8574:18;;59793:75:0;8254:344:1;59793:75:0;59922:17;;59907:11;59883:21;59893:10;59883:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;59875:98;;;;-1:-1:-1;;;59875:98:0;;8805:2:1;59875:98:0;;;8787:21:1;8844:2;8824:18;;;8817:30;8883:31;8863:18;;;8856:59;8932:18;;59875:98:0;8603:353:1;59875:98:0;60035:11;60001:31;60012:6;60020:11;60001:10;:31::i;:::-;:45;;;;:::i;:::-;59988:9;:58;;59980:90;;;;-1:-1:-1;;;59980:90:0;;9336:2:1;59980:90:0;;;9318:21:1;9375:2;9355:18;;;9348:30;-1:-1:-1;;;9394:18:1;;;9387:49;9453:18;;59980:90:0;9134:343:1;59980:90:0;60098:36;52785:10;60122:11;60098:9;:36::i;:::-;59580:560;59530:610;:::o;20187:204::-;20255:7;20280:16;20288:7;20280;:16::i;:::-;20275:64;;20305:34;;-1:-1:-1;;;20305:34:0;;;;;;;;;;;20275:64;-1:-1:-1;20359:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20359:24:0;;20187:204::o;19647:474::-;19720:13;19752:27;19771:7;19752:18;:27::i;:::-;19720:61;;19802:5;-1:-1:-1;;;;;19796:11:0;:2;-1:-1:-1;;;;;19796:11:0;;19792:48;;19816:24;;-1:-1:-1;;;19816:24:0;;;;;;;;;;;19792:48;52785:10;-1:-1:-1;;;;;19857:28:0;;;19853:175;;19905:44;19922:5;52785:10;20842:164;:::i;19905:44::-;19900:128;;19977:35;;-1:-1:-1;;;19977:35:0;;;;;;;;;;;19900:128;20040:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20040:29:0;-1:-1:-1;;;;;20040:29:0;;;;;;;;;20085:28;;20040:24;;20085:28;;;;;;;19709:412;19647:474;;:::o;60683:100::-;54054:6;;-1:-1:-1;;;;;54054:6:0;52785:10;54201:23;54193:68;;;;-1:-1:-1;;;54193:68:0;;;;;;;:::i;:::-;60755:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;12160:315::-:0;63417:1;12426:12;12213:7;12410:13;:28;-1:-1:-1;;12410:46:0;;12160:315::o;61504:78::-;54054:6;;-1:-1:-1;;;;;54054:6:0;52785:10;54201:23;54193:68;;;;-1:-1:-1;;;54193:68:0;;;;;;;:::i;:::-;61562:5:::1;:14:::0;61504:78::o;21073:170::-;21207:28;21217:4;21223:2;21227:7;21207:9;:28::i;:::-;21073:170;;;:::o;62292:315::-;62349:7;62412:1;62397:11;62373:21;62383:10;62373:9;:21::i;:::-;:35;;;;:::i;:::-;:40;;:63;;;;;62432:4;62417:13;:11;:13::i;:::-;:19;62373:63;62369:108;;;-1:-1:-1;;62458:5:0;;;62292:315::o;62369:108::-;62531:2;62516:11;62492:21;62502:10;62492:9;:21::i;:::-;:35;;;;:::i;:::-;:41;;:72;;;;;62553:11;;62537:13;:11;:13::i;:::-;:27;62492:72;62488:114;;;-1:-1:-1;;62585:5:0;;;62292:315::o;62488:114::-;62292:315;;;:::o;61857:288::-;54054:6;;-1:-1:-1;;;;;54054:6:0;52785:10;54201:23;54193:68;;;;-1:-1:-1;;;54193:68:0;;;;;;;:::i;:::-;57261:1:::1;57859:7;;:19:::0;57851:63:::1;;;::::0;-1:-1:-1;;;57851:63:0;;9684:2:1;57851:63:0::1;::::0;::::1;9666:21:1::0;9723:2;9703:18;;;9696:30;9762:33;9742:18;;;9735:61;9813:18;;57851:63:0::1;9482:355:1::0;57851:63:0::1;57261:1;57992:7;:18:::0;61966:70:::2;::::0;61934:21:::2;::::0;61974:42:::2;::::0;61966:70;::::2;;;::::0;61934:21;;61918:13:::2;61966:70:::0;61918:13;61966:70;61934:21;61974:42;61966:70;::::2;;;;;;;;;;;;;::::0;::::2;;;;;;62049:7;62070;54054:6:::0;;-1:-1:-1;;;;;54054:6:0;;53981:87;62070:7:::2;-1:-1:-1::0;;;;;62062:21:0::2;62091;62062:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62048:69;;;62136:2;62128:11;;;::::0;::::2;;-1:-1:-1::0;;57217:1:0::1;58171:7;:22:::0;61857:288::o;21314:185::-;21452:39;21469:4;21475:2;21479:7;21452:39;;;;;;;;;;;;:16;:39::i;58485:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60911:154::-;54054:6;;-1:-1:-1;;;;;54054:6:0;52785:10;54201:23;54193:68;;;;-1:-1:-1;;;54193:68:0;;;;;;;:::i;:::-;61007:24:::1;:52:::0;60911:154::o;17908:144::-;17972:7;18015:27;18034:7;18015:18;:27::i;13785:224::-;13849:7;-1:-1:-1;;;;;13873:19:0;;13869:60;;13901:28;;-1:-1:-1;;;13901:28:0;;;;;;;;;;;13869:60;-1:-1:-1;;;;;;13947:25:0;;;;;:18;:25;;;;;;9124:13;13947:54;;13785:224::o;54632:103::-;54054:6;;-1:-1:-1;;;;;54054:6:0;52785:10;54201:23;54193:68;;;;-1:-1:-1;;;54193:68:0;;;;;;;:::i;:::-;54697:30:::1;54724:1;54697:18;:30::i;:::-;54632:103::o:0;61095:154::-;54054:6;;-1:-1:-1;;;;;54054:6:0;52785:10;54201:23;54193:68;;;;-1:-1:-1;;;54193:68:0;;;;;;;:::i;:::-;61191:24:::1;:52:::0;61095:154::o;60148:202::-;54054:6;;-1:-1:-1;;;;;54054:6:0;52785:10;54201:23;54193:68;;;;-1:-1:-1;;;54193:68:0;;;;;;;:::i;:::-;60268:11:::1;;60253;60237:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;60229:75;;;::::0;-1:-1:-1;;;60229:75:0;;8456:2:1;60229:75:0::1;::::0;::::1;8438:21:1::0;8495:2;8475:18;;;8468:30;-1:-1:-1;;;8514:18:1;;;8507:50;8574:18;;60229:75:0::1;8254:344:1::0;60229:75:0::1;60311:33;60321:9;60332:11;60311:9;:33::i;62611:712::-:0;62672:16;62718:18;62753:16;62763:5;62753:9;:16::i;:::-;62739:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62739:31:0;;62718:52;;62782:11;62796:14;11901:7;11928:13;;11854:95;62796:14;62782:28;;62821:19;62851:25;62892:9;62887:403;62907:3;62903:1;:7;62887:403;;;62932:31;62966:15;62979:1;62966:12;:15::i;:::-;62932:49;;63000:9;:16;;;62996:65;;;63037:8;;;62996:65;63079:14;;-1:-1:-1;;;;;63079:28:0;;63075:103;;63148:14;;;-1:-1:-1;63075:103:0;63217:5;-1:-1:-1;;;;;63196:26:0;:17;-1:-1:-1;;;;;63196:26:0;;63192:87;;63262:1;63243;63245:13;;;;;;63243:16;;;;;;;;:::i;:::-;;;;;;:20;;;;;63192:87;62917:373;62887:403;62912:3;;62887:403;;;-1:-1:-1;63307:1:0;;62611:712;-1:-1:-1;;;;;62611:712:0:o;18288:104::-;18344:13;18377:7;18370:14;;;;;:::i;20463:308::-;52785:10;-1:-1:-1;;;;;20562:31:0;;;20558:61;;20602:17;;-1:-1:-1;;;20602:17:0;;;;;;;;;;;20558:61;52785:10;20632:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;20632:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;20632:60:0;;;;;;;;;;20708:55;;725:41:1;;;20632:49:0;;52785:10;20708:55;;698:18:1;20708:55:0;;;;;;;20463:308;;:::o;21570:396::-;21737:28;21747:4;21753:2;21757:7;21737:9;:28::i;:::-;-1:-1:-1;;;;;21780:14:0;;;:19;21776:183;;21819:56;21850:4;21856:2;21860:7;21869:5;21819:30;:56::i;:::-;21814:145;;21903:40;;-1:-1:-1;;;21903:40:0;;;;;;;;;;;21814:145;21570:396;;;;:::o;63430:451::-;63504:13;63534:17;63542:8;63534:7;:17::i;:::-;63526:77;;;;-1:-1:-1;;;63526:77:0;;10386:2:1;63526:77:0;;;10368:21:1;10425:2;10405:18;;;10398:30;10464:34;10444:18;;;10437:62;-1:-1:-1;;;10515:18:1;;;10508:45;10570:19;;63526:77:0;10184:411:1;63526:77:0;63690:28;63721:10;:8;:10::i;:::-;63690:41;;63776:1;63751:14;63745:28;:32;:130;;;;;;;;;;;;;;;;;63813:14;63829:19;:8;:17;:19::i;:::-;63850:9;63796:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63745:130;63738:137;63430:451;-1:-1:-1;;;63430:451:0:o;60806:77::-;54054:6;;-1:-1:-1;;;;;54054:6:0;52785:10;54201:23;54193:68;;;;-1:-1:-1;;;54193:68:0;;;;;;;:::i;:::-;60865:4:::1;:12:::0;;-1:-1:-1;;60865:12:0::1;::::0;::::1;;::::0;;;::::1;::::0;;60806:77::o;61274:126::-;54054:6;;-1:-1:-1;;;;;54054:6:0;52785:10;54201:23;54193:68;;;;-1:-1:-1;;;54193:68:0;;;;;;;:::i;:::-;61356:17:::1;:38:::0;61274:126::o;61418:78::-;54054:6;;-1:-1:-1;;;;;54054:6:0;52785:10;54201:23;54193:68;;;;-1:-1:-1;;;54193:68:0;;;;;;;:::i;:::-;61476:5:::1;:14:::0;61418:78::o;60506:81::-;54054:6;;-1:-1:-1;;;;;54054:6:0;52785:10;54201:23;54193:68;;;;-1:-1:-1;;;54193:68:0;;;;;;;:::i;:::-;60564:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;60564:17:0;;::::1;::::0;;;::::1;::::0;;60506:81::o;20842:164::-;-1:-1:-1;;;;;20963:25:0;;;20939:4;20963:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20842:164::o;58463:17::-;;;;;;;:::i;54890:201::-;54054:6;;-1:-1:-1;;;;;54054:6:0;52785:10;54201:23;54193:68;;;;-1:-1:-1;;;54193:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54979:22:0;::::1;54971:73;;;::::0;-1:-1:-1;;;54971:73:0;;12460:2:1;54971:73:0::1;::::0;::::1;12442:21:1::0;12499:2;12479:18;;;12472:30;12538:34;12518:18;;;12511:62;-1:-1:-1;;;12589:18:1;;;12582:36;12635:19;;54971:73:0::1;12258:402:1::0;54971:73:0::1;55055:28;55074:8;55055:18;:28::i;:::-;54890:201:::0;:::o;60601:76::-;54054:6;;-1:-1:-1;;;;;54054:6:0;52785:10;54201:23;54193:68;;;;-1:-1:-1;;;54193:68:0;;;;;;;:::i;:::-;60661:10;;::::1;::::0;:3:::1;::::0;:10:::1;::::0;::::1;::::0;::::1;:::i;59209:313::-:0;59291:13;59358:1;59343:11;59319:21;59329:10;59319:9;:21::i;:::-;:35;;;;:::i;:::-;:40;;:57;;;;;59372:4;59363:7;:13;59319:57;59315:94;;;-1:-1:-1;59396:5:0;;59389:12;;59315:94;59458:2;59443:11;59419:21;59429:10;59419:9;:21::i;:::-;:35;;;;:::i;:::-;:41;;:66;;;;;59474:11;;59464:7;:21;59419:66;59415:102;;;-1:-1:-1;59504:5:0;;59497:12;;22578:104;22647:27;22657:2;22661:8;22647:27;;;;;;;;;;;;:9;:27::i;22221:273::-;22278:4;22334:7;63417:1;22315:26;;:66;;;;;22368:13;;22358:7;:23;22315:66;:152;;;;-1:-1:-1;;22419:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;22419:43:0;:48;;22221:273::o;15423:1129::-;15490:7;15525;;63417:1;15574:23;15570:915;;15627:13;;15620:4;:20;15616:869;;;15665:14;15682:23;;;:17;:23;;;;;;;-1:-1:-1;;;15771:23:0;;:28;;15767:699;;16290:113;16297:6;16307:1;16297:11;16290:113;;-1:-1:-1;;;16368:6:0;16350:25;;;;:17;:25;;;;;;16290:113;;15767:699;15642:843;15616:869;16513:31;;-1:-1:-1;;;16513:31:0;;;;;;;;;;;27460:2515;27575:27;27605;27624:7;27605:18;:27::i;:::-;27575:57;;27690:4;-1:-1:-1;;;;;27649:45:0;27665:19;-1:-1:-1;;;;;27649:45:0;;27645:86;;27703:28;;-1:-1:-1;;;27703:28:0;;;;;;;;;;;27645:86;27744:22;52785:10;-1:-1:-1;;;;;27770:27:0;;;;:87;;-1:-1:-1;27814:43:0;27831:4;52785:10;20842:164;:::i;27814:43::-;27770:147;;;-1:-1:-1;52785:10:0;27874:20;27886:7;27874:11;:20::i;:::-;-1:-1:-1;;;;;27874:43:0;;27770:147;27744:174;;27936:17;27931:66;;27962:35;;-1:-1:-1;;;27962:35:0;;;;;;;;;;;27931:66;-1:-1:-1;;;;;28012:16:0;;28008:52;;28037:23;;-1:-1:-1;;;28037:23:0;;;;;;;;;;;28008:52;28189:24;;;;:15;:24;;;;;;;;28182:31;;-1:-1:-1;;;;;;28182:31:0;;;-1:-1:-1;;;;;28581:24:0;;;;;:18;:24;;;;;28579:26;;-1:-1:-1;;28579:26:0;;;28650:22;;;;;;;28648:24;;-1:-1:-1;28648:24:0;;;28943:26;;;:17;:26;;;;;-1:-1:-1;;;29031:15:0;9778:3;29031:41;28989:84;;:128;;28943:174;;;29237:46;;:51;;29233:626;;29341:1;29331:11;;29309:19;29464:30;;;:17;:30;;;;;;:35;;29460:384;;29602:13;;29587:11;:28;29583:242;;29749:30;;;;:17;:30;;;;;:52;;;29583:242;29290:569;29233:626;29906:7;29902:2;-1:-1:-1;;;;;29887:27:0;29896:4;-1:-1:-1;;;;;29887:27:0;;;;;;;;;;;27564:2411;;27460:2515;;;:::o;55251:191::-;55344:6;;;-1:-1:-1;;;;;55361:17:0;;;-1:-1:-1;;;;;;55361:17:0;;;;;;;55394:40;;55344:6;;;55361:17;55344:6;;55394:40;;55325:16;;55394:40;55314:128;55251:191;:::o;17032:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;17152:24:0;;;;:17;:24;;;;;;17133:44;;-1:-1:-1;;;;;;;;;;;;;16756:41:0;;;;9778:3;16842:32;;;16808:67;;-1:-1:-1;;;16808:67:0;-1:-1:-1;;;16905:23:0;;;:28;;-1:-1:-1;;;16886:47:0;-1:-1:-1;16646:295:0;33672:718;33858:88;;-1:-1:-1;;;33858:88:0;;33837:4;;-1:-1:-1;;;;;33858:45:0;;;;;:88;;52785:10;;33925:4;;33931:7;;33940:5;;33858:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33858:88:0;;;;;;;;-1:-1:-1;;33858:88:0;;;;;;;;;;;;:::i;:::-;;;33854:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34141:6;:13;34158:1;34141:18;34137:235;;34187:40;;-1:-1:-1;;;34187:40:0;;;;;;;;;;;34137:235;34330:6;34324:13;34315:6;34311:2;34307:15;34300:38;33854:529;-1:-1:-1;;;;;;34017:64:0;-1:-1:-1;;;34017:64:0;;-1:-1:-1;33854:529:0;33672:718;;;;;;:::o;63887:98::-;63947:13;63976:3;63969:10;;;;;:::i;47396:723::-;47452:13;47673:5;47682:1;47673:10;47669:53;;-1:-1:-1;;47700:10:0;;;;;;;;;;;;-1:-1:-1;;;47700:10:0;;;;;47396:723::o;47669:53::-;47747:5;47732:12;47788:78;47795:9;;47788:78;;47821:8;;;;:::i;:::-;;-1:-1:-1;47844:10:0;;-1:-1:-1;47852:2:0;47844:10;;:::i;:::-;;;47788:78;;;47876:19;47908:6;47898:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47898:17:0;;47876:39;;47926:154;47933:10;;47926:154;;47960:11;47970:1;47960:11;;:::i;:::-;;-1:-1:-1;48029:10:0;48037:2;48029:5;:10;:::i;:::-;48016:24;;:2;:24;:::i;:::-;48003:39;;47986:6;47993;47986:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;47986:56:0;;;;;;;;-1:-1:-1;48057:11:0;48066:2;48057:11;;:::i;:::-;;;47926:154;;23055:2236;23178:20;23201:13;-1:-1:-1;;;;;23229:16:0;;23225:48;;23254:19;;-1:-1:-1;;;23254:19:0;;;;;;;;;;;23225:48;23288:8;23300:1;23288:13;23284:44;;23310:18;;-1:-1:-1;;;23310:18:0;;;;;;;;;;;23284:44;-1:-1:-1;;;;;23877:22:0;;;;;;:18;:22;;;;9261:2;23877:22;;;:70;;23915:31;23903:44;;23877:70;;;24190:31;;;:17;:31;;;;;24283:15;9778:3;24283:41;24241:84;;-1:-1:-1;24361:13:0;;10041:3;24346:56;24241:162;24190:213;;:31;;24484:23;;;;24528:14;:19;24524:635;;24568:313;24599:38;;24624:12;;-1:-1:-1;;;;;24599:38:0;;;24616:1;;24599:38;;24616:1;;24599:38;24665:69;24704:1;24708:2;24712:14;;;;;;24728:5;24665:30;:69::i;:::-;24660:174;;24770:40;;-1:-1:-1;;;24770:40:0;;;;;;;;;;;24660:174;24876:3;24861:12;:18;24568:313;;24962:12;24945:13;;:29;24941:43;;24976:8;;;24941:43;24524:635;;;25025:119;25056:40;;25081:14;;;;;-1:-1:-1;;;;;25056:40:0;;;25073:1;;25056:40;;25073:1;;25056:40;25139:3;25124:12;:18;25025:119;;24524:635;-1:-1:-1;25173:13:0;:28;;;25223:60;;25256:2;25260:12;25274:8;25223:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:131::-;-1:-1:-1;;;;;;273:32:1;;263:43;;253:71;;320:1;317;310:12;335:245;393:6;446:2;434:9;425:7;421:23;417:32;414:52;;;462:1;459;452:12;414:52;501:9;488:23;520:30;544:5;520:30;:::i;777:258::-;849:1;859:113;873:6;870:1;867:13;859:113;;;949:11;;;943:18;930:11;;;923:39;895:2;888:10;859:113;;;990:6;987:1;984:13;981:48;;;-1:-1:-1;;1025:1:1;1007:16;;1000:27;777:258::o;1040:::-;1082:3;1120:5;1114:12;1147:6;1142:3;1135:19;1163:63;1219:6;1212:4;1207:3;1203:14;1196:4;1189:5;1185:16;1163:63;:::i;:::-;1280:2;1259:15;-1:-1:-1;;1255:29:1;1246:39;;;;1287:4;1242:50;;1040:258;-1:-1:-1;;1040:258:1:o;1303:220::-;1452:2;1441:9;1434:21;1415:4;1472:45;1513:2;1502:9;1498:18;1490:6;1472:45;:::i;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1914:254;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:632;2370:5;2400:18;2441:2;2433:6;2430:14;2427:40;;;2447:18;;:::i;:::-;2522:2;2516:9;2490:2;2576:15;;-1:-1:-1;;2572:24:1;;;2598:2;2568:33;2564:42;2552:55;;;2622:18;;;2642:22;;;2619:46;2616:72;;;2668:18;;:::i;:::-;2708:10;2704:2;2697:22;2737:6;2728:15;;2767:6;2759;2752:22;2807:3;2798:6;2793:3;2789:16;2786:25;2783:45;;;2824:1;2821;2814:12;2783:45;2874:6;2869:3;2862:4;2854:6;2850:17;2837:44;2929:1;2922:4;2913:6;2905;2901:19;2897:30;2890:41;;;;2305:632;;;;;:::o;2942:451::-;3011:6;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3120:9;3107:23;3153:18;3145:6;3142:30;3139:50;;;3185:1;3182;3175:12;3139:50;3208:22;;3261:4;3253:13;;3249:27;-1:-1:-1;3239:55:1;;3290:1;3287;3280:12;3239:55;3313:74;3379:7;3374:2;3361:16;3356:2;3352;3348:11;3313:74;:::i;3580:328::-;3657:6;3665;3673;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3765:29;3784:9;3765:29;:::i;:::-;3755:39;;3813:38;3847:2;3836:9;3832:18;3813:38;:::i;:::-;3803:48;;3898:2;3887:9;3883:18;3870:32;3860:42;;3580:328;;;;;:::o;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:254::-;4172:6;4180;4233:2;4221:9;4212:7;4208:23;4204:32;4201:52;;;4249:1;4246;4239:12;4201:52;4285:9;4272:23;4262:33;;4314:38;4348:2;4337:9;4333:18;4314:38;:::i;:::-;4304:48;;4104:254;;;;;:::o;4363:632::-;4534:2;4586:21;;;4656:13;;4559:18;;;4678:22;;;4505:4;;4534:2;4757:15;;;;4731:2;4716:18;;;4505:4;4800:169;4814:6;4811:1;4808:13;4800:169;;;4875:13;;4863:26;;4944:15;;;;4909:12;;;;4836:1;4829:9;4800:169;;;-1:-1:-1;4986:3:1;;4363:632;-1:-1:-1;;;;;;4363:632:1:o;5000:160::-;5065:20;;5121:13;;5114:21;5104:32;;5094:60;;5150:1;5147;5140:12;5165:254;5230:6;5238;5291:2;5279:9;5270:7;5266:23;5262:32;5259:52;;;5307:1;5304;5297:12;5259:52;5330:29;5349:9;5330:29;:::i;:::-;5320:39;;5378:35;5409:2;5398:9;5394:18;5378:35;:::i;5424:667::-;5519:6;5527;5535;5543;5596:3;5584:9;5575:7;5571:23;5567:33;5564:53;;;5613:1;5610;5603:12;5564:53;5636:29;5655:9;5636:29;:::i;:::-;5626:39;;5684:38;5718:2;5707:9;5703:18;5684:38;:::i;:::-;5674:48;;5769:2;5758:9;5754:18;5741:32;5731:42;;5824:2;5813:9;5809:18;5796:32;5851:18;5843:6;5840:30;5837:50;;;5883:1;5880;5873:12;5837:50;5906:22;;5959:4;5951:13;;5947:27;-1:-1:-1;5937:55:1;;5988:1;5985;5978:12;5937:55;6011:74;6077:7;6072:2;6059:16;6054:2;6050;6046:11;6011:74;:::i;:::-;6001:84;;;5424:667;;;;;;;:::o;6096:180::-;6152:6;6205:2;6193:9;6184:7;6180:23;6176:32;6173:52;;;6221:1;6218;6211:12;6173:52;6244:26;6260:9;6244:26;:::i;6281:260::-;6349:6;6357;6410:2;6398:9;6389:7;6385:23;6381:32;6378:52;;;6426:1;6423;6416:12;6378:52;6449:29;6468:9;6449:29;:::i;:::-;6439:39;;6497:38;6531:2;6520:9;6516:18;6497:38;:::i;6546:356::-;6748:2;6730:21;;;6767:18;;;6760:30;6826:34;6821:2;6806:18;;6799:62;6893:2;6878:18;;6546:356::o;6907:380::-;6986:1;6982:12;;;;7029;;;7050:61;;7104:4;7096:6;7092:17;7082:27;;7050:61;7157:2;7149:6;7146:14;7126:18;7123:38;7120:161;;7203:10;7198:3;7194:20;7191:1;7184:31;7238:4;7235:1;7228:15;7266:4;7263:1;7256:15;7120:161;;6907:380;;;:::o;7989:127::-;8050:10;8045:3;8041:20;8038:1;8031:31;8081:4;8078:1;8071:15;8105:4;8102:1;8095:15;8121:128;8161:3;8192:1;8188:6;8185:1;8182:13;8179:39;;;8198:18;;:::i;:::-;-1:-1:-1;8234:9:1;;8121:128::o;8961:168::-;9001:7;9067:1;9063;9059:6;9055:14;9052:1;9049:21;9044:1;9037:9;9030:17;9026:45;9023:71;;;9074:18;;:::i;:::-;-1:-1:-1;9114:9:1;;8961:168::o;10052:127::-;10113:10;10108:3;10104:20;10101:1;10094:31;10144:4;10141:1;10134:15;10168:4;10165:1;10158:15;10726:1527;10950:3;10988:6;10982:13;11014:4;11027:51;11071:6;11066:3;11061:2;11053:6;11049:15;11027:51;:::i;:::-;11141:13;;11100:16;;;;11163:55;11141:13;11100:16;11185:15;;;11163:55;:::i;:::-;11307:13;;11240:20;;;11280:1;;11367;11389:18;;;;11442;;;;11469:93;;11547:4;11537:8;11533:19;11521:31;;11469:93;11610:2;11600:8;11597:16;11577:18;11574:40;11571:167;;-1:-1:-1;;;11637:33:1;;11693:4;11690:1;11683:15;11723:4;11644:3;11711:17;11571:167;11754:18;11781:110;;;;11905:1;11900:328;;;;11747:481;;11781:110;-1:-1:-1;;11816:24:1;;11802:39;;11861:20;;;;-1:-1:-1;11781:110:1;;11900:328;10673:1;10666:14;;;10710:4;10697:18;;11995:1;12009:169;12023:8;12020:1;12017:15;12009:169;;;12105:14;;12090:13;;;12083:37;12148:16;;;;12040:10;;12009:169;;;12013:3;;12209:8;12202:5;12198:20;12191:27;;11747:481;-1:-1:-1;12244:3:1;;10726:1527;-1:-1:-1;;;;;;;;;;;10726:1527:1:o;12665:489::-;-1:-1:-1;;;;;12934:15:1;;;12916:34;;12986:15;;12981:2;12966:18;;12959:43;13033:2;13018:18;;13011:34;;;13081:3;13076:2;13061:18;;13054:31;;;12859:4;;13102:46;;13128:19;;13120:6;13102:46;:::i;:::-;13094:54;12665:489;-1:-1:-1;;;;;;12665:489:1:o;13159:249::-;13228:6;13281:2;13269:9;13260:7;13256:23;13252:32;13249:52;;;13297:1;13294;13287:12;13249:52;13329:9;13323:16;13348:30;13372:5;13348:30;:::i;13413:135::-;13452:3;13473:17;;;13470:43;;13493:18;;:::i;:::-;-1:-1:-1;13540:1:1;13529:13;;13413:135::o;13553:127::-;13614:10;13609:3;13605:20;13602:1;13595:31;13645:4;13642:1;13635:15;13669:4;13666:1;13659:15;13685:120;13725:1;13751;13741:35;;13756:18;;:::i;:::-;-1:-1:-1;13790:9:1;;13685:120::o;13810:125::-;13850:4;13878:1;13875;13872:8;13869:34;;;13883:18;;:::i;:::-;-1:-1:-1;13920:9:1;;13810:125::o;13940:112::-;13972:1;13998;13988:35;;14003:18;;:::i;:::-;-1:-1:-1;14037:9:1;;13940:112::o

Swarm Source

ipfs://69d7f598a2aaf37e1fc8f4fc6653f64bbdf703a0e369f5c8680680be16fd45a5
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.