ETH Price: $3,398.90 (+6.48%)
Gas: 29 Gwei

Token

Cthulhu Armageddon 2022 (CA22)
 

Overview

Max Total Supply

1,111 CA22

Holders

347

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
animpro.eth
Balance
2 CA22
0xb9d3260cb5ba51ac4c2340294af8b606f76e55f7
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:
CA22Characters

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : ca22.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "contracts/ERC721A.sol";

contract CA22Characters is ERC721A, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;
    event Mint(address indexed to, uint256 nonce, uint256 amount, uint256 step);

    address public decisionsContractAddressStates;
    address public verifyAddress = 0xd329159BbF6247Da4f365bc1e6e90cBE06d4748B;
    bool public locked;
    bool public presalelocked;
    bool public wllocked;
    bool public salelocked;

    uint256 private constant CA22_MAX = 8000;
    uint256 private constant PRESALE_PRICE = 0.069 ether;
    uint256 private constant PUBLIC_PRICE = 0.08 ether;
    uint256 public preSaleStartTimestamp;
    uint256 public publicSaleStartTimestamp;
    mapping(address => uint256) public freeNonce;
    mapping(address => uint256) public presaleNonce;

    string private tokenBaseURIStates = "https://ca22.xyz/api/v1/metadata/";
    bytes32 public roleMerkelRoot;
    uint constant Free = 1;
    uint constant Presale = 2;
    constructor(uint256 maxBatchSize, uint256 collectionSize) ERC721A("Cthulhu Armageddon 2022", "CA22", maxBatchSize, collectionSize) {
        _safeMint(msg.sender, 1);
    }

    modifier whenPublicSaleActive() {
        require(isPublicSaleOpen(), "Public sale not open");
        _;
    }

    modifier whenPreSaleActive() {
        require(isPreSaleOpen(), "Early access not open");
        _;
    }

    modifier notLocked {
        require(!locked, "Contract metadata methods are locked");
        _;
    }

    function setBaseURI(string calldata _BaseURI) external onlyOwner notLocked {
        tokenBaseURIStates = _BaseURI;
    }

    function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");      
        return string(abi.encodePacked(tokenBaseURIStates, tokenId.toString()));
    }

    function mintPublicSale(uint256 _count) external payable nonReentrant whenPublicSaleActive {
        require(!salelocked, "sale ended");
        require(tx.origin == msg.sender, "Contract is not allowed.");
        require(_count > 0, "Invalid CA22 characters count");
        require(totalSupply() + _count <= CA22_MAX, "All CA22 characters have been minted");
        require(msg.value >= _count * PUBLIC_PRICE, "Incorrect amount of ether sent");
        _safeMint(msg.sender, _count);
    }

    function mintPreSale(uint256 _count, uint256 _nonce, bytes calldata signature) external payable nonReentrant whenPreSaleActive {
        require(!presalelocked, "presale ended");
        require(_count > 0, "Invalid CA22 characters count");
        require(totalSupply() + _count <= CA22_MAX, "All early access CA22 characters have been minted");
        require(msg.value >= _count * PRESALE_PRICE, "Incorrect amount of ether sent");

        require(_nonce >= presaleNonce[msg.sender] + 1, "Nonce too old");
        require(verify(verifyAddress, msg.sender, _count, _nonce, Presale, signature), "Signature verification failed");
        _safeMint(msg.sender, _count);
        presaleNonce[msg.sender] = _nonce;
        emit Mint(msg.sender, _nonce, _count, Presale);
    }

    function freeMint(uint256 _count, uint256 _nonce, bytes calldata signature) external nonReentrant whenPreSaleActive {
        require(!wllocked, "free mint ended");
        require(_count > 0, "Invalid CA22 characters count");
        require(totalSupply() + _count <= CA22_MAX, "All early access CA22 characters have been minted");
        require(_nonce >= freeNonce[msg.sender] + 1, "Nonce too old");
        require(verify(verifyAddress, msg.sender, _count, _nonce, Free, signature), "Signature verification failed");
        _safeMint(msg.sender, _count);
        freeNonce[msg.sender] = _nonce;
        emit Mint(msg.sender, _nonce, _count, Free);
    }


    function verify(address _signer, address _to, uint256 _amount, uint256 _nounce, uint _step,bytes calldata signature) internal pure returns (bool) {
        bytes32 messageHash = getMessageHash(_to, _amount, _nounce, _step);
        return recoverSigner(messageHash, signature) == _signer;
    }

    function getMessageHash(address _to, uint256 _amount, uint256 _nonce, uint _step) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(_to, _amount, _nonce, _step));
    }

    function recoverSigner(bytes32 _ethSignedMessageHash, bytes memory _signature) internal pure returns (address) {
        (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature);
        return ecrecover(_ethSignedMessageHash, v, r, s);
    }

    function splitSignature(bytes memory sig) internal pure returns (bytes32 r, bytes32 s, uint8 v ) {
        require(sig.length == 65, "Invalid signature length!");
        assembly {
            r := mload(add(sig, 32))
            s := mload(add(sig, 64))
            v := byte(0, mload(add(sig, 96)))
        }
    }

    function isPublicSaleOpen() public view returns (bool) {
        return block.timestamp >= publicSaleStartTimestamp && publicSaleStartTimestamp != 0;

    }

    function isPreSaleOpen() public view returns (bool) {
        return !isPublicSaleOpen() && block.timestamp >= preSaleStartTimestamp && preSaleStartTimestamp != 0;
    }

    function setPublicSaleTimestamp(uint256 timestamp) external onlyOwner {
        publicSaleStartTimestamp = timestamp;
    }

    function setPreSaleTimestamp(uint256 timestamp) external onlyOwner {
        preSaleStartTimestamp = timestamp;
    }

    function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
        _setOwnersExplicit(quantity);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    function withdraw() public onlyOwner {
        (bool success,) = msg.sender.call{value : address(this).balance}('');
        require(success, "Withdrawal failed");
    }

    function lockPreSale() external onlyOwner {
        presalelocked = true;
    }

    function lockWL() external onlyOwner {
        wllocked = true;
    }

    function lockSale() external onlyOwner {
        salelocked = true;
    }

    function lockMetadata() external onlyOwner {
        locked = true;
    }

    function setdecisionsContractAddress(address _decisionsAddress) public onlyOwner {
        decisionsContractAddressStates = _decisionsAddress;
    }

    function decisionsContractAddress() public view returns (address) {
        return decisionsContractAddressStates;
    }

    function setRoleMerkelRoot(bytes32 _role) public onlyOwner notLocked {
        roleMerkelRoot = _role;
    }

    function verifyProof(bytes32 _value, bytes32[] calldata _proof)
        public view returns (bool) {
        bytes32 result = _value;
        for(uint i = 0; i < _proof.length; i++) {
            if (result < _proof[i]){
                result = pairHash(result, _proof[i]);
            } else {
                result = pairHash(_proof[i], result);
            }
            
        }
        return result == roleMerkelRoot; 
    }

    function pairHash(bytes32 _left, bytes32 _right) internal pure returns(bytes32 value) {
        assembly {
            mstore(0x00, _left)
            mstore(0x20, _right)
            value := keccak256(0x00, 0x40)
        }
    }
    
}

