ETH Price: $3,205.80 (-13.49%)

Token

Dexbots World Cup (DBSWC)
 

Overview

Max Total Supply

2,000 DBSWC

Holders

410

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bagogeta.eth
Balance
1 DBSWC
0xc60E9b772fC1f9Ac271bacbecF71Db141fE07F15
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:
DexbotsWorldCup

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @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 == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;


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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/DexbotsWorldCup.sol



pragma solidity ^0.8.4;







interface Dexbot {

    function balanceOf(address _owner) external view returns (uint256);



    function ownerOf(uint256 tokenId) external view returns (address owner);

}



contract DexbotsWorldCup is ERC721A, Ownable {

    constructor(

        string memory _name,

        string memory _symbol,

        string memory _uriPrefix,

        address _dexbotsAddress

    ) ERC721A(_name, _symbol) {

        uriPrefix = _uriPrefix;

        dexbotsContract = Dexbot(_dexbotsAddress);

    }



    Dexbot dexbotsContract;



    uint256 public currentMinting = 3;



    uint256 public maxSupply = 2000;

    uint256 public maxMintPerTx = 3;

    uint256 public price = 0.0 ether;



    uint256 public maxDevMints = 500;

    uint256 public devMints = 0;



    mapping(uint256 => bool) public dexbotMinted;



    string public uriPrefix;



    function setMaxSupply(uint256 _maxSupply) public onlyOwner {

        require(_maxSupply > 0, "Max supply must be greater than 0!");

        require(

            _maxSupply < maxSupply,

            "Max supply must be less than the current max supply!"

        );

        maxSupply = _maxSupply;

    }



    function setMaxMintPerTx(uint256 _maxMintPerTx) public onlyOwner {

        require(_maxMintPerTx > 0, "Max mint per tx must be greater than 0!");

        maxMintPerTx = _maxMintPerTx;

    }



    function setCurrentMinting(uint256 _currentMinting) public onlyOwner {

        require(

            _currentMinting >= 0 && _currentMinting <= 3,

            "Current minting must be between 0 and 3!"

        );

        currentMinting = _currentMinting;

    }



    function setPrice(uint256 _price) public onlyOwner {

        require(_price > 0, "Price must be greater than 0!");

        price = _price * 1 ether;

    }



    function setUriPrefix(string memory _uriPrefix) public onlyOwner {

        uriPrefix = _uriPrefix;

    }



    function tokenURI(uint256 _tokenId)

        public

        view

        virtual

        override

        returns (string memory)

    {

        if (!_exists(_tokenId)) revert URIQueryForNonexistentToken();



        return

            bytes(uriPrefix).length != 0

                ? string(

                    abi.encodePacked(

                        uriPrefix,

                        Strings.toString(_tokenId),

                        ".json"

                    )

                )

                : "";

    }



    function _safeSaveDexbots(uint256[] memory _dexbots) internal {

        uint256 dexbotsCount = _dexbots.length;



        for (uint256 i = 0; i < dexbotsCount; i++) {

            uint256 currentDexbot = _dexbots[i];



            address currentOwner = dexbotsContract.ownerOf(currentDexbot);



            require(

                currentOwner == msg.sender,

                "You can only select your own NFTs"

            );



            require(

                !dexbotMinted[currentDexbot],

                "You can only select NFTs that have not been claimed"

            );



            dexbotMinted[currentDexbot] = true;

        }

    }



    function dexbotMint(uint256[] memory _dexbots) public {

        require(

            currentMinting == 0 || currentMinting == 2,

            "Minting is not open yet"

        );

        

        require(

            _dexbots.length * 2 + totalSupply() <= maxSupply,

            "Max supply exceeded!"

        );



        require(_dexbots.length > 0, "You must select at least one NFT");



        require(

            dexbotsContract.balanceOf(msg.sender) >= _dexbots.length,

            "You do not own enough NFTs"

        );



        _safeSaveDexbots(_dexbots);



        _safeMint(msg.sender, _dexbots.length * 2);

    }



    // dev mint

    function devMint(uint256 _quantity) public onlyOwner {

        require(currentMinting == 3, "Dev minting is not active!");

        require(_quantity > 0, "Quantity must be greater than 0!");

        require(

            totalSupply() + _quantity <= maxSupply,

            "Quantity exceeds max supply!"

        );

        require(

            devMints + _quantity <= maxDevMints,

            "Quantity exceeds max allowed for devs!"

        );



        devMints += _quantity;

        _safeMint(msg.sender, _quantity);

    }



    function mint(uint256 _quantity) external payable {

        require(currentMinting == 2, "Public minting is not active!");

        require(_quantity <= maxMintPerTx, "Quantity exceeds max mint per tx!");

        require(_quantity + totalSupply() <= maxSupply, "Max supply exceeded!");

        require(msg.value == price * _quantity, "Insufficient funds to mint!");



        _safeMint(msg.sender, _quantity);

    }



    function withdraw() external onlyOwner {

        (bool os, ) = payable(owner()).call{value: address(this).balance}("");



        require(os);

    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uriPrefix","type":"string"},{"internalType":"address","name":"_dexbotsAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentMinting","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_dexbots","type":"uint256[]"}],"name":"dexbotMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"dexbotMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDevMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_currentMinting","type":"uint256"}],"name":"setCurrentMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526003600a556107d0600b556003600c556000600d556101f4600e556000600f553480156200003157600080fd5b506040516200254338038062002543833981016040819052620000549162000284565b8351849084906200006d90600290602085019062000127565b5080516200008390600390602084019062000127565b505060008055506200009533620000d5565b8151620000aa90601190602085019062000127565b50600980546001600160a01b0319166001600160a01b0392909216919091179055506200038a915050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001359062000337565b90600052602060002090601f016020900481019282620001595760008555620001a4565b82601f106200017457805160ff1916838001178555620001a4565b82800160010185558215620001a4579182015b82811115620001a457825182559160200191906001019062000187565b50620001b2929150620001b6565b5090565b5b80821115620001b25760008155600101620001b7565b600082601f830112620001df57600080fd5b81516001600160401b0380821115620001fc57620001fc62000374565b604051601f8301601f19908116603f0116810190828211818310171562000227576200022762000374565b816040528381526020925086838588010111156200024457600080fd5b600091505b8382101562000268578582018301518183018401529082019062000249565b838211156200027a5760008385830101525b9695505050505050565b600080600080608085870312156200029b57600080fd5b84516001600160401b0380821115620002b357600080fd5b620002c188838901620001cd565b95506020870151915080821115620002d857600080fd5b620002e688838901620001cd565b94506040870151915080821115620002fd57600080fd5b506200030c87828801620001cd565b606087015190935090506001600160a01b03811681146200032c57600080fd5b939692955090935050565b600181811c908216806200034c57607f821691505b602082108114156200036e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6121a9806200039a6000396000f3fe6080604052600436106101f95760003560e01c80637ec4a6591161010d578063c87b56dd116100a0578063de7fcb1d1161006f578063de7fcb1d1461053b578063e985e9c514610551578063ed44063e1461059a578063f2fde38b146105b0578063f9d5cd38146105d057600080fd5b8063c87b56dd146104cf578063ca43b305146104ef578063d5abeb0114610505578063dd1a3e5b1461051b57600080fd5b8063a035b1fe116100dc578063a035b1fe14610473578063a0712d6814610489578063a22cb4651461049c578063b88d4fde146104bc57600080fd5b80637ec4a659146104005780638da5cb5b1461042057806391b7f5ed1461043e57806395d89b411461045e57600080fd5b8063375a069a1161019057806362b99ad41161015f57806362b99ad4146103765780636352211e1461038b5780636f8b44b0146103ab57806370a08231146103cb578063715018a6146103eb57600080fd5b8063375a069a1461030e5780633ccfd60b1461032e57806342842e0e14610343578063616cdb1e1461035657600080fd5b80631054f720116101cc5780631054f720146102a257806318160ddd146102c25780631a9d5d3d146102e557806323b872dd146102fb57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611e14565b610600565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610652565b60405161022a9190612009565b34801561026157600080fd5b50610275610270366004611e97565b6106e4565b6040516001600160a01b03909116815260200161022a565b6102a061029b366004611d3b565b610728565b005b3480156102ae57600080fd5b506102a06102bd366004611d67565b6107c8565b3480156102ce57600080fd5b50600154600054035b60405190815260200161022a565b3480156102f157600080fd5b506102d7600e5481565b6102a0610309366004611c47565b6109cf565b34801561031a57600080fd5b506102a0610329366004611e97565b610b60565b34801561033a57600080fd5b506102a0610d03565b6102a0610351366004611c47565b610d7c565b34801561036257600080fd5b506102a0610371366004611e97565b610d9c565b34801561038257600080fd5b50610248610e09565b34801561039757600080fd5b506102756103a6366004611e97565b610e97565b3480156103b757600080fd5b506102a06103c6366004611e97565b610ea2565b3480156103d757600080fd5b506102d76103e6366004611bd4565b610f78565b3480156103f757600080fd5b506102a0610fc7565b34801561040c57600080fd5b506102a061041b366004611e4e565b610fdb565b34801561042c57600080fd5b506008546001600160a01b0316610275565b34801561044a57600080fd5b506102a0610459366004611e97565b610ffa565b34801561046a57600080fd5b5061024861106a565b34801561047f57600080fd5b506102d7600d5481565b6102a0610497366004611e97565b611079565b3480156104a857600080fd5b506102a06104b7366004611d08565b6111e6565b6102a06104ca366004611c88565b611252565b3480156104db57600080fd5b506102486104ea366004611e97565b61129c565b3480156104fb57600080fd5b506102d7600f5481565b34801561051157600080fd5b506102d7600b5481565b34801561052757600080fd5b506102a0610536366004611e97565b61131f565b34801561054757600080fd5b506102d7600c5481565b34801561055d57600080fd5b5061021e61056c366004611c0e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a657600080fd5b506102d7600a5481565b3480156105bc57600080fd5b506102a06105cb366004611bd4565b61138e565b3480156105dc57600080fd5b5061021e6105eb366004611e97565b60106020526000908152604090205460ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061063157506380ac58cd60e01b6001600160e01b03198316145b8061064c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610661906120b0565b80601f016020809104026020016040519081016040528092919081815260200182805461068d906120b0565b80156106da5780601f106106af576101008083540402835291602001916106da565b820191906000526020600020905b8154815290600101906020018083116106bd57829003601f168201915b5050505050905090565b60006106ef82611404565b61070c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061073382610e97565b9050336001600160a01b0382161461076c5761074f813361056c565b61076c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600a5415806107d95750600a546002145b61082a5760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206973206e6f74206f70656e2079657400000000000000000060448201526064015b60405180910390fd5b600b54600154600054038251610841906002612065565b61084b919061204d565b11156108905760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610821565b60008151116108e15760405162461bcd60e51b815260206004820181905260248201527f596f75206d7573742073656c656374206174206c65617374206f6e65204e46546044820152606401610821565b80516009546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561092657600080fd5b505afa15801561093a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095e9190611eb0565b10156109ac5760405162461bcd60e51b815260206004820152601a60248201527f596f7520646f206e6f74206f776e20656e6f756768204e4654730000000000006044820152606401610821565b6109b58161142b565b6109cc33825160026109c79190612065565b6115e4565b50565b60006109da826115fe565b9050836001600160a01b0316816001600160a01b031614610a0d5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a5a57610a3d863361056c565b610a5a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a8157604051633a954ecd60e21b815260040160405180910390fd5b8015610a8c57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610b175760018401600081815260046020526040902054610b15576000548114610b155760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610b68611666565b600a54600314610bba5760405162461bcd60e51b815260206004820152601a60248201527f446576206d696e74696e67206973206e6f7420616374697665210000000000006044820152606401610821565b60008111610c0a5760405162461bcd60e51b815260206004820181905260248201527f5175616e74697479206d7573742062652067726561746572207468616e2030216044820152606401610821565b600b5481610c1b6001546000540390565b610c25919061204d565b1115610c735760405162461bcd60e51b815260206004820152601c60248201527f5175616e746974792065786365656473206d617820737570706c7921000000006044820152606401610821565b600e5481600f54610c84919061204d565b1115610ce15760405162461bcd60e51b815260206004820152602660248201527f5175616e746974792065786365656473206d617820616c6c6f77656420666f7260448201526520646576732160d01b6064820152608401610821565b80600f6000828254610cf3919061204d565b909155506109cc905033826115e4565b610d0b611666565b6000610d1f6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d69576040519150601f19603f3d011682016040523d82523d6000602084013e610d6e565b606091505b50509050806109cc57600080fd5b610d9783838360405180602001604052806000815250611252565b505050565b610da4611666565b60008111610e045760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7420706572207478206d7573742062652067726561746572206044820152667468616e20302160c81b6064820152608401610821565b600c55565b60118054610e16906120b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e42906120b0565b8015610e8f5780601f10610e6457610100808354040283529160200191610e8f565b820191906000526020600020905b815481529060010190602001808311610e7257829003601f168201915b505050505081565b600061064c826115fe565b610eaa611666565b60008111610f055760405162461bcd60e51b815260206004820152602260248201527f4d617820737570706c79206d7573742062652067726561746572207468616e20604482015261302160f01b6064820152608401610821565b600b548110610f735760405162461bcd60e51b815260206004820152603460248201527f4d617820737570706c79206d757374206265206c657373207468616e207468656044820152732063757272656e74206d617820737570706c792160601b6064820152608401610821565b600b55565b60006001600160a01b038216610fa1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610fcf611666565b610fd960006116c0565b565b610fe3611666565b8051610ff6906011906020840190611ae3565b5050565b611002611666565b600081116110525760405162461bcd60e51b815260206004820152601d60248201527f5072696365206d7573742062652067726561746572207468616e2030210000006044820152606401610821565b61106481670de0b6b3a7640000612065565b600d5550565b606060038054610661906120b0565b600a546002146110cb5760405162461bcd60e51b815260206004820152601d60248201527f5075626c6963206d696e74696e67206973206e6f7420616374697665210000006044820152606401610821565b600c548111156111275760405162461bcd60e51b815260206004820152602160248201527f5175616e746974792065786365656473206d6178206d696e74207065722074786044820152602160f81b6064820152608401610821565b600b546001546000540361113b908361204d565b11156111805760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610821565b80600d5461118e9190612065565b34146111dc5760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e742066756e647320746f206d696e742100000000006044820152606401610821565b6109cc33826115e4565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61125d8484846109cf565b6001600160a01b0383163b156112965761127984848484611712565b611296576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606112a782611404565b6112c457604051630a14c4b560e41b815260040160405180910390fd5b601180546112d1906120b0565b151590506112ee576040518060200160405280600081525061064c565b60116112f98361180a565b60405160200161130a929190611f11565b60405160208183030381529060405292915050565b611327611666565b60038111156113895760405162461bcd60e51b815260206004820152602860248201527f43757272656e74206d696e74696e67206d757374206265206265747765656e206044820152673020616e6420332160c01b6064820152608401610821565b600a55565b611396611666565b6001600160a01b0381166113fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610821565b6109cc816116c0565b600080548210801561064c575050600090815260046020526040902054600160e01b161590565b805160005b81811015610d9757600083828151811061144c5761144c61211c565b60209081029190910101516009546040516331a9108f60e11b8152600481018390529192506000916001600160a01b0390911690636352211e9060240160206040518083038186803b1580156114a157600080fd5b505afa1580156114b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d99190611bf1565b90506001600160a01b038116331461153d5760405162461bcd60e51b815260206004820152602160248201527f596f752063616e206f6e6c792073656c65637420796f7572206f776e204e46546044820152607360f81b6064820152608401610821565b60008281526010602052604090205460ff16156115b85760405162461bcd60e51b815260206004820152603360248201527f596f752063616e206f6e6c792073656c656374204e46547320746861742068616044820152721d99481b9bdd081899595b8818db185a5b5959606a1b6064820152608401610821565b506000908152601060205260409020805460ff19166001179055806115dc816120eb565b915050611430565b610ff68282604051806020016040528060008152506118a7565b60008160005481101561164d57600081815260046020526040902054600160e01b811661164b575b80611644575060001901600081815260046020526040902054611626565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610fd95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610821565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611747903390899088908890600401611fcc565b602060405180830381600087803b15801561176157600080fd5b505af1925050508015611791575060408051601f3d908101601f1916820190925261178e91810190611e31565b60015b6117ec573d8080156117bf576040519150601f19603f3d011682016040523d82523d6000602084013e6117c4565b606091505b5080516117e4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600061181783611914565b600101905060008167ffffffffffffffff81111561183757611837612132565b6040519080825280601f01601f191660200182016040528015611861576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461189a5761189f565b61186b565b509392505050565b6118b183836119ec565b6001600160a01b0383163b15610d97576000548281035b6118db6000868380600101945086611712565b6118f8576040516368d2bf6b60e11b815260040160405180910390fd5b8181106118c857816000541461190d57600080fd5b5050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106119535772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061197f576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061199d57662386f26fc10000830492506010015b6305f5e10083106119b5576305f5e100830492506008015b61271083106119c957612710830492506004015b606483106119db576064830492506002015b600a831061064c5760010192915050565b60005481611a0d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611abc57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611a84565b5081611ada57604051622e076360e81b815260040160405180910390fd5b60005550505050565b828054611aef906120b0565b90600052602060002090601f016020900481019282611b115760008555611b57565b82601f10611b2a57805160ff1916838001178555611b57565b82800160010185558215611b57579182015b82811115611b57578251825591602001919060010190611b3c565b50611b63929150611b67565b5090565b5b80821115611b635760008155600101611b68565b600067ffffffffffffffff831115611b9657611b96612132565b611ba9601f8401601f191660200161201c565b9050828152838383011115611bbd57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611be657600080fd5b813561164481612148565b600060208284031215611c0357600080fd5b815161164481612148565b60008060408385031215611c2157600080fd5b8235611c2c81612148565b91506020830135611c3c81612148565b809150509250929050565b600080600060608486031215611c5c57600080fd5b8335611c6781612148565b92506020840135611c7781612148565b929592945050506040919091013590565b60008060008060808587031215611c9e57600080fd5b8435611ca981612148565b93506020850135611cb981612148565b925060408501359150606085013567ffffffffffffffff811115611cdc57600080fd5b8501601f81018713611ced57600080fd5b611cfc87823560208401611b7c565b91505092959194509250565b60008060408385031215611d1b57600080fd5b8235611d2681612148565b915060208301358015158114611c3c57600080fd5b60008060408385031215611d4e57600080fd5b8235611d5981612148565b946020939093013593505050565b60006020808385031215611d7a57600080fd5b823567ffffffffffffffff80821115611d9257600080fd5b818501915085601f830112611da657600080fd5b813581811115611db857611db8612132565b8060051b9150611dc984830161201c565b8181528481019084860184860187018a1015611de457600080fd5b600095505b83861015611e07578035835260019590950194918601918601611de9565b5098975050505050505050565b600060208284031215611e2657600080fd5b81356116448161215d565b600060208284031215611e4357600080fd5b81516116448161215d565b600060208284031215611e6057600080fd5b813567ffffffffffffffff811115611e7757600080fd5b8201601f81018413611e8857600080fd5b61180284823560208401611b7c565b600060208284031215611ea957600080fd5b5035919050565b600060208284031215611ec257600080fd5b5051919050565b60008151808452611ee1816020860160208601612084565b601f01601f19169290920160200192915050565b60008151611f07818560208601612084565b9290920192915050565b600080845481600182811c915080831680611f2d57607f831692505b6020808410821415611f4d57634e487b7160e01b86526022600452602486fd5b818015611f615760018114611f7257611f9f565b60ff19861689528489019650611f9f565b60008b81526020902060005b86811015611f975781548b820152908501908301611f7e565b505084890196505b505050505050611fc3611fb28286611ef5565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fff90830184611ec9565b9695505050505050565b6020815260006116446020830184611ec9565b604051601f8201601f1916810167ffffffffffffffff8111828210171561204557612045612132565b604052919050565b6000821982111561206057612060612106565b500190565b600081600019048311821515161561207f5761207f612106565b500290565b60005b8381101561209f578181015183820152602001612087565b838111156112965750506000910152565b600181811c908216806120c457607f821691505b602082108114156120e557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120ff576120ff612106565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109cc57600080fd5b6001600160e01b0319811681146109cc57600080fdfea26469706673582212204cf2be0eb4bd7e19060331e4ead40d17dad5494dca9d9502a41420869648b37064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000002a60de01ae712ae258c6dc3e526ecf26e83216ec0000000000000000000000000000000000000000000000000000000000000011446578626f747320576f726c642043757000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054442535743000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f63646e2d6477632e646578626f74732e696f2f6a736f6e2f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80637ec4a6591161010d578063c87b56dd116100a0578063de7fcb1d1161006f578063de7fcb1d1461053b578063e985e9c514610551578063ed44063e1461059a578063f2fde38b146105b0578063f9d5cd38146105d057600080fd5b8063c87b56dd146104cf578063ca43b305146104ef578063d5abeb0114610505578063dd1a3e5b1461051b57600080fd5b8063a035b1fe116100dc578063a035b1fe14610473578063a0712d6814610489578063a22cb4651461049c578063b88d4fde146104bc57600080fd5b80637ec4a659146104005780638da5cb5b1461042057806391b7f5ed1461043e57806395d89b411461045e57600080fd5b8063375a069a1161019057806362b99ad41161015f57806362b99ad4146103765780636352211e1461038b5780636f8b44b0146103ab57806370a08231146103cb578063715018a6146103eb57600080fd5b8063375a069a1461030e5780633ccfd60b1461032e57806342842e0e14610343578063616cdb1e1461035657600080fd5b80631054f720116101cc5780631054f720146102a257806318160ddd146102c25780631a9d5d3d146102e557806323b872dd146102fb57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611e14565b610600565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610652565b60405161022a9190612009565b34801561026157600080fd5b50610275610270366004611e97565b6106e4565b6040516001600160a01b03909116815260200161022a565b6102a061029b366004611d3b565b610728565b005b3480156102ae57600080fd5b506102a06102bd366004611d67565b6107c8565b3480156102ce57600080fd5b50600154600054035b60405190815260200161022a565b3480156102f157600080fd5b506102d7600e5481565b6102a0610309366004611c47565b6109cf565b34801561031a57600080fd5b506102a0610329366004611e97565b610b60565b34801561033a57600080fd5b506102a0610d03565b6102a0610351366004611c47565b610d7c565b34801561036257600080fd5b506102a0610371366004611e97565b610d9c565b34801561038257600080fd5b50610248610e09565b34801561039757600080fd5b506102756103a6366004611e97565b610e97565b3480156103b757600080fd5b506102a06103c6366004611e97565b610ea2565b3480156103d757600080fd5b506102d76103e6366004611bd4565b610f78565b3480156103f757600080fd5b506102a0610fc7565b34801561040c57600080fd5b506102a061041b366004611e4e565b610fdb565b34801561042c57600080fd5b506008546001600160a01b0316610275565b34801561044a57600080fd5b506102a0610459366004611e97565b610ffa565b34801561046a57600080fd5b5061024861106a565b34801561047f57600080fd5b506102d7600d5481565b6102a0610497366004611e97565b611079565b3480156104a857600080fd5b506102a06104b7366004611d08565b6111e6565b6102a06104ca366004611c88565b611252565b3480156104db57600080fd5b506102486104ea366004611e97565b61129c565b3480156104fb57600080fd5b506102d7600f5481565b34801561051157600080fd5b506102d7600b5481565b34801561052757600080fd5b506102a0610536366004611e97565b61131f565b34801561054757600080fd5b506102d7600c5481565b34801561055d57600080fd5b5061021e61056c366004611c0e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a657600080fd5b506102d7600a5481565b3480156105bc57600080fd5b506102a06105cb366004611bd4565b61138e565b3480156105dc57600080fd5b5061021e6105eb366004611e97565b60106020526000908152604090205460ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061063157506380ac58cd60e01b6001600160e01b03198316145b8061064c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610661906120b0565b80601f016020809104026020016040519081016040528092919081815260200182805461068d906120b0565b80156106da5780601f106106af576101008083540402835291602001916106da565b820191906000526020600020905b8154815290600101906020018083116106bd57829003601f168201915b5050505050905090565b60006106ef82611404565b61070c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061073382610e97565b9050336001600160a01b0382161461076c5761074f813361056c565b61076c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600a5415806107d95750600a546002145b61082a5760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206973206e6f74206f70656e2079657400000000000000000060448201526064015b60405180910390fd5b600b54600154600054038251610841906002612065565b61084b919061204d565b11156108905760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610821565b60008151116108e15760405162461bcd60e51b815260206004820181905260248201527f596f75206d7573742073656c656374206174206c65617374206f6e65204e46546044820152606401610821565b80516009546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561092657600080fd5b505afa15801561093a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095e9190611eb0565b10156109ac5760405162461bcd60e51b815260206004820152601a60248201527f596f7520646f206e6f74206f776e20656e6f756768204e4654730000000000006044820152606401610821565b6109b58161142b565b6109cc33825160026109c79190612065565b6115e4565b50565b60006109da826115fe565b9050836001600160a01b0316816001600160a01b031614610a0d5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a5a57610a3d863361056c565b610a5a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a8157604051633a954ecd60e21b815260040160405180910390fd5b8015610a8c57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610b175760018401600081815260046020526040902054610b15576000548114610b155760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610b68611666565b600a54600314610bba5760405162461bcd60e51b815260206004820152601a60248201527f446576206d696e74696e67206973206e6f7420616374697665210000000000006044820152606401610821565b60008111610c0a5760405162461bcd60e51b815260206004820181905260248201527f5175616e74697479206d7573742062652067726561746572207468616e2030216044820152606401610821565b600b5481610c1b6001546000540390565b610c25919061204d565b1115610c735760405162461bcd60e51b815260206004820152601c60248201527f5175616e746974792065786365656473206d617820737570706c7921000000006044820152606401610821565b600e5481600f54610c84919061204d565b1115610ce15760405162461bcd60e51b815260206004820152602660248201527f5175616e746974792065786365656473206d617820616c6c6f77656420666f7260448201526520646576732160d01b6064820152608401610821565b80600f6000828254610cf3919061204d565b909155506109cc905033826115e4565b610d0b611666565b6000610d1f6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d69576040519150601f19603f3d011682016040523d82523d6000602084013e610d6e565b606091505b50509050806109cc57600080fd5b610d9783838360405180602001604052806000815250611252565b505050565b610da4611666565b60008111610e045760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7420706572207478206d7573742062652067726561746572206044820152667468616e20302160c81b6064820152608401610821565b600c55565b60118054610e16906120b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e42906120b0565b8015610e8f5780601f10610e6457610100808354040283529160200191610e8f565b820191906000526020600020905b815481529060010190602001808311610e7257829003601f168201915b505050505081565b600061064c826115fe565b610eaa611666565b60008111610f055760405162461bcd60e51b815260206004820152602260248201527f4d617820737570706c79206d7573742062652067726561746572207468616e20604482015261302160f01b6064820152608401610821565b600b548110610f735760405162461bcd60e51b815260206004820152603460248201527f4d617820737570706c79206d757374206265206c657373207468616e207468656044820152732063757272656e74206d617820737570706c792160601b6064820152608401610821565b600b55565b60006001600160a01b038216610fa1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610fcf611666565b610fd960006116c0565b565b610fe3611666565b8051610ff6906011906020840190611ae3565b5050565b611002611666565b600081116110525760405162461bcd60e51b815260206004820152601d60248201527f5072696365206d7573742062652067726561746572207468616e2030210000006044820152606401610821565b61106481670de0b6b3a7640000612065565b600d5550565b606060038054610661906120b0565b600a546002146110cb5760405162461bcd60e51b815260206004820152601d60248201527f5075626c6963206d696e74696e67206973206e6f7420616374697665210000006044820152606401610821565b600c548111156111275760405162461bcd60e51b815260206004820152602160248201527f5175616e746974792065786365656473206d6178206d696e74207065722074786044820152602160f81b6064820152608401610821565b600b546001546000540361113b908361204d565b11156111805760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610821565b80600d5461118e9190612065565b34146111dc5760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e742066756e647320746f206d696e742100000000006044820152606401610821565b6109cc33826115e4565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61125d8484846109cf565b6001600160a01b0383163b156112965761127984848484611712565b611296576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606112a782611404565b6112c457604051630a14c4b560e41b815260040160405180910390fd5b601180546112d1906120b0565b151590506112ee576040518060200160405280600081525061064c565b60116112f98361180a565b60405160200161130a929190611f11565b60405160208183030381529060405292915050565b611327611666565b60038111156113895760405162461bcd60e51b815260206004820152602860248201527f43757272656e74206d696e74696e67206d757374206265206265747765656e206044820152673020616e6420332160c01b6064820152608401610821565b600a55565b611396611666565b6001600160a01b0381166113fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610821565b6109cc816116c0565b600080548210801561064c575050600090815260046020526040902054600160e01b161590565b805160005b81811015610d9757600083828151811061144c5761144c61211c565b60209081029190910101516009546040516331a9108f60e11b8152600481018390529192506000916001600160a01b0390911690636352211e9060240160206040518083038186803b1580156114a157600080fd5b505afa1580156114b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d99190611bf1565b90506001600160a01b038116331461153d5760405162461bcd60e51b815260206004820152602160248201527f596f752063616e206f6e6c792073656c65637420796f7572206f776e204e46546044820152607360f81b6064820152608401610821565b60008281526010602052604090205460ff16156115b85760405162461bcd60e51b815260206004820152603360248201527f596f752063616e206f6e6c792073656c656374204e46547320746861742068616044820152721d99481b9bdd081899595b8818db185a5b5959606a1b6064820152608401610821565b506000908152601060205260409020805460ff19166001179055806115dc816120eb565b915050611430565b610ff68282604051806020016040528060008152506118a7565b60008160005481101561164d57600081815260046020526040902054600160e01b811661164b575b80611644575060001901600081815260046020526040902054611626565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610fd95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610821565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611747903390899088908890600401611fcc565b602060405180830381600087803b15801561176157600080fd5b505af1925050508015611791575060408051601f3d908101601f1916820190925261178e91810190611e31565b60015b6117ec573d8080156117bf576040519150601f19603f3d011682016040523d82523d6000602084013e6117c4565b606091505b5080516117e4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600061181783611914565b600101905060008167ffffffffffffffff81111561183757611837612132565b6040519080825280601f01601f191660200182016040528015611861576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461189a5761189f565b61186b565b509392505050565b6118b183836119ec565b6001600160a01b0383163b15610d97576000548281035b6118db6000868380600101945086611712565b6118f8576040516368d2bf6b60e11b815260040160405180910390fd5b8181106118c857816000541461190d57600080fd5b5050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106119535772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061197f576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061199d57662386f26fc10000830492506010015b6305f5e10083106119b5576305f5e100830492506008015b61271083106119c957612710830492506004015b606483106119db576064830492506002015b600a831061064c5760010192915050565b60005481611a0d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611abc57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611a84565b5081611ada57604051622e076360e81b815260040160405180910390fd5b60005550505050565b828054611aef906120b0565b90600052602060002090601f016020900481019282611b115760008555611b57565b82601f10611b2a57805160ff1916838001178555611b57565b82800160010185558215611b57579182015b82811115611b57578251825591602001919060010190611b3c565b50611b63929150611b67565b5090565b5b80821115611b635760008155600101611b68565b600067ffffffffffffffff831115611b9657611b96612132565b611ba9601f8401601f191660200161201c565b9050828152838383011115611bbd57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611be657600080fd5b813561164481612148565b600060208284031215611c0357600080fd5b815161164481612148565b60008060408385031215611c2157600080fd5b8235611c2c81612148565b91506020830135611c3c81612148565b809150509250929050565b600080600060608486031215611c5c57600080fd5b8335611c6781612148565b92506020840135611c7781612148565b929592945050506040919091013590565b60008060008060808587031215611c9e57600080fd5b8435611ca981612148565b93506020850135611cb981612148565b925060408501359150606085013567ffffffffffffffff811115611cdc57600080fd5b8501601f81018713611ced57600080fd5b611cfc87823560208401611b7c565b91505092959194509250565b60008060408385031215611d1b57600080fd5b8235611d2681612148565b915060208301358015158114611c3c57600080fd5b60008060408385031215611d4e57600080fd5b8235611d5981612148565b946020939093013593505050565b60006020808385031215611d7a57600080fd5b823567ffffffffffffffff80821115611d9257600080fd5b818501915085601f830112611da657600080fd5b813581811115611db857611db8612132565b8060051b9150611dc984830161201c565b8181528481019084860184860187018a1015611de457600080fd5b600095505b83861015611e07578035835260019590950194918601918601611de9565b5098975050505050505050565b600060208284031215611e2657600080fd5b81356116448161215d565b600060208284031215611e4357600080fd5b81516116448161215d565b600060208284031215611e6057600080fd5b813567ffffffffffffffff811115611e7757600080fd5b8201601f81018413611e8857600080fd5b61180284823560208401611b7c565b600060208284031215611ea957600080fd5b5035919050565b600060208284031215611ec257600080fd5b5051919050565b60008151808452611ee1816020860160208601612084565b601f01601f19169290920160200192915050565b60008151611f07818560208601612084565b9290920192915050565b600080845481600182811c915080831680611f2d57607f831692505b6020808410821415611f4d57634e487b7160e01b86526022600452602486fd5b818015611f615760018114611f7257611f9f565b60ff19861689528489019650611f9f565b60008b81526020902060005b86811015611f975781548b820152908501908301611f7e565b505084890196505b505050505050611fc3611fb28286611ef5565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fff90830184611ec9565b9695505050505050565b6020815260006116446020830184611ec9565b604051601f8201601f1916810167ffffffffffffffff8111828210171561204557612045612132565b604052919050565b6000821982111561206057612060612106565b500190565b600081600019048311821515161561207f5761207f612106565b500290565b60005b8381101561209f578181015183820152602001612087565b838111156112965750506000910152565b600181811c908216806120c457607f821691505b602082108114156120e557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120ff576120ff612106565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109cc57600080fd5b6001600160e01b0319811681146109cc57600080fdfea26469706673582212204cf2be0eb4bd7e19060331e4ead40d17dad5494dca9d9502a41420869648b37064736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000002a60de01ae712ae258c6dc3e526ecf26e83216ec0000000000000000000000000000000000000000000000000000000000000011446578626f747320576f726c642043757000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054442535743000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f63646e2d6477632e646578626f74732e696f2f6a736f6e2f

