ETH Price: $2,396.08 (-2.81%)

Token

Aphrodite AI (AAI)
 

Overview

Max Total Supply

11 AAI

Holders

6

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 AAI
0x8ec9c1e5fcb7078b57b3b89af7e19ab22eda7e0a
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:
AAICollection

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : PPAPE_collection.sol
// SPDX-License-Identifier: MIT
// contract written by @ctincrypto

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract AAICollection is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public craftBaseURI;

  string public constant UNREVEALED_TOKEN_URI = string(abi.encodePacked("https://nft.ppape.io/AAI/unrevealed.json"));

  // PROVENANCE: Use the same hash mechanism as BAYC's.
  string public constant MINT_PROVENANCE = "0f98924a5f0de2f920be19637d26539b908605e002ae1988584351de3b98932a";
  string public constant CRAFT_PROVENANCE = "e0434b23a6b055c1af30f512a4faf338351c1ddae97b1f8daaaf15be4be1b8b0";

  uint256 public constant MAX_SUPPLY = 32;
  uint256 public constant MINT_PER_WHITELIST_ADDRESS_LIMIT = 1;
  uint256 public constant MINT_PER_WAITING_LIST_ADDRESS_LIMIT = 1;

  // allSettings: 
  //        isRevealed | whitelistAcitve | waitinglistActive | mintActive | craftActive | tbd | tbd | tbd
  //           0              0                  0                0            0          0     0     0
  // mask:     0x80           0x40               0x20             0x10         0x08       0x04  0x02  0x01
  bytes1 public allSettings = 0x00;

  bytes32 public whitelistMerkleRoot;
  bytes32 public waitingListMerkleRoot;

  // schedule: whitelist -> waiting list -> mint -> craft
  uint256 public whitelistMintStartTime;
  uint256 public waitingListMintStartTime;
  uint256 public mintStartTime;
  uint256 public craftStartTime;

  // The counter for each whitelist address has minted.
  mapping(address => uint256) public addressWhitelistMintedBalance;

  // The counter for each waiting list address has minted.
  mapping(address => uint256) public addressWaitingListMintedBalance;

  uint256 private _maxAvailableTokens;
  mapping(uint256 => uint256) private _availableTokens;
  uint256 private _maxAvailableCraftings;
  mapping(uint256 => uint256) private _availableCraftings;

  event Mint(address to, uint256 tokenId);
  event Craft(address to, uint256 tokenId);

  constructor() ERC721("Aphrodite AI", "AAI") {
    baseURI = UNREVEALED_TOKEN_URI;
    craftBaseURI = UNREVEALED_TOKEN_URI;
    whitelistMintStartTime = 1667628000;
    waitingListMintStartTime = 1667629800;
    mintStartTime = 1667631600;
    craftStartTime = 1667633400;
    whitelistMerkleRoot = 0x7950629a491ca7e2e9f1491838685678a0ba21b45c7cd9411a8acb0dbf67b3bf;
    waitingListMerkleRoot = 0x160c62b18358259c8549489478cf9719acdd4b35593bb04525872eb6bc8e4098;
    _maxAvailableTokens = MAX_SUPPLY;
    _maxAvailableCraftings = MAX_SUPPLY / 2;
  }

  function _getRandomIndex(address to, uint256 updatedMaxAvailableTokens) internal view returns (uint256) {
    uint256 randomNum = uint256(keccak256(abi.encode(to, tx.gasprice, block.number, block.timestamp, block.difficulty, address(this), updatedMaxAvailableTokens)));
    return randomNum % updatedMaxAvailableTokens;
  }

  function _isLeft(uint256 tokenId) internal pure returns (bool) {
    return tokenId < MAX_SUPPLY / 2;
  }

  function _isRight(uint256 tokenId) internal pure returns (bool) {
    return tokenId >= MAX_SUPPLY / 2 && tokenId < MAX_SUPPLY;
  }

  function _getAvailableTokenAtIndex(uint256 indexToUse, uint256 currentMaxAvailableTokens) internal returns (uint256) {
    uint256 valAtIndex = _availableTokens[indexToUse];

    uint256 lastIndex = currentMaxAvailableTokens - 1;
    if (indexToUse != lastIndex) {
        uint256 lastValInArray = _availableTokens[lastIndex];
        if (lastValInArray == 0) {
            _availableTokens[indexToUse] = lastIndex;
        } else {
            _availableTokens[indexToUse] = lastValInArray;

            delete _availableTokens[lastIndex];
        }
    }

    return valAtIndex == 0 ? indexToUse : valAtIndex;
  }

  function _getAvailableCraftingAtIndex(uint256 indexToUse, uint256 currentMaxAvailableCraftings) internal returns (uint256) {
    uint256 valAtIndex = _availableCraftings[indexToUse];

    uint256 lastIndex = currentMaxAvailableCraftings - 1;

    if (indexToUse != lastIndex) {
      uint256 lastValInArray = _availableCraftings[lastIndex];
      if (lastValInArray == 0) {
        _availableCraftings[indexToUse] = lastIndex;
      } else {
        _availableCraftings[indexToUse] = lastValInArray;

        delete _availableCraftings[lastIndex];
      }
    }

    return valAtIndex == 0 ? indexToUse : valAtIndex;
  }

  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override {
    super._beforeTokenTransfer(from, to, tokenId);
    if (from != address(0)) {
      require(_isApprovedOrOwner(msg.sender, tokenId), "only the owner or approved contracts of NFT can transfer or burn it");
    }
  }

  function isRevealed() public view returns (bool) {
    return (allSettings & 0x80) != 0;
  }

  function isWhitelistMintActive() public view returns (bool) {
    return (allSettings & 0x40) != 0;
  }

  function isWaitingListMintActive() public view returns (bool) {
    return (allSettings & 0x20) != 0;
  }

  function isMintActive() public view returns (bool) {
    return (allSettings & 0x10) != 0;
  }

  function isCraftActive() public view returns (bool) {
    return (allSettings & 0x08) != 0;
  }

  function getTokenIdsOfOwner(address owner) external view returns (uint256[] memory) {
    uint256 balanceOfOwner = balanceOf(owner);
    uint256[] memory ownerTokenIds = new uint256[](balanceOfOwner);
    for (uint256 i = 0; i < balanceOfOwner; i++) {
      ownerTokenIds[i] = tokenOfOwnerByIndex(owner, i);
    }
    return ownerTokenIds;
  }

  // Function to verify the merkle tree root
  function _merkleProofCheck(bytes32[] calldata proof, bytes32 root) internal view {
    require(MerkleProof.verify(proof, root, keccak256(abi.encodePacked(msg.sender))), "invalid proof, you're not on the list.");
  }

  // Function to help users verify the whitelist eligibility publicly
  function isEligibleForWhitelistMint(bytes32[] calldata _merkleProof) external view returns (bool) {
    require(isWhitelistMintActive(), "the whitelist mint is paused");
    require(block.timestamp >= whitelistMintStartTime, "the whitelist is not started yet");
    require(block.timestamp < waitingListMintStartTime, "the whitelist is over");
    require(_maxAvailableTokens > 0, "all NFTs are minted!");

    _merkleProofCheck(_merkleProof, whitelistMerkleRoot);
    require(addressWhitelistMintedBalance[msg.sender] + 1 <= MINT_PER_WHITELIST_ADDRESS_LIMIT, "max NFTs per whitelist address exceeded");  

    return true;
  }

  // Function to help users verify the waiting list eligibility publicly
  function isEligibleForWaitingListMint(bytes32[] calldata _merkleProof) external view returns (bool) {
    require(isWaitingListMintActive(), "the waiting list mint is paused");
    require(block.timestamp >= waitingListMintStartTime, "the waiting list mint is not started yet");
    require(_maxAvailableTokens > 0, "all NFTs are minted!");

    _merkleProofCheck(_merkleProof, waitingListMerkleRoot);
    require(addressWaitingListMintedBalance[msg.sender] + 1 <= MINT_PER_WAITING_LIST_ADDRESS_LIMIT, "max NFTs per waiting list address exceeded");

    return true;
  }

  // Function to verify the whitelist eligibility
  function _isEligibleForWhitelistMint(bytes32[] calldata _merkleProof) internal view returns (bool) {
    require(isWhitelistMintActive(), "the whitelist mint is paused");
    require(block.timestamp >= whitelistMintStartTime, "the whitelist is not started yet");
    require(block.timestamp < waitingListMintStartTime, "the whitelist is over");
    require(_maxAvailableTokens > 0, "all NFTs are minted!");

    _merkleProofCheck(_merkleProof, whitelistMerkleRoot);
    require(addressWhitelistMintedBalance[msg.sender] + 1 <= MINT_PER_WHITELIST_ADDRESS_LIMIT, "max NFTs per whitelist address exceeded");  

    return true;
  }

  // Function to verify the waiting list eligibility
  function _isEligibleForWaitingListMint(bytes32[] calldata _merkleProof) internal view returns (bool) {
    require(isWaitingListMintActive(), "the waiting list mint is paused");
    require(block.timestamp >= waitingListMintStartTime, "the waiting list mint is not started yet");
    require(_maxAvailableTokens > 0, "all NFTs are minted!");

    _merkleProofCheck(_merkleProof, waitingListMerkleRoot);
    require(addressWaitingListMintedBalance[msg.sender] + 1 <= MINT_PER_WAITING_LIST_ADDRESS_LIMIT, "max NFTs per waiting list address exceeded");

    return true;
  }

  // Whitelist mint function for people on the whitelist
  function whitelistMint(bytes32[] calldata _merkleProof) external returns (uint256) {
    _isEligibleForWhitelistMint(_merkleProof);

    addressWhitelistMintedBalance[msg.sender] += 1;

    return _mint(msg.sender);
  }

  // Waiting list mint function for people on the waiting list
  function waitingListMint(bytes32[] calldata _merkleProof) external returns (uint256) {
    _isEligibleForWaitingListMint(_merkleProof);

    addressWaitingListMintedBalance[msg.sender] += 1;

    return _mint(msg.sender);
  }

  // Public mint function
  function mint() external returns (uint256) {
    require(isMintActive(), "the public mint is paused");
    require(block.timestamp >= mintStartTime, "the mint is not started yet");
    require(_maxAvailableTokens > 0, "all NFTs are minted!");

    return _mint(msg.sender);
  }

  function _mint(address to) internal virtual returns (uint256) {
    uint256 tokenId = _getAvailableTokenAtIndex(_getRandomIndex(to, _maxAvailableTokens), _maxAvailableTokens);
    _maxAvailableTokens--;
    _safeMint(to, tokenId);
    emit Mint(msg.sender, tokenId);
    return tokenId;
  }

  function craft(uint256 leftId, uint256 rightId) external returns (uint256) {
    require(isCraftActive(), "the craft is paused");
    require(block.timestamp >= craftStartTime, "the craft is not started yet");
    require(_isApprovedOrOwner(msg.sender, leftId) && _isApprovedOrOwner(msg.sender, rightId), "only the owner of both NFTs can craft them");

    require((_isLeft(leftId) && _isRight(rightId)), "invalid Token Id");
    require(_maxAvailableCraftings > 0, "all NFTs are crafted!");

    return _craft(msg.sender, leftId, rightId);
  }

  function _craft(address to, uint256 leftId, uint256 rightId) internal returns (uint256) {
    _burn(leftId);
    _burn(rightId);

    uint256 tokenId = _getAvailableCraftingAtIndex(_getRandomIndex(to, _maxAvailableCraftings), _maxAvailableCraftings);
    uint256 craftId = tokenId + MAX_SUPPLY;
    _maxAvailableCraftings--;
    _safeMint(to, craftId);

    emit Craft(msg.sender, craftId);
    return craftId;
  }  

  // Function to set whitelistMint start time
  function setWhitelistMintStartTime(uint256 ts) external onlyOwner {
      whitelistMintStartTime = ts;
  }

  // Function to set waitingListMint start time
  function setWaitingListMintStartTime(uint256 ts) external onlyOwner {
      waitingListMintStartTime = ts;
  }

  // Function to set mint start time
  function setMintStartTime(uint256 ts) external onlyOwner {
      mintStartTime = ts;
  }

  // Function to set craft start time
  function setCraftStartTime(uint256 ts) external onlyOwner {
      craftStartTime = ts;
  }

  // Function to set all settings
  function setAllSettings(bytes1 settings) external onlyOwner returns (bytes1) {
    return allSettings = settings;
  }

  // Function to toggle the nft revealed
  function toggleRevealed() external onlyOwner returns (bytes1) {
    return allSettings = allSettings ^ 0x80;
  }

  // Function to toggle the whitelist mint
  function toggleWhitelistMint() external onlyOwner returns (bytes1) {
    return allSettings = allSettings ^ 0x40;
  }

  // Function to toggle the waiting list mint
  function toggleWaitingListMint() external onlyOwner returns (bytes1) {
    return allSettings = allSettings ^ 0x20;
  }

  // Function to toggle the public mint
  function toggleMint() external onlyOwner returns (bytes1) {
    return allSettings = allSettings ^ 0x10;
  }

  // Function to toggle the public craft
  function toggleCraft() external onlyOwner returns (bytes1) {
    return allSettings = allSettings ^ 0x08;
  }
 
  // Function to set the whitelist merkle root  
  function setWhitelistMerkleRoot(bytes32 _newMerkleRoot) external onlyOwner {
    whitelistMerkleRoot = _newMerkleRoot;
  }

  // Function to set the waiting list merkle root  
  function setWaitingListMerkleRoot(bytes32 _newMerkleRoot) external onlyOwner {
    waitingListMerkleRoot = _newMerkleRoot;
  }

  // Function to set the base URI
  function setBaseURI(string memory _newBaseURI) external onlyOwner {
    baseURI = _newBaseURI;
  }

  // Function to set the craft base URI
  function setCraftBaseURI(string memory _newBaseURI) external onlyOwner {
    craftBaseURI = _newBaseURI;
  }

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId), "URI query for nonexistent token");
    
    if (!isRevealed()) {
      return UNREVEALED_TOKEN_URI;
    }

    return string(abi.encodePacked(
      tokenId < MAX_SUPPLY ? _baseURI() : _craftBaseURI(),
      tokenId.toString(),
      ".json"
    ));
  }

  // Function to return the base URI (only for pre-craft stage)
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  // Function to return the base URI
  function _craftBaseURI() internal view virtual returns (string memory) {
    return craftBaseURI;
  }
}