File 2 of 16 : ERC721A.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return currentIndex;
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

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

  /**
   * @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);
    require(to != owner, "ERC721A: approval to current owner");

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

    _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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

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

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

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

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, 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;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a 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 _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    if (to.isContract()) {
      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("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * 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`.
   */
  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.
   *
   * 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` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

File 3 of 16 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 16 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 5 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 6 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

File 7 of 16 : 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 8 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 9 of 16 : 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 10 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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 functionCall(target, data, "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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 12 of 16 : 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 13 of 16 : 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 14 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 16 of 16 : 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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize","type":"uint256"},{"internalType":"uint256","name":"collectionSize","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"step","type":"uint256"}],"name":"Mint","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":"decisionsContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decisionsContractAddressStates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"isPreSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"preSaleStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalelocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"roleMerkelRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salelocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_BaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setPreSaleTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setPublicSaleTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_role","type":"bytes32"}],"name":"setRoleMerkelRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_decisionsAddress","type":"address"}],"name":"setdecisionsContractAddress","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"verifyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_value","type":"bytes32"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"verifyProof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wllocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6000808055600755600b80546001600160a01b03191673d329159bbf6247da4f365bc1e6e90cbe06d4748b179055610120604052602160c08181529062003da960e03980516200005891601091602090910190620006fc565b503480156200006657600080fd5b5060405162003dea38038062003dea8339810160408190526200008991620007a2565b6040518060400160405280601781526020017f437468756c68752041726d61676564646f6e20323032320000000000000000008152506040518060400160405280600481526020016321a0991960e11b8152508383600081116200014b5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001ad5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000142565b8351620001c2906001906020870190620006fc565b508251620001d8906002906020860190620006fc565b5060a09190915260805250620001f09050336200020c565b60016009819055620002049033906200025e565b505062000911565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002808282604051806020016040528060008152506200028460201b60201c565b5050565b6000546001600160a01b038416620002e95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840162000142565b620002f5816000541190565b15620003445760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640162000142565b60a051831115620003a35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840162000142565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819062000401908790620007dd565b6001600160801b03168152602001858360200151620004219190620007dd565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015620005855760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a462000507600088848862000590565b620005605760405162461bcd60e51b8152602060048201526033602482015260008051602062003dca83398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840162000142565b816200056c816200080b565b92505080806200057c906200080b565b915050620004b7565b506000555050505050565b6000620005b1846001600160a01b0316620006ed60201b62001c551760201c565b15620006e157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620005eb90339089908890889060040162000827565b6020604051808303816000875af192505050801562000629575060408051601f3d908101601f191682019092526200062691810190620008a2565b60015b620006c6573d8080156200065a576040519150601f19603f3d011682016040523d82523d6000602084013e6200065f565b606091505b508051600003620006be5760405162461bcd60e51b8152602060048201526033602482015260008051602062003dca83398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840162000142565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620006e5565b5060015b949350505050565b6001600160a01b03163b151590565b8280546200070a90620008d5565b90600052602060002090601f0160209004810192826200072e576000855562000779565b82601f106200074957805160ff191683800117855562000779565b8280016001018555821562000779579182015b82811115620007795782518255916020019190600101906200075c565b50620007879291506200078b565b5090565b5b808211156200078757600081556001016200078c565b60008060408385031215620007b657600080fd5b505080516020909101519092909150565b634e487b7160e01b600052601160045260246000fd5b60006001600160801b03828116848216808303821115620008025762000802620007c7565b01949350505050565b600060018201620008205762000820620007c7565b5060010190565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620008765785810182015185820160a00152810162000858565b828111156200088957600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600060208284031215620008b557600080fd5b81516001600160e01b031981168114620008ce57600080fd5b9392505050565b600181811c90821680620008ea57607f821691505b6020821081036200090b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161345d6200094c60003960008181612381015281816123ab01526128d601526000818161218701526121b9015261345d6000f3fe6080604052600436106102e45760003560e01c8063715018a611610190578063a96d3e59116100dc578063d470c13511610095578063dc33e6811161006f578063dc33e6811461089b578063e985e9c5146108bb578063ed7d5d9f14610904578063f2fde38b1461092457600080fd5b8063d470c13514610859578063d7224ba01461086f578063d7822c991461088557600080fd5b8063a96d3e59146107a0578063b35b8a33146107b6578063b88d4fde146107e3578063b8a1197f14610803578063c87b56dd14610818578063cf3090121461083857600080fd5b8063989bdbb6116101495780639f349312116101235780639f3493121461071e5780639fbc29d51461073f578063a22cb4651461075f578063a4f5ff6a1461077f57600080fd5b8063989bdbb6146106bc5780639c68b62a146106d15780639ed7f4cc146106f157600080fd5b8063715018a6146105f457806376e7eb55146106095780638da5cb5b1461062957806390044e28146106475780639231ab2a1461065a57806395d89b41146106a757600080fd5b80632f745c591161024f578063511a9605116102085780636352211e116101e25780636352211e1461057f57806365925b901461059f57806368f137eb146105bf57806370a08231146105d457600080fd5b8063511a96051461052c57806355f804b31461054c5780635a5e5d581461056c57600080fd5b80632f745c59146104765780633ccfd60b146104965780633e2f64c4146104ab57806342842e0e146104cc57806344adcf02146104ec5780634f6ccce71461050c57600080fd5b806318160ddd116102a157806318160ddd146103cd5780631a6949e3146103ec5780631f281ace14610401578063207f32421461041657806323b872dd146104365780632d20fb601461045657600080fd5b806301ffc9a7146102e957806306fdde031461031e57806307c60dac14610340578063081812fc14610357578063095ea7b31461038f57806317cce2e9146103af575b600080fd5b3480156102f557600080fd5b50610309610304366004612c0d565b610944565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b506103336109b1565b6040516103159190612c89565b34801561034c57600080fd5b50610355610a43565b005b34801561036357600080fd5b50610377610372366004612c9c565b610a8b565b6040516001600160a01b039091168152602001610315565b34801561039b57600080fd5b506103556103aa366004612cd1565b610b16565b3480156103bb57600080fd5b50600a546001600160a01b0316610377565b3480156103d957600080fd5b506000545b604051908152602001610315565b3480156103f857600080fd5b50610309610c2d565b34801561040d57600080fd5b50610309610c47565b34801561042257600080fd5b50610355610431366004612d43565b610c70565b34801561044257600080fd5b50610355610451366004612d95565b610eb3565b34801561046257600080fd5b50610355610471366004612c9c565b610ebe565b34801561048257600080fd5b506103de610491366004612cd1565b610f20565b3480156104a257600080fd5b5061035561108b565b3480156104b757600080fd5b50600b5461030990600160b81b900460ff1681565b3480156104d857600080fd5b506103556104e7366004612d95565b611144565b3480156104f857600080fd5b50610355610507366004612c9c565b61115f565b34801561051857600080fd5b506103de610527366004612c9c565b6111b8565b34801561053857600080fd5b50610355610547366004612c9c565b61121a565b34801561055857600080fd5b50610355610567366004612dd1565b611249565b61035561057a366004612c9c565b6112a9565b34801561058b57600080fd5b5061037761059a366004612c9c565b6114ad565b3480156105ab57600080fd5b50600b54610377906001600160a01b031681565b3480156105cb57600080fd5b506103556114bf565b3480156105e057600080fd5b506103de6105ef366004612e12565b6114fe565b34801561060057600080fd5b5061035561158f565b34801561061557600080fd5b50610355610624366004612c9c565b6115c5565b34801561063557600080fd5b506008546001600160a01b0316610377565b610355610655366004612d43565b6115f4565b34801561066657600080fd5b5061067a610675366004612c9c565b611886565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610315565b3480156106b357600080fd5b506103336118a3565b3480156106c857600080fd5b506103556118b2565b3480156106dd57600080fd5b506103556106ec366004612e12565b6118f1565b3480156106fd57600080fd5b506103de61070c366004612e12565b600f6020526000908152604090205481565b34801561072a57600080fd5b50600b5461030990600160a81b900460ff1681565b34801561074b57600080fd5b50600a54610377906001600160a01b031681565b34801561076b57600080fd5b5061035561077a366004612e2d565b61193d565b34801561078b57600080fd5b50600b5461030990600160b01b900460ff1681565b3480156107ac57600080fd5b506103de600c5481565b3480156107c257600080fd5b506103de6107d1366004612e12565b600e6020526000908152604090205481565b3480156107ef57600080fd5b506103556107fe366004612e7f565b611a01565b34801561080f57600080fd5b50610355611a3a565b34801561082457600080fd5b50610333610833366004612c9c565b611a79565b34801561084457600080fd5b50600b5461030990600160a01b900460ff1681565b34801561086557600080fd5b506103de60115481565b34801561087b57600080fd5b506103de60075481565b34801561089157600080fd5b506103de600d5481565b3480156108a757600080fd5b506103de6108b6366004612e12565b611b04565b3480156108c757600080fd5b506103096108d6366004612f5a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561091057600080fd5b5061030961091f366004612f8d565b611b0f565b34801561093057600080fd5b5061035561093f366004612e12565b611bbd565b60006001600160e01b031982166380ac58cd60e01b148061097557506001600160e01b03198216635b5e139f60e01b145b8061099057506001600160e01b0319821663780e9d6360e01b145b806109ab57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546109c09061300b565b80601f01602080910402602001604051908101604052809291908181526020018280546109ec9061300b565b8015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b5050505050905090565b6008546001600160a01b03163314610a765760405162461bcd60e51b8152600401610a6d90613045565b60405180910390fd5b600b805460ff60b81b1916600160b81b179055565b6000610a98826000541190565b610afa5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610a6d565b506000908152600560205260409020546001600160a01b031690565b6000610b21826114ad565b9050806001600160a01b0316836001600160a01b031603610b8f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a6d565b336001600160a01b0382161480610bab5750610bab81336108d6565b610c1d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a6d565b610c28838383611c64565b505050565b6000600d544210158015610c425750600d5415155b905090565b6000610c51610c2d565b158015610c605750600c544210155b8015610c42575050600c54151590565b600260095403610c925760405162461bcd60e51b8152600401610a6d9061307a565b6002600955610c9f610c47565b610ce35760405162461bcd60e51b815260206004820152601560248201527422b0b9363c9030b1b1b2b9b9903737ba1037b832b760591b6044820152606401610a6d565b600b54600160b01b900460ff1615610d2f5760405162461bcd60e51b815260206004820152600f60248201526e199c9959481b5a5b9d08195b991959608a1b6044820152606401610a6d565b60008411610d4f5760405162461bcd60e51b8152600401610a6d906130b1565b611f4084610d5c60005490565b610d6691906130fe565b1115610d845760405162461bcd60e51b8152600401610a6d90613116565b336000908152600e6020526040902054610d9f9060016130fe565b831015610dde5760405162461bcd60e51b815260206004820152600d60248201526c139bdb98d9481d1bdbc81bdb19609a1b6044820152606401610a6d565b600b54610dfa906001600160a01b031633868660018787611cc0565b610e465760405162461bcd60e51b815260206004820152601d60248201527f5369676e617475726520766572696669636174696f6e206661696c65640000006044820152606401610a6d565b610e503385611d72565b336000818152600e602090815260409182902086905581518681529081018790526001918101919091527fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb906060015b60405180910390a2505060016009555050565b610c28838383611d90565b6008546001600160a01b03163314610ee85760405162461bcd60e51b8152600401610a6d90613045565b600260095403610f0a5760405162461bcd60e51b8152600401610a6d9061307a565b6002600955610f1881612116565b506001600955565b6000610f2b836114fe565b8210610f845760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a6d565b600080549080805b8381101561102b576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610fde57805192505b876001600160a01b0316836001600160a01b0316036110185786840361100a575093506109ab92505050565b8361101481613167565b9450505b508061102381613167565b915050610f8c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a6d565b6008546001600160a01b031633146110b55760405162461bcd60e51b8152600401610a6d90613045565b604051600090339047908381818185875af1925050503d80600081146110f7576040519150601f19603f3d011682016040523d82523d6000602084013e6110fc565b606091505b50509050806111415760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401610a6d565b50565b610c2883838360405180602001604052806000815250611a01565b6008546001600160a01b031633146111895760405162461bcd60e51b8152600401610a6d90613045565b600b54600160a01b900460ff16156111b35760405162461bcd60e51b8152600401610a6d90613180565b601155565b6000805482106112165760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a6d565b5090565b6008546001600160a01b031633146112445760405162461bcd60e51b8152600401610a6d90613045565b600d55565b6008546001600160a01b031633146112735760405162461bcd60e51b8152600401610a6d90613045565b600b54600160a01b900460ff161561129d5760405162461bcd60e51b8152600401610a6d90613180565b610c2860108383612b67565b6002600954036112cb5760405162461bcd60e51b8152600401610a6d9061307a565b60026009556112d8610c2d565b61131b5760405162461bcd60e51b8152602060048201526014602482015273283ab13634b19039b0b632903737ba1037b832b760611b6044820152606401610a6d565b600b54600160b81b900460ff16156113625760405162461bcd60e51b815260206004820152600a6024820152691cd85b1948195b99195960b21b6044820152606401610a6d565b3233146113b15760405162461bcd60e51b815260206004820152601860248201527f436f6e7472616374206973206e6f7420616c6c6f7765642e00000000000000006044820152606401610a6d565b600081116113d15760405162461bcd60e51b8152600401610a6d906130b1565b611f40816113de60005490565b6113e891906130fe565b11156114425760405162461bcd60e51b8152602060048201526024808201527f416c6c204341323220636861726163746572732068617665206265656e206d696044820152631b9d195960e21b6064820152608401610a6d565b61145467011c37937e080000826131c4565b3410156114a35760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e7400006044820152606401610a6d565b610f183382611d72565b60006114b8826122ff565b5192915050565b6008546001600160a01b031633146114e95760405162461bcd60e51b8152600401610a6d90613045565b600b805460ff60a81b1916600160a81b179055565b60006001600160a01b03821661156a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a6d565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146115b95760405162461bcd60e51b8152600401610a6d90613045565b6115c360006124a8565b565b6008546001600160a01b031633146115ef5760405162461bcd60e51b8152600401610a6d90613045565b600c55565b6002600954036116165760405162461bcd60e51b8152600401610a6d9061307a565b6002600955611623610c47565b6116675760405162461bcd60e51b815260206004820152601560248201527422b0b9363c9030b1b1b2b9b9903737ba1037b832b760591b6044820152606401610a6d565b600b54600160a81b900460ff16156116b15760405162461bcd60e51b815260206004820152600d60248201526c1c1c995cd85b1948195b991959609a1b6044820152606401610a6d565b600084116116d15760405162461bcd60e51b8152600401610a6d906130b1565b611f40846116de60005490565b6116e891906130fe565b11156117065760405162461bcd60e51b8152600401610a6d90613116565b61171766f5232269808000856131c4565b3410156117665760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e7400006044820152606401610a6d565b336000908152600f60205260409020546117819060016130fe565b8310156117c05760405162461bcd60e51b815260206004820152600d60248201526c139bdb98d9481d1bdbc81bdb19609a1b6044820152606401610a6d565b600b546117dc906001600160a01b031633868660028787611cc0565b6118285760405162461bcd60e51b815260206004820152601d60248201527f5369676e617475726520766572696669636174696f6e206661696c65640000006044820152606401610a6d565b6118323385611d72565b336000818152600f602090815260409182902086905581518681529081018790526002918101919091527fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb90606001610ea0565b60408051808201909152600080825260208201526109ab826122ff565b6060600280546109c09061300b565b6008546001600160a01b031633146118dc5760405162461bcd60e51b8152600401610a6d90613045565b600b805460ff60a01b1916600160a01b179055565b6008546001600160a01b0316331461191b5760405162461bcd60e51b8152600401610a6d90613045565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b336001600160a01b038316036119955760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a6d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611a0c848484611d90565b611a18848484846124fa565b611a345760405162461bcd60e51b8152600401610a6d906131e3565b50505050565b6008546001600160a01b03163314611a645760405162461bcd60e51b8152600401610a6d90613045565b600b805460ff60b01b1916600160b01b179055565b6060611a86826000541190565b611ad25760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610a6d565b6010611add836125fc565b604051602001611aee929190613252565b6040516020818303038152906040529050919050565b60006109ab826126fc565b600083815b83811015611bb057848482818110611b2e57611b2e6132f8565b90506020020135821015611b6f57611b6882868684818110611b5257611b526132f8565b9050602002013560009182526020526040902090565b9150611b9e565b611b9b858583818110611b8457611b846132f8565b905060200201358360009182526020526040902090565b91505b80611ba881613167565b915050611b14565b5060115414949350505050565b6008546001600160a01b03163314611be75760405162461bcd60e51b8152600401610a6d90613045565b6001600160a01b038116611c4c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6d565b611141816124a8565b6001600160a01b03163b151590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60408051606088901b6bffffffffffffffffffffffff1916602080830191909152603482018890526054820187905260748083018790528351808403909101815260949092019092528051910120600090886001600160a01b0316611d5b8286868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061279a92505050565b6001600160a01b0316149998505050505050505050565b611d8c828260405180602001604052806000815250612819565b5050565b6000611d9b826122ff565b80519091506000906001600160a01b0316336001600160a01b03161480611dd2575033611dc784610a8b565b6001600160a01b0316145b80611de457508151611de490336108d6565b905080611e4e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a6d565b846001600160a01b031682600001516001600160a01b031614611ec25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a6d565b6001600160a01b038416611f265760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a6d565b611f366000848460000151611c64565b6001600160a01b0385166000908152600460205260408120805460019290611f689084906001600160801b031661330e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611fb491859116613336565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561203b8460016130fe565b6000818152600360205260409020549091506001600160a01b03166120cc57612065816000541190565b156120cc5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600754816121665760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610a6d565b6000600161217484846130fe565b61217e9190613361565b90506121ab60017f0000000000000000000000000000000000000000000000000000000000000000613361565b8111156121e0576121dd60017f0000000000000000000000000000000000000000000000000000000000000000613361565b90505b6121eb816000541190565b6122465760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610a6d565b815b8181116122eb576000818152600360205260409020546001600160a01b03166122d9576000612276826122ff565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806122e381613167565b915050612248565b506122f78160016130fe565b600755505050565b604080518082019091526000808252602082015261231e826000541190565b61237d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a6d565b60007f000000000000000000000000000000000000000000000000000000000000000083106123de576123d07f000000000000000000000000000000000000000000000000000000000000000084613361565b6123db9060016130fe565b90505b825b818110612447576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561243457949350505050565b508061243f81613378565b9150506123e0565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a6d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156125f057604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061253e90339089908890889060040161338f565b6020604051808303816000875af1925050508015612579575060408051601f3d908101601f19168201909252612576918101906133cc565b60015b6125d6573d8080156125a7576040519150601f19603f3d011682016040523d82523d6000602084013e6125ac565b606091505b5080516000036125ce5760405162461bcd60e51b8152600401610a6d906131e3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506125f4565b5060015b949350505050565b6060816000036126235750506040805180820190915260018152600360fc1b602082015290565b8160005b811561264d578061263781613167565b91506126469050600a836133ff565b9150612627565b6000816001600160401b0381111561266757612667612e69565b6040519080825280601f01601f191660200182016040528015612691576020820181803683370190505b5090505b84156125f4576126a6600183613361565b91506126b3600a86613413565b6126be9060306130fe565b60f81b8183815181106126d3576126d36132f8565b60200101906001600160f81b031916908160001a9053506126f5600a866133ff565b9450612695565b60006001600160a01b03821661276e5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610a6d565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000806000806127a985612af3565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa158015612804573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6000546001600160a01b03841661287c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a6d565b612887816000541190565b156128d45760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a6d565b7f000000000000000000000000000000000000000000000000000000000000000083111561294f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a6d565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906129ab908790613336565b6001600160801b031681526020018583602001516129c99190613336565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612ae85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612aac60008884886124fa565b612ac85760405162461bcd60e51b8152600401610a6d906131e3565b81612ad281613167565b9250508080612ae090613167565b915050612a5f565b50600081905561210e565b60008060008351604114612b495760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964207369676e6174757265206c656e67746821000000000000006044820152606401610a6d565b50505060208101516040820151606090920151909260009190911a90565b828054612b739061300b565b90600052602060002090601f016020900481019282612b955760008555612bdb565b82601f10612bae5782800160ff19823516178555612bdb565b82800160010185558215612bdb579182015b82811115612bdb578235825591602001919060010190612bc0565b506112169291505b808211156112165760008155600101612be3565b6001600160e01b03198116811461114157600080fd5b600060208284031215612c1f57600080fd5b8135612c2a81612bf7565b9392505050565b60005b83811015612c4c578181015183820152602001612c34565b83811115611a345750506000910152565b60008151808452612c75816020860160208601612c31565b601f01601f19169290920160200192915050565b602081526000612c2a6020830184612c5d565b600060208284031215612cae57600080fd5b5035919050565b80356001600160a01b0381168114612ccc57600080fd5b919050565b60008060408385031215612ce457600080fd5b612ced83612cb5565b946020939093013593505050565b60008083601f840112612d0d57600080fd5b5081356001600160401b03811115612d2457600080fd5b602083019150836020828501011115612d3c57600080fd5b9250929050565b60008060008060608587031215612d5957600080fd5b843593506020850135925060408501356001600160401b03811115612d7d57600080fd5b612d8987828801612cfb565b95989497509550505050565b600080600060608486031215612daa57600080fd5b612db384612cb5565b9250612dc160208501612cb5565b9150604084013590509250925092565b60008060208385031215612de457600080fd5b82356001600160401b03811115612dfa57600080fd5b612e0685828601612cfb565b90969095509350505050565b600060208284031215612e2457600080fd5b612c2a82612cb5565b60008060408385031215612e4057600080fd5b612e4983612cb5565b915060208301358015158114612e5e57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612e9557600080fd5b612e9e85612cb5565b9350612eac60208601612cb5565b92506040850135915060608501356001600160401b0380821115612ecf57600080fd5b818701915087601f830112612ee357600080fd5b813581811115612ef557612ef5612e69565b604051601f8201601f19908116603f01168101908382118183101715612f1d57612f1d612e69565b816040528281528a6020848701011115612f3657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612f6d57600080fd5b612f7683612cb5565b9150612f8460208401612cb5565b90509250929050565b600080600060408486031215612fa257600080fd5b8335925060208401356001600160401b0380821115612fc057600080fd5b818601915086601f830112612fd457600080fd5b813581811115612fe357600080fd5b8760208260051b8501011115612ff857600080fd5b6020830194508093505050509250925092565b600181811c9082168061301f57607f821691505b60208210810361303f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601d908201527f496e76616c69642043413232206368617261637465727320636f756e74000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115613111576131116130e8565b500190565b60208082526031908201527f416c6c206561726c792061636365737320434132322063686172616374657273604082015270081a185d99481899595b881b5a5b9d1959607a1b606082015260800190565b600060018201613179576131796130e8565b5060010190565b60208082526024908201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60408201526318dad95960e21b606082015260800190565b60008160001904831182151516156131de576131de6130e8565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008151613248818560208601612c31565b9290920192915050565b600080845481600182811c91508083168061326e57607f831692505b6020808410820361328d57634e487b7160e01b86526022600452602486fd5b8180156132a157600181146132b2576132df565b60ff198616895284890196506132df565b60008b81526020902060005b868110156132d75781548b8201529085019083016132be565b505084890196505b5050505050506132ef8185613236565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b60006001600160801b038381169083168181101561332e5761332e6130e8565b039392505050565b60006001600160801b03808316818516808303821115613358576133586130e8565b01949350505050565b600082821015613373576133736130e8565b500390565b600081613387576133876130e8565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906133c290830184612c5d565b9695505050505050565b6000602082840312156133de57600080fd5b8151612c2a81612bf7565b634e487b7160e01b600052601260045260246000fd5b60008261340e5761340e6133e9565b500490565b600082613422576134226133e9565b50069056fea264697066735822122011e47752f6a86fa3d473b453629b5ed83353e529ddd4bf4fa22a3042b66089c164736f6c634300080d003368747470733a2f2f636132322e78797a2f6170692f76312f6d657461646174612f455243373231413a207472616e7366657220746f206e6f6e2045524337323152000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000001f40

Deployed Bytecode

0x6080604052600436106102e45760003560e01c8063715018a611610190578063a96d3e59116100dc578063d470c13511610095578063dc33e6811161006f578063dc33e6811461089b578063e985e9c5146108bb578063ed7d5d9f14610904578063f2fde38b1461092457600080fd5b8063d470c13514610859578063d7224ba01461086f578063d7822c991461088557600080fd5b8063a96d3e59146107a0578063b35b8a33146107b6578063b88d4fde146107e3578063b8a1197f14610803578063c87b56dd14610818578063cf3090121461083857600080fd5b8063989bdbb6116101495780639f349312116101235780639f3493121461071e5780639fbc29d51461073f578063a22cb4651461075f578063a4f5ff6a1461077f57600080fd5b8063989bdbb6146106bc5780639c68b62a146106d15780639ed7f4cc146106f157600080fd5b8063715018a6146105f457806376e7eb55146106095780638da5cb5b1461062957806390044e28146106475780639231ab2a1461065a57806395d89b41146106a757600080fd5b80632f745c591161024f578063511a9605116102085780636352211e116101e25780636352211e1461057f57806365925b901461059f57806368f137eb146105bf57806370a08231146105d457600080fd5b8063511a96051461052c57806355f804b31461054c5780635a5e5d581461056c57600080fd5b80632f745c59146104765780633ccfd60b146104965780633e2f64c4146104ab57806342842e0e146104cc57806344adcf02146104ec5780634f6ccce71461050c57600080fd5b806318160ddd116102a157806318160ddd146103cd5780631a6949e3146103ec5780631f281ace14610401578063207f32421461041657806323b872dd146104365780632d20fb601461045657600080fd5b806301ffc9a7146102e957806306fdde031461031e57806307c60dac14610340578063081812fc14610357578063095ea7b31461038f57806317cce2e9146103af575b600080fd5b3480156102f557600080fd5b50610309610304366004612c0d565b610944565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b506103336109b1565b6040516103159190612c89565b34801561034c57600080fd5b50610355610a43565b005b34801561036357600080fd5b50610377610372366004612c9c565b610a8b565b6040516001600160a01b039091168152602001610315565b34801561039b57600080fd5b506103556103aa366004612cd1565b610b16565b3480156103bb57600080fd5b50600a546001600160a01b0316610377565b3480156103d957600080fd5b506000545b604051908152602001610315565b3480156103f857600080fd5b50610309610c2d565b34801561040d57600080fd5b50610309610c47565b34801561042257600080fd5b50610355610431366004612d43565b610c70565b34801561044257600080fd5b50610355610451366004612d95565b610eb3565b34801561046257600080fd5b50610355610471366004612c9c565b610ebe565b34801561048257600080fd5b506103de610491366004612cd1565b610f20565b3480156104a257600080fd5b5061035561108b565b3480156104b757600080fd5b50600b5461030990600160b81b900460ff1681565b3480156104d857600080fd5b506103556104e7366004612d95565b611144565b3480156104f857600080fd5b50610355610507366004612c9c565b61115f565b34801561051857600080fd5b506103de610527366004612c9c565b6111b8565b34801561053857600080fd5b50610355610547366004612c9c565b61121a565b34801561055857600080fd5b50610355610567366004612dd1565b611249565b61035561057a366004612c9c565b6112a9565b34801561058b57600080fd5b5061037761059a366004612c9c565b6114ad565b3480156105ab57600080fd5b50600b54610377906001600160a01b031681565b3480156105cb57600080fd5b506103556114bf565b3480156105e057600080fd5b506103de6105ef366004612e12565b6114fe565b34801561060057600080fd5b5061035561158f565b34801561061557600080fd5b50610355610624366004612c9c565b6115c5565b34801561063557600080fd5b506008546001600160a01b0316610377565b610355610655366004612d43565b6115f4565b34801561066657600080fd5b5061067a610675366004612c9c565b611886565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610315565b3480156106b357600080fd5b506103336118a3565b3480156106c857600080fd5b506103556118b2565b3480156106dd57600080fd5b506103556106ec366004612e12565b6118f1565b3480156106fd57600080fd5b506103de61070c366004612e12565b600f6020526000908152604090205481565b34801561072a57600080fd5b50600b5461030990600160a81b900460ff1681565b34801561074b57600080fd5b50600a54610377906001600160a01b031681565b34801561076b57600080fd5b5061035561077a366004612e2d565b61193d565b34801561078b57600080fd5b50600b5461030990600160b01b900460ff1681565b3480156107ac57600080fd5b506103de600c5481565b3480156107c257600080fd5b506103de6107d1366004612e12565b600e6020526000908152604090205481565b3480156107ef57600080fd5b506103556107fe366004612e7f565b611a01565b34801561080f57600080fd5b50610355611a3a565b34801561082457600080fd5b50610333610833366004612c9c565b611a79565b34801561084457600080fd5b50600b5461030990600160a01b900460ff1681565b34801561086557600080fd5b506103de60115481565b34801561087b57600080fd5b506103de60075481565b34801561089157600080fd5b506103de600d5481565b3480156108a757600080fd5b506103de6108b6366004612e12565b611b04565b3480156108c757600080fd5b506103096108d6366004612f5a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561091057600080fd5b5061030961091f366004612f8d565b611b0f565b34801561093057600080fd5b5061035561093f366004612e12565b611bbd565b60006001600160e01b031982166380ac58cd60e01b148061097557506001600160e01b03198216635b5e139f60e01b145b8061099057506001600160e01b0319821663780e9d6360e01b145b806109ab57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546109c09061300b565b80601f01602080910402602001604051908101604052809291908181526020018280546109ec9061300b565b8015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b5050505050905090565b6008546001600160a01b03163314610a765760405162461bcd60e51b8152600401610a6d90613045565b60405180910390fd5b600b805460ff60b81b1916600160b81b179055565b6000610a98826000541190565b610afa5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610a6d565b506000908152600560205260409020546001600160a01b031690565b6000610b21826114ad565b9050806001600160a01b0316836001600160a01b031603610b8f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a6d565b336001600160a01b0382161480610bab5750610bab81336108d6565b610c1d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a6d565b610c28838383611c64565b505050565b6000600d544210158015610c425750600d5415155b905090565b6000610c51610c2d565b158015610c605750600c544210155b8015610c42575050600c54151590565b600260095403610c925760405162461bcd60e51b8152600401610a6d9061307a565b6002600955610c9f610c47565b610ce35760405162461bcd60e51b815260206004820152601560248201527422b0b9363c9030b1b1b2b9b9903737ba1037b832b760591b6044820152606401610a6d565b600b54600160b01b900460ff1615610d2f5760405162461bcd60e51b815260206004820152600f60248201526e199c9959481b5a5b9d08195b991959608a1b6044820152606401610a6d565b60008411610d4f5760405162461bcd60e51b8152600401610a6d906130b1565b611f4084610d5c60005490565b610d6691906130fe565b1115610d845760405162461bcd60e51b8152600401610a6d90613116565b336000908152600e6020526040902054610d9f9060016130fe565b831015610dde5760405162461bcd60e51b815260206004820152600d60248201526c139bdb98d9481d1bdbc81bdb19609a1b6044820152606401610a6d565b600b54610dfa906001600160a01b031633868660018787611cc0565b610e465760405162461bcd60e51b815260206004820152601d60248201527f5369676e617475726520766572696669636174696f6e206661696c65640000006044820152606401610a6d565b610e503385611d72565b336000818152600e602090815260409182902086905581518681529081018790526001918101919091527fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb906060015b60405180910390a2505060016009555050565b610c28838383611d90565b6008546001600160a01b03163314610ee85760405162461bcd60e51b8152600401610a6d90613045565b600260095403610f0a5760405162461bcd60e51b8152600401610a6d9061307a565b6002600955610f1881612116565b506001600955565b6000610f2b836114fe565b8210610f845760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a6d565b600080549080805b8381101561102b576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610fde57805192505b876001600160a01b0316836001600160a01b0316036110185786840361100a575093506109ab92505050565b8361101481613167565b9450505b508061102381613167565b915050610f8c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a6d565b6008546001600160a01b031633146110b55760405162461bcd60e51b8152600401610a6d90613045565b604051600090339047908381818185875af1925050503d80600081146110f7576040519150601f19603f3d011682016040523d82523d6000602084013e6110fc565b606091505b50509050806111415760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401610a6d565b50565b610c2883838360405180602001604052806000815250611a01565b6008546001600160a01b031633146111895760405162461bcd60e51b8152600401610a6d90613045565b600b54600160a01b900460ff16156111b35760405162461bcd60e51b8152600401610a6d90613180565b601155565b6000805482106112165760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a6d565b5090565b6008546001600160a01b031633146112445760405162461bcd60e51b8152600401610a6d90613045565b600d55565b6008546001600160a01b031633146112735760405162461bcd60e51b8152600401610a6d90613045565b600b54600160a01b900460ff161561129d5760405162461bcd60e51b8152600401610a6d90613180565b610c2860108383612b67565b6002600954036112cb5760405162461bcd60e51b8152600401610a6d9061307a565b60026009556112d8610c2d565b61131b5760405162461bcd60e51b8152602060048201526014602482015273283ab13634b19039b0b632903737ba1037b832b760611b6044820152606401610a6d565b600b54600160b81b900460ff16156113625760405162461bcd60e51b815260206004820152600a6024820152691cd85b1948195b99195960b21b6044820152606401610a6d565b3233146113b15760405162461bcd60e51b815260206004820152601860248201527f436f6e7472616374206973206e6f7420616c6c6f7765642e00000000000000006044820152606401610a6d565b600081116113d15760405162461bcd60e51b8152600401610a6d906130b1565b611f40816113de60005490565b6113e891906130fe565b11156114425760405162461bcd60e51b8152602060048201526024808201527f416c6c204341323220636861726163746572732068617665206265656e206d696044820152631b9d195960e21b6064820152608401610a6d565b61145467011c37937e080000826131c4565b3410156114a35760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e7400006044820152606401610a6d565b610f183382611d72565b60006114b8826122ff565b5192915050565b6008546001600160a01b031633146114e95760405162461bcd60e51b8152600401610a6d90613045565b600b805460ff60a81b1916600160a81b179055565b60006001600160a01b03821661156a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a6d565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146115b95760405162461bcd60e51b8152600401610a6d90613045565b6115c360006124a8565b565b6008546001600160a01b031633146115ef5760405162461bcd60e51b8152600401610a6d90613045565b600c55565b6002600954036116165760405162461bcd60e51b8152600401610a6d9061307a565b6002600955611623610c47565b6116675760405162461bcd60e51b815260206004820152601560248201527422b0b9363c9030b1b1b2b9b9903737ba1037b832b760591b6044820152606401610a6d565b600b54600160a81b900460ff16156116b15760405162461bcd60e51b815260206004820152600d60248201526c1c1c995cd85b1948195b991959609a1b6044820152606401610a6d565b600084116116d15760405162461bcd60e51b8152600401610a6d906130b1565b611f40846116de60005490565b6116e891906130fe565b11156117065760405162461bcd60e51b8152600401610a6d90613116565b61171766f5232269808000856131c4565b3410156117665760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e7400006044820152606401610a6d565b336000908152600f60205260409020546117819060016130fe565b8310156117c05760405162461bcd60e51b815260206004820152600d60248201526c139bdb98d9481d1bdbc81bdb19609a1b6044820152606401610a6d565b600b546117dc906001600160a01b031633868660028787611cc0565b6118285760405162461bcd60e51b815260206004820152601d60248201527f5369676e617475726520766572696669636174696f6e206661696c65640000006044820152606401610a6d565b6118323385611d72565b336000818152600f602090815260409182902086905581518681529081018790526002918101919091527fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb90606001610ea0565b60408051808201909152600080825260208201526109ab826122ff565b6060600280546109c09061300b565b6008546001600160a01b031633146118dc5760405162461bcd60e51b8152600401610a6d90613045565b600b805460ff60a01b1916600160a01b179055565b6008546001600160a01b0316331461191b5760405162461bcd60e51b8152600401610a6d90613045565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b336001600160a01b038316036119955760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a6d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611a0c848484611d90565b611a18848484846124fa565b611a345760405162461bcd60e51b8152600401610a6d906131e3565b50505050565b6008546001600160a01b03163314611a645760405162461bcd60e51b8152600401610a6d90613045565b600b805460ff60b01b1916600160b01b179055565b6060611a86826000541190565b611ad25760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610a6d565b6010611add836125fc565b604051602001611aee929190613252565b6040516020818303038152906040529050919050565b60006109ab826126fc565b600083815b83811015611bb057848482818110611b2e57611b2e6132f8565b90506020020135821015611b6f57611b6882868684818110611b5257611b526132f8565b9050602002013560009182526020526040902090565b9150611b9e565b611b9b858583818110611b8457611b846132f8565b905060200201358360009182526020526040902090565b91505b80611ba881613167565b915050611b14565b5060115414949350505050565b6008546001600160a01b03163314611be75760405162461bcd60e51b8152600401610a6d90613045565b6001600160a01b038116611c4c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6d565b611141816124a8565b6001600160a01b03163b151590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60408051606088901b6bffffffffffffffffffffffff1916602080830191909152603482018890526054820187905260748083018790528351808403909101815260949092019092528051910120600090886001600160a01b0316611d5b8286868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061279a92505050565b6001600160a01b0316149998505050505050505050565b611d8c828260405180602001604052806000815250612819565b5050565b6000611d9b826122ff565b80519091506000906001600160a01b0316336001600160a01b03161480611dd2575033611dc784610a8b565b6001600160a01b0316145b80611de457508151611de490336108d6565b905080611e4e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a6d565b846001600160a01b031682600001516001600160a01b031614611ec25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a6d565b6001600160a01b038416611f265760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a6d565b611f366000848460000151611c64565b6001600160a01b0385166000908152600460205260408120805460019290611f689084906001600160801b031661330e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611fb491859116613336565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561203b8460016130fe565b6000818152600360205260409020549091506001600160a01b03166120cc57612065816000541190565b156120cc5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600754816121665760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610a6d565b6000600161217484846130fe565b61217e9190613361565b90506121ab60017f0000000000000000000000000000000000000000000000000000000000001f40613361565b8111156121e0576121dd60017f0000000000000000000000000000000000000000000000000000000000001f40613361565b90505b6121eb816000541190565b6122465760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610a6d565b815b8181116122eb576000818152600360205260409020546001600160a01b03166122d9576000612276826122ff565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806122e381613167565b915050612248565b506122f78160016130fe565b600755505050565b604080518082019091526000808252602082015261231e826000541190565b61237d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a6d565b60007f000000000000000000000000000000000000000000000000000000000000000a83106123de576123d07f000000000000000000000000000000000000000000000000000000000000000a84613361565b6123db9060016130fe565b90505b825b818110612447576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561243457949350505050565b508061243f81613378565b9150506123e0565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a6d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156125f057604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061253e90339089908890889060040161338f565b6020604051808303816000875af1925050508015612579575060408051601f3d908101601f19168201909252612576918101906133cc565b60015b6125d6573d8080156125a7576040519150601f19603f3d011682016040523d82523d6000602084013e6125ac565b606091505b5080516000036125ce5760405162461bcd60e51b8152600401610a6d906131e3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506125f4565b5060015b949350505050565b6060816000036126235750506040805180820190915260018152600360fc1b602082015290565b8160005b811561264d578061263781613167565b91506126469050600a836133ff565b9150612627565b6000816001600160401b0381111561266757612667612e69565b6040519080825280601f01601f191660200182016040528015612691576020820181803683370190505b5090505b84156125f4576126a6600183613361565b91506126b3600a86613413565b6126be9060306130fe565b60f81b8183815181106126d3576126d36132f8565b60200101906001600160f81b031916908160001a9053506126f5600a866133ff565b9450612695565b60006001600160a01b03821661276e5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610a6d565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000806000806127a985612af3565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa158015612804573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6000546001600160a01b03841661287c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a6d565b612887816000541190565b156128d45760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a6d565b7f000000000000000000000000000000000000000000000000000000000000000a83111561294f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a6d565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906129ab908790613336565b6001600160801b031681526020018583602001516129c99190613336565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612ae85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612aac60008884886124fa565b612ac85760405162461bcd60e51b8152600401610a6d906131e3565b81612ad281613167565b9250508080612ae090613167565b915050612a5f565b50600081905561210e565b60008060008351604114612b495760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964207369676e6174757265206c656e67746821000000000000006044820152606401610a6d565b50505060208101516040820151606090920151909260009190911a90565b828054612b739061300b565b90600052602060002090601f016020900481019282612b955760008555612bdb565b82601f10612bae5782800160ff19823516178555612bdb565b82800160010185558215612bdb579182015b82811115612bdb578235825591602001919060010190612bc0565b506112169291505b808211156112165760008155600101612be3565b6001600160e01b03198116811461114157600080fd5b600060208284031215612c1f57600080fd5b8135612c2a81612bf7565b9392505050565b60005b83811015612c4c578181015183820152602001612c34565b83811115611a345750506000910152565b60008151808452612c75816020860160208601612c31565b601f01601f19169290920160200192915050565b602081526000612c2a6020830184612c5d565b600060208284031215612cae57600080fd5b5035919050565b80356001600160a01b0381168114612ccc57600080fd5b919050565b60008060408385031215612ce457600080fd5b612ced83612cb5565b946020939093013593505050565b60008083601f840112612d0d57600080fd5b5081356001600160401b03811115612d2457600080fd5b602083019150836020828501011115612d3c57600080fd5b9250929050565b60008060008060608587031215612d5957600080fd5b843593506020850135925060408501356001600160401b03811115612d7d57600080fd5b612d8987828801612cfb565b95989497509550505050565b600080600060608486031215612daa57600080fd5b612db384612cb5565b9250612dc160208501612cb5565b9150604084013590509250925092565b60008060208385031215612de457600080fd5b82356001600160401b03811115612dfa57600080fd5b612e0685828601612cfb565b90969095509350505050565b600060208284031215612e2457600080fd5b612c2a82612cb5565b60008060408385031215612e4057600080fd5b612e4983612cb5565b915060208301358015158114612e5e57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612e9557600080fd5b612e9e85612cb5565b9350612eac60208601612cb5565b92506040850135915060608501356001600160401b0380821115612ecf57600080fd5b818701915087601f830112612ee357600080fd5b813581811115612ef557612ef5612e69565b604051601f8201601f19908116603f01168101908382118183101715612f1d57612f1d612e69565b816040528281528a6020848701011115612f3657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612f6d57600080fd5b612f7683612cb5565b9150612f8460208401612cb5565b90509250929050565b600080600060408486031215612fa257600080fd5b8335925060208401356001600160401b0380821115612fc057600080fd5b818601915086601f830112612fd457600080fd5b813581811115612fe357600080fd5b8760208260051b8501011115612ff857600080fd5b6020830194508093505050509250925092565b600181811c9082168061301f57607f821691505b60208210810361303f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601d908201527f496e76616c69642043413232206368617261637465727320636f756e74000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115613111576131116130e8565b500190565b60208082526031908201527f416c6c206561726c792061636365737320434132322063686172616374657273604082015270081a185d99481899595b881b5a5b9d1959607a1b606082015260800190565b600060018201613179576131796130e8565b5060010190565b60208082526024908201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60408201526318dad95960e21b606082015260800190565b60008160001904831182151516156131de576131de6130e8565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008151613248818560208601612c31565b9290920192915050565b600080845481600182811c91508083168061326e57607f831692505b6020808410820361328d57634e487b7160e01b86526022600452602486fd5b8180156132a157600181146132b2576132df565b60ff198616895284890196506132df565b60008b81526020902060005b868110156132d75781548b8201529085019083016132be565b505084890196505b5050505050506132ef8185613236565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b60006001600160801b038381169083168181101561332e5761332e6130e8565b039392505050565b60006001600160801b03808316818516808303821115613358576133586130e8565b01949350505050565b600082821015613373576133736130e8565b500390565b600081613387576133876130e8565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906133c290830184612c5d565b9695505050505050565b6000602082840312156133de57600080fd5b8151612c2a81612bf7565b634e487b7160e01b600052601260045260246000fd5b60008261340e5761340e6133e9565b500490565b600082613422576134226133e9565b50069056fea264697066735822122011e47752f6a86fa3d473b453629b5ed83353e529ddd4bf4fa22a3042b66089c164736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000001f40

-----Decoded View---------------
Arg [0] : maxBatchSize (uint256): 10
Arg [1] : collectionSize (uint256): 8000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001f40


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.