-----Decoded View---------------
Arg [0] : _name (string): Dexbots World Cup
Arg [1] : _symbol (string): DBSWC
Arg [2] : _uriPrefix (string): https://cdn-dwc.dexbots.io/json/
Arg [3] : _dexbotsAddress (address): 0x2a60DE01Ae712Ae258c6Dc3E526ECf26E83216Ec

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000002a60de01ae712ae258c6dc3e526ecf26e83216ec
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [5] : 446578626f747320576f726c6420437570000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4442535743000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [9] : 68747470733a2f2f63646e2d6477632e646578626f74732e696f2f6a736f6e2f


Deployed Bytecode Sourcemap

81953:5055:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18715:689;;;;;;;;;;-1:-1:-1;18715:689:0;;;;;:::i;:::-;;:::i;:::-;;;8574:14:1;;8567:22;8549:41;;8537:2;8522:18;18715:689:0;;;;;;;;19667:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26605:268::-;;;;;;;;;;-1:-1:-1;26605:268:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7872:32:1;;;7854:51;;7842:2;7827:18;26605:268:0;7708:203:1;25997:449:0;;;;;;:::i;:::-;;:::i;:::-;;85105:685;;;;;;;;;;-1:-1:-1;85105:685:0;;;;;:::i;:::-;;:::i;15240:323::-;;;;;;;;;;-1:-1:-1;15514:12:0;;15301:7;15498:13;:28;15240:323;;;16573:25:1;;;16561:2;16546:18;15240:323:0;16427:177:1;82508:32:0;;;;;;;;;;;;;;;;30376:3003;;;;;;:::i;:::-;;:::i;85821:565::-;;;;;;;;;;-1:-1:-1;85821:565:0;;;;;:::i;:::-;;:::i;86844:159::-;;;;;;;;;;;;;:::i;33475:193::-;;;;;;:::i;:::-;;:::i;83015:198::-;;;;;;;;;;-1:-1:-1;83015:198:0;;;;;:::i;:::-;;:::i;82646:23::-;;;;;;;;;;;;;:::i;21157:202::-;;;;;;;;;;-1:-1:-1;21157:202:0;;;;;:::i;:::-;;:::i;82682:321::-;;;;;;;;;;-1:-1:-1;82682:321:0;;;;;:::i;:::-;;:::i;16424:283::-;;;;;;;;;;-1:-1:-1;16424:283:0;;;;;:::i;:::-;;:::i;80861:103::-;;;;;;;;;;;;;:::i;83689:110::-;;;;;;;;;;-1:-1:-1;83689:110:0;;;;;:::i;:::-;;:::i;80213:87::-;;;;;;;;;;-1:-1:-1;80286:6:0;;-1:-1:-1;;;;;80286:6:0;80213:87;;83514:163;;;;;;;;;;-1:-1:-1;83514:163:0;;;;;:::i;:::-;;:::i;19843:104::-;;;;;;;;;;;;;:::i;82463:32::-;;;;;;;;;;;;;;;;86398:434;;;;;;:::i;:::-;;:::i;27213:266::-;;;;;;;;;;-1:-1:-1;27213:266:0;;;;;:::i;:::-;;:::i;34266:407::-;;;;;;:::i;:::-;;:::i;83811:569::-;;;;;;;;;;-1:-1:-1;83811:569:0;;;;;:::i;:::-;;:::i;82549:27::-;;;;;;;;;;;;;;;;82383:31;;;;;;;;;;;;;;;;83225:277;;;;;;;;;;-1:-1:-1;83225:277:0;;;;;:::i;:::-;;:::i;82423:31::-;;;;;;;;;;;;;;;;27636:214;;;;;;;;;;-1:-1:-1;27636:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;27807:25:0;;;27778:4;27807:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27636:214;82337:33;;;;;;;;;;;;;;;;81119:201;;;;;;;;;;-1:-1:-1;81119:201:0;;;;;:::i;:::-;;:::i;82589:44::-;;;;;;;;;;-1:-1:-1;82589:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;18715:689;18845:4;-1:-1:-1;;;;;;;;;19174:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19251:25:0;;;19174:102;:179;;;-1:-1:-1;;;;;;;;;;19328:25:0;;;19174:179;19154:199;18715:689;-1:-1:-1;;18715:689:0:o;19667:100::-;19721:13;19754:5;19747:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19667:100;:::o;26605:268::-;26726:7;26756:16;26764:7;26756;:16::i;:::-;26751:64;;26781:34;;-1:-1:-1;;;26781:34:0;;;;;;;;;;;26751:64;-1:-1:-1;26835:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;26835:30:0;;26605:268::o;25997:449::-;26127:13;26143:16;26151:7;26143;:16::i;:::-;26127:32;-1:-1:-1;51412:10:0;-1:-1:-1;;;;;26176:28:0;;;26172:175;;26224:44;26241:5;51412:10;27636:214;:::i;26224:44::-;26219:128;;26296:35;;-1:-1:-1;;;26296:35:0;;;;;;;;;;;26219:128;26359:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;26359:35:0;-1:-1:-1;;;;;26359:35:0;;;;;;;;;26410:28;;26359:24;;26410:28;;;;;;;26116:330;25997:449;;:::o;85105:685::-;85196:14;;:19;;:42;;;85219:14;;85237:1;85219:19;85196:42;85172:121;;;;-1:-1:-1;;;85172:121:0;;15919:2:1;85172:121:0;;;15901:21:1;15958:2;15938:18;;;15931:30;15997:25;15977:18;;;15970:53;16040:18;;85172:121:0;;;;;;;;;85381:9;;15514:12;;15301:7;15498:13;:28;85342:15;;:19;;85360:1;85342:19;:::i;:::-;:35;;;;:::i;:::-;:48;;85318:124;;;;-1:-1:-1;;;85318:124:0;;15570:2:1;85318:124:0;;;15552:21:1;15609:2;15589:18;;;15582:30;-1:-1:-1;;;15628:18:1;;;15621:50;15688:18;;85318:124:0;15368:344:1;85318:124:0;85485:1;85467:8;:15;:19;85459:64;;;;-1:-1:-1;;;85459:64:0;;10957:2:1;85459:64:0;;;10939:21:1;;;10976:18;;;10969:30;11035:34;11015:18;;;11008:62;11087:18;;85459:64:0;10755:356:1;85459:64:0;85605:15;;85564;;:37;;-1:-1:-1;;;85564:37:0;;85590:10;85564:37;;;7854:51:1;-1:-1:-1;;;;;85564:15:0;;;;:25;;7827:18:1;;85564:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:56;;85540:138;;;;-1:-1:-1;;;85540:138:0;;12082:2:1;85540:138:0;;;12064:21:1;12121:2;12101:18;;;12094:30;12160:28;12140:18;;;12133:56;12206:18;;85540:138:0;11880:350:1;85540:138:0;85695:26;85712:8;85695:16;:26::i;:::-;85738:42;85748:10;85760:8;:15;85778:1;85760:19;;;;:::i;:::-;85738:9;:42::i;:::-;85105:685;:::o;30376:3003::-;30518:27;30548;30567:7;30548:18;:27::i;:::-;30518:57;;30633:4;-1:-1:-1;;;;;30592:45:0;30608:19;-1:-1:-1;;;;;30592:45:0;;30588:99;;30659:28;;-1:-1:-1;;;30659:28:0;;;;;;;;;;;30588:99;30715:27;29484:24;;;:15;:24;;;;;29712:26;;51412:10;29109:30;;;-1:-1:-1;;;;;28802:28:0;;29087:20;;;29084:56;30924:287;;31107:43;31124:4;51412:10;27636:214;:::i;31107:43::-;31102:109;;31176:35;;-1:-1:-1;;;31176:35:0;;;;;;;;;;;31102:109;-1:-1:-1;;;;;31228:16:0;;31224:52;;31253:23;;-1:-1:-1;;;31253:23:0;;;;;;;;;;;31224:52;31425:15;31422:160;;;31565:1;31544:19;31537:30;31422:160;-1:-1:-1;;;;;31962:24:0;;;;;;;:18;:24;;;;;;31960:26;;-1:-1:-1;;31960:26:0;;;32031:22;;;;;;;;;32029:24;;-1:-1:-1;32029:24:0;;;24809:11;24784:23;24780:41;24732:112;-1:-1:-1;;;24732:112:0;32324:26;;;;:17;:26;;;;;:196;-1:-1:-1;;;32640:47:0;;32636:627;;32745:1;32735:11;;32713:19;32868:30;;;:17;:30;;;;;;32864:384;;33006:13;;32991:11;:28;32987:242;;33153:30;;;;:17;:30;;;;;:52;;;32987:242;32694:569;32636:627;33310:7;33306:2;-1:-1:-1;;;;;33291:27:0;33300:4;-1:-1:-1;;;;;33291:27:0;;;;;;;;;;;30507:2872;;;30376:3003;;;:::o;85821:565::-;80099:13;:11;:13::i;:::-;85895:14:::1;;85913:1;85895:19;85887:58;;;::::0;-1:-1:-1;;;85887:58:0;;10602:2:1;85887:58:0::1;::::0;::::1;10584:21:1::0;10641:2;10621:18;;;10614:30;10680:28;10660:18;;;10653:56;10726:18;;85887:58:0::1;10400:350:1::0;85887:58:0::1;85978:1;85966:9;:13;85958:58;;;::::0;-1:-1:-1;;;85958:58:0;;12839:2:1;85958:58:0::1;::::0;::::1;12821:21:1::0;;;12858:18;;;12851:30;12917:34;12897:18;;;12890:62;12969:18;;85958:58:0::1;12637:356:1::0;85958:58:0::1;86082:9;;86069;86053:13;15514:12:::0;;15301:7;15498:13;:28;;15240:323;86053:13:::1;:25;;;;:::i;:::-;:38;;86029:122;;;::::0;-1:-1:-1;;;86029:122:0;;13200:2:1;86029:122:0::1;::::0;::::1;13182:21:1::0;13239:2;13219:18;;;13212:30;13278;13258:18;;;13251:58;13326:18;;86029:122:0::1;12998:352:1::0;86029:122:0::1;86212:11;;86199:9;86188:8;;:20;;;;:::i;:::-;:35;;86164:129;;;::::0;-1:-1:-1;;;86164:129:0;;10195:2:1;86164:129:0::1;::::0;::::1;10177:21:1::0;10234:2;10214:18;;;10207:30;10273:34;10253:18;;;10246:62;-1:-1:-1;;;10324:18:1;;;10317:36;10370:19;;86164:129:0::1;9993:402:1::0;86164:129:0::1;86322:9;86310:8;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;86344:32:0::1;::::0;-1:-1:-1;86354:10:0::1;86366:9:::0;86344::::1;:32::i;86844:159::-:0;80099:13;:11;:13::i;:::-;86897:7:::1;86918;80286:6:::0;;-1:-1:-1;;;;;80286:6:0;;80213:87;86918:7:::1;-1:-1:-1::0;;;;;86910:21:0::1;86939;86910:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86896:69;;;86990:2;86982:11;;;::::0;::::1;33475:193:::0;33621:39;33638:4;33644:2;33648:7;33621:39;;;;;;;;;;;;:16;:39::i;:::-;33475:193;;;:::o;83015:198::-;80099:13;:11;:13::i;:::-;83117:1:::1;83101:13;:17;83093:69;;;::::0;-1:-1:-1;;;83093:69:0;;11318:2:1;83093:69:0::1;::::0;::::1;11300:21:1::0;11357:2;11337:18;;;11330:30;11396:34;11376:18;;;11369:62;-1:-1:-1;;;11447:18:1;;;11440:37;11494:19;;83093:69:0::1;11116:403:1::0;83093:69:0::1;83175:12;:28:::0;83015:198::o;82646:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21157:202::-;21274:7;21322:27;21341:7;21322:18;:27::i;82682:321::-;80099:13;:11;:13::i;:::-;82775:1:::1;82762:10;:14;82754:61;;;::::0;-1:-1:-1;;;82754:61:0;;9792:2:1;82754:61:0::1;::::0;::::1;9774:21:1::0;9831:2;9811:18;;;9804:30;9870:34;9850:18;;;9843:62;-1:-1:-1;;;9921:18:1;;;9914:32;9963:19;;82754:61:0::1;9590:398:1::0;82754:61:0::1;82865:9;;82852:10;:22;82828:130;;;::::0;-1:-1:-1;;;82828:130:0;;14338:2:1;82828:130:0::1;::::0;::::1;14320:21:1::0;14377:2;14357:18;;;14350:30;14416:34;14396:18;;;14389:62;-1:-1:-1;;;14467:18:1;;;14460:50;14527:19;;82828:130:0::1;14136:416:1::0;82828:130:0::1;82971:9;:22:::0;82682:321::o;16424:283::-;16541:7;-1:-1:-1;;;;;16570:19:0;;16566:60;;16598:28;;-1:-1:-1;;;16598:28:0;;;;;;;;;;;16566:60;-1:-1:-1;;;;;;16644:25:0;;;;;:18;:25;;;;;;10583:13;16644:55;;16424:283::o;80861:103::-;80099:13;:11;:13::i;:::-;80926:30:::1;80953:1;80926:18;:30::i;:::-;80861:103::o:0;83689:110::-;80099:13;:11;:13::i;:::-;83767:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;83689:110:::0;:::o;83514:163::-;80099:13;:11;:13::i;:::-;83595:1:::1;83586:6;:10;83578:52;;;::::0;-1:-1:-1;;;83578:52:0;;9027:2:1;83578:52:0::1;::::0;::::1;9009:21:1::0;9066:2;9046:18;;;9039:30;9105:31;9085:18;;;9078:59;9154:18;;83578:52:0::1;8825:353:1::0;83578:52:0::1;83651:16;:6:::0;83660:7:::1;83651:16;:::i;:::-;83643:5;:24:::0;-1:-1:-1;83514:163:0:o;19843:104::-;19899:13;19932:7;19925:14;;;;;:::i;86398:434::-;86469:14;;86487:1;86469:19;86461:61;;;;-1:-1:-1;;;86461:61:0;;16271:2:1;86461:61:0;;;16253:21:1;16310:2;16290:18;;;16283:30;16349:31;16329:18;;;16322:59;16398:18;;86461:61:0;16069:353:1;86461:61:0;86556:12;;86543:9;:25;;86535:71;;;;-1:-1:-1;;;86535:71:0;;15168:2:1;86535:71:0;;;15150:21:1;15207:2;15187:18;;;15180:30;15246:34;15226:18;;;15219:62;-1:-1:-1;;;15297:18:1;;;15290:31;15338:19;;86535:71:0;14966:397:1;86535:71:0;86656:9;;15514:12;;15301:7;15498:13;:28;86627:25;;:9;:25;:::i;:::-;:38;;86619:71;;;;-1:-1:-1;;;86619:71:0;;15570:2:1;86619:71:0;;;15552:21:1;15609:2;15589:18;;;15582:30;-1:-1:-1;;;15628:18:1;;;15621:50;15688:18;;86619:71:0;15368:344:1;86619:71:0;86732:9;86724:5;;:17;;;;:::i;:::-;86711:9;:30;86703:70;;;;-1:-1:-1;;;86703:70:0;;11726:2:1;86703:70:0;;;11708:21:1;11765:2;11745:18;;;11738:30;11804:29;11784:18;;;11777:57;11851:18;;86703:70:0;11524:351:1;86703:70:0;86790:32;86800:10;86812:9;86790;:32::i;27213:266::-;51412:10;27340:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;27340:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;27340:60:0;;;;;;;;;;27416:55;;8549:41:1;;;27340:49:0;;51412:10;27416:55;;8522:18:1;27416:55:0;;;;;;;27213:266;;:::o;34266:407::-;34441:31;34454:4;34460:2;34464:7;34441:12;:31::i;:::-;-1:-1:-1;;;;;34487:14:0;;;:19;34483:183;;34526:56;34557:4;34563:2;34567:7;34576:5;34526:30;:56::i;:::-;34521:145;;34610:40;;-1:-1:-1;;;34610:40:0;;;;;;;;;;;34521:145;34266:407;;;;:::o;83811:569::-;83940:13;83980:17;83988:8;83980:7;:17::i;:::-;83975:60;;84006:29;;-1:-1:-1;;;84006:29:0;;;;;;;;;;;83975:60;84080:9;84074:23;;;;;:::i;:::-;:28;;;-1:-1:-1;84074:296:0;;;;;;;;;;;;;;;;;84200:9;84238:26;84255:8;84238:16;:26::i;:::-;84155:170;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84052:318;83811:569;-1:-1:-1;;83811:569:0:o;83225:277::-;80099:13;:11;:13::i;:::-;83374:1:::1;83355:15;:20;;83307:140;;;::::0;-1:-1:-1;;;83307:140:0;;14759:2:1;83307:140:0::1;::::0;::::1;14741:21:1::0;14798:2;14778:18;;;14771:30;14837:34;14817:18;;;14810:62;-1:-1:-1;;;14888:18:1;;;14881:38;14936:19;;83307:140:0::1;14557:404:1::0;83307:140:0::1;83460:14;:32:::0;83225:277::o;81119:201::-;80099:13;:11;:13::i;:::-;-1:-1:-1;;;;;81208:22:0;::::1;81200:73;;;::::0;-1:-1:-1;;;81200:73:0;;9385:2:1;81200:73:0::1;::::0;::::1;9367:21:1::0;9424:2;9404:18;;;9397:30;9463:34;9443:18;;;9436:62;-1:-1:-1;;;9514:18:1;;;9507:36;9560:19;;81200:73:0::1;9183:402:1::0;81200:73:0::1;81284:28;81303:8;81284:18;:28::i;28108:282::-:0;28173:4;28263:13;;28253:7;:23;28210:153;;;;-1:-1:-1;;28314:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;28314:44:0;:49;;28108:282::o;84392:701::-;84490:15;;84467:20;84522:562;84546:12;84542:1;:16;84522:562;;;84582:21;84606:8;84615:1;84606:11;;;;;;;;:::i;:::-;;;;;;;;;;;84661:15;;:38;;-1:-1:-1;;;84661:38:0;;;;;16573:25:1;;;84606:11:0;;-1:-1:-1;84638:20:0;;-1:-1:-1;;;;;84661:15:0;;;;:23;;16546:18:1;;84661:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;84638:61;-1:-1:-1;;;;;;84748:26:0;;84764:10;84748:26;84720:127;;;;-1:-1:-1;;;84720:127:0;;12437:2:1;84720:127:0;;;12419:21:1;12476:2;12456:18;;;12449:30;12515:34;12495:18;;;12488:62;-1:-1:-1;;;12566:18:1;;;12559:31;12607:19;;84720:127:0;12235:397:1;84720:127:0;84897:27;;;;:12;:27;;;;;;;;84896:28;84868:147;;;;-1:-1:-1;;;84868:147:0;;13557:2:1;84868:147:0;;;13539:21:1;13596:2;13576:18;;;13569:30;13635:34;13615:18;;;13608:62;-1:-1:-1;;;13686:18:1;;;13679:49;13745:19;;84868:147:0;13355:415:1;84868:147:0;-1:-1:-1;85036:27:0;;;;:12;:27;;;;;:34;;-1:-1:-1;;85036:34:0;85066:4;85036:34;;;84560:3;;;;:::i;:::-;;;;84522:562;;44938:112;45015:27;45025:2;45029:8;45015:27;;;;;;;;;;;;:9;:27::i;22444:1307::-;22538:7;22578;22680:13;;22673:4;:20;22669:1015;;;22718:14;22735:23;;;:17;:23;;;;;;-1:-1:-1;;;22824:24:0;;22820:845;;23489:113;23496:11;23489:113;;-1:-1:-1;;;23567:6:0;23549:25;;;;:17;:25;;;;;;23489:113;;;23635:6;22444:1307;-1:-1:-1;;;22444:1307:0:o;22820:845::-;22695:989;22669:1015;23712:31;;-1:-1:-1;;;23712:31:0;;;;;;;;;;;80378:132;80286:6;;-1:-1:-1;;;;;80286:6:0;51412:10;80442:23;80434:68;;;;-1:-1:-1;;;80434:68:0;;13977:2:1;80434:68:0;;;13959:21:1;;;13996:18;;;13989:30;14055:34;14035:18;;;14028:62;14107:18;;80434:68:0;13775:356:1;81480:191:0;81573:6;;;-1:-1:-1;;;;;81590:17:0;;;-1:-1:-1;;;;;;81590:17:0;;;;;;;81623:40;;81573:6;;;81590:17;81573:6;;81623:40;;81554:16;;81623:40;81543:128;81480:191;:::o;36757:831::-;36954:171;;-1:-1:-1;;;36954:171:0;;36920:4;;-1:-1:-1;;;;;36954:45:0;;;;;:171;;51412:10;;37056:4;;37079:7;;37105:5;;36954:171;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36954:171:0;;;;;;;;-1:-1:-1;;36954:171:0;;;;;;;;;;;;:::i;:::-;;;36937:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37339:13:0;;37335:235;;37385:40;;-1:-1:-1;;;37385:40:0;;;;;;;;;;;37335:235;37528:6;37522:13;37513:6;37509:2;37505:15;37498:38;36937:644;-1:-1:-1;;;;;;37198:81:0;-1:-1:-1;;;37198:81:0;;-1:-1:-1;36937:644:0;36757:831;;;;;;:::o;76191:716::-;76247:13;76298:14;76315:17;76326:5;76315:10;:17::i;:::-;76335:1;76315:21;76298:38;;76351:20;76385:6;76374:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;76374:18:0;-1:-1:-1;76351:41:0;-1:-1:-1;76516:28:0;;;76532:2;76516:28;76573:288;-1:-1:-1;;76605:5:0;-1:-1:-1;;;76742:2:0;76731:14;;76726:30;76605:5;76713:44;76803:2;76794:11;;;-1:-1:-1;76828:10:0;76824:21;;76840:5;;76824:21;76573:288;;;-1:-1:-1;76882:6:0;76191:716;-1:-1:-1;;;76191:716:0:o;43974:880::-;44105:19;44111:2;44115:8;44105:5;:19::i;:::-;-1:-1:-1;;;;;44166:14:0;;;:19;44162:674;;44206:11;44220:13;44268:14;;;44301:424;44358:205;44427:1;44460:2;44493:7;;;;;;44531:5;44358:30;:205::i;:::-;44327:358;;44621:40;;-1:-1:-1;;;44621:40:0;;;;;;;;;;;44327:358;44720:3;44712:5;:11;44301:424;;44807:3;44790:13;;:20;44786:34;;44812:8;;;44786:34;44187:649;;43974:880;;;:::o;73057:922::-;73110:7;;-1:-1:-1;;;73188:15:0;;73184:102;;-1:-1:-1;;;73224:15:0;;;-1:-1:-1;73268:2:0;73258:12;73184:102;73313:6;73304:5;:15;73300:102;;73349:6;73340:15;;;-1:-1:-1;73384:2:0;73374:12;73300:102;73429:6;73420:5;:15;73416:102;;73465:6;73456:15;;;-1:-1:-1;73500:2:0;73490:12;73416:102;73545:5;73536;:14;73532:99;;73580:5;73571:14;;;-1:-1:-1;73614:1:0;73604:11;73532:99;73658:5;73649;:14;73645:99;;73693:5;73684:14;;;-1:-1:-1;73727:1:0;73717:11;73645:99;73771:5;73762;:14;73758:99;;73806:5;73797:14;;;-1:-1:-1;73840:1:0;73830:11;73758:99;73884:5;73875;:14;73871:66;;73920:1;73910:11;73965:6;73057:922;-1:-1:-1;;73057:922:0:o;38050:3021::-;38123:20;38146:13;38174;38170:44;;38196:18;;-1:-1:-1;;;38196:18:0;;;;;;;;;;;38170:44;-1:-1:-1;;;;;38702:22:0;;;;;;:18;:22;;;;10721:2;38702:22;;;:105;;38774:32;38745:62;;38702:105;;;39050:31;;;:17;:31;;;;;-1:-1:-1;25286:15:0;;25260:24;25256:46;24809:11;24784:23;24780:41;24777:52;24732:112;;39050:194;;39306:23;;;;39050:31;;38702:22;;40071:25;38702:22;;39924:335;40585:1;40571:12;40567:20;40525:346;40626:3;40617:7;40614:16;40525:346;;40844:7;40834:8;40831:1;40804:25;40801:1;40798;40793:59;40679:1;40666:15;40525:346;;;-1:-1:-1;40904:13:0;40900:45;;40926:19;;-1:-1:-1;;;40926:19:0;;;;;;;;;;;40900:45;40962:13;:19;-1:-1:-1;33475:193:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:247::-;484:6;537:2;525:9;516:7;512:23;508:32;505:52;;;553:1;550;543:12;505:52;592:9;579:23;611:31;636:5;611:31;:::i;677:251::-;747:6;800:2;788:9;779:7;775:23;771:32;768:52;;;816:1;813;806:12;768:52;848:9;842:16;867:31;892:5;867:31;:::i;933:388::-;1001:6;1009;1062:2;1050:9;1041:7;1037:23;1033:32;1030:52;;;1078:1;1075;1068:12;1030:52;1117:9;1104:23;1136:31;1161:5;1136:31;:::i;:::-;1186:5;-1:-1:-1;1243:2:1;1228:18;;1215:32;1256:33;1215:32;1256:33;:::i;:::-;1308:7;1298:17;;;933:388;;;;;:::o;1326:456::-;1403:6;1411;1419;1472:2;1460:9;1451:7;1447:23;1443:32;1440:52;;;1488:1;1485;1478:12;1440:52;1527:9;1514:23;1546:31;1571:5;1546:31;:::i;:::-;1596:5;-1:-1:-1;1653:2:1;1638:18;;1625:32;1666:33;1625:32;1666:33;:::i;:::-;1326:456;;1718:7;;-1:-1:-1;;;1772:2:1;1757:18;;;;1744:32;;1326:456::o;1787:794::-;1882:6;1890;1898;1906;1959:3;1947:9;1938:7;1934:23;1930:33;1927:53;;;1976:1;1973;1966:12;1927:53;2015:9;2002:23;2034:31;2059:5;2034:31;:::i;:::-;2084:5;-1:-1:-1;2141:2:1;2126:18;;2113:32;2154:33;2113:32;2154:33;:::i;:::-;2206:7;-1:-1:-1;2260:2:1;2245:18;;2232:32;;-1:-1:-1;2315:2:1;2300:18;;2287:32;2342:18;2331:30;;2328:50;;;2374:1;2371;2364:12;2328:50;2397:22;;2450:4;2442:13;;2438:27;-1:-1:-1;2428:55:1;;2479:1;2476;2469:12;2428:55;2502:73;2567:7;2562:2;2549:16;2544:2;2540;2536:11;2502:73;:::i;:::-;2492:83;;;1787:794;;;;;;;:::o;2586:416::-;2651:6;2659;2712:2;2700:9;2691:7;2687:23;2683:32;2680:52;;;2728:1;2725;2718:12;2680:52;2767:9;2754:23;2786:31;2811:5;2786:31;:::i;:::-;2836:5;-1:-1:-1;2893:2:1;2878:18;;2865:32;2935:15;;2928:23;2916:36;;2906:64;;2966:1;2963;2956:12;3007:315;3075:6;3083;3136:2;3124:9;3115:7;3111:23;3107:32;3104:52;;;3152:1;3149;3142:12;3104:52;3191:9;3178:23;3210:31;3235:5;3210:31;:::i;:::-;3260:5;3312:2;3297:18;;;;3284:32;;-1:-1:-1;;;3007:315:1:o;3327:957::-;3411:6;3442:2;3485;3473:9;3464:7;3460:23;3456:32;3453:52;;;3501:1;3498;3491:12;3453:52;3541:9;3528:23;3570:18;3611:2;3603:6;3600:14;3597:34;;;3627:1;3624;3617:12;3597:34;3665:6;3654:9;3650:22;3640:32;;3710:7;3703:4;3699:2;3695:13;3691:27;3681:55;;3732:1;3729;3722:12;3681:55;3768:2;3755:16;3790:2;3786;3783:10;3780:36;;;3796:18;;:::i;:::-;3842:2;3839:1;3835:10;3825:20;;3865:28;3889:2;3885;3881:11;3865:28;:::i;:::-;3927:15;;;3958:12;;;;3990:11;;;4020;;;4016:20;;4013:33;-1:-1:-1;4010:53:1;;;4059:1;4056;4049:12;4010:53;4081:1;4072:10;;4091:163;4105:2;4102:1;4099:9;4091:163;;;4162:17;;4150:30;;4123:1;4116:9;;;;;4200:12;;;;4232;;4091:163;;;-1:-1:-1;4273:5:1;3327:957;-1:-1:-1;;;;;;;;3327:957:1:o;4289:245::-;4347:6;4400:2;4388:9;4379:7;4375:23;4371:32;4368:52;;;4416:1;4413;4406:12;4368:52;4455:9;4442:23;4474:30;4498:5;4474:30;:::i;4539:249::-;4608:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:52;;;4677:1;4674;4667:12;4629:52;4709:9;4703:16;4728:30;4752:5;4728:30;:::i;4793:450::-;4862:6;4915:2;4903:9;4894:7;4890:23;4886:32;4883:52;;;4931:1;4928;4921:12;4883:52;4971:9;4958:23;5004:18;4996:6;4993:30;4990:50;;;5036:1;5033;5026:12;4990:50;5059:22;;5112:4;5104:13;;5100:27;-1:-1:-1;5090:55:1;;5141:1;5138;5131:12;5090:55;5164:73;5229:7;5224:2;5211:16;5206:2;5202;5198:11;5164:73;:::i;5248:180::-;5307:6;5360:2;5348:9;5339:7;5335:23;5331:32;5328:52;;;5376:1;5373;5366:12;5328:52;-1:-1:-1;5399:23:1;;5248:180;-1:-1:-1;5248:180:1:o;5433:184::-;5503:6;5556:2;5544:9;5535:7;5531:23;5527:32;5524:52;;;5572:1;5569;5562:12;5524:52;-1:-1:-1;5595:16:1;;5433:184;-1:-1:-1;5433:184:1:o;5622:257::-;5663:3;5701:5;5695:12;5728:6;5723:3;5716:19;5744:63;5800:6;5793:4;5788:3;5784:14;5777:4;5770:5;5766:16;5744:63;:::i;:::-;5861:2;5840:15;-1:-1:-1;;5836:29:1;5827:39;;;;5868:4;5823:50;;5622:257;-1:-1:-1;;5622:257:1:o;5884:185::-;5926:3;5964:5;5958:12;5979:52;6024:6;6019:3;6012:4;6005:5;6001:16;5979:52;:::i;:::-;6047:16;;;;;5884:185;-1:-1:-1;;5884:185:1:o;6192:1301::-;6469:3;6498:1;6531:6;6525:13;6561:3;6583:1;6611:9;6607:2;6603:18;6593:28;;6671:2;6660:9;6656:18;6693;6683:61;;6737:4;6729:6;6725:17;6715:27;;6683:61;6763:2;6811;6803:6;6800:14;6780:18;6777:38;6774:165;;;-1:-1:-1;;;6838:33:1;;6894:4;6891:1;6884:15;6924:4;6845:3;6912:17;6774:165;6955:18;6982:104;;;;7100:1;7095:320;;;;6948:467;;6982:104;-1:-1:-1;;7015:24:1;;7003:37;;7060:16;;;;-1:-1:-1;6982:104:1;;7095:320;16962:1;16955:14;;;16999:4;16986:18;;7190:1;7204:165;7218:6;7215:1;7212:13;7204:165;;;7296:14;;7283:11;;;7276:35;7339:16;;;;7233:10;;7204:165;;;7208:3;;7398:6;7393:3;7389:16;7382:23;;6948:467;;;;;;;7431:56;7456:30;7482:3;7474:6;7456:30;:::i;:::-;-1:-1:-1;;;6134:20:1;;6179:1;6170:11;;6074:113;7431:56;7424:63;6192:1301;-1:-1:-1;;;;;6192:1301:1:o;7916:488::-;-1:-1:-1;;;;;8185:15:1;;;8167:34;;8237:15;;8232:2;8217:18;;8210:43;8284:2;8269:18;;8262:34;;;8332:3;8327:2;8312:18;;8305:31;;;8110:4;;8353:45;;8378:19;;8370:6;8353:45;:::i;:::-;8345:53;7916:488;-1:-1:-1;;;;;;7916:488:1:o;8601:219::-;8750:2;8739:9;8732:21;8713:4;8770:44;8810:2;8799:9;8795:18;8787:6;8770:44;:::i;16609:275::-;16680:2;16674:9;16745:2;16726:13;;-1:-1:-1;;16722:27:1;16710:40;;16780:18;16765:34;;16801:22;;;16762:62;16759:88;;;16827:18;;:::i;:::-;16863:2;16856:22;16609:275;;-1:-1:-1;16609:275:1:o;17015:128::-;17055:3;17086:1;17082:6;17079:1;17076:13;17073:39;;;17092:18;;:::i;:::-;-1:-1:-1;17128:9:1;;17015:128::o;17148:168::-;17188:7;17254:1;17250;17246:6;17242:14;17239:1;17236:21;17231:1;17224:9;17217:17;17213:45;17210:71;;;17261:18;;:::i;:::-;-1:-1:-1;17301:9:1;;17148:168::o;17321:258::-;17393:1;17403:113;17417:6;17414:1;17411:13;17403:113;;;17493:11;;;17487:18;17474:11;;;17467:39;17439:2;17432:10;17403:113;;;17534:6;17531:1;17528:13;17525:48;;;-1:-1:-1;;17569:1:1;17551:16;;17544:27;17321:258::o;17584:380::-;17663:1;17659:12;;;;17706;;;17727:61;;17781:4;17773:6;17769:17;17759:27;;17727:61;17834:2;17826:6;17823:14;17803:18;17800:38;17797:161;;;17880:10;17875:3;17871:20;17868:1;17861:31;17915:4;17912:1;17905:15;17943:4;17940:1;17933:15;17797:161;;17584:380;;;:::o;17969:135::-;18008:3;-1:-1:-1;;18029:17:1;;18026:43;;;18049:18;;:::i;:::-;-1:-1:-1;18096:1:1;18085:13;;17969:135::o;18109:127::-;18170:10;18165:3;18161:20;18158:1;18151:31;18201:4;18198:1;18191:15;18225:4;18222:1;18215:15;18373:127;18434:10;18429:3;18425:20;18422:1;18415:31;18465:4;18462:1;18455:15;18489:4;18486:1;18479:15;18505:127;18566:10;18561:3;18557:20;18554:1;18547:31;18597:4;18594:1;18587:15;18621:4;18618:1;18611:15;18637:131;-1:-1:-1;;;;;18712:31:1;;18702:42;;18692:70;;18758:1;18755;18748:12;18773:131;-1:-1:-1;;;;;;18847:32:1;;18837:43;;18827:71;;18894:1;18891;18884:12

Swarm Source

ipfs://4cf2be0eb4bd7e19060331e4ead40d17dad5494dca9d9502a41420869648b370
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.