File 2 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 3 of 14 : 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 4 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

File 5 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 10 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // 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);
    }

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Craft","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","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":[],"name":"CRAFT_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PER_WAITING_LIST_ADDRESS_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PER_WHITELIST_ADDRESS_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNREVEALED_TOKEN_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressWaitingListMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressWhitelistMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allSettings","outputs":[{"internalType":"bytes1","name":"","type":"bytes1"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"leftId","type":"uint256"},{"internalType":"uint256","name":"rightId","type":"uint256"}],"name":"craft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"craftBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"craftStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getTokenIdsOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"isCraftActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isEligibleForWaitingListMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isEligibleForWhitelistMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWaitingListMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes1","name":"settings","type":"bytes1"}],"name":"setAllSettings","outputs":[{"internalType":"bytes1","name":"","type":"bytes1"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setCraftBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ts","type":"uint256"}],"name":"setCraftStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ts","type":"uint256"}],"name":"setMintStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"setWaitingListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ts","type":"uint256"}],"name":"setWaitingListMintStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ts","type":"uint256"}],"name":"setWhitelistMintStartTime","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":[],"name":"toggleCraft","outputs":[{"internalType":"bytes1","name":"","type":"bytes1"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMint","outputs":[{"internalType":"bytes1","name":"","type":"bytes1"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleRevealed","outputs":[{"internalType":"bytes1","name":"","type":"bytes1"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWaitingListMint","outputs":[{"internalType":"bytes1","name":"","type":"bytes1"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistMint","outputs":[{"internalType":"bytes1","name":"","type":"bytes1"}],"stateMutability":"nonpayable","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":"waitingListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"waitingListMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"waitingListMintStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMintStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600060f81b600d60006101000a81548160ff021916908360f81c02179055503480156200003057600080fd5b506040518060400160405280600c81526020017f417068726f6469746520414900000000000000000000000000000000000000008152506040518060400160405280600381526020017f41414900000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000b5929190620002d3565b508060019080519060200190620000ce929190620002d3565b505050620000f1620000e56200020560201b60201c565b6200020d60201b60201c565b6040516020016200010290620003aa565b604051602081830303815290604052600b908051906020019062000128929190620002d3565b506040516020016200013a90620003aa565b604051602081830303815290604052600c908051906020019062000160929190620002d3565b50636365fbe060108190555063636602e860118190555063636609f060128190555063636610f86013819055507f7950629a491ca7e2e9f1491838685678a0ba21b45c7cd9411a8acb0dbf67b3bf60001b600e819055507f160c62b18358259c8549489478cf9719acdd4b35593bb04525872eb6bc8e409860001b600f81905550602060168190555060026020620001f99190620003cc565b601881905550620004f1565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002e1906200040e565b90600052602060002090601f01602090048101928262000305576000855562000351565b82601f106200032057805160ff191683800117855562000351565b8280016001018555821562000351579182015b828111156200035057825182559160200191906001019062000333565b5b50905062000360919062000364565b5090565b5b808211156200037f57600081600090555060010162000365565b5090565b600062000392602883620003c1565b91506200039f82620004a2565b602882019050919050565b6000620003b78262000383565b9150819050919050565b600081905092915050565b6000620003d98262000404565b9150620003e68362000404565b925082620003f957620003f862000444565b5b828204905092915050565b6000819050919050565b600060028204905060018216806200042757607f821691505b602082108114156200043e576200043d62000473565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f68747470733a2f2f6e66742e70706170652e696f2f4141492f756e726576656160008201527f6c65642e6a736f6e000000000000000000000000000000000000000000000000602082015250565b615fc880620005016000396000f3fe608060405234801561001057600080fd5b50600436106103ba5760003560e01c8063600cce1f116101f457806399347e631161011a578063d5b3621b116100ad578063edd568361161007c578063edd5683614610b91578063f2fde38b14610bad578063f348ce3f14610bc9578063fabd1d2d14610be7576103ba565b8063d5b3621b14610af7578063d67886d914610b13578063e8cb943814610b43578063e985e9c514610b61576103ba565b8063b88d4fde116100e9578063b88d4fde14610a71578063bd32fb6614610a8d578063c87b56dd14610aa9578063d3dd5fe014610ad9576103ba565b806399347e63146109fd578063a22cb46514610a1b578063a3d90cb414610a37578063aa98e0c614610a53576103ba565b8063715018a6116101925780638daa25ef116101615780638daa25ef14610973578063931e2e49146109a357806395d89b41146109c157806397d63ab5146109df576103ba565b8063715018a61461090f57806382cc6fce146109195780638b38f7eb146109375780638da5cb5b14610955576103ba565b80636835d20f116101ce5780636835d20f146108855780636c0360eb146108a35780636f63b60a146108c157806370a08231146108df576103ba565b8063600cce1f14610807578063634f3d4a146108255780636352211e14610855576103ba565b80632bb1a91a116102e457806354214f69116102775780635bc020bc116102465780635bc020bc1461077f5780635c04292c1461079d5780635ccd7dd9146107cd5780635fc028f5146107eb576103ba565b806354214f691461070b57806355f804b31461072957806356e7bea8146107455780635b92ac0d14610761576103ba565b80633e4dead7116102b35780633e4dead71461068357806342842e0e146106a1578063428ec4d4146106bd5780634f6ccce7146106db576103ba565b80632bb1a91a146105e75780632f745c591461060557806332cb6b0c14610635578063372f657c14610653576103ba565b80630a9951e51161035c578063157801541161032b578063157801541461055f57806318160ddd1461057d57806323b872dd1461059b578063289137a1146105b7576103ba565b80630a9951e5146104c357806310df82ce146104f35780631207700d146105115780631249c58b14610541576103ba565b80630799312c116103985780630799312c1461042b578063081812fc1461044757806308a5d0ad14610477578063095ea7b3146104a7576103ba565b806301ffc9a7146103bf57806302a5b436146103ef57806306fdde031461040d575b600080fd5b6103d960048036038101906103d49190614419565b610c05565b6040516103e69190614ce4565b60405180910390f35b6103f7610c7f565b6040516104049190614d35565b60405180910390f35b610415610c9b565b6040516104229190614d35565b60405180910390f35b6104456004803603810190610440919061446b565b610d2d565b005b610461600480360381019061045c91906144ac565b610d4f565b60405161046e9190614bc3565b60405180910390f35b610491600480360381019061048c91906141db565b610d95565b60405161049e9190614cc2565b60405180910390f35b6104c160048036038101906104bc9190614346565b610e8f565b005b6104dd60048036038101906104d891906141db565b610fa7565b6040516104ea9190615177565b60405180910390f35b6104fb610fbf565b6040516105089190614cff565b60405180910390f35b61052b60048036038101906105269190614382565b610ffd565b6040516105389190615177565b60405180910390f35b610549611072565b6040516105569190615177565b60405180910390f35b610567611153565b6040516105749190614cff565b60405180910390f35b610585611191565b6040516105929190615177565b60405180910390f35b6105b560048036038101906105b09190614240565b61119e565b005b6105d160048036038101906105cc91906144d5565b6111fe565b6040516105de9190615177565b60405180910390f35b6105ef611398565b6040516105fc9190615177565b60405180910390f35b61061f600480360381019061061a9190614346565b61139e565b60405161062c9190615177565b60405180910390f35b61063d611443565b60405161064a9190615177565b60405180910390f35b61066d60048036038101906106689190614382565b611448565b60405161067a9190615177565b60405180910390f35b61068b6114bd565b6040516106989190615177565b60405180910390f35b6106bb60048036038101906106b69190614240565b6114c2565b005b6106c56114e2565b6040516106d29190614ce4565b60405180910390f35b6106f560048036038101906106f091906144ac565b611527565b6040516107029190615177565b60405180910390f35b6107136115be565b6040516107209190614ce4565b60405180910390f35b610743600480360381019061073e919061446b565b611603565b005b61075f600480360381019061075a91906143f0565b611625565b005b610769611637565b6040516107769190614ce4565b60405180910390f35b61078761167c565b6040516107949190614cff565b60405180910390f35b6107b760048036038101906107b29190614382565b6116ba565b6040516107c49190614ce4565b60405180910390f35b6107d5611876565b6040516107e29190615177565b60405180910390f35b610805600480360381019061080091906144ac565b61187b565b005b61080f61188d565b60405161081c9190614d1a565b60405180910390f35b61083f600480360381019061083a91906141db565b611893565b60405161084c9190615177565b60405180910390f35b61086f600480360381019061086a91906144ac565b6118ab565b60405161087c9190614bc3565b60405180910390f35b61088d61195d565b60405161089a9190615177565b60405180910390f35b6108ab611963565b6040516108b89190614d35565b60405180910390f35b6108c96119f1565b6040516108d69190614cff565b60405180910390f35b6108f960048036038101906108f491906141db565b611a2f565b6040516109069190615177565b60405180910390f35b610917611ae7565b005b610921611afb565b60405161092e9190615177565b60405180910390f35b61093f611b01565b60405161094c9190614cff565b60405180910390f35b61095d611b14565b60405161096a9190614bc3565b60405180910390f35b61098d600480360381019061098891906143c7565b611b3e565b60405161099a9190614cff565b60405180910390f35b6109ab611b69565b6040516109b89190615177565b60405180910390f35b6109c9611b6f565b6040516109d69190614d35565b60405180910390f35b6109e7611c01565b6040516109f49190614d35565b60405180910390f35b610a05611c1d565b604051610a129190614d35565b60405180910390f35b610a356004803603810190610a30919061430a565b611cab565b005b610a516004803603810190610a4c91906144ac565b611cc1565b005b610a5b611cd3565b604051610a689190614d1a565b60405180910390f35b610a8b6004803603810190610a86919061428f565b611cd9565b005b610aa76004803603810190610aa291906143f0565b611d3b565b005b610ac36004803603810190610abe91906144ac565b611d4d565b604051610ad09190614d35565b60405180910390f35b610ae1611e17565b604051610aee9190614cff565b60405180910390f35b610b116004803603810190610b0c91906144ac565b611e55565b005b610b2d6004803603810190610b289190614382565b611e67565b604051610b3a9190614ce4565b60405180910390f35b610b4b611fdf565b604051610b589190614d35565b60405180910390f35b610b7b6004803603810190610b769190614204565b612000565b604051610b889190614ce4565b60405180910390f35b610bab6004803603810190610ba691906144ac565b612094565b005b610bc76004803603810190610bc291906141db565b6120a6565b005b610bd161212a565b604051610bde9190614ce4565b60405180910390f35b610bef61216f565b604051610bfc9190614ce4565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c785750610c77826121b4565b5b9050919050565b604051806060016040528060408152602001615f536040913981565b606060008054610caa90615466565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd690615466565b8015610d235780601f10610cf857610100808354040283529160200191610d23565b820191906000526020600020905b815481529060010190602001808311610d0657829003601f168201915b5050505050905090565b610d35612296565b80600c9080519060200190610d4b929190613f8b565b5050565b6000610d5a82612314565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60606000610da283611a2f565b905060008167ffffffffffffffff811115610de6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e145781602001602082028036833780820191505090505b50905060005b82811015610e8457610e2c858261139e565b828281518110610e65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610e7c906154c9565b915050610e1a565b508092505050919050565b6000610e9a826118ab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290615057565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f2a61235f565b73ffffffffffffffffffffffffffffffffffffffff161480610f595750610f5881610f5361235f565b612000565b5b610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f90614f97565b60405180910390fd5b610fa28383612367565b505050565b60156020528060005260406000206000915090505481565b6000610fc9612296565b600860f81b600d60009054906101000a900460f81b18600d60006101000a81548160ff021916908360f81c02179055905090565b60006110098383612420565b506001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461105a9190615295565b9250508190555061106a33612598565b905092915050565b600061107c611637565b6110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290615157565b60405180910390fd5b601254421015611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790614f77565b60405180910390fd5b600060165411611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c906150f7565b60405180910390fd5b61114e33612598565b905090565b600061115d612296565b602060f81b600d60009054906101000a900460f81b18600d60006101000a81548160ff021916908360f81c02179055905090565b6000600880549050905090565b6111af6111a961235f565b82612618565b6111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590615117565b60405180910390fd5b6111f98383836126ad565b505050565b600061120861212a565b611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e906150d7565b60405180910390fd5b60135442101561128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390614f17565b60405180910390fd5b6112963384612618565b80156112a857506112a73383612618565b5b6112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de90614d77565b60405180910390fd5b6112f083612914565b801561130157506113008261292d565b5b611340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611337906150b7565b60405180910390fd5b600060185411611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90615077565b60405180910390fd5b611390338484612953565b905092915050565b60105481565b60006113a983611a2f565b82106113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e190614db7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b602081565b600061145483836129fa565b506001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114a59190615295565b925050819055506114b533612598565b905092915050565b600181565b6114dd83838360405180602001604052806000815250611cd9565b505050565b60008060f81b602060f81b600d60009054906101000a900460f81b167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415905090565b6000611531611191565b8210611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990615097565b60405180910390fd5b600882815481106115ac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60008060f81b608060f81b600d60009054906101000a900460f81b167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415905090565b61160b612296565b80600b9080519060200190611621929190613f8b565b5050565b61162d612296565b80600f8190555050565b60008060f81b601060f81b600d60009054906101000a900460f81b167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415905090565b6000611686612296565b608060f81b600d60009054906101000a900460f81b18600d60006101000a81548160ff021916908360f81c02179055905090565b60006116c461216f565b611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90614f57565b60405180910390fd5b601054421015611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90615137565b60405180910390fd5b601154421061178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178390614e57565b60405180910390fd5b6000601654116117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c8906150f7565b60405180910390fd5b6117de8383600e54612bb6565b600180601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461182b9190615295565b111561186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390614f37565b60405180910390fd5b6001905092915050565b600181565b611883612296565b8060138190555050565b600f5481565b60146020528060005260406000206000915090505481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b90615037565b60405180910390fd5b80915050919050565b60115481565b600b805461197090615466565b80601f016020809104026020016040519081016040528092919081815260200182805461199c90615466565b80156119e95780601f106119be576101008083540402835291602001916119e9565b820191906000526020600020905b8154815290600101906020018083116119cc57829003601f168201915b505050505081565b60006119fb612296565b604060f81b600d60009054906101000a900460f81b18600d60006101000a81548160ff021916908360f81c02179055905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790614ef7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611aef612296565b611af96000612c6c565b565b60135481565b600d60009054906101000a900460f81b81565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611b48612296565b81600d60006101000a81548160ff021916908360f81c021790559050919050565b60125481565b606060018054611b7e90615466565b80601f0160208091040260200160405190810160405280929190818152602001828054611baa90615466565b8015611bf75780601f10611bcc57610100808354040283529160200191611bf7565b820191906000526020600020905b815481529060010190602001808311611bda57829003601f168201915b5050505050905090565b604051806060016040528060408152602001615f136040913981565b600c8054611c2a90615466565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5690615466565b8015611ca35780601f10611c7857610100808354040283529160200191611ca3565b820191906000526020600020905b815481529060010190602001808311611c8657829003601f168201915b505050505081565b611cbd611cb661235f565b8383612d32565b5050565b611cc9612296565b8060108190555050565b600e5481565b611cea611ce461235f565b83612618565b611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2090615117565b60405180910390fd5b611d3584848484612e9f565b50505050565b611d43612296565b80600e8190555050565b6060611d5882612efb565b611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90614d97565b60405180910390fd5b611d9f6115be565b611dc857604051602001611db290614bae565b6040516020818303038152906040529050611e12565b60208210611ddd57611dd8612f67565b611de6565b611de5612ff9565b5b611def8361308b565b604051602001611e00929190614b7f565b60405160208183030381529060405290505b919050565b6000611e21612296565b601060f81b600d60009054906101000a900460f81b18600d60006101000a81548160ff021916908360f81c02179055905090565b611e5d612296565b8060128190555050565b6000611e716114e2565b611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea790614ed7565b60405180910390fd5b601154421015611ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eec90614eb7565b60405180910390fd5b600060165411611f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f31906150f7565b60405180910390fd5b611f478383600f54612bb6565b600180601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f949190615295565b1115611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc90614fd7565b60405180910390fd5b6001905092915050565b604051602001611fee90614bae565b60405160208183030381529060405281565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61209c612296565b8060118190555050565b6120ae612296565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561211e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211590614df7565b60405180910390fd5b61212781612c6c565b50565b60008060f81b600860f81b600d60009054906101000a900460f81b167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415905090565b60008060f81b604060f81b600d60009054906101000a900460f81b167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061227f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061228f575061228e82613238565b5b9050919050565b61229e61235f565b73ffffffffffffffffffffffffffffffffffffffff166122bc611b14565b73ffffffffffffffffffffffffffffffffffffffff1614612312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230990614ff7565b60405180910390fd5b565b61231d81612efb565b61235c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235390615037565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123da836118ab565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061242a6114e2565b612469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246090614ed7565b60405180910390fd5b6011544210156124ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a590614eb7565b60405180910390fd5b6000601654116124f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ea906150f7565b60405180910390fd5b6125008383600f54612bb6565b600180601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254d9190615295565b111561258e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258590614fd7565b60405180910390fd5b6001905092915050565b6000806125b26125aa846016546132a2565b6016546132f2565b9050601660008154809291906125c79061543c565b91905055506125d683826133ad565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853382604051612607929190614c2a565b60405180910390a180915050919050565b600080612624836118ab565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061266657506126658185612000565b5b806126a457508373ffffffffffffffffffffffffffffffffffffffff1661268c84610d4f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126cd826118ab565b73ffffffffffffffffffffffffffffffffffffffff1614612723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271a90614e17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278a90614e77565b60405180910390fd5b61279e8383836133cb565b6127a9600082612367565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127f9919061531c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128509190615295565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461290f838383613459565b505050565b60006002602061292491906152eb565b82109050919050565b60006002602061293d91906152eb565b821015801561294c5750602082105b9050919050565b600061295e8361345e565b6129678261345e565b6000612980612978866018546132a2565b60185461357b565b905060006020826129919190615295565b9050601860008154809291906129a69061543c565b91905055506129b586826133ad565b7f82bf558222c4c37aae80230f0a656373f327bcc6f1ac1ef73c385d4dec21b22333826040516129e6929190614c2a565b60405180910390a180925050509392505050565b6000612a0461216f565b612a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3a90614f57565b60405180910390fd5b601054421015612a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7f90615137565b60405180910390fd5b6011544210612acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac390614e57565b60405180910390fd5b600060165411612b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b08906150f7565b60405180910390fd5b612b1e8383600e54612bb6565b600180601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b6b9190615295565b1115612bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba390614f37565b60405180910390fd5b6001905092915050565b612c28838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508233604051602001612c0d9190614b64565b60405160208183030381529060405280519060200120613636565b612c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5e90614d57565b60405180910390fd5b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9890614e97565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e929190614ce4565b60405180910390a3505050565b612eaa8484846126ad565b612eb68484848461364d565b612ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eec90614dd7565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600c8054612f7690615466565b80601f0160208091040260200160405190810160405280929190818152602001828054612fa290615466565b8015612fef5780601f10612fc457610100808354040283529160200191612fef565b820191906000526020600020905b815481529060010190602001808311612fd257829003601f168201915b5050505050905090565b6060600b805461300890615466565b80601f016020809104026020016040519081016040528092919081815260200182805461303490615466565b80156130815780601f1061305657610100808354040283529160200191613081565b820191906000526020600020905b81548152906001019060200180831161306457829003601f168201915b5050505050905090565b606060008214156130d3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613233565b600082905060005b600082146131055780806130ee906154c9565b915050600a826130fe91906152eb565b91506130db565b60008167ffffffffffffffff811115613147577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131795781602001600182028036833780820191505090505b5090505b6000851461322c57600182613192919061531c565b9150600a856131a19190615536565b60306131ad9190615295565b60f81b8183815181106131e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561322591906152eb565b945061317d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080833a43424430886040516020016132c29796959493929190614c53565b6040516020818303038152906040528051906020012060001c905082816132e99190615536565b91505092915050565b60008060176000858152602001908152602001600020549050600060018461331a919061531c565b905080851461339357600060176000838152602001908152602001600020549050600081141561336157816017600088815260200190815260200160002081905550613391565b80601760008881526020019081526020016000208190555060176000838152602001908152602001600020600090555b505b600082146133a157816133a3565b845b9250505092915050565b6133c78282604051806020016040528060008152506137e4565b5050565b6133d683838361383f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613454576134143382612618565b613453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344a90615017565b60405180910390fd5b5b505050565b505050565b6000613469826118ab565b9050613477816000846133cb565b613482600083612367565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134d2919061531c565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461357781600084613459565b5050565b6000806019600085815260200190815260200160002054905060006001846135a3919061531c565b905080851461361c5760006019600083815260200190815260200160002054905060008114156135ea5781601960008881526020019081526020016000208190555061361a565b80601960008881526020019081526020016000208190555060196000838152602001908152602001600020600090555b505b6000821461362a578161362c565b845b9250505092915050565b6000826136438584613953565b1490509392505050565b600061366e8473ffffffffffffffffffffffffffffffffffffffff166139cf565b156137d7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261369761235f565b8786866040518563ffffffff1660e01b81526004016136b99493929190614bde565b602060405180830381600087803b1580156136d357600080fd5b505af192505050801561370457506040513d601f19601f820116820180604052508101906137019190614442565b60015b613787573d8060008114613734576040519150601f19603f3d011682016040523d82523d6000602084013e613739565b606091505b5060008151141561377f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377690614dd7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137dc565b600190505b949350505050565b6137ee83836139f2565b6137fb600084848461364d565b61383a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383190614dd7565b60405180910390fd5b505050565b61384a838383613bcc565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561388d5761388881613bd1565b6138cc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146138cb576138ca8382613c1a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561390f5761390a81613d87565b61394e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461394d5761394c8282613eca565b5b5b505050565b60008082905060005b84518110156139c4576139af828683815181106139a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151613f49565b915080806139bc906154c9565b91505061395c565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5990614fb7565b60405180910390fd5b613a6b81612efb565b15613aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aa290614e37565b60405180910390fd5b613ab7600083836133cb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b079190615295565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613bc860008383613459565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613c2784611a2f565b613c31919061531c565b9050600060076000848152602001908152602001600020549050818114613d16576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613d9b919061531c565b9050600060096000848152602001908152602001600020549050600060088381548110613df1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613e39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613eae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613ed583611a2f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000818310613f6157613f5c8284613f74565b613f6c565b613f6b8383613f74565b5b905092915050565b600082600052816020526040600020905092915050565b828054613f9790615466565b90600052602060002090601f016020900481019282613fb95760008555614000565b82601f10613fd257805160ff1916838001178555614000565b82800160010185558215614000579182015b82811115613fff578251825591602001919060010190613fe4565b5b50905061400d9190614011565b5090565b5b8082111561402a576000816000905550600101614012565b5090565b600061404161403c846151b7565b615192565b90508281526020810184848401111561405957600080fd5b6140648482856153fa565b509392505050565b600061407f61407a846151e8565b615192565b90508281526020810184848401111561409757600080fd5b6140a28482856153fa565b509392505050565b6000813590506140b981615e88565b92915050565b60008083601f8401126140d157600080fd5b8235905067ffffffffffffffff8111156140ea57600080fd5b60208301915083602082028301111561410257600080fd5b9250929050565b60008135905061411881615e9f565b92915050565b60008135905061412d81615eb6565b92915050565b60008135905061414281615ecd565b92915050565b60008135905061415781615ee4565b92915050565b60008151905061416c81615ee4565b92915050565b600082601f83011261418357600080fd5b813561419384826020860161402e565b91505092915050565b600082601f8301126141ad57600080fd5b81356141bd84826020860161406c565b91505092915050565b6000813590506141d581615efb565b92915050565b6000602082840312156141ed57600080fd5b60006141fb848285016140aa565b91505092915050565b6000806040838503121561421757600080fd5b6000614225858286016140aa565b9250506020614236858286016140aa565b9150509250929050565b60008060006060848603121561425557600080fd5b6000614263868287016140aa565b9350506020614274868287016140aa565b9250506040614285868287016141c6565b9150509250925092565b600080600080608085870312156142a557600080fd5b60006142b3878288016140aa565b94505060206142c4878288016140aa565b93505060406142d5878288016141c6565b925050606085013567ffffffffffffffff8111156142f257600080fd5b6142fe87828801614172565b91505092959194509250565b6000806040838503121561431d57600080fd5b600061432b858286016140aa565b925050602061433c85828601614109565b9150509250929050565b6000806040838503121561435957600080fd5b6000614367858286016140aa565b9250506020614378858286016141c6565b9150509250929050565b6000806020838503121561439557600080fd5b600083013567ffffffffffffffff8111156143af57600080fd5b6143bb858286016140bf565b92509250509250929050565b6000602082840312156143d957600080fd5b60006143e78482850161411e565b91505092915050565b60006020828403121561440257600080fd5b600061441084828501614133565b91505092915050565b60006020828403121561442b57600080fd5b600061443984828501614148565b91505092915050565b60006020828403121561445457600080fd5b60006144628482850161415d565b91505092915050565b60006020828403121561447d57600080fd5b600082013567ffffffffffffffff81111561449757600080fd5b6144a38482850161419c565b91505092915050565b6000602082840312156144be57600080fd5b60006144cc848285016141c6565b91505092915050565b600080604083850312156144e857600080fd5b60006144f6858286016141c6565b9250506020614507858286016141c6565b9150509250929050565b600061451d8383614b46565b60208301905092915050565b61453281615350565b82525050565b61454961454482615350565b615512565b82525050565b600061455a82615229565b6145648185615257565b935061456f83615219565b8060005b838110156145a05781516145878882614511565b97506145928361524a565b925050600181019050614573565b5085935050505092915050565b6145b681615362565b82525050565b6145c58161536e565b82525050565b6145d48161539a565b82525050565b60006145e582615234565b6145ef8185615268565b93506145ff818560208601615409565b61460881615623565b840191505092915050565b600061461e8261523f565b6146288185615279565b9350614638818560208601615409565b61464181615623565b840191505092915050565b60006146578261523f565b614661818561528a565b9350614671818560208601615409565b80840191505092915050565b600061468a602683615279565b915061469582615641565b604082019050919050565b60006146ad602a83615279565b91506146b882615690565b604082019050919050565b60006146d0601f83615279565b91506146db826156df565b602082019050919050565b60006146f3602b83615279565b91506146fe82615708565b604082019050919050565b6000614716603283615279565b915061472182615757565b604082019050919050565b6000614739602683615279565b9150614744826157a6565b604082019050919050565b600061475c602583615279565b9150614767826157f5565b604082019050919050565b600061477f601c83615279565b915061478a82615844565b602082019050919050565b60006147a2601583615279565b91506147ad8261586d565b602082019050919050565b60006147c5602483615279565b91506147d082615896565b604082019050919050565b60006147e8601983615279565b91506147f3826158e5565b602082019050919050565b600061480b602883615279565b91506148168261590e565b604082019050919050565b600061482e601f83615279565b91506148398261595d565b602082019050919050565b6000614851602983615279565b915061485c82615986565b604082019050919050565b6000614874601c83615279565b915061487f826159d5565b602082019050919050565b6000614897602783615279565b91506148a2826159fe565b604082019050919050565b60006148ba601c83615279565b91506148c582615a4d565b602082019050919050565b60006148dd601b83615279565b91506148e882615a76565b602082019050919050565b6000614900603e83615279565b915061490b82615a9f565b604082019050919050565b6000614923602083615279565b915061492e82615aee565b602082019050919050565b600061494660288361528a565b915061495182615b17565b602882019050919050565b6000614969602a83615279565b915061497482615b66565b604082019050919050565b600061498c60058361528a565b915061499782615bb5565b600582019050919050565b60006149af602083615279565b91506149ba82615bde565b602082019050919050565b60006149d2604383615279565b91506149dd82615c07565b606082019050919050565b60006149f5601883615279565b9150614a0082615c7c565b602082019050919050565b6000614a18602183615279565b9150614a2382615ca5565b604082019050919050565b6000614a3b601583615279565b9150614a4682615cf4565b602082019050919050565b6000614a5e602c83615279565b9150614a6982615d1d565b604082019050919050565b6000614a81601083615279565b9150614a8c82615d6c565b602082019050919050565b6000614aa4601383615279565b9150614aaf82615d95565b602082019050919050565b6000614ac7601483615279565b9150614ad282615dbe565b602082019050919050565b6000614aea602e83615279565b9150614af582615de7565b604082019050919050565b6000614b0d602083615279565b9150614b1882615e36565b602082019050919050565b6000614b30601983615279565b9150614b3b82615e5f565b602082019050919050565b614b4f816153f0565b82525050565b614b5e816153f0565b82525050565b6000614b708284614538565b60148201915081905092915050565b6000614b8b828561464c565b9150614b97828461464c565b9150614ba28261497f565b91508190509392505050565b6000614bb982614939565b9150819050919050565b6000602082019050614bd86000830184614529565b92915050565b6000608082019050614bf36000830187614529565b614c006020830186614529565b614c0d6040830185614b55565b8181036060830152614c1f81846145da565b905095945050505050565b6000604082019050614c3f6000830185614529565b614c4c6020830184614b55565b9392505050565b600060e082019050614c68600083018a614529565b614c756020830189614b55565b614c826040830188614b55565b614c8f6060830187614b55565b614c9c6080830186614b55565b614ca960a0830185614529565b614cb660c0830184614b55565b98975050505050505050565b60006020820190508181036000830152614cdc818461454f565b905092915050565b6000602082019050614cf960008301846145ad565b92915050565b6000602082019050614d1460008301846145bc565b92915050565b6000602082019050614d2f60008301846145cb565b92915050565b60006020820190508181036000830152614d4f8184614613565b905092915050565b60006020820190508181036000830152614d708161467d565b9050919050565b60006020820190508181036000830152614d90816146a0565b9050919050565b60006020820190508181036000830152614db0816146c3565b9050919050565b60006020820190508181036000830152614dd0816146e6565b9050919050565b60006020820190508181036000830152614df081614709565b9050919050565b60006020820190508181036000830152614e108161472c565b9050919050565b60006020820190508181036000830152614e308161474f565b9050919050565b60006020820190508181036000830152614e5081614772565b9050919050565b60006020820190508181036000830152614e7081614795565b9050919050565b60006020820190508181036000830152614e90816147b8565b9050919050565b60006020820190508181036000830152614eb0816147db565b9050919050565b60006020820190508181036000830152614ed0816147fe565b9050919050565b60006020820190508181036000830152614ef081614821565b9050919050565b60006020820190508181036000830152614f1081614844565b9050919050565b60006020820190508181036000830152614f3081614867565b9050919050565b60006020820190508181036000830152614f508161488a565b9050919050565b60006020820190508181036000830152614f70816148ad565b9050919050565b60006020820190508181036000830152614f90816148d0565b9050919050565b60006020820190508181036000830152614fb0816148f3565b9050919050565b60006020820190508181036000830152614fd081614916565b9050919050565b60006020820190508181036000830152614ff08161495c565b9050919050565b60006020820190508181036000830152615010816149a2565b9050919050565b60006020820190508181036000830152615030816149c5565b9050919050565b60006020820190508181036000830152615050816149e8565b9050919050565b6000602082019050818103600083015261507081614a0b565b9050919050565b6000602082019050818103600083015261509081614a2e565b9050919050565b600060208201905081810360008301526150b081614a51565b9050919050565b600060208201905081810360008301526150d081614a74565b9050919050565b600060208201905081810360008301526150f081614a97565b9050919050565b6000602082019050818103600083015261511081614aba565b9050919050565b6000602082019050818103600083015261513081614add565b9050919050565b6000602082019050818103600083015261515081614b00565b9050919050565b6000602082019050818103600083015261517081614b23565b9050919050565b600060208201905061518c6000830184614b55565b92915050565b600061519c6151ad565b90506151a88282615498565b919050565b6000604051905090565b600067ffffffffffffffff8211156151d2576151d16155f4565b5b6151db82615623565b9050602081019050919050565b600067ffffffffffffffff821115615203576152026155f4565b5b61520c82615623565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006152a0826153f0565b91506152ab836153f0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152e0576152df615567565b5b828201905092915050565b60006152f6826153f0565b9150615301836153f0565b92508261531157615310615596565b5b828204905092915050565b6000615327826153f0565b9150615332836153f0565b92508282101561534557615344615567565b5b828203905092915050565b600061535b826153d0565b9050919050565b60008115159050919050565b60007fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561542757808201518184015260208101905061540c565b83811115615436576000848401525b50505050565b6000615447826153f0565b9150600082141561545b5761545a615567565b5b600182039050919050565b6000600282049050600182168061547e57607f821691505b60208210811415615492576154916155c5565b5b50919050565b6154a182615623565b810181811067ffffffffffffffff821117156154c0576154bf6155f4565b5b80604052505050565b60006154d4826153f0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561550757615506615567565b5b600182019050919050565b600061551d82615524565b9050919050565b600061552f82615634565b9050919050565b6000615541826153f0565b915061554c836153f0565b92508261555c5761555b615596565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f696e76616c69642070726f6f662c20796f75277265206e6f74206f6e2074686560008201527f206c6973742e0000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c7920746865206f776e6572206f6620626f7468204e4654732063616e2060008201527f6372616674207468656d00000000000000000000000000000000000000000000602082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f7468652077686974656c697374206973206f7665720000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f7468652077616974696e67206c697374206d696e74206973206e6f742073746160008201527f7274656420796574000000000000000000000000000000000000000000000000602082015250565b7f7468652077616974696e67206c697374206d696e742069732070617573656400600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f746865206372616674206973206e6f7420737461727465642079657400000000600082015250565b7f6d6178204e465473207065722077686974656c6973742061646472657373206560008201527f7863656564656400000000000000000000000000000000000000000000000000602082015250565b7f7468652077686974656c697374206d696e742069732070617573656400000000600082015250565b7f746865206d696e74206973206e6f742073746172746564207965740000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f68747470733a2f2f6e66742e70706170652e696f2f4141492f756e726576656160008201527f6c65642e6a736f6e000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465473207065722077616974696e67206c6973742061646472657360008201527f7320657863656564656400000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6f6e6c7920746865206f776e6572206f7220617070726f76656420636f6e747260008201527f61637473206f66204e46542063616e207472616e73666572206f72206275726e60208201527f2069740000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f616c6c204e465473206172652063726166746564210000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f696e76616c696420546f6b656e20496400000000000000000000000000000000600082015250565b7f7468652063726166742069732070617573656400000000000000000000000000600082015250565b7f616c6c204e46547320617265206d696e74656421000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f7468652077686974656c697374206973206e6f74207374617274656420796574600082015250565b7f746865207075626c6963206d696e742069732070617573656400000000000000600082015250565b615e9181615350565b8114615e9c57600080fd5b50565b615ea881615362565b8114615eb357600080fd5b50565b615ebf8161536e565b8114615eca57600080fd5b50565b615ed68161539a565b8114615ee157600080fd5b50565b615eed816153a4565b8114615ef857600080fd5b50565b615f04816153f0565b8114615f0f57600080fd5b5056fe3066393839323461356630646532663932306265313936333764323635333962393038363035653030326165313938383538343335316465336239383933326165303433346232336136623035356331616633306635313261346661663333383335316331646461653937623166386461616166313562653462653162386230a2646970667358221220fc3de2bd654192a6ce6fc4034f46e70c3fe4275c89c30c5983e83f7d581f84a064736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103ba5760003560e01c8063600cce1f116101f457806399347e631161011a578063d5b3621b116100ad578063edd568361161007c578063edd5683614610b91578063f2fde38b14610bad578063f348ce3f14610bc9578063fabd1d2d14610be7576103ba565b8063d5b3621b14610af7578063d67886d914610b13578063e8cb943814610b43578063e985e9c514610b61576103ba565b8063b88d4fde116100e9578063b88d4fde14610a71578063bd32fb6614610a8d578063c87b56dd14610aa9578063d3dd5fe014610ad9576103ba565b806399347e63146109fd578063a22cb46514610a1b578063a3d90cb414610a37578063aa98e0c614610a53576103ba565b8063715018a6116101925780638daa25ef116101615780638daa25ef14610973578063931e2e49146109a357806395d89b41146109c157806397d63ab5146109df576103ba565b8063715018a61461090f57806382cc6fce146109195780638b38f7eb146109375780638da5cb5b14610955576103ba565b80636835d20f116101ce5780636835d20f146108855780636c0360eb146108a35780636f63b60a146108c157806370a08231146108df576103ba565b8063600cce1f14610807578063634f3d4a146108255780636352211e14610855576103ba565b80632bb1a91a116102e457806354214f69116102775780635bc020bc116102465780635bc020bc1461077f5780635c04292c1461079d5780635ccd7dd9146107cd5780635fc028f5146107eb576103ba565b806354214f691461070b57806355f804b31461072957806356e7bea8146107455780635b92ac0d14610761576103ba565b80633e4dead7116102b35780633e4dead71461068357806342842e0e146106a1578063428ec4d4146106bd5780634f6ccce7146106db576103ba565b80632bb1a91a146105e75780632f745c591461060557806332cb6b0c14610635578063372f657c14610653576103ba565b80630a9951e51161035c578063157801541161032b578063157801541461055f57806318160ddd1461057d57806323b872dd1461059b578063289137a1146105b7576103ba565b80630a9951e5146104c357806310df82ce146104f35780631207700d146105115780631249c58b14610541576103ba565b80630799312c116103985780630799312c1461042b578063081812fc1461044757806308a5d0ad14610477578063095ea7b3146104a7576103ba565b806301ffc9a7146103bf57806302a5b436146103ef57806306fdde031461040d575b600080fd5b6103d960048036038101906103d49190614419565b610c05565b6040516103e69190614ce4565b60405180910390f35b6103f7610c7f565b6040516104049190614d35565b60405180910390f35b610415610c9b565b6040516104229190614d35565b60405180910390f35b6104456004803603810190610440919061446b565b610d2d565b005b610461600480360381019061045c91906144ac565b610d4f565b60405161046e9190614bc3565b60405180910390f35b610491600480360381019061048c91906141db565b610d95565b60405161049e9190614cc2565b60405180910390f35b6104c160048036038101906104bc9190614346565b610e8f565b005b6104dd60048036038101906104d891906141db565b610fa7565b6040516104ea9190615177565b60405180910390f35b6104fb610fbf565b6040516105089190614cff565b60405180910390f35b61052b60048036038101906105269190614382565b610ffd565b6040516105389190615177565b60405180910390f35b610549611072565b6040516105569190615177565b60405180910390f35b610567611153565b6040516105749190614cff565b60405180910390f35b610585611191565b6040516105929190615177565b60405180910390f35b6105b560048036038101906105b09190614240565b61119e565b005b6105d160048036038101906105cc91906144d5565b6111fe565b6040516105de9190615177565b60405180910390f35b6105ef611398565b6040516105fc9190615177565b60405180910390f35b61061f600480360381019061061a9190614346565b61139e565b60405161062c9190615177565b60405180910390f35b61063d611443565b60405161064a9190615177565b60405180910390f35b61066d60048036038101906106689190614382565b611448565b60405161067a9190615177565b60405180910390f35b61068b6114bd565b6040516106989190615177565b60405180910390f35b6106bb60048036038101906106b69190614240565b6114c2565b005b6106c56114e2565b6040516106d29190614ce4565b60405180910390f35b6106f560048036038101906106f091906144ac565b611527565b6040516107029190615177565b60405180910390f35b6107136115be565b6040516107209190614ce4565b60405180910390f35b610743600480360381019061073e919061446b565b611603565b005b61075f600480360381019061075a91906143f0565b611625565b005b610769611637565b6040516107769190614ce4565b60405180910390f35b61078761167c565b6040516107949190614cff565b60405180910390f35b6107b760048036038101906107b29190614382565b6116ba565b6040516107c49190614ce4565b60405180910390f35b6107d5611876565b6040516107e29190615177565b60405180910390f35b610805600480360381019061080091906144ac565b61187b565b005b61080f61188d565b60405161081c9190614d1a565b60405180910390f35b61083f600480360381019061083a91906141db565b611893565b60405161084c9190615177565b60405180910390f35b61086f600480360381019061086a91906144ac565b6118ab565b60405161087c9190614bc3565b60405180910390f35b61088d61195d565b60405161089a9190615177565b60405180910390f35b6108ab611963565b6040516108b89190614d35565b60405180910390f35b6108c96119f1565b6040516108d69190614cff565b60405180910390f35b6108f960048036038101906108f491906141db565b611a2f565b6040516109069190615177565b60405180910390f35b610917611ae7565b005b610921611afb565b60405161092e9190615177565b60405180910390f35b61093f611b01565b60405161094c9190614cff565b60405180910390f35b61095d611b14565b60405161096a9190614bc3565b60405180910390f35b61098d600480360381019061098891906143c7565b611b3e565b60405161099a9190614cff565b60405180910390f35b6109ab611b69565b6040516109b89190615177565b60405180910390f35b6109c9611b6f565b6040516109d69190614d35565b60405180910390f35b6109e7611c01565b6040516109f49190614d35565b60405180910390f35b610a05611c1d565b604051610a129190614d35565b60405180910390f35b610a356004803603810190610a30919061430a565b611cab565b005b610a516004803603810190610a4c91906144ac565b611cc1565b005b610a5b611cd3565b604051610a689190614d1a565b60405180910390f35b610a8b6004803603810190610a86919061428f565b611cd9565b005b610aa76004803603810190610aa291906143f0565b611d3b565b005b610ac36004803603810190610abe91906144ac565b611d4d565b604051610ad09190614d35565b60405180910390f35b610ae1611e17565b604051610aee9190614cff565b60405180910390f35b610b116004803603810190610b0c91906144ac565b611e55565b005b610b2d6004803603810190610b289190614382565b611e67565b604051610b3a9190614ce4565b60405180910390f35b610b4b611fdf565b604051610b589190614d35565b60405180910390f35b610b7b6004803603810190610b769190614204565b612000565b604051610b889190614ce4565b60405180910390f35b610bab6004803603810190610ba691906144ac565b612094565b005b610bc76004803603810190610bc291906141db565b6120a6565b005b610bd161212a565b604051610bde9190614ce4565b60405180910390f35b610bef61216f565b604051610bfc9190614ce4565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c785750610c77826121b4565b5b9050919050565b604051806060016040528060408152602001615f536040913981565b606060008054610caa90615466565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd690615466565b8015610d235780601f10610cf857610100808354040283529160200191610d23565b820191906000526020600020905b815481529060010190602001808311610d0657829003601f168201915b5050505050905090565b610d35612296565b80600c9080519060200190610d4b929190613f8b565b5050565b6000610d5a82612314565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60606000610da283611a2f565b905060008167ffffffffffffffff811115610de6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e145781602001602082028036833780820191505090505b50905060005b82811015610e8457610e2c858261139e565b828281518110610e65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610e7c906154c9565b915050610e1a565b508092505050919050565b6000610e9a826118ab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290615057565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f2a61235f565b73ffffffffffffffffffffffffffffffffffffffff161480610f595750610f5881610f5361235f565b612000565b5b610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f90614f97565b60405180910390fd5b610fa28383612367565b505050565b60156020528060005260406000206000915090505481565b6000610fc9612296565b600860f81b600d60009054906101000a900460f81b18600d60006101000a81548160ff021916908360f81c02179055905090565b60006110098383612420565b506001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461105a9190615295565b9250508190555061106a33612598565b905092915050565b600061107c611637565b6110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290615157565b60405180910390fd5b601254421015611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790614f77565b60405180910390fd5b600060165411611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c906150f7565b60405180910390fd5b61114e33612598565b905090565b600061115d612296565b602060f81b600d60009054906101000a900460f81b18600d60006101000a81548160ff021916908360f81c02179055905090565b6000600880549050905090565b6111af6111a961235f565b82612618565b6111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590615117565b60405180910390fd5b6111f98383836126ad565b505050565b600061120861212a565b611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e906150d7565b60405180910390fd5b60135442101561128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390614f17565b60405180910390fd5b6112963384612618565b80156112a857506112a73383612618565b5b6112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de90614d77565b60405180910390fd5b6112f083612914565b801561130157506113008261292d565b5b611340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611337906150b7565b60405180910390fd5b600060185411611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90615077565b60405180910390fd5b611390338484612953565b905092915050565b60105481565b60006113a983611a2f565b82106113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e190614db7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b602081565b600061145483836129fa565b506001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114a59190615295565b925050819055506114b533612598565b905092915050565b600181565b6114dd83838360405180602001604052806000815250611cd9565b505050565b60008060f81b602060f81b600d60009054906101000a900460f81b167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415905090565b6000611531611191565b8210611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990615097565b60405180910390fd5b600882815481106115ac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60008060f81b608060f81b600d60009054906101000a900460f81b167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415905090565b61160b612296565b80600b9080519060200190611621929190613f8b565b5050565b61162d612296565b80600f8190555050565b60008060f81b601060f81b600d60009054906101000a900460f81b167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415905090565b6000611686612296565b608060f81b600d60009054906101000a900460f81b18600d60006101000a81548160ff021916908360f81c02179055905090565b60006116c461216f565b611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90614f57565b60405180910390fd5b601054421015611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90615137565b60405180910390fd5b601154421061178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178390614e57565b60405180910390fd5b6000601654116117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c8906150f7565b60405180910390fd5b6117de8383600e54612bb6565b600180601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461182b9190615295565b111561186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390614f37565b60405180910390fd5b6001905092915050565b600181565b611883612296565b8060138190555050565b600f5481565b60146020528060005260406000206000915090505481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b90615037565b60405180910390fd5b80915050919050565b60115481565b600b805461197090615466565b80601f016020809104026020016040519081016040528092919081815260200182805461199c90615466565b80156119e95780601f106119be576101008083540402835291602001916119e9565b820191906000526020600020905b8154815290600101906020018083116119cc57829003601f168201915b505050505081565b60006119fb612296565b604060f81b600d60009054906101000a900460f81b18600d60006101000a81548160ff021916908360f81c02179055905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790614ef7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611aef612296565b611af96000612c6c565b565b60135481565b600d60009054906101000a900460f81b81565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611b48612296565b81600d60006101000a81548160ff021916908360f81c021790559050919050565b60125481565b606060018054611b7e90615466565b80601f0160208091040260200160405190810160405280929190818152602001828054611baa90615466565b8015611bf75780601f10611bcc57610100808354040283529160200191611bf7565b820191906000526020600020905b815481529060010190602001808311611bda57829003601f168201915b5050505050905090565b604051806060016040528060408152602001615f136040913981565b600c8054611c2a90615466565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5690615466565b8015611ca35780601f10611c7857610100808354040283529160200191611ca3565b820191906000526020600020905b815481529060010190602001808311611c8657829003601f168201915b505050505081565b611cbd611cb661235f565b8383612d32565b5050565b611cc9612296565b8060108190555050565b600e5481565b611cea611ce461235f565b83612618565b611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2090615117565b60405180910390fd5b611d3584848484612e9f565b50505050565b611d43612296565b80600e8190555050565b6060611d5882612efb565b611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90614d97565b60405180910390fd5b611d9f6115be565b611dc857604051602001611db290614bae565b6040516020818303038152906040529050611e12565b60208210611ddd57611dd8612f67565b611de6565b611de5612ff9565b5b611def8361308b565b604051602001611e00929190614b7f565b60405160208183030381529060405290505b919050565b6000611e21612296565b601060f81b600d60009054906101000a900460f81b18600d60006101000a81548160ff021916908360f81c02179055905090565b611e5d612296565b8060128190555050565b6000611e716114e2565b611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea790614ed7565b60405180910390fd5b601154421015611ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eec90614eb7565b60405180910390fd5b600060165411611f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f31906150f7565b60405180910390fd5b611f478383600f54612bb6565b600180601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f949190615295565b1115611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc90614fd7565b60405180910390fd5b6001905092915050565b604051602001611fee90614bae565b60405160208183030381529060405281565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61209c612296565b8060118190555050565b6120ae612296565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561211e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211590614df7565b60405180910390fd5b61212781612c6c565b50565b60008060f81b600860f81b600d60009054906101000a900460f81b167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415905090565b60008060f81b604060f81b600d60009054906101000a900460f81b167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061227f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061228f575061228e82613238565b5b9050919050565b61229e61235f565b73ffffffffffffffffffffffffffffffffffffffff166122bc611b14565b73ffffffffffffffffffffffffffffffffffffffff1614612312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230990614ff7565b60405180910390fd5b565b61231d81612efb565b61235c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235390615037565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123da836118ab565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061242a6114e2565b612469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246090614ed7565b60405180910390fd5b6011544210156124ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a590614eb7565b60405180910390fd5b6000601654116124f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ea906150f7565b60405180910390fd5b6125008383600f54612bb6565b600180601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254d9190615295565b111561258e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258590614fd7565b60405180910390fd5b6001905092915050565b6000806125b26125aa846016546132a2565b6016546132f2565b9050601660008154809291906125c79061543c565b91905055506125d683826133ad565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853382604051612607929190614c2a565b60405180910390a180915050919050565b600080612624836118ab565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061266657506126658185612000565b5b806126a457508373ffffffffffffffffffffffffffffffffffffffff1661268c84610d4f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126cd826118ab565b73ffffffffffffffffffffffffffffffffffffffff1614612723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271a90614e17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278a90614e77565b60405180910390fd5b61279e8383836133cb565b6127a9600082612367565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127f9919061531c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128509190615295565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461290f838383613459565b505050565b60006002602061292491906152eb565b82109050919050565b60006002602061293d91906152eb565b821015801561294c5750602082105b9050919050565b600061295e8361345e565b6129678261345e565b6000612980612978866018546132a2565b60185461357b565b905060006020826129919190615295565b9050601860008154809291906129a69061543c565b91905055506129b586826133ad565b7f82bf558222c4c37aae80230f0a656373f327bcc6f1ac1ef73c385d4dec21b22333826040516129e6929190614c2a565b60405180910390a180925050509392505050565b6000612a0461216f565b612a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3a90614f57565b60405180910390fd5b601054421015612a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7f90615137565b60405180910390fd5b6011544210612acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac390614e57565b60405180910390fd5b600060165411612b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b08906150f7565b60405180910390fd5b612b1e8383600e54612bb6565b600180601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b6b9190615295565b1115612bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba390614f37565b60405180910390fd5b6001905092915050565b612c28838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508233604051602001612c0d9190614b64565b60405160208183030381529060405280519060200120613636565b612c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5e90614d57565b60405180910390fd5b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9890614e97565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e929190614ce4565b60405180910390a3505050565b612eaa8484846126ad565b612eb68484848461364d565b612ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eec90614dd7565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600c8054612f7690615466565b80601f0160208091040260200160405190810160405280929190818152602001828054612fa290615466565b8015612fef5780601f10612fc457610100808354040283529160200191612fef565b820191906000526020600020905b815481529060010190602001808311612fd257829003601f168201915b5050505050905090565b6060600b805461300890615466565b80601f016020809104026020016040519081016040528092919081815260200182805461303490615466565b80156130815780601f1061305657610100808354040283529160200191613081565b820191906000526020600020905b81548152906001019060200180831161306457829003601f168201915b5050505050905090565b606060008214156130d3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613233565b600082905060005b600082146131055780806130ee906154c9565b915050600a826130fe91906152eb565b91506130db565b60008167ffffffffffffffff811115613147577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131795781602001600182028036833780820191505090505b5090505b6000851461322c57600182613192919061531c565b9150600a856131a19190615536565b60306131ad9190615295565b60f81b8183815181106131e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561322591906152eb565b945061317d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080833a43424430886040516020016132c29796959493929190614c53565b6040516020818303038152906040528051906020012060001c905082816132e99190615536565b91505092915050565b60008060176000858152602001908152602001600020549050600060018461331a919061531c565b905080851461339357600060176000838152602001908152602001600020549050600081141561336157816017600088815260200190815260200160002081905550613391565b80601760008881526020019081526020016000208190555060176000838152602001908152602001600020600090555b505b600082146133a157816133a3565b845b9250505092915050565b6133c78282604051806020016040528060008152506137e4565b5050565b6133d683838361383f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613454576134143382612618565b613453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344a90615017565b60405180910390fd5b5b505050565b505050565b6000613469826118ab565b9050613477816000846133cb565b613482600083612367565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134d2919061531c565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461357781600084613459565b5050565b6000806019600085815260200190815260200160002054905060006001846135a3919061531c565b905080851461361c5760006019600083815260200190815260200160002054905060008114156135ea5781601960008881526020019081526020016000208190555061361a565b80601960008881526020019081526020016000208190555060196000838152602001908152602001600020600090555b505b6000821461362a578161362c565b845b9250505092915050565b6000826136438584613953565b1490509392505050565b600061366e8473ffffffffffffffffffffffffffffffffffffffff166139cf565b156137d7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261369761235f565b8786866040518563ffffffff1660e01b81526004016136b99493929190614bde565b602060405180830381600087803b1580156136d357600080fd5b505af192505050801561370457506040513d601f19601f820116820180604052508101906137019190614442565b60015b613787573d8060008114613734576040519150601f19603f3d011682016040523d82523d6000602084013e613739565b606091505b5060008151141561377f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377690614dd7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137dc565b600190505b949350505050565b6137ee83836139f2565b6137fb600084848461364d565b61383a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383190614dd7565b60405180910390fd5b505050565b61384a838383613bcc565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561388d5761388881613bd1565b6138cc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146138cb576138ca8382613c1a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561390f5761390a81613d87565b61394e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461394d5761394c8282613eca565b5b5b505050565b60008082905060005b84518110156139c4576139af828683815181106139a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151613f49565b915080806139bc906154c9565b91505061395c565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5990614fb7565b60405180910390fd5b613a6b81612efb565b15613aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aa290614e37565b60405180910390fd5b613ab7600083836133cb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b079190615295565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613bc860008383613459565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613c2784611a2f565b613c31919061531c565b9050600060076000848152602001908152602001600020549050818114613d16576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613d9b919061531c565b9050600060096000848152602001908152602001600020549050600060088381548110613df1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613e39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613eae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613ed583611a2f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000818310613f6157613f5c8284613f74565b613f6c565b613f6b8383613f74565b5b905092915050565b600082600052816020526040600020905092915050565b828054613f9790615466565b90600052602060002090601f016020900481019282613fb95760008555614000565b82601f10613fd257805160ff1916838001178555614000565b82800160010185558215614000579182015b82811115613fff578251825591602001919060010190613fe4565b5b50905061400d9190614011565b5090565b5b8082111561402a576000816000905550600101614012565b5090565b600061404161403c846151b7565b615192565b90508281526020810184848401111561405957600080fd5b6140648482856153fa565b509392505050565b600061407f61407a846151e8565b615192565b90508281526020810184848401111561409757600080fd5b6140a28482856153fa565b509392505050565b6000813590506140b981615e88565b92915050565b60008083601f8401126140d157600080fd5b8235905067ffffffffffffffff8111156140ea57600080fd5b60208301915083602082028301111561410257600080fd5b9250929050565b60008135905061411881615e9f565b92915050565b60008135905061412d81615eb6565b92915050565b60008135905061414281615ecd565b92915050565b60008135905061415781615ee4565b92915050565b60008151905061416c81615ee4565b92915050565b600082601f83011261418357600080fd5b813561419384826020860161402e565b91505092915050565b600082601f8301126141ad57600080fd5b81356141bd84826020860161406c565b91505092915050565b6000813590506141d581615efb565b92915050565b6000602082840312156141ed57600080fd5b60006141fb848285016140aa565b91505092915050565b6000806040838503121561421757600080fd5b6000614225858286016140aa565b9250506020614236858286016140aa565b9150509250929050565b60008060006060848603121561425557600080fd5b6000614263868287016140aa565b9350506020614274868287016140aa565b9250506040614285868287016141c6565b9150509250925092565b600080600080608085870312156142a557600080fd5b60006142b3878288016140aa565b94505060206142c4878288016140aa565b93505060406142d5878288016141c6565b925050606085013567ffffffffffffffff8111156142f257600080fd5b6142fe87828801614172565b91505092959194509250565b6000806040838503121561431d57600080fd5b600061432b858286016140aa565b925050602061433c85828601614109565b9150509250929050565b6000806040838503121561435957600080fd5b6000614367858286016140aa565b9250506020614378858286016141c6565b9150509250929050565b6000806020838503121561439557600080fd5b600083013567ffffffffffffffff8111156143af57600080fd5b6143bb858286016140bf565b92509250509250929050565b6000602082840312156143d957600080fd5b60006143e78482850161411e565b91505092915050565b60006020828403121561440257600080fd5b600061441084828501614133565b91505092915050565b60006020828403121561442b57600080fd5b600061443984828501614148565b91505092915050565b60006020828403121561445457600080fd5b60006144628482850161415d565b91505092915050565b60006020828403121561447d57600080fd5b600082013567ffffffffffffffff81111561449757600080fd5b6144a38482850161419c565b91505092915050565b6000602082840312156144be57600080fd5b60006144cc848285016141c6565b91505092915050565b600080604083850312156144e857600080fd5b60006144f6858286016141c6565b9250506020614507858286016141c6565b9150509250929050565b600061451d8383614b46565b60208301905092915050565b61453281615350565b82525050565b61454961454482615350565b615512565b82525050565b600061455a82615229565b6145648185615257565b935061456f83615219565b8060005b838110156145a05781516145878882614511565b97506145928361524a565b925050600181019050614573565b5085935050505092915050565b6145b681615362565b82525050565b6145c58161536e565b82525050565b6145d48161539a565b82525050565b60006145e582615234565b6145ef8185615268565b93506145ff818560208601615409565b61460881615623565b840191505092915050565b600061461e8261523f565b6146288185615279565b9350614638818560208601615409565b61464181615623565b840191505092915050565b60006146578261523f565b614661818561528a565b9350614671818560208601615409565b80840191505092915050565b600061468a602683615279565b915061469582615641565b604082019050919050565b60006146ad602a83615279565b91506146b882615690565b604082019050919050565b60006146d0601f83615279565b91506146db826156df565b602082019050919050565b60006146f3602b83615279565b91506146fe82615708565b604082019050919050565b6000614716603283615279565b915061472182615757565b604082019050919050565b6000614739602683615279565b9150614744826157a6565b604082019050919050565b600061475c602583615279565b9150614767826157f5565b604082019050919050565b600061477f601c83615279565b915061478a82615844565b602082019050919050565b60006147a2601583615279565b91506147ad8261586d565b602082019050919050565b60006147c5602483615279565b91506147d082615896565b604082019050919050565b60006147e8601983615279565b91506147f3826158e5565b602082019050919050565b600061480b602883615279565b91506148168261590e565b604082019050919050565b600061482e601f83615279565b91506148398261595d565b602082019050919050565b6000614851602983615279565b915061485c82615986565b604082019050919050565b6000614874601c83615279565b915061487f826159d5565b602082019050919050565b6000614897602783615279565b91506148a2826159fe565b604082019050919050565b60006148ba601c83615279565b91506148c582615a4d565b602082019050919050565b60006148dd601b83615279565b91506148e882615a76565b602082019050919050565b6000614900603e83615279565b915061490b82615a9f565b604082019050919050565b6000614923602083615279565b915061492e82615aee565b602082019050919050565b600061494660288361528a565b915061495182615b17565b602882019050919050565b6000614969602a83615279565b915061497482615b66565b604082019050919050565b600061498c60058361528a565b915061499782615bb5565b600582019050919050565b60006149af602083615279565b91506149ba82615bde565b602082019050919050565b60006149d2604383615279565b91506149dd82615c07565b606082019050919050565b60006149f5601883615279565b9150614a0082615c7c565b602082019050919050565b6000614a18602183615279565b9150614a2382615ca5565b604082019050919050565b6000614a3b601583615279565b9150614a4682615cf4565b602082019050919050565b6000614a5e602c83615279565b9150614a6982615d1d565b604082019050919050565b6000614a81601083615279565b9150614a8c82615d6c565b602082019050919050565b6000614aa4601383615279565b9150614aaf82615d95565b602082019050919050565b6000614ac7601483615279565b9150614ad282615dbe565b602082019050919050565b6000614aea602e83615279565b9150614af582615de7565b604082019050919050565b6000614b0d602083615279565b9150614b1882615e36565b602082019050919050565b6000614b30601983615279565b9150614b3b82615e5f565b602082019050919050565b614b4f816153f0565b82525050565b614b5e816153f0565b82525050565b6000614b708284614538565b60148201915081905092915050565b6000614b8b828561464c565b9150614b97828461464c565b9150614ba28261497f565b91508190509392505050565b6000614bb982614939565b9150819050919050565b6000602082019050614bd86000830184614529565b92915050565b6000608082019050614bf36000830187614529565b614c006020830186614529565b614c0d6040830185614b55565b8181036060830152614c1f81846145da565b905095945050505050565b6000604082019050614c3f6000830185614529565b614c4c6020830184614b55565b9392505050565b600060e082019050614c68600083018a614529565b614c756020830189614b55565b614c826040830188614b55565b614c8f6060830187614b55565b614c9c6080830186614b55565b614ca960a0830185614529565b614cb660c0830184614b55565b98975050505050505050565b60006020820190508181036000830152614cdc818461454f565b905092915050565b6000602082019050614cf960008301846145ad565b92915050565b6000602082019050614d1460008301846145bc565b92915050565b6000602082019050614d2f60008301846145cb565b92915050565b60006020820190508181036000830152614d4f8184614613565b905092915050565b60006020820190508181036000830152614d708161467d565b9050919050565b60006020820190508181036000830152614d90816146a0565b9050919050565b60006020820190508181036000830152614db0816146c3565b9050919050565b60006020820190508181036000830152614dd0816146e6565b9050919050565b60006020820190508181036000830152614df081614709565b9050919050565b60006020820190508181036000830152614e108161472c565b9050919050565b60006020820190508181036000830152614e308161474f565b9050919050565b60006020820190508181036000830152614e5081614772565b9050919050565b60006020820190508181036000830152614e7081614795565b9050919050565b60006020820190508181036000830152614e90816147b8565b9050919050565b60006020820190508181036000830152614eb0816147db565b9050919050565b60006020820190508181036000830152614ed0816147fe565b9050919050565b60006020820190508181036000830152614ef081614821565b9050919050565b60006020820190508181036000830152614f1081614844565b9050919050565b60006020820190508181036000830152614f3081614867565b9050919050565b60006020820190508181036000830152614f508161488a565b9050919050565b60006020820190508181036000830152614f70816148ad565b9050919050565b60006020820190508181036000830152614f90816148d0565b9050919050565b60006020820190508181036000830152614fb0816148f3565b9050919050565b60006020820190508181036000830152614fd081614916565b9050919050565b60006020820190508181036000830152614ff08161495c565b9050919050565b60006020820190508181036000830152615010816149a2565b9050919050565b60006020820190508181036000830152615030816149c5565b9050919050565b60006020820190508181036000830152615050816149e8565b9050919050565b6000602082019050818103600083015261507081614a0b565b9050919050565b6000602082019050818103600083015261509081614a2e565b9050919050565b600060208201905081810360008301526150b081614a51565b9050919050565b600060208201905081810360008301526150d081614a74565b9050919050565b600060208201905081810360008301526150f081614a97565b9050919050565b6000602082019050818103600083015261511081614aba565b9050919050565b6000602082019050818103600083015261513081614add565b9050919050565b6000602082019050818103600083015261515081614b00565b9050919050565b6000602082019050818103600083015261517081614b23565b9050919050565b600060208201905061518c6000830184614b55565b92915050565b600061519c6151ad565b90506151a88282615498565b919050565b6000604051905090565b600067ffffffffffffffff8211156151d2576151d16155f4565b5b6151db82615623565b9050602081019050919050565b600067ffffffffffffffff821115615203576152026155f4565b5b61520c82615623565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006152a0826153f0565b91506152ab836153f0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152e0576152df615567565b5b828201905092915050565b60006152f6826153f0565b9150615301836153f0565b92508261531157615310615596565b5b828204905092915050565b6000615327826153f0565b9150615332836153f0565b92508282101561534557615344615567565b5b828203905092915050565b600061535b826153d0565b9050919050565b60008115159050919050565b60007fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561542757808201518184015260208101905061540c565b83811115615436576000848401525b50505050565b6000615447826153f0565b9150600082141561545b5761545a615567565b5b600182039050919050565b6000600282049050600182168061547e57607f821691505b60208210811415615492576154916155c5565b5b50919050565b6154a182615623565b810181811067ffffffffffffffff821117156154c0576154bf6155f4565b5b80604052505050565b60006154d4826153f0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561550757615506615567565b5b600182019050919050565b600061551d82615524565b9050919050565b600061552f82615634565b9050919050565b6000615541826153f0565b915061554c836153f0565b92508261555c5761555b615596565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f696e76616c69642070726f6f662c20796f75277265206e6f74206f6e2074686560008201527f206c6973742e0000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c7920746865206f776e6572206f6620626f7468204e4654732063616e2060008201527f6372616674207468656d00000000000000000000000000000000000000000000602082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f7468652077686974656c697374206973206f7665720000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f7468652077616974696e67206c697374206d696e74206973206e6f742073746160008201527f7274656420796574000000000000000000000000000000000000000000000000602082015250565b7f7468652077616974696e67206c697374206d696e742069732070617573656400600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f746865206372616674206973206e6f7420737461727465642079657400000000600082015250565b7f6d6178204e465473207065722077686974656c6973742061646472657373206560008201527f7863656564656400000000000000000000000000000000000000000000000000602082015250565b7f7468652077686974656c697374206d696e742069732070617573656400000000600082015250565b7f746865206d696e74206973206e6f742073746172746564207965740000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f68747470733a2f2f6e66742e70706170652e696f2f4141492f756e726576656160008201527f6c65642e6a736f6e000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465473207065722077616974696e67206c6973742061646472657360008201527f7320657863656564656400000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6f6e6c7920746865206f776e6572206f7220617070726f76656420636f6e747260008201527f61637473206f66204e46542063616e207472616e73666572206f72206275726e60208201527f2069740000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f616c6c204e465473206172652063726166746564210000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f696e76616c696420546f6b656e20496400000000000000000000000000000000600082015250565b7f7468652063726166742069732070617573656400000000000000000000000000600082015250565b7f616c6c204e46547320617265206d696e74656421000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f7468652077686974656c697374206973206e6f74207374617274656420796574600082015250565b7f746865207075626c6963206d696e742069732070617573656400000000000000600082015250565b615e9181615350565b8114615e9c57600080fd5b50565b615ea881615362565b8114615eb357600080fd5b50565b615ebf8161536e565b8114615eca57600080fd5b50565b615ed68161539a565b8114615ee157600080fd5b50565b615eed816153a4565b8114615ef857600080fd5b50565b615f04816153f0565b8114615f0f57600080fd5b5056fe3066393839323461356630646532663932306265313936333764323635333962393038363035653030326165313938383538343335316465336239383933326165303433346232336136623035356331616633306635313261346661663333383335316331646461653937623166386461616166313562653462653162386230a2646970667358221220fc3de2bd654192a6ce6fc4034f46e70c3fe4275c89c30c5983e83f7d581f84a064736f6c63430008040033

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.