ETH Price: $2,691.48 (-2.49%)

Token

Mad Eagle Club 2.0 (MEC2.0)
 

Overview

Max Total Supply

361 MEC2.0

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 MEC2.0
0xed5e70dc3214cb0dcb3beb3f1b9b4bb6e087a508
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:
MECERC721

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 10 of 14: MECERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.9 <0.9.0;

import './ERC721A.sol';
import './Ownable.sol';
import './MerkleProof.sol';
import './ReentrancyGuard.sol';

contract MECERC721 is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  bytes32 public merkleRoot;
  mapping(address => bool) public whitelistClaimed;

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint256 public cost;
  uint256 public maxSupply;
  uint256 public maxMintAmountPerTx;

  bool public paused = true;
  bool public whitelistMintEnabled = false;
  bool public revealed = false;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    uint256 _cost,
    uint256 _maxSupply,
    uint256 _maxMintAmountPerTx,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setCost(_cost);
    maxSupply = _maxSupply;
    setMaxMintAmountPerTx(_maxMintAmountPerTx);
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    // Verify whitelist requirements
    require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
    require(!whitelistClaimed[_msgSender()], 'Address already claimed!');
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');

    whitelistClaimed[_msgSender()] = true;
    _safeMint(_msgSender(), _mintAmount);
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');

    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId < _currentIndex) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned) {
        if (ownership.addr != address(0)) {
          latestOwnerAddress = ownership.addr;
        }

        if (latestOwnerAddress == _owner) {
          ownedTokenIds[ownedTokenIndex] = currentTokenId;

          ownedTokenIndex++;
        }
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

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

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

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

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

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

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setWhitelistMintEnabled(bool _state) public onlyOwner {
    whitelistMintEnabled = _state;
  }

  function withdraw() public onlyOwner nonReentrant {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
    // =============================================================================
  }

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

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 2 of 14: Context.sol
// SPDX-License-Identifier: MIT
// 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 3 of 14: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 14: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    function _safeMintToken(address to, uint256 quantity, uint256 tokenId) internal {
        _safeMintToken(to, quantity, tokenId);
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

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

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

File 5 of 14: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 6 of 14: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

File 7 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

File 8 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 14: Math.sol
// SPDX-License-Identifier: MIT
// 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 11 of 14: MerkleProof.sol
// SPDX-License-Identifier: MIT
// 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 12 of 14: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @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 13 of 14: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

File 14 of 14: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./Math.sol";

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","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":"nonpayable","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":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405260006080908152600c906200001a908262000281565b50604080518082019091526005815264173539b7b760d91b6020820152600d9062000046908262000281565b506012805462ffffff191660011790553480156200006357600080fd5b506040516200299c3803806200299c8339810160408190526200008691620003fc565b8585600262000096838262000281565b506003620000a5828262000281565b5050600160005550620000b833620000ef565b6001600955620000c88462000141565b6010839055620000d88262000150565b620000e3816200015f565b505050505050620004a9565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200014b6200017b565b600f55565b6200015a6200017b565b601155565b620001696200017b565b600e62000177828262000281565b5050565b6008546001600160a01b03163314620001da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200020757607f821691505b6020821081036200022857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200027c57600081815260208120601f850160051c81016020861015620002575750805b601f850160051c820191505b81811015620002785782815560010162000263565b5050505b505050565b81516001600160401b038111156200029d576200029d620001dc565b620002b581620002ae8454620001f2565b846200022e565b602080601f831160018114620002ed5760008415620002d45750858301515b600019600386901b1c1916600185901b17855562000278565b600085815260208120601f198616915b828110156200031e57888601518255948401946001909101908401620002fd565b50858210156200033d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200035f57600080fd5b81516001600160401b03808211156200037c576200037c620001dc565b604051601f8301601f19908116603f01168101908282118183101715620003a757620003a7620001dc565b81604052838152602092508683858801011115620003c457600080fd5b600091505b83821015620003e85785820183015181830184015290820190620003c9565b600093810190920192909252949350505050565b60008060008060008060c087890312156200041657600080fd5b86516001600160401b03808211156200042e57600080fd5b6200043c8a838b016200034d565b975060208901519150808211156200045357600080fd5b620004618a838b016200034d565b965060408901519550606089015194506080890151935060a08901519150808211156200048d57600080fd5b506200049c89828a016200034d565b9150509295509295509295565b6124e380620004b96000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063b071401b116100b6578063d5abeb011161007a578063d5abeb011461069d578063db4bec44146106b3578063e0a80853146106e3578063e985e9c514610703578063efbd73f414610723578063f2fde38b1461074357600080fd5b8063b071401b1461060a578063b767a0981461062a578063b88d4fde1461064a578063c87b56dd1461066a578063d2cab0561461068a57600080fd5b806394354fd0116100fd57806394354fd01461059757806395d89b41146105ad578063a0712d68146105c2578063a22cb465146105d5578063a45ba8e7146105f557600080fd5b806370a0823114610504578063715018a6146105245780637cb64759146105395780637ec4a659146105595780638da5cb5b1461057957600080fd5b80633ccfd60b116101d2578063518302271161019657806351830227146104615780635503a0e8146104815780635c975abb1461049657806362b99ad4146104b05780636352211e146104c55780636caede3d146104e557600080fd5b80633ccfd60b146103bf57806342842e0e146103d4578063438b6300146103f457806344a0d68a146104215780634fdd43cb1461044157600080fd5b806316ba10e01161021957806316ba10e01461032b57806316c38b3c1461034b57806318160ddd1461036b57806323b872dd146103895780632eb4a7ab146103a957600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806313faede614610307575b600080fd5b34801561026257600080fd5b50610276610271366004611db8565b610763565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107b5565b6040516102829190611e25565b3480156102b957600080fd5b506102cd6102c8366004611e38565b610847565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004611e6d565b61088b565b005b34801561031357600080fd5b5061031d600f5481565b604051908152602001610282565b34801561033757600080fd5b50610305610346366004611f22565b610918565b34801561035757600080fd5b50610305610366366004611f7a565b610930565b34801561037757600080fd5b5061031d600154600054036000190190565b34801561039557600080fd5b506103056103a4366004611f95565b61094b565b3480156103b557600080fd5b5061031d600a5481565b3480156103cb57600080fd5b50610305610956565b3480156103e057600080fd5b506103056103ef366004611f95565b6109e4565b34801561040057600080fd5b5061041461040f366004611fd1565b6109ff565b6040516102829190611fec565b34801561042d57600080fd5b5061030561043c366004611e38565b610b3e565b34801561044d57600080fd5b5061030561045c366004611f22565b610b4b565b34801561046d57600080fd5b506012546102769062010000900460ff1681565b34801561048d57600080fd5b506102a0610b5f565b3480156104a257600080fd5b506012546102769060ff1681565b3480156104bc57600080fd5b506102a0610bed565b3480156104d157600080fd5b506102cd6104e0366004611e38565b610bfa565b3480156104f157600080fd5b5060125461027690610100900460ff1681565b34801561051057600080fd5b5061031d61051f366004611fd1565b610c0c565b34801561053057600080fd5b50610305610c5a565b34801561054557600080fd5b50610305610554366004611e38565b610c6c565b34801561056557600080fd5b50610305610574366004611f22565b610c79565b34801561058557600080fd5b506008546001600160a01b03166102cd565b3480156105a357600080fd5b5061031d60115481565b3480156105b957600080fd5b506102a0610c8d565b6103056105d0366004611e38565b610c9c565b3480156105e157600080fd5b506103056105f0366004612030565b610dc2565b34801561060157600080fd5b506102a0610e57565b34801561061657600080fd5b50610305610625366004611e38565b610e64565b34801561063657600080fd5b50610305610645366004611f7a565b610e71565b34801561065657600080fd5b50610305610665366004612063565b610e93565b34801561067657600080fd5b506102a0610685366004611e38565b610ee4565b6103056106983660046120de565b611059565b3480156106a957600080fd5b5061031d60105481565b3480156106bf57600080fd5b506102766106ce366004611fd1565b600b6020526000908152604090205460ff1681565b3480156106ef57600080fd5b506103056106fe366004611f7a565b6112be565b34801561070f57600080fd5b5061027661071e36600461215c565b6112e2565b34801561072f57600080fd5b5061030561073e366004612186565b611310565b34801561074f57600080fd5b5061030561075e366004611fd1565b61138e565b60006001600160e01b031982166380ac58cd60e01b148061079457506001600160e01b03198216635b5e139f60e01b145b806107af57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107c4906121a9565b80601f01602080910402602001604051908101604052809291908181526020018280546107f0906121a9565b801561083d5780601f106108125761010080835404028352916020019161083d565b820191906000526020600020905b81548152906001019060200180831161082057829003601f168201915b5050505050905090565b600061085282611407565b61086f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089682610bfa565b9050806001600160a01b0316836001600160a01b0316036108ca5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108ea57506108e881336112e2565b155b15610908576040516367d9dca160e11b815260040160405180910390fd5b610913838383611440565b505050565b61092061149c565b600d61092c8282612229565b5050565b61093861149c565b6012805460ff1916911515919091179055565b6109138383836114f6565b61095e61149c565b6109666116e4565b600061097a6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146109c4576040519150601f19603f3d011682016040523d82523d6000602084013e6109c9565b606091505b50509050806109d757600080fd5b506109e26001600955565b565b61091383838360405180602001604052806000815250610e93565b60606000610a0c83610c0c565b90506000816001600160401b03811115610a2857610a28611e97565b604051908082528060200260200182016040528015610a51578160200160208202803683370190505b50905060016000805b8482108015610a6a575060005483105b15610b3357600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610b205780516001600160a01b031615610adb57805191505b876001600160a01b0316826001600160a01b031603610b205783858481518110610b0757610b076122e8565b602090810291909101015282610b1c81612314565b9350505b83610b2a81612314565b94505050610a5a565b509195945050505050565b610b4661149c565b600f55565b610b5361149c565b600e61092c8282612229565b600d8054610b6c906121a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b98906121a9565b8015610be55780601f10610bba57610100808354040283529160200191610be5565b820191906000526020600020905b815481529060010190602001808311610bc857829003601f168201915b505050505081565b600c8054610b6c906121a9565b6000610c058261173d565b5192915050565b60006001600160a01b038216610c35576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610c6261149c565b6109e26000611864565b610c7461149c565b600a55565b610c8161149c565b600c61092c8282612229565b6060600380546107c4906121a9565b80600081118015610caf57506011548111155b610cd45760405162461bcd60e51b8152600401610ccb9061232d565b60405180910390fd5b60105481610ce9600154600054036000190190565b610cf3919061235b565b1115610d115760405162461bcd60e51b8152600401610ccb9061236e565b8180600f54610d20919061239c565b341015610d655760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610ccb565b60125460ff1615610db85760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610ccb565b61091333846118b6565b336001600160a01b03831603610deb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e8054610b6c906121a9565b610e6c61149c565b601155565b610e7961149c565b601280549115156101000261ff0019909216919091179055565b610e9e8484846114f6565b6001600160a01b0383163b15158015610ec05750610ebe848484846118d0565b155b15610ede576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610eef82611407565b610f535760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ccb565b60125462010000900460ff161515600003610ffa57600e8054610f75906121a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa1906121a9565b8015610fee5780601f10610fc357610100808354040283529160200191610fee565b820191906000526020600020905b815481529060010190602001808311610fd157829003601f168201915b50505050509050919050565b60006110046119bc565b905060008151116110245760405180602001604052806000815250611052565b8061102e846119cb565b600d604051602001611042939291906123b3565b6040516020818303038152906040525b9392505050565b8260008111801561106c57506011548111155b6110885760405162461bcd60e51b8152600401610ccb9061232d565b6010548161109d600154600054036000190190565b6110a7919061235b565b11156110c55760405162461bcd60e51b8152600401610ccb9061236e565b8380600f546110d4919061239c565b3410156111195760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610ccb565b601254610100900460ff1661117b5760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b6064820152608401610ccb565b336000908152600b602052604090205460ff16156111db5760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610ccb565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061125585858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611a5d565b6112925760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610ccb565b336000818152600b60205260409020805460ff191660011790556112b690876118b6565b505050505050565b6112c661149c565b60128054911515620100000262ff000019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b8160008111801561132357506011548111155b61133f5760405162461bcd60e51b8152600401610ccb9061232d565b60105481611354600154600054036000190190565b61135e919061235b565b111561137c5760405162461bcd60e51b8152600401610ccb9061236e565b61138461149c565b61091382846118b6565b61139661149c565b6001600160a01b0381166113fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ccb565b61140481611864565b50565b60008160011115801561141b575060005482105b80156107af575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146109e25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ccb565b60006115018261173d565b9050836001600160a01b031681600001516001600160a01b0316146115385760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611556575061155685336112e2565b8061157157503361156684610847565b6001600160a01b0316145b90508061159157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115b857604051633a954ecd60e21b815260040160405180910390fd5b6115c460008487611440565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661169857600054821461169857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6002600954036117365760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ccb565b6002600955565b6040805160608101825260008082526020820181905291810191909152818060011115801561176d575060005481105b1561184b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118495780516001600160a01b0316156117e0579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611844579392505050565b6117e0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61092c828260405180602001604052806000815250611a73565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611905903390899088908890600401612453565b6020604051808303816000875af1925050508015611940575060408051601f3d908101601f1916820190925261193d91810190612490565b60015b61199e573d80801561196e576040519150601f19603f3d011682016040523d82523d6000602084013e611973565b606091505b508051600003611996576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546107c4906121a9565b606060006119d883611a80565b60010190506000816001600160401b038111156119f7576119f7611e97565b6040519080825280601f01601f191660200182016040528015611a21576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611a2b57509392505050565b600082611a6a8584611b58565b14949350505050565b6109138383836001611ba5565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611abf5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611aeb576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611b0957662386f26fc10000830492506010015b6305f5e1008310611b21576305f5e100830492506008015b6127108310611b3557612710830492506004015b60648310611b47576064830492506002015b600a83106107af5760010192915050565b600081815b8451811015611b9d57611b8982868381518110611b7c57611b7c6122e8565b6020026020010151611d76565b915080611b9581612314565b915050611b5d565b509392505050565b6000546001600160a01b038516611bce57604051622e076360e81b815260040160405180910390fd5b83600003611bef5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ca057506001600160a01b0387163b15155b15611d28575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cf160008884806001019550886118d0565b611d0e576040516368d2bf6b60e11b815260040160405180910390fd5b808203611ca6578260005414611d2357600080fd5b611d6d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611d29575b506000556116dd565b6000818310611d92576000828152602084905260409020611052565b5060009182526020526040902090565b6001600160e01b03198116811461140457600080fd5b600060208284031215611dca57600080fd5b813561105281611da2565b60005b83811015611df0578181015183820152602001611dd8565b50506000910152565b60008151808452611e11816020860160208601611dd5565b601f01601f19169290920160200192915050565b6020815260006110526020830184611df9565b600060208284031215611e4a57600080fd5b5035919050565b80356001600160a01b0381168114611e6857600080fd5b919050565b60008060408385031215611e8057600080fd5b611e8983611e51565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611ec757611ec7611e97565b604051601f8501601f19908116603f01168101908282118183101715611eef57611eef611e97565b81604052809350858152868686011115611f0857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f3457600080fd5b81356001600160401b03811115611f4a57600080fd5b8201601f81018413611f5b57600080fd5b6119b484823560208401611ead565b80358015158114611e6857600080fd5b600060208284031215611f8c57600080fd5b61105282611f6a565b600080600060608486031215611faa57600080fd5b611fb384611e51565b9250611fc160208501611e51565b9150604084013590509250925092565b600060208284031215611fe357600080fd5b61105282611e51565b6020808252825182820181905260009190848201906040850190845b8181101561202457835183529284019291840191600101612008565b50909695505050505050565b6000806040838503121561204357600080fd5b61204c83611e51565b915061205a60208401611f6a565b90509250929050565b6000806000806080858703121561207957600080fd5b61208285611e51565b935061209060208601611e51565b92506040850135915060608501356001600160401b038111156120b257600080fd5b8501601f810187136120c357600080fd5b6120d287823560208401611ead565b91505092959194509250565b6000806000604084860312156120f357600080fd5b8335925060208401356001600160401b038082111561211157600080fd5b818601915086601f83011261212557600080fd5b81358181111561213457600080fd5b8760208260051b850101111561214957600080fd5b6020830194508093505050509250925092565b6000806040838503121561216f57600080fd5b61217883611e51565b915061205a60208401611e51565b6000806040838503121561219957600080fd5b8235915061205a60208401611e51565b600181811c908216806121bd57607f821691505b6020821081036121dd57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561091357600081815260208120601f850160051c8101602086101561220a5750805b601f850160051c820191505b818110156112b657828155600101612216565b81516001600160401b0381111561224257612242611e97565b6122568161225084546121a9565b846121e3565b602080601f83116001811461228b57600084156122735750858301515b600019600386901b1c1916600185901b1785556112b6565b600085815260208120601f198616915b828110156122ba5788860151825594840194600190910190840161229b565b50858210156122d85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612326576123266122fe565b5060010190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b808201808211156107af576107af6122fe565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b80820281158282048414176107af576107af6122fe565b6000845160206123c68285838a01611dd5565b8551918401916123d98184848a01611dd5565b85549201916000906123ea816121a9565b60018281168015612402576001811461241757612443565b60ff1984168752821515830287019450612443565b896000528560002060005b8481101561243b57815489820152908301908701612422565b505082870194505b50929a9950505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061248690830184611df9565b9695505050505050565b6000602082840312156124a257600080fd5b815161105281611da256fea2646970667358221220a25db4944c5c16ac81a8045c5dc9711152ee0b8fa6b380dc5c587720e93dc50664736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000029040000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000124d6164204561676c6520436c756220322e30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064d4543322e300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e697066733a2f2f6261667962656963796c73737467686c706e6c6766713661777063337932696c32356f6f33656d6f62366379653672776b667676767663786b36752f68696464656e2e6a736f6e000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806370a0823111610139578063b071401b116100b6578063d5abeb011161007a578063d5abeb011461069d578063db4bec44146106b3578063e0a80853146106e3578063e985e9c514610703578063efbd73f414610723578063f2fde38b1461074357600080fd5b8063b071401b1461060a578063b767a0981461062a578063b88d4fde1461064a578063c87b56dd1461066a578063d2cab0561461068a57600080fd5b806394354fd0116100fd57806394354fd01461059757806395d89b41146105ad578063a0712d68146105c2578063a22cb465146105d5578063a45ba8e7146105f557600080fd5b806370a0823114610504578063715018a6146105245780637cb64759146105395780637ec4a659146105595780638da5cb5b1461057957600080fd5b80633ccfd60b116101d2578063518302271161019657806351830227146104615780635503a0e8146104815780635c975abb1461049657806362b99ad4146104b05780636352211e146104c55780636caede3d146104e557600080fd5b80633ccfd60b146103bf57806342842e0e146103d4578063438b6300146103f457806344a0d68a146104215780634fdd43cb1461044157600080fd5b806316ba10e01161021957806316ba10e01461032b57806316c38b3c1461034b57806318160ddd1461036b57806323b872dd146103895780632eb4a7ab146103a957600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806313faede614610307575b600080fd5b34801561026257600080fd5b50610276610271366004611db8565b610763565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107b5565b6040516102829190611e25565b3480156102b957600080fd5b506102cd6102c8366004611e38565b610847565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004611e6d565b61088b565b005b34801561031357600080fd5b5061031d600f5481565b604051908152602001610282565b34801561033757600080fd5b50610305610346366004611f22565b610918565b34801561035757600080fd5b50610305610366366004611f7a565b610930565b34801561037757600080fd5b5061031d600154600054036000190190565b34801561039557600080fd5b506103056103a4366004611f95565b61094b565b3480156103b557600080fd5b5061031d600a5481565b3480156103cb57600080fd5b50610305610956565b3480156103e057600080fd5b506103056103ef366004611f95565b6109e4565b34801561040057600080fd5b5061041461040f366004611fd1565b6109ff565b6040516102829190611fec565b34801561042d57600080fd5b5061030561043c366004611e38565b610b3e565b34801561044d57600080fd5b5061030561045c366004611f22565b610b4b565b34801561046d57600080fd5b506012546102769062010000900460ff1681565b34801561048d57600080fd5b506102a0610b5f565b3480156104a257600080fd5b506012546102769060ff1681565b3480156104bc57600080fd5b506102a0610bed565b3480156104d157600080fd5b506102cd6104e0366004611e38565b610bfa565b3480156104f157600080fd5b5060125461027690610100900460ff1681565b34801561051057600080fd5b5061031d61051f366004611fd1565b610c0c565b34801561053057600080fd5b50610305610c5a565b34801561054557600080fd5b50610305610554366004611e38565b610c6c565b34801561056557600080fd5b50610305610574366004611f22565b610c79565b34801561058557600080fd5b506008546001600160a01b03166102cd565b3480156105a357600080fd5b5061031d60115481565b3480156105b957600080fd5b506102a0610c8d565b6103056105d0366004611e38565b610c9c565b3480156105e157600080fd5b506103056105f0366004612030565b610dc2565b34801561060157600080fd5b506102a0610e57565b34801561061657600080fd5b50610305610625366004611e38565b610e64565b34801561063657600080fd5b50610305610645366004611f7a565b610e71565b34801561065657600080fd5b50610305610665366004612063565b610e93565b34801561067657600080fd5b506102a0610685366004611e38565b610ee4565b6103056106983660046120de565b611059565b3480156106a957600080fd5b5061031d60105481565b3480156106bf57600080fd5b506102766106ce366004611fd1565b600b6020526000908152604090205460ff1681565b3480156106ef57600080fd5b506103056106fe366004611f7a565b6112be565b34801561070f57600080fd5b5061027661071e36600461215c565b6112e2565b34801561072f57600080fd5b5061030561073e366004612186565b611310565b34801561074f57600080fd5b5061030561075e366004611fd1565b61138e565b60006001600160e01b031982166380ac58cd60e01b148061079457506001600160e01b03198216635b5e139f60e01b145b806107af57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107c4906121a9565b80601f01602080910402602001604051908101604052809291908181526020018280546107f0906121a9565b801561083d5780601f106108125761010080835404028352916020019161083d565b820191906000526020600020905b81548152906001019060200180831161082057829003601f168201915b5050505050905090565b600061085282611407565b61086f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089682610bfa565b9050806001600160a01b0316836001600160a01b0316036108ca5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108ea57506108e881336112e2565b155b15610908576040516367d9dca160e11b815260040160405180910390fd5b610913838383611440565b505050565b61092061149c565b600d61092c8282612229565b5050565b61093861149c565b6012805460ff1916911515919091179055565b6109138383836114f6565b61095e61149c565b6109666116e4565b600061097a6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146109c4576040519150601f19603f3d011682016040523d82523d6000602084013e6109c9565b606091505b50509050806109d757600080fd5b506109e26001600955565b565b61091383838360405180602001604052806000815250610e93565b60606000610a0c83610c0c565b90506000816001600160401b03811115610a2857610a28611e97565b604051908082528060200260200182016040528015610a51578160200160208202803683370190505b50905060016000805b8482108015610a6a575060005483105b15610b3357600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610b205780516001600160a01b031615610adb57805191505b876001600160a01b0316826001600160a01b031603610b205783858481518110610b0757610b076122e8565b602090810291909101015282610b1c81612314565b9350505b83610b2a81612314565b94505050610a5a565b509195945050505050565b610b4661149c565b600f55565b610b5361149c565b600e61092c8282612229565b600d8054610b6c906121a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b98906121a9565b8015610be55780601f10610bba57610100808354040283529160200191610be5565b820191906000526020600020905b815481529060010190602001808311610bc857829003601f168201915b505050505081565b600c8054610b6c906121a9565b6000610c058261173d565b5192915050565b60006001600160a01b038216610c35576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610c6261149c565b6109e26000611864565b610c7461149c565b600a55565b610c8161149c565b600c61092c8282612229565b6060600380546107c4906121a9565b80600081118015610caf57506011548111155b610cd45760405162461bcd60e51b8152600401610ccb9061232d565b60405180910390fd5b60105481610ce9600154600054036000190190565b610cf3919061235b565b1115610d115760405162461bcd60e51b8152600401610ccb9061236e565b8180600f54610d20919061239c565b341015610d655760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610ccb565b60125460ff1615610db85760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610ccb565b61091333846118b6565b336001600160a01b03831603610deb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e8054610b6c906121a9565b610e6c61149c565b601155565b610e7961149c565b601280549115156101000261ff0019909216919091179055565b610e9e8484846114f6565b6001600160a01b0383163b15158015610ec05750610ebe848484846118d0565b155b15610ede576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610eef82611407565b610f535760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ccb565b60125462010000900460ff161515600003610ffa57600e8054610f75906121a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa1906121a9565b8015610fee5780601f10610fc357610100808354040283529160200191610fee565b820191906000526020600020905b815481529060010190602001808311610fd157829003601f168201915b50505050509050919050565b60006110046119bc565b905060008151116110245760405180602001604052806000815250611052565b8061102e846119cb565b600d604051602001611042939291906123b3565b6040516020818303038152906040525b9392505050565b8260008111801561106c57506011548111155b6110885760405162461bcd60e51b8152600401610ccb9061232d565b6010548161109d600154600054036000190190565b6110a7919061235b565b11156110c55760405162461bcd60e51b8152600401610ccb9061236e565b8380600f546110d4919061239c565b3410156111195760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610ccb565b601254610100900460ff1661117b5760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b6064820152608401610ccb565b336000908152600b602052604090205460ff16156111db5760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610ccb565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061125585858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611a5d565b6112925760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610ccb565b336000818152600b60205260409020805460ff191660011790556112b690876118b6565b505050505050565b6112c661149c565b60128054911515620100000262ff000019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b8160008111801561132357506011548111155b61133f5760405162461bcd60e51b8152600401610ccb9061232d565b60105481611354600154600054036000190190565b61135e919061235b565b111561137c5760405162461bcd60e51b8152600401610ccb9061236e565b61138461149c565b61091382846118b6565b61139661149c565b6001600160a01b0381166113fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ccb565b61140481611864565b50565b60008160011115801561141b575060005482105b80156107af575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146109e25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ccb565b60006115018261173d565b9050836001600160a01b031681600001516001600160a01b0316146115385760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611556575061155685336112e2565b8061157157503361156684610847565b6001600160a01b0316145b90508061159157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115b857604051633a954ecd60e21b815260040160405180910390fd5b6115c460008487611440565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661169857600054821461169857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6002600954036117365760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ccb565b6002600955565b6040805160608101825260008082526020820181905291810191909152818060011115801561176d575060005481105b1561184b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118495780516001600160a01b0316156117e0579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611844579392505050565b6117e0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61092c828260405180602001604052806000815250611a73565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611905903390899088908890600401612453565b6020604051808303816000875af1925050508015611940575060408051601f3d908101601f1916820190925261193d91810190612490565b60015b61199e573d80801561196e576040519150601f19603f3d011682016040523d82523d6000602084013e611973565b606091505b508051600003611996576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546107c4906121a9565b606060006119d883611a80565b60010190506000816001600160401b038111156119f7576119f7611e97565b6040519080825280601f01601f191660200182016040528015611a21576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611a2b57509392505050565b600082611a6a8584611b58565b14949350505050565b6109138383836001611ba5565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611abf5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611aeb576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611b0957662386f26fc10000830492506010015b6305f5e1008310611b21576305f5e100830492506008015b6127108310611b3557612710830492506004015b60648310611b47576064830492506002015b600a83106107af5760010192915050565b600081815b8451811015611b9d57611b8982868381518110611b7c57611b7c6122e8565b6020026020010151611d76565b915080611b9581612314565b915050611b5d565b509392505050565b6000546001600160a01b038516611bce57604051622e076360e81b815260040160405180910390fd5b83600003611bef5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ca057506001600160a01b0387163b15155b15611d28575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cf160008884806001019550886118d0565b611d0e576040516368d2bf6b60e11b815260040160405180910390fd5b808203611ca6578260005414611d2357600080fd5b611d6d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611d29575b506000556116dd565b6000818310611d92576000828152602084905260409020611052565b5060009182526020526040902090565b6001600160e01b03198116811461140457600080fd5b600060208284031215611dca57600080fd5b813561105281611da2565b60005b83811015611df0578181015183820152602001611dd8565b50506000910152565b60008151808452611e11816020860160208601611dd5565b601f01601f19169290920160200192915050565b6020815260006110526020830184611df9565b600060208284031215611e4a57600080fd5b5035919050565b80356001600160a01b0381168114611e6857600080fd5b919050565b60008060408385031215611e8057600080fd5b611e8983611e51565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611ec757611ec7611e97565b604051601f8501601f19908116603f01168101908282118183101715611eef57611eef611e97565b81604052809350858152868686011115611f0857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f3457600080fd5b81356001600160401b03811115611f4a57600080fd5b8201601f81018413611f5b57600080fd5b6119b484823560208401611ead565b80358015158114611e6857600080fd5b600060208284031215611f8c57600080fd5b61105282611f6a565b600080600060608486031215611faa57600080fd5b611fb384611e51565b9250611fc160208501611e51565b9150604084013590509250925092565b600060208284031215611fe357600080fd5b61105282611e51565b6020808252825182820181905260009190848201906040850190845b8181101561202457835183529284019291840191600101612008565b50909695505050505050565b6000806040838503121561204357600080fd5b61204c83611e51565b915061205a60208401611f6a565b90509250929050565b6000806000806080858703121561207957600080fd5b61208285611e51565b935061209060208601611e51565b92506040850135915060608501356001600160401b038111156120b257600080fd5b8501601f810187136120c357600080fd5b6120d287823560208401611ead565b91505092959194509250565b6000806000604084860312156120f357600080fd5b8335925060208401356001600160401b038082111561211157600080fd5b818601915086601f83011261212557600080fd5b81358181111561213457600080fd5b8760208260051b850101111561214957600080fd5b6020830194508093505050509250925092565b6000806040838503121561216f57600080fd5b61217883611e51565b915061205a60208401611e51565b6000806040838503121561219957600080fd5b8235915061205a60208401611e51565b600181811c908216806121bd57607f821691505b6020821081036121dd57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561091357600081815260208120601f850160051c8101602086101561220a5750805b601f850160051c820191505b818110156112b657828155600101612216565b81516001600160401b0381111561224257612242611e97565b6122568161225084546121a9565b846121e3565b602080601f83116001811461228b57600084156122735750858301515b600019600386901b1c1916600185901b1785556112b6565b600085815260208120601f198616915b828110156122ba5788860151825594840194600190910190840161229b565b50858210156122d85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612326576123266122fe565b5060010190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b808201808211156107af576107af6122fe565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b80820281158282048414176107af576107af6122fe565b6000845160206123c68285838a01611dd5565b8551918401916123d98184848a01611dd5565b85549201916000906123ea816121a9565b60018281168015612402576001811461241757612443565b60ff1984168752821515830287019450612443565b896000528560002060005b8481101561243b57815489820152908301908701612422565b505082870194505b50929a9950505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061248690830184611df9565b9695505050505050565b6000602082840312156124a257600080fd5b815161105281611da256fea2646970667358221220a25db4944c5c16ac81a8045c5dc9711152ee0b8fa6b380dc5c587720e93dc50664736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000029040000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000124d6164204561676c6520436c756220322e30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064d4543322e300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e697066733a2f2f6261667962656963796c73737467686c706e6c6766713661777063337932696c32356f6f33656d6f62366379653672776b667676767663786b36752f68696464656e2e6a736f6e000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Mad Eagle Club 2.0
Arg [1] : _tokenSymbol (string): MEC2.0
Arg [2] : _cost (uint256): 0
Arg [3] : _maxSupply (uint256): 10500
Arg [4] : _maxMintAmountPerTx (uint256): 5
Arg [5] : _hiddenMetadataUri (string): ipfs://bafybeicylsstghlpnlgfq6awpc3y2il25oo3emob6cye6rwkfvvvvcxk6u/hidden.json

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002904
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [7] : 4d6164204561676c6520436c756220322e300000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [9] : 4d4543322e300000000000000000000000000000000000000000000000000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000004e
Arg [11] : 697066733a2f2f6261667962656963796c73737467686c706e6c676671366177
Arg [12] : 7063337932696c32356f6f33656d6f62366379653672776b667676767663786b
Arg [13] : 36752f68696464656e2e6a736f6e000000000000000000000000000000000000


Deployed Bytecode Sourcemap

175:5003:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4309:344:3;;;;;;;;;;-1:-1:-1;4309:344:3;;;;;:::i;:::-;;:::i;:::-;;;565:14:14;;558:22;540:41;;528:2;513:18;4309:344:3;;;;;;;;7409:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;8953:236::-;;;;;;;;;;-1:-1:-1;8953:236:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:14;;;1679:51;;1667:2;1652:18;8953:236:3;1533:203:14;8530:362:3;;;;;;;;;;-1:-1:-1;8530:362:3;;;;;:::i;:::-;;:::i;:::-;;455:19:8;;;;;;;;;;;;;;;;;;;2324:25:14;;;2312:2;2297:18;455:19:8;2178:177:14;4214:98:8;;;;;;;;;;-1:-1:-1;4214:98:8;;;;;:::i;:::-;;:::i;4316:75::-;;;;;;;;;;-1:-1:-1;4316:75:8;;;;;:::i;:::-;;:::i;3580:297:3:-;;;;;;;;;;;;3239:1:8;3830:12:3;3624:7;3814:13;:28;-1:-1:-1;;3814:46:3;;3580:297;9900:164;;;;;;;;;;-1:-1:-1;9900:164:3;;;;;:::i;:::-;;:::i;266:25:8:-;;;;;;;;;;;;;;;;4602:468;;;;;;;;;;;;;:::i;10130:179:3:-;;;;;;;;;;-1:-1:-1;10130:179:3;;;;;:::i;:::-;;:::i;2341:807:8:-;;;;;;;;;;-1:-1:-1;2341:807:8;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3770:72::-;;;;;;;;;;-1:-1:-1;3770:72:8;;;;;:::i;:::-;;:::i;3978:130::-;;;;;;;;;;-1:-1:-1;3978:130:8;;;;;:::i;:::-;;:::i;617:28::-;;;;;;;;;;-1:-1:-1;617:28:8;;;;;;;;;;;380:33;;;;;;;;;;;;;:::i;544:25::-;;;;;;;;;;-1:-1:-1;544:25:8;;;;;;;;348:28;;;;;;;;;;;;;:::i;7224:123:3:-;;;;;;;;;;-1:-1:-1;7224:123:3;;;;;:::i;:::-;;:::i;573:40:8:-;;;;;;;;;;-1:-1:-1;573:40:8;;;;;;;;;;;4712:203:3;;;;;;;;;;-1:-1:-1;4712:203:3;;;;;:::i;:::-;;:::i;1824:101:11:-;;;;;;;;;;;;;:::i;4395:96:8:-;;;;;;;;;;-1:-1:-1;4395:96:8;;;;;:::i;:::-;;:::i;4112:98::-;;;;;;;;;;-1:-1:-1;4112:98:8;;;;;:::i;:::-;;:::i;1194:85:11:-;;;;;;;;;;-1:-1:-1;1266:6:11;;-1:-1:-1;;;;;1266:6:11;1194:85;;506:33:8;;;;;;;;;;;;;;;;7571:102:3;;;;;;;;;;;;;:::i;1970:208:8:-;;;;;;:::i;:::-;;:::i;9256:310:3:-;;;;;;;;;;-1:-1:-1;9256:310:3;;;;;:::i;:::-;;:::i;417:31:8:-;;;;;;;;;;;;;:::i;3846:128::-;;;;;;;;;;-1:-1:-1;3846:128:8;;;;;:::i;:::-;;:::i;4495:103::-;;;;;;;;;;-1:-1:-1;4495:103:8;;;;;:::i;:::-;;:::i;10375:393:3:-;;;;;;;;;;-1:-1:-1;10375:393:3;;;;;:::i;:::-;;:::i;3249:434:8:-;;;;;;;;;;-1:-1:-1;3249:434:8;;;;;:::i;:::-;;:::i;1393:573::-;;;;;;:::i;:::-;;:::i;478:24::-;;;;;;;;;;;;;;;;295:48;;;;;;;;;;-1:-1:-1;295:48:8;;;;;:::i;:::-;;;;;;;;;;;;;;;;3687:79;;;;;;;;;;-1:-1:-1;3687:79:8;;;;;:::i;:::-;;:::i;9632:206:3:-;;;;;;;;;;-1:-1:-1;9632:206:3;;;;;:::i;:::-;;:::i;2184:153:8:-;;;;;;;;;;-1:-1:-1;2184:153:8;;;;;:::i;:::-;;:::i;2074:198:11:-;;;;;;;;;;-1:-1:-1;2074:198:11;;;;;:::i;:::-;;:::i;4309:344:3:-;4451:4;-1:-1:-1;;;;;;4490:40:3;;-1:-1:-1;;;4490:40:3;;:104;;-1:-1:-1;;;;;;;4546:48:3;;-1:-1:-1;;;4546:48:3;4490:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:2;;;4610:36:3;4471:175;4309:344;-1:-1:-1;;4309:344:3:o;7409:98::-;7463:13;7495:5;7488:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7409:98;:::o;8953:236::-;9053:7;9081:16;9089:7;9081;:16::i;:::-;9076:64;;9106:34;;-1:-1:-1;;;9106:34:3;;;;;;;;;;;9076:64;-1:-1:-1;9158:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;9158:24:3;;8953:236::o;8530:362::-;8602:13;8618:24;8634:7;8618:15;:24::i;:::-;8602:40;;8662:5;-1:-1:-1;;;;;8656:11:3;:2;-1:-1:-1;;;;;8656:11:3;;8652:48;;8676:24;;-1:-1:-1;;;8676:24:3;;;;;;;;;;;8652:48;719:10:1;-1:-1:-1;;;;;8715:21:3;;;;;;:63;;-1:-1:-1;8741:37:3;8758:5;719:10:1;9632:206:3;:::i;8741:37::-;8740:38;8715:63;8711:136;;;8801:35;;-1:-1:-1;;;8801:35:3;;;;;;;;;;;8711:136;8857:28;8866:2;8870:7;8879:5;8857:8;:28::i;:::-;8592:300;8530:362;;:::o;4214:98:8:-;1087:13:11;:11;:13::i;:::-;4285:9:8::1;:22;4297:10:::0;4285:9;:22:::1;:::i;:::-;;4214:98:::0;:::o;4316:75::-;1087:13:11;:11;:13::i;:::-;4371:6:8::1;:15:::0;;-1:-1:-1;;4371:15:8::1;::::0;::::1;;::::0;;;::::1;::::0;;4316:75::o;9900:164:3:-;10029:28;10039:4;10045:2;10049:7;10029:9;:28::i;4602:468:8:-;1087:13:11;:11;:13::i;:::-;2261:21:12::1;:19;:21::i;:::-;4895:7:8::2;4916;1266:6:11::0;;-1:-1:-1;;;;;1266:6:11;;1194:85;4916:7:8::2;-1:-1:-1::0;;;;;4908:21:8::2;4937;4908:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4894:69;;;4977:2;4969:11;;;::::0;::::2;;4652:418;2303:20:12::1;1716:1:::0;2809:7;:22;2629:209;2303:20:::1;4602:468:8:o:0;10130:179:3:-;10263:39;10280:4;10286:2;10290:7;10263:39;;;;;;;;;;;;:16;:39::i;2341:807:8:-;2401:16;2425:23;2451:17;2461:6;2451:9;:17::i;:::-;2425:43;;2474:30;2521:15;-1:-1:-1;;;;;2507:30:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2507:30:8;-1:-1:-1;2474:63:8;-1:-1:-1;3239:1:8;2543:22;;2655:462;2680:15;2662;:33;:67;;;;;2716:13;;2699:14;:30;2662:67;2655:462;;;2739:31;2773:27;;;:11;:27;;;;;;;;;2739:61;;;;;;;;;-1:-1:-1;;;;;2739:61:8;;;;-1:-1:-1;;;2739:61:8;;-1:-1:-1;;;;;2739:61:8;;;;;;;;-1:-1:-1;;;2739:61:8;;;;;;;;;;;;;;2809:277;;2846:14;;-1:-1:-1;;;;;2846:28:8;;2842:92;;2909:14;;;-1:-1:-1;2842:92:8;2970:6;-1:-1:-1;;;;;2948:28:8;:18;-1:-1:-1;;;;;2948:28:8;;2944:134;;3023:14;2990:13;3004:15;2990:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;3050:17;;;;:::i;:::-;;;;2944:134;3094:16;;;;:::i;:::-;;;;2731:386;2655:462;;;-1:-1:-1;3130:13:8;;2341:807;-1:-1:-1;;;;;2341:807:8:o;3770:72::-;1087:13:11;:11;:13::i;:::-;3825:4:8::1;:12:::0;3770:72::o;3978:130::-;1087:13:11;:11;:13::i;:::-;4065:17:8::1;:38;4085:18:::0;4065:17;:38:::1;:::i;380:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;348:28::-;;;;;;;:::i;7224:123:3:-;7288:7;7314:21;7327:7;7314:12;:21::i;:::-;:26;;7224:123;-1:-1:-1;;7224:123:3:o;4712:203::-;4776:7;-1:-1:-1;;;;;4799:19:3;;4795:60;;4827:28;;-1:-1:-1;;;4827:28:3;;;;;;;;;;;4795:60;-1:-1:-1;;;;;;4880:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4880:27:3;;4712:203::o;1824:101:11:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;4395:96:8:-:0;1087:13:11;:11;:13::i;:::-;4462:10:8::1;:24:::0;4395:96::o;4112:98::-;1087:13:11;:11;:13::i;:::-;4183:9:8::1;:22;4195:10:::0;4183:9;:22:::1;:::i;7571:102:3:-:0;7627:13;7659:7;7652:14;;;;;:::i;1970:208:8:-;2035:11;1100:1;1086:11;:15;:52;;;;;1120:18;;1105:11;:33;;1086:52;1078:85;;;;-1:-1:-1;;;1078:85:8;;;;;;;:::i;:::-;;;;;;;;;1208:9;;1193:11;1177:13;3239:1;3830:12:3;3624:7;3814:13;:28;-1:-1:-1;;3814:46:3;;3580:297;1177:13:8;:27;;;;:::i;:::-;:40;;1169:73;;;;-1:-1:-1;;;1169:73:8;;;;;;;:::i;:::-;2068:11:::1;1342;1335:4;;:18;;;;:::i;:::-;1322:9;:31;;1314:63;;;::::0;-1:-1:-1;;;1314:63:8;;12012:2:14;1314:63:8::1;::::0;::::1;11994:21:14::0;12051:2;12031:18;;;12024:30;-1:-1:-1;;;12070:18:14;;;12063:49;12129:18;;1314:63:8::1;11810:343:14::0;1314:63:8::1;2096:6:::2;::::0;::::2;;2095:7;2087:43;;;::::0;-1:-1:-1;;;2087:43:8;;12360:2:14;2087:43:8::2;::::0;::::2;12342:21:14::0;12399:2;12379:18;;;12372:30;12438:25;12418:18;;;12411:53;12481:18;;2087:43:8::2;12158:347:14::0;2087:43:8::2;2137:36;719:10:1::0;2161:11:8::2;2137:9;:36::i;9256:310:3:-:0;719:10:1;-1:-1:-1;;;;;9382:24:3;;;9378:54;;9415:17;;-1:-1:-1;;;9415:17:3;;;;;;;;;;;9378:54;719:10:1;9443:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;9443:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;9443:53:3;;;;;;;;;;9511:48;;540:41:14;;;9443:42:3;;719:10:1;9511:48:3;;513:18:14;9511:48:3;;;;;;;9256:310;;:::o;417:31:8:-;;;;;;;:::i;3846:128::-;1087:13:11;:11;:13::i;:::-;3929:18:8::1;:40:::0;3846:128::o;4495:103::-;1087:13:11;:11;:13::i;:::-;4564:20:8::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;4564:29:8;;::::1;::::0;;;::::1;::::0;;4495:103::o;10375:393:3:-;10536:28;10546:4;10552:2;10556:7;10536:9;:28::i;:::-;-1:-1:-1;;;;;10591:13:3;;1465:19:0;:23;;10591:88:3;;;;;10623:56;10654:4;10660:2;10664:7;10673:5;10623:30;:56::i;:::-;10622:57;10591:88;10574:188;;;10711:40;;-1:-1:-1;;;10711:40:3;;;;;;;;;;;10574:188;10375:393;;;;:::o;3249:434:8:-;3323:13;3352:17;3360:8;3352:7;:17::i;:::-;3344:77;;;;-1:-1:-1;;;3344:77:8;;12712:2:14;3344:77:8;;;12694:21:14;12751:2;12731:18;;;12724:30;12790:34;12770:18;;;12763:62;-1:-1:-1;;;12841:18:14;;;12834:45;12896:19;;3344:77:8;12510:411:14;3344:77:8;3432:8;;;;;;;:17;;3444:5;3432:17;3428:62;;3466:17;3459:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3249:434;;;:::o;3428:62::-;3496:28;3527:10;:8;:10::i;:::-;3496:41;;3581:1;3556:14;3550:28;:32;:128;;;;;;;;;;;;;;;;;3617:14;3633:19;:8;:17;:19::i;:::-;3654:9;3600:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3550:128;3543:135;3249:434;-1:-1:-1;;;3249:434:8:o;1393:573::-;1500:11;1100:1;1086:11;:15;:52;;;;;1120:18;;1105:11;:33;;1086:52;1078:85;;;;-1:-1:-1;;;1078:85:8;;;;;;;:::i;:::-;1208:9;;1193:11;1177:13;3239:1;3830:12:3;3624:7;3814:13;:28;-1:-1:-1;;3814:46:3;;3580:297;1177:13:8;:27;;;;:::i;:::-;:40;;1169:73;;;;-1:-1:-1;;;1169:73:8;;;;;;;:::i;:::-;1533:11:::1;1342;1335:4;;:18;;;;:::i;:::-;1322:9;:31;;1314:63;;;::::0;-1:-1:-1;;;1314:63:8;;12012:2:14;1314:63:8::1;::::0;::::1;11994:21:14::0;12051:2;12031:18;;;12024:30;-1:-1:-1;;;12070:18:14;;;12063:49;12129:18;;1314:63:8::1;11810:343:14::0;1314:63:8::1;1597:20:::2;::::0;::::2;::::0;::::2;;;1589:67;;;::::0;-1:-1:-1;;;1589:67:8;;14389:2:14;1589:67:8::2;::::0;::::2;14371:21:14::0;14428:2;14408:18;;;14401:30;14467:34;14447:18;;;14440:62;-1:-1:-1;;;14518:18:14;;;14511:32;14560:19;;1589:67:8::2;14187:398:14::0;1589:67:8::2;719:10:1::0;1671:30:8::2;::::0;;;:16:::2;:30;::::0;;;;;::::2;;1670:31;1662:68;;;::::0;-1:-1:-1;;;1662:68:8;;14792:2:14;1662:68:8::2;::::0;::::2;14774:21:14::0;14831:2;14811:18;;;14804:30;14870:26;14850:18;;;14843:54;14914:18;;1662:68:8::2;14590:348:14::0;1662:68:8::2;1761:30;::::0;-1:-1:-1;;719:10:1;15092:2:14;15088:15;15084:53;1761:30:8::2;::::0;::::2;15072:66:14::0;1736:12:8::2;::::0;15154::14;;1761:30:8::2;;;;;;;;;;;;1751:41;;;;;;1736:56;;1806:50;1825:12;;1806:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;1839:10:8::2;::::0;;-1:-1:-1;1851:4:8;;-1:-1:-1;1806:18:8::2;:50::i;:::-;1798:77;;;::::0;-1:-1:-1;;;1798:77:8;;15379:2:14;1798:77:8::2;::::0;::::2;15361:21:14::0;15418:2;15398:18;;;15391:30;-1:-1:-1;;;15437:18:14;;;15430:44;15491:18;;1798:77:8::2;15177:338:14::0;1798:77:8::2;719:10:1::0;1882:30:8::2;::::0;;;:16:::2;:30;::::0;;;;:37;;-1:-1:-1;;1882:37:8::2;1915:4;1882:37;::::0;;1925:36:::2;::::0;1949:11;1925:9:::2;:36::i;:::-;1546:420;1248:1:::1;1393:573:::0;;;;:::o;3687:79::-;1087:13:11;:11;:13::i;:::-;3744:8:8::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;3744:17:8;;::::1;::::0;;;::::1;::::0;;3687:79::o;9632:206:3:-;-1:-1:-1;;;;;9796:25:3;;;9769:4;9796:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;9632:206::o;2184:153:8:-;2270:11;1100:1;1086:11;:15;:52;;;;;1120:18;;1105:11;:33;;1086:52;1078:85;;;;-1:-1:-1;;;1078:85:8;;;;;;;:::i;:::-;1208:9;;1193:11;1177:13;3239:1;3830:12:3;3624:7;3814:13;:28;-1:-1:-1;;3814:46:3;;3580:297;1177:13:8;:27;;;;:::i;:::-;:40;;1169:73;;;;-1:-1:-1;;;1169:73:8;;;;;;;:::i;:::-;1087:13:11::1;:11;:13::i;:::-;2299:33:8::2;2309:9;2320:11;2299:9;:33::i;2074:198:11:-:0;1087:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:11;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:11;;15722:2:14;2154:73:11::1;::::0;::::1;15704:21:14::0;15761:2;15741:18;;;15734:30;15800:34;15780:18;;;15773:62;-1:-1:-1;;;15851:18:14;;;15844:36;15897:19;;2154:73:11::1;15520:402:14::0;2154:73:11::1;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;11014:208:3:-;11071:4;11125:7;3239:1:8;11106:26:3;;:65;;;;;11158:13;;11148:7;:23;11106:65;:109;;;;-1:-1:-1;;11188:20:3;;;;:11;:20;;;;;:27;-1:-1:-1;;;11188:27:3;;;;11187:28;;11014:208::o;19314:189::-;19424:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19424:29:3;-1:-1:-1;;;;;19424:29:3;;;;;;;;;19468:28;;19424:24;;19468:28;;;;;;;19314:189;;;:::o;1352:130:11:-;1266:6;;-1:-1:-1;;;;;1266:6:11;719:10:1;1415:23:11;1407:68;;;;-1:-1:-1;;;1407:68:11;;16129:2:14;1407:68:11;;;16111:21:14;;;16148:18;;;16141:30;16207:34;16187:18;;;16180:62;16259:18;;1407:68:11;15927:356:14;14384:2082:3;14494:35;14532:21;14545:7;14532:12;:21::i;:::-;14494:59;;14590:4;-1:-1:-1;;;;;14568:26:3;:13;:18;;;-1:-1:-1;;;;;14568:26:3;;14564:67;;14603:28;;-1:-1:-1;;;14603:28:3;;;;;;;;;;;14564:67;14642:22;719:10:1;-1:-1:-1;;;;;14668:20:3;;;;:72;;-1:-1:-1;14704:36:3;14721:4;719:10:1;9632:206:3;:::i;14704:36::-;14668:124;;;-1:-1:-1;719:10:1;14756:20:3;14768:7;14756:11;:20::i;:::-;-1:-1:-1;;;;;14756:36:3;;14668:124;14642:151;;14809:17;14804:66;;14835:35;;-1:-1:-1;;;14835:35:3;;;;;;;;;;;14804:66;-1:-1:-1;;;;;14884:16:3;;14880:52;;14909:23;;-1:-1:-1;;;14909:23:3;;;;;;;;;;;14880:52;15048:35;15065:1;15069:7;15078:4;15048:8;:35::i;:::-;-1:-1:-1;;;;;15373:18:3;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;15373:31:3;;;-1:-1:-1;;;;;15373:31:3;;;-1:-1:-1;;15373:31:3;;;;;;;15418:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;15418:29:3;;;;;;;;;;;15496:20;;;:11;:20;;;;;;15530:18;;-1:-1:-1;;;;;;15562:49:3;;;;-1:-1:-1;;;15595:15:3;15562:49;;;;;;;;;;15881:11;;15940:24;;;;;15982:13;;15496:20;;15940:24;;15982:13;15978:377;;16189:13;;16174:11;:28;16170:171;;16226:20;;16294:28;;;;-1:-1:-1;;;;;16268:54:3;-1:-1:-1;;;16268:54:3;-1:-1:-1;;;;;;16268:54:3;;;-1:-1:-1;;;;;16226:20:3;;16268:54;;;;16170:171;15349:1016;;;16399:7;16395:2;-1:-1:-1;;;;;16380:27:3;16389:4;-1:-1:-1;;;;;16380:27:3;;;;;;;;;;;16417:42;14484:1982;;14384:2082;;;:::o;2336:287:12:-;1759:1;2468:7;;:19;2460:63;;;;-1:-1:-1;;;2460:63:12;;16490:2:14;2460:63:12;;;16472:21:14;16529:2;16509:18;;;16502:30;16568:33;16548:18;;;16541:61;16619:18;;2460:63:12;16288:355:14;2460:63:12;1759:1;2598:7;:18;2336:287::o;6055:1112:3:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6193:7:3;;3239:1:8;6239:23:3;;:47;;;;;6273:13;;6266:4;:20;6239:47;6235:868;;;6306:31;6340:17;;;:11;:17;;;;;;;;;6306:51;;;;;;;;;-1:-1:-1;;;;;6306:51:3;;;;-1:-1:-1;;;6306:51:3;;-1:-1:-1;;;;;6306:51:3;;;;;;;;-1:-1:-1;;;6306:51:3;;;;;;;;;;;;;;6375:714;;6424:14;;-1:-1:-1;;;;;6424:28:3;;6420:99;;6487:9;6055:1112;-1:-1:-1;;;6055:1112:3:o;6420:99::-;-1:-1:-1;;;6855:6:3;6899:17;;;;:11;:17;;;;;;;;;6887:29;;;;;;;;;-1:-1:-1;;;;;6887:29:3;;;;;-1:-1:-1;;;6887:29:3;;-1:-1:-1;;;;;6887:29:3;;;;;;;;-1:-1:-1;;;6887:29:3;;;;;;;;;;;;;6946:28;6942:107;;7013:9;6055:1112;-1:-1:-1;;;6055:1112:3:o;6942:107::-;6816:255;;;6288:815;6235:868;7129:31;;-1:-1:-1;;;7129:31:3;;;;;;;;;;;2426:187:11;2518:6;;;-1:-1:-1;;;;;2534:17:11;;;-1:-1:-1;;;;;;2534:17:11;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;11228:102:3:-;11296:27;11306:2;11310:8;11296:27;;;;;;;;;;;;:9;:27::i;19984:748::-;20174:150;;-1:-1:-1;;;20174:150:3;;20142:4;;-1:-1:-1;;;;;20174:36:3;;;;;:150;;719:10:1;;20258:4:3;;20280:7;;20305:5;;20174:150;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20174:150:3;;;;;;;;-1:-1:-1;;20174:150:3;;;;;;;;;;;;:::i;:::-;;;20158:568;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20491:6;:13;20508:1;20491:18;20487:229;;20536:40;;-1:-1:-1;;;20536:40:3;;;;;;;;;;;20487:229;20676:6;20670:13;20661:6;20657:2;20653:15;20646:38;20158:568;-1:-1:-1;;;;;;20378:55:3;-1:-1:-1;;;20378:55:3;;-1:-1:-1;20158:568:3;19984:748;;;;;;:::o;5074:102:8:-;5134:13;5162:9;5155:16;;;;;:::i;410:696:13:-;466:13;515:14;532:17;543:5;532:10;:17::i;:::-;552:1;532:21;515:38;;567:20;601:6;-1:-1:-1;;;;;590:18:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;590:18:13;-1:-1:-1;567:41:13;-1:-1:-1;728:28:13;;;744:2;728:28;783:280;-1:-1:-1;;814:5:13;-1:-1:-1;;;948:2:13;937:14;;932:30;814:5;919:44;1007:2;998:11;;;-1:-1:-1;1027:21:13;783:280;1027:21;-1:-1:-1;1083:6:13;410:696;-1:-1:-1;;;410:696:13:o;1156:184:10:-;1277:4;1329;1300:25;1313:5;1320:4;1300:12;:25::i;:::-;:33;;1156:184;-1:-1:-1;;;;1156:184:10:o;11821:157:3:-;11939:32;11945:2;11949:8;11959:5;11966:4;11939:5;:32::i;9889:890:9:-;9942:7;;-1:-1:-1;;;10017:15:9;;10013:99;;-1:-1:-1;;;10052:15:9;;;-1:-1:-1;10095:2:9;10085:12;10013:99;10138:6;10129:5;:15;10125:99;;10173:6;10164:15;;;-1:-1:-1;10207:2:9;10197:12;10125:99;10250:6;10241:5;:15;10237:99;;10285:6;10276:15;;;-1:-1:-1;10319:2:9;10309:12;10237:99;10362:5;10353;:14;10349:96;;10396:5;10387:14;;;-1:-1:-1;10429:1:9;10419:11;10349:96;10471:5;10462;:14;10458:96;;10505:5;10496:14;;;-1:-1:-1;10538:1:9;10528:11;10458:96;10580:5;10571;:14;10567:96;;10614:5;10605:14;;;-1:-1:-1;10647:1:9;10637:11;10567:96;10689:5;10680;:14;10676:64;;10724:1;10714:11;10766:6;9889:890;-1:-1:-1;;9889:890:9:o;1994:290:10:-;2077:7;2119:4;2077:7;2133:116;2157:5;:12;2153:1;:16;2133:116;;;2205:33;2215:12;2229:5;2235:1;2229:8;;;;;;;;:::i;:::-;;;;;;;2205:9;:33::i;:::-;2190:48;-1:-1:-1;2171:3:10;;;;:::i;:::-;;;;2133:116;;;-1:-1:-1;2265:12:10;1994:290;-1:-1:-1;;;1994:290:10:o;12225:1917:3:-;12358:20;12381:13;-1:-1:-1;;;;;12408:16:3;;12404:48;;12433:19;;-1:-1:-1;;;12433:19:3;;;;;;;;;;;12404:48;12466:8;12478:1;12466:13;12462:44;;12488:18;;-1:-1:-1;;;12488:18:3;;;;;;;;;;;12462:44;-1:-1:-1;;;;;12849:16:3;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;12907:49:3;;-1:-1:-1;;;;;12849:44:3;;;;;;;12907:49;;;;-1:-1:-1;;12849:44:3;;;;;;12907:49;;;;;;;;;;;;;;;;12971:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;13020:66:3;;;;-1:-1:-1;;;13070:15:3;13020:66;;;;;;;;;;12971:25;13164:23;;;13206:4;:23;;;;-1:-1:-1;;;;;;13214:13:3;;1465:19:0;:23;;13214:15:3;13202:812;;;13249:493;13279:38;;13304:12;;-1:-1:-1;;;;;13279:38:3;;;13296:1;;13279:38;;13296:1;;13279:38;13369:207;13437:1;13469:2;13501:14;;;;;;13545:5;13369:30;:207::i;:::-;13339:356;;13632:40;;-1:-1:-1;;;13632:40:3;;;;;;;;;;;13339:356;13737:3;13721:12;:19;13249:493;;13821:12;13804:13;;:29;13800:43;;13835:8;;;13800:43;13202:812;;;13882:118;13912:40;;13937:14;;;;;-1:-1:-1;;;;;13912:40:3;;;13929:1;;13912:40;;13929:1;;13912:40;13995:3;13979:12;:19;13882:118;;13202:812;-1:-1:-1;14027:13:3;:28;14075:60;10375:393;8879:147:10;8942:7;8972:1;8968;:5;:51;;9100:13;9191:15;;;9226:4;9219:15;;;9272:4;9256:21;;8968:51;;;-1:-1:-1;9100:13:10;9191:15;;;9226:4;9219:15;9272:4;9256:21;;;8879:147::o;14:131:14:-;-1:-1:-1;;;;;;88:32:14;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:14;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:14;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:14:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:14;;1348:180;-1:-1:-1;1348:180:14:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:14;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:14:o;2360:127::-;2421:10;2416:3;2412:20;2409:1;2402:31;2452:4;2449:1;2442:15;2476:4;2473:1;2466:15;2492:632;2557:5;-1:-1:-1;;;;;2628:2:14;2620:6;2617:14;2614:40;;;2634:18;;:::i;:::-;2709:2;2703:9;2677:2;2763:15;;-1:-1:-1;;2759:24:14;;;2785:2;2755:33;2751:42;2739:55;;;2809:18;;;2829:22;;;2806:46;2803:72;;;2855:18;;:::i;:::-;2895:10;2891:2;2884:22;2924:6;2915:15;;2954:6;2946;2939:22;2994:3;2985:6;2980:3;2976:16;2973:25;2970:45;;;3011:1;3008;3001:12;2970:45;3061:6;3056:3;3049:4;3041:6;3037:17;3024:44;3116:1;3109:4;3100:6;3092;3088:19;3084:30;3077:41;;;;2492:632;;;;;:::o;3129:451::-;3198:6;3251:2;3239:9;3230:7;3226:23;3222:32;3219:52;;;3267:1;3264;3257:12;3219:52;3307:9;3294:23;-1:-1:-1;;;;;3332:6:14;3329:30;3326:50;;;3372:1;3369;3362:12;3326:50;3395:22;;3448:4;3440:13;;3436:27;-1:-1:-1;3426:55:14;;3477:1;3474;3467:12;3426:55;3500:74;3566:7;3561:2;3548:16;3543:2;3539;3535:11;3500:74;:::i;3585:160::-;3650:20;;3706:13;;3699:21;3689:32;;3679:60;;3735:1;3732;3725:12;3750:180;3806:6;3859:2;3847:9;3838:7;3834:23;3830:32;3827:52;;;3875:1;3872;3865:12;3827:52;3898:26;3914:9;3898:26;:::i;3935:328::-;4012:6;4020;4028;4081:2;4069:9;4060:7;4056:23;4052:32;4049:52;;;4097:1;4094;4087:12;4049:52;4120:29;4139:9;4120:29;:::i;:::-;4110:39;;4168:38;4202:2;4191:9;4187:18;4168:38;:::i;:::-;4158:48;;4253:2;4242:9;4238:18;4225:32;4215:42;;3935:328;;;;;:::o;4450:186::-;4509:6;4562:2;4550:9;4541:7;4537:23;4533:32;4530:52;;;4578:1;4575;4568:12;4530:52;4601:29;4620:9;4601:29;:::i;4641:632::-;4812:2;4864:21;;;4934:13;;4837:18;;;4956:22;;;4783:4;;4812:2;5035:15;;;;5009:2;4994:18;;;4783:4;5078:169;5092:6;5089:1;5086:13;5078:169;;;5153:13;;5141:26;;5222:15;;;;5187:12;;;;5114:1;5107:9;5078:169;;;-1:-1:-1;5264:3:14;;4641:632;-1:-1:-1;;;;;;4641:632:14:o;5463:254::-;5528:6;5536;5589:2;5577:9;5568:7;5564:23;5560:32;5557:52;;;5605:1;5602;5595:12;5557:52;5628:29;5647:9;5628:29;:::i;:::-;5618:39;;5676:35;5707:2;5696:9;5692:18;5676:35;:::i;:::-;5666:45;;5463:254;;;;;:::o;5722:667::-;5817:6;5825;5833;5841;5894:3;5882:9;5873:7;5869:23;5865:33;5862:53;;;5911:1;5908;5901:12;5862:53;5934:29;5953:9;5934:29;:::i;:::-;5924:39;;5982:38;6016:2;6005:9;6001:18;5982:38;:::i;:::-;5972:48;;6067:2;6056:9;6052:18;6039:32;6029:42;;6122:2;6111:9;6107:18;6094:32;-1:-1:-1;;;;;6141:6:14;6138:30;6135:50;;;6181:1;6178;6171:12;6135:50;6204:22;;6257:4;6249:13;;6245:27;-1:-1:-1;6235:55:14;;6286:1;6283;6276:12;6235:55;6309:74;6375:7;6370:2;6357:16;6352:2;6348;6344:11;6309:74;:::i;:::-;6299:84;;;5722:667;;;;;;;:::o;6394:683::-;6489:6;6497;6505;6558:2;6546:9;6537:7;6533:23;6529:32;6526:52;;;6574:1;6571;6564:12;6526:52;6610:9;6597:23;6587:33;;6671:2;6660:9;6656:18;6643:32;-1:-1:-1;;;;;6735:2:14;6727:6;6724:14;6721:34;;;6751:1;6748;6741:12;6721:34;6789:6;6778:9;6774:22;6764:32;;6834:7;6827:4;6823:2;6819:13;6815:27;6805:55;;6856:1;6853;6846:12;6805:55;6896:2;6883:16;6922:2;6914:6;6911:14;6908:34;;;6938:1;6935;6928:12;6908:34;6991:7;6986:2;6976:6;6973:1;6969:14;6965:2;6961:23;6957:32;6954:45;6951:65;;;7012:1;7009;7002:12;6951:65;7043:2;7039;7035:11;7025:21;;7065:6;7055:16;;;;;6394:683;;;;;:::o;7082:260::-;7150:6;7158;7211:2;7199:9;7190:7;7186:23;7182:32;7179:52;;;7227:1;7224;7217:12;7179:52;7250:29;7269:9;7250:29;:::i;:::-;7240:39;;7298:38;7332:2;7321:9;7317:18;7298:38;:::i;7347:254::-;7415:6;7423;7476:2;7464:9;7455:7;7451:23;7447:32;7444:52;;;7492:1;7489;7482:12;7444:52;7528:9;7515:23;7505:33;;7557:38;7591:2;7580:9;7576:18;7557:38;:::i;7606:380::-;7685:1;7681:12;;;;7728;;;7749:61;;7803:4;7795:6;7791:17;7781:27;;7749:61;7856:2;7848:6;7845:14;7825:18;7822:38;7819:161;;7902:10;7897:3;7893:20;7890:1;7883:31;7937:4;7934:1;7927:15;7965:4;7962:1;7955:15;7819:161;;7606:380;;;:::o;8117:545::-;8219:2;8214:3;8211:11;8208:448;;;8255:1;8280:5;8276:2;8269:17;8325:4;8321:2;8311:19;8395:2;8383:10;8379:19;8376:1;8372:27;8366:4;8362:38;8431:4;8419:10;8416:20;8413:47;;;-1:-1:-1;8454:4:14;8413:47;8509:2;8504:3;8500:12;8497:1;8493:20;8487:4;8483:31;8473:41;;8564:82;8582:2;8575:5;8572:13;8564:82;;;8627:17;;;8608:1;8597:13;8564:82;;8838:1352;8964:3;8958:10;-1:-1:-1;;;;;8983:6:14;8980:30;8977:56;;;9013:18;;:::i;:::-;9042:97;9132:6;9092:38;9124:4;9118:11;9092:38;:::i;:::-;9086:4;9042:97;:::i;:::-;9194:4;;9258:2;9247:14;;9275:1;9270:663;;;;9977:1;9994:6;9991:89;;;-1:-1:-1;10046:19:14;;;10040:26;9991:89;-1:-1:-1;;8795:1:14;8791:11;;;8787:24;8783:29;8773:40;8819:1;8815:11;;;8770:57;10093:81;;9240:944;;9270:663;8064:1;8057:14;;;8101:4;8088:18;;-1:-1:-1;;9306:20:14;;;9424:236;9438:7;9435:1;9432:14;9424:236;;;9527:19;;;9521:26;9506:42;;9619:27;;;;9587:1;9575:14;;;;9454:19;;9424:236;;;9428:3;9688:6;9679:7;9676:19;9673:201;;;9749:19;;;9743:26;-1:-1:-1;;9832:1:14;9828:14;;;9844:3;9824:24;9820:37;9816:42;9801:58;9786:74;;9673:201;-1:-1:-1;;;;;9920:1:14;9904:14;;;9900:22;9887:36;;-1:-1:-1;8838:1352:14:o;10405:127::-;10466:10;10461:3;10457:20;10454:1;10447:31;10497:4;10494:1;10487:15;10521:4;10518:1;10511:15;10537:127;10598:10;10593:3;10589:20;10586:1;10579:31;10629:4;10626:1;10619:15;10653:4;10650:1;10643:15;10669:135;10708:3;10729:17;;;10726:43;;10749:18;;:::i;:::-;-1:-1:-1;10796:1:14;10785:13;;10669:135::o;10809:344::-;11011:2;10993:21;;;11050:2;11030:18;;;11023:30;-1:-1:-1;;;11084:2:14;11069:18;;11062:50;11144:2;11129:18;;10809:344::o;11158:125::-;11223:9;;;11244:10;;;11241:36;;;11257:18;;:::i;11288:344::-;11490:2;11472:21;;;11529:2;11509:18;;;11502:30;-1:-1:-1;;;11563:2:14;11548:18;;11541:50;11623:2;11608:18;;11288:344::o;11637:168::-;11710:9;;;11741;;11758:15;;;11752:22;;11738:37;11728:71;;11779:18;;:::i;12926:1256::-;13150:3;13188:6;13182:13;13214:4;13227:64;13284:6;13279:3;13274:2;13266:6;13262:15;13227:64;:::i;:::-;13354:13;;13313:16;;;;13376:68;13354:13;13313:16;13411:15;;;13376:68;:::i;:::-;13533:13;;13466:20;;;13506:1;;13571:36;13533:13;13571:36;:::i;:::-;13626:1;13643:18;;;13670:141;;;;13825:1;13820:337;;;;13636:521;;13670:141;-1:-1:-1;;13705:24:14;;13691:39;;13782:16;;13775:24;13761:39;;13750:51;;;-1:-1:-1;13670:141:14;;13820:337;13851:6;13848:1;13841:17;13899:2;13896:1;13886:16;13924:1;13938:169;13952:8;13949:1;13946:15;13938:169;;;14034:14;;14019:13;;;14012:37;14077:16;;;;13969:10;;13938:169;;;13942:3;;14138:8;14131:5;14127:20;14120:27;;13636:521;-1:-1:-1;14173:3:14;;12926:1256;-1:-1:-1;;;;;;;;;;12926:1256:14:o;16648:489::-;-1:-1:-1;;;;;16917:15:14;;;16899:34;;16969:15;;16964:2;16949:18;;16942:43;17016:2;17001:18;;16994:34;;;17064:3;17059:2;17044:18;;17037:31;;;16842:4;;17085:46;;17111:19;;17103:6;17085:46;:::i;:::-;17077:54;16648:489;-1:-1:-1;;;;;;16648:489:14:o;17142:249::-;17211:6;17264:2;17252:9;17243:7;17239:23;17235:32;17232:52;;;17280:1;17277;17270:12;17232:52;17312:9;17306:16;17331:30;17355:5;17331:30;:::i

Swarm Source

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