ETH Price: $3,449.12 (-2.42%)
Gas: 3 Gwei

Token

SlylyFoxes (SLYLY)
 

Overview

Max Total Supply

10,000 SLYLY

Holders

1,221

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 SLYLY
0xa3e03b2c2b48009a04b9a0a97987a5ba7dd29162
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:
SlylyFoxes

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

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

/*..............................................................................
..........................*@@,..................................................
........................@@@,,..............................@@@..................
............................................................,@@@................
............................/@#@@@@,..................%@@#,.....................
...........................@@    @@@@..............,@   (@@@....................
........................../@@   @  @@..............@@    @@@@...................
..........................&@@@@@@@@@@,............&@@@@@#  @@,..................
...........................@@@@@@@@@&.............,@@@@@@@@@@...................
............................@@@@@@@................@@@@@@@@@....................
.....................................................@@@@@,.....................
................................................................................
..............,.,...............................................................
.....@@@@@@@@@@@&(................@@@@@@,.@@@@@@@@.............@@@@@@@&#*.......
........,,.@@@@@@............/@@...,@&,.........@@@..............,....,.*%&.....
......@@@@@..................@@&...............,@@@.............%@@@@@@@,,......
..............................@@@@@@@@@@......,@@@.....................,@@......
...................................,...@@@@@@@@&................................
..............................................................................*/

pragma solidity >=0.8.9 <0.9.0;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract SlylyFoxes is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  bytes32 public merkleRoot;
  mapping(address => uint256) public addressPresaleMintedBalance;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;

  uint256 public price = 0.02 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 10;
  uint256 public addressLimitPresale = 3;
  uint256 public reservedMarketingAndTeam = 250;

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

  constructor() ERC721A("SlylyFoxes", "SLYLY") {
    setHiddenMetadataUri("ipfs://Qmdrf5MHTv5aB9KEPbiZMps2xZBAZc1MLXeHM2yTCwmMDS/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0, "Must mint at least one!");
    require(_mintAmount <= maxMintAmountPerTx, "Cannot purchase this many tokens in a transaction");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= price * _mintAmount, "Not enough Ether!");
    _;
  }

  function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    // Verify whitelist requirements
    require(whitelistMintEnabled, "The whitelist sale is not enabled!");
    uint256 ownerMintedCount = addressPresaleMintedBalance[_msgSender()];
    require(ownerMintedCount + _mintAmount <= addressLimitPresale, "Maximum NFTs per address exceeded");
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid proof!");

    addressPresaleMintedBalance[_msgSender()] += _mintAmount;
    _safeMint(_msgSender(), _mintAmount);
  }

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

   _safeMint(_msgSender(), _mintAmount);
  }

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

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

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

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

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

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

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

  function toggleRevealed() public onlyOwner {
    revealed = !revealed;
  }

  function setPrice(uint256 _price) public onlyOwner {
    price = _price;
  }

  function setAddressLimitPresale(uint256 _newAddressLimitPresale) public onlyOwner {
   addressLimitPresale = _newAddressLimitPresale;
 }

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

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

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

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

  function togglePaused() public onlyOwner {
    paused = !paused;
  }

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

  function toggleWhitelistMintEnabled() public onlyOwner {
    whitelistMintEnabled = !whitelistMintEnabled;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool success, ) = payable(owner()).call{value: address(this).balance}("");
    require(success);
  }

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 3 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees 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.
 */
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 Returns the rebuilt hash obtained by traversing a Merklee 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 5 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 8 of 13 : 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 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 10 of 13 : 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 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"addressLimitPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressPresaleMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMarketingAndTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAddressLimitPresale","type":"uint256"}],"name":"setAddressLimitPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600c90805190602001906200002b929190620003b3565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d908051906020019062000079929190620003b3565b5066470de4df820000600f55612710601055600a601155600360125560fa6013556001601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055506000601460026101000a81548160ff021916908315150217905550348015620000f857600080fd5b506040518060400160405280600a81526020017f536c796c79466f786573000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f534c594c5900000000000000000000000000000000000000000000000000000081525081600290805190602001906200017d929190620003b3565b50806003908051906020019062000196929190620003b3565b50620001a76200020760201b60201c565b6000819055505050620001cf620001c36200021060201b60201c565b6200021860201b60201c565b6001600981905550620002016040518060800160405280604181526020016200520060419139620002de60201b60201c565b6200054b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ee6200021060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003146200038960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200036d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036490620004c4565b60405180910390fd5b80600e908051906020019062000385929190620003b3565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003c19062000515565b90600052602060002090601f016020900481019282620003e5576000855562000431565b82601f106200040057805160ff191683800117855562000431565b8280016001018555821562000431579182015b828111156200043057825182559160200191906001019062000413565b5b50905062000440919062000444565b5090565b5b808211156200045f57600081600090555060010162000445565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620004ac60208362000463565b9150620004b98262000474565b602082019050919050565b60006020820190508181036000830152620004df816200049d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052e57607f821691505b60208210811415620005455762000544620004e6565b5b50919050565b614ca5806200055b6000396000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063a0712d68116100c1578063d2cab0561161007a578063d2cab056146108e5578063d5abeb0114610901578063e985e9c51461092c578063efbd73f414610969578063f2fde38b14610992578063f9d38e97146109bb57610272565b8063a0712d68146107e6578063a22cb46514610802578063a45ba8e71461082b578063b071401b14610856578063b88d4fde1461087f578063c87b56dd146108a857610272565b80638da5cb5b116101135780638da5cb5b146106e657806391b7f5ed1461071157806394354fd01461073a57806395d245e41461076557806395d89b4114610790578063a035b1fe146107bb57610272565b806370a0823114610615578063715018a6146106525780637cb64759146106695780637ec4a659146106925780638b610dbc146106bb57610272565b806342842e0e116101e85780635503a0e8116101ac5780635503a0e8146105155780635bc020bc146105405780635c975abb1461055757806362b99ad4146105825780636352211e146105ad5780636caede3d146105ea57610272565b806342842e0e14610432578063438b63001461045b57806345bb71ef146104985780634fdd43cb146104c157806351830227146104ea57610272565b806318160ddd1161023a57806318160ddd1461036e57806323b872dd146103995780632eb4a7ab146103c257806332b95372146103ed57806336566f06146104045780633ccfd60b1461041b57610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806316ba10e014610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906138e9565b6109f8565b6040516102ab9190613931565b60405180910390f35b3480156102c057600080fd5b506102c9610ada565b6040516102d691906139e5565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613a3d565b610b6c565b6040516103139190613aab565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613af2565b610be8565b005b34801561035157600080fd5b5061036c60048036038101906103679190613c67565b610cf3565b005b34801561037a57600080fd5b50610383610d89565b6040516103909190613cbf565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190613cda565b610da0565b005b3480156103ce57600080fd5b506103d7610db0565b6040516103e49190613d46565b60405180910390f35b3480156103f957600080fd5b50610402610db6565b005b34801561041057600080fd5b50610419610e5e565b005b34801561042757600080fd5b50610430610f06565b005b34801561043e57600080fd5b5061045960048036038101906104549190613cda565b611058565b005b34801561046757600080fd5b50610482600480360381019061047d9190613d61565b611078565b60405161048f9190613e4c565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613a3d565b611293565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190613c67565b611319565b005b3480156104f657600080fd5b506104ff6113af565b60405161050c9190613931565b60405180910390f35b34801561052157600080fd5b5061052a6113c2565b60405161053791906139e5565b60405180910390f35b34801561054c57600080fd5b50610555611450565b005b34801561056357600080fd5b5061056c6114f8565b6040516105799190613931565b60405180910390f35b34801561058e57600080fd5b5061059761150b565b6040516105a491906139e5565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf9190613a3d565b611599565b6040516105e19190613aab565b60405180910390f35b3480156105f657600080fd5b506105ff6115af565b60405161060c9190613931565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613d61565b6115c2565b6040516106499190613cbf565b60405180910390f35b34801561065e57600080fd5b50610667611692565b005b34801561067557600080fd5b50610690600480360381019061068b9190613e9a565b61171a565b005b34801561069e57600080fd5b506106b960048036038101906106b49190613c67565b6117a0565b005b3480156106c757600080fd5b506106d0611836565b6040516106dd9190613cbf565b60405180910390f35b3480156106f257600080fd5b506106fb61183c565b6040516107089190613aab565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190613a3d565b611866565b005b34801561074657600080fd5b5061074f6118ec565b60405161075c9190613cbf565b60405180910390f35b34801561077157600080fd5b5061077a6118f2565b6040516107879190613cbf565b60405180910390f35b34801561079c57600080fd5b506107a56118f8565b6040516107b291906139e5565b60405180910390f35b3480156107c757600080fd5b506107d061198a565b6040516107dd9190613cbf565b60405180910390f35b61080060048036038101906107fb9190613a3d565b611990565b005b34801561080e57600080fd5b5061082960048036038101906108249190613ef3565b611b27565b005b34801561083757600080fd5b50610840611c9f565b60405161084d91906139e5565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190613a3d565b611d2d565b005b34801561088b57600080fd5b506108a660048036038101906108a19190613fd4565b611db3565b005b3480156108b457600080fd5b506108cf60048036038101906108ca9190613a3d565b611e2f565b6040516108dc91906139e5565b60405180910390f35b6108ff60048036038101906108fa91906140b7565b611f88565b005b34801561090d57600080fd5b506109166122d9565b6040516109239190613cbf565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190614117565b6122df565b6040516109609190613931565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190614157565b612373565b005b34801561099e57600080fd5b506109b960048036038101906109b49190613d61565b6124de565b005b3480156109c757600080fd5b506109e260048036038101906109dd9190613d61565b6125d6565b6040516109ef9190613cbf565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ac357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad35750610ad2826125ee565b5b9050919050565b606060028054610ae9906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b15906141c6565b8015610b625780601f10610b3757610100808354040283529160200191610b62565b820191906000526020600020905b815481529060010190602001808311610b4557829003601f168201915b5050505050905090565b6000610b7782612658565b610bad576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf382611599565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7a6126a6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cac5750610caa81610ca56126a6565b6122df565b155b15610ce3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cee8383836126ae565b505050565b610cfb6126a6565b73ffffffffffffffffffffffffffffffffffffffff16610d1961183c565b73ffffffffffffffffffffffffffffffffffffffff1614610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6690614244565b60405180910390fd5b80600d9080519060200190610d85929190613797565b5050565b6000610d93612760565b6001546000540303905090565b610dab838383612769565b505050565b600a5481565b610dbe6126a6565b73ffffffffffffffffffffffffffffffffffffffff16610ddc61183c565b73ffffffffffffffffffffffffffffffffffffffff1614610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2990614244565b60405180910390fd5b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b610e666126a6565b73ffffffffffffffffffffffffffffffffffffffff16610e8461183c565b73ffffffffffffffffffffffffffffffffffffffff1614610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190614244565b60405180910390fd5b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b610f0e6126a6565b73ffffffffffffffffffffffffffffffffffffffff16610f2c61183c565b73ffffffffffffffffffffffffffffffffffffffff1614610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7990614244565b60405180910390fd5b60026009541415610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf906142b0565b60405180910390fd5b60026009819055506000610fda61183c565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ffd90614301565b60006040518083038185875af1925050503d806000811461103a576040519150601f19603f3d011682016040523d82523d6000602084013e61103f565b606091505b505090508061104d57600080fd5b506001600981905550565b61107383838360405180602001604052806000815250611db3565b505050565b60606000611085836115c2565b905060008167ffffffffffffffff8111156110a3576110a2613b3c565b5b6040519080825280602002602001820160405280156110d15781602001602082028036833780820191505090505b50905060006110de612760565b90506000805b84821080156110f557506010548311155b15611286576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156112025750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b1561120f57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611272578385848151811061125757611256614316565b5b602002602001018181525050828061126e90614374565b9350505b838061127d90614374565b945050506110e4565b8395505050505050919050565b61129b6126a6565b73ffffffffffffffffffffffffffffffffffffffff166112b961183c565b73ffffffffffffffffffffffffffffffffffffffff161461130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690614244565b60405180910390fd5b8060128190555050565b6113216126a6565b73ffffffffffffffffffffffffffffffffffffffff1661133f61183c565b73ffffffffffffffffffffffffffffffffffffffff1614611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90614244565b60405180910390fd5b80600e90805190602001906113ab929190613797565b5050565b601460029054906101000a900460ff1681565b600d80546113cf906141c6565b80601f01602080910402602001604051908101604052809291908181526020018280546113fb906141c6565b80156114485780601f1061141d57610100808354040283529160200191611448565b820191906000526020600020905b81548152906001019060200180831161142b57829003601f168201915b505050505081565b6114586126a6565b73ffffffffffffffffffffffffffffffffffffffff1661147661183c565b73ffffffffffffffffffffffffffffffffffffffff16146114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390614244565b60405180910390fd5b601460029054906101000a900460ff1615601460026101000a81548160ff021916908315150217905550565b601460009054906101000a900460ff1681565b600c8054611518906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611544906141c6565b80156115915780601f1061156657610100808354040283529160200191611591565b820191906000526020600020905b81548152906001019060200180831161157457829003601f168201915b505050505081565b60006115a482612c1f565b600001519050919050565b601460019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61169a6126a6565b73ffffffffffffffffffffffffffffffffffffffff166116b861183c565b73ffffffffffffffffffffffffffffffffffffffff161461170e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170590614244565b60405180910390fd5b6117186000612eae565b565b6117226126a6565b73ffffffffffffffffffffffffffffffffffffffff1661174061183c565b73ffffffffffffffffffffffffffffffffffffffff1614611796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178d90614244565b60405180910390fd5b80600a8190555050565b6117a86126a6565b73ffffffffffffffffffffffffffffffffffffffff166117c661183c565b73ffffffffffffffffffffffffffffffffffffffff161461181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390614244565b60405180910390fd5b80600c9080519060200190611832929190613797565b5050565b60135481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61186e6126a6565b73ffffffffffffffffffffffffffffffffffffffff1661188c61183c565b73ffffffffffffffffffffffffffffffffffffffff16146118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990614244565b60405180910390fd5b80600f8190555050565b60115481565b60125481565b606060038054611907906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611933906141c6565b80156119805780601f1061195557610100808354040283529160200191611980565b820191906000526020600020905b81548152906001019060200180831161196357829003601f168201915b5050505050905090565b600f5481565b80600081116119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb90614409565b60405180910390fd5b601154811115611a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a109061449b565b60405180910390fd5b60105481611a25610d89565b611a2f91906144bb565b1115611a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a679061455d565b60405180910390fd5b8180600f54611a7f919061457d565b341015611ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab890614623565b60405180910390fd5b601460009054906101000a900460ff1615611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b089061468f565b60405180910390fd5b611b22611b1c6126a6565b84612f74565b505050565b611b2f6126a6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b94576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ba16126a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c4e6126a6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c939190613931565b60405180910390a35050565b600e8054611cac906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd8906141c6565b8015611d255780601f10611cfa57610100808354040283529160200191611d25565b820191906000526020600020905b815481529060010190602001808311611d0857829003601f168201915b505050505081565b611d356126a6565b73ffffffffffffffffffffffffffffffffffffffff16611d5361183c565b73ffffffffffffffffffffffffffffffffffffffff1614611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090614244565b60405180910390fd5b8060118190555050565b611dbe848484612769565b611ddd8373ffffffffffffffffffffffffffffffffffffffff16612f92565b8015611df25750611df084848484612fb5565b155b15611e29576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611e3a82612658565b611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7090614721565b60405180910390fd5b60001515601460029054906101000a900460ff1615151415611f2757600e8054611ea2906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611ece906141c6565b8015611f1b5780601f10611ef057610100808354040283529160200191611f1b565b820191906000526020600020905b815481529060010190602001808311611efe57829003601f168201915b50505050509050611f83565b6000611f31613115565b90506000815111611f515760405180602001604052806000815250611f7f565b80611f5b846131a7565b600d604051602001611f6f93929190614811565b6040516020818303038152906040525b9150505b919050565b8260008111611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390614409565b60405180910390fd5b601154811115612011576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120089061449b565b60405180910390fd5b6010548161201d610d89565b61202791906144bb565b1115612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f9061455d565b60405180910390fd5b8380600f54612077919061457d565b3410156120b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b090614623565b60405180910390fd5b601460019054906101000a900460ff16612108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ff906148b4565b60405180910390fd5b6000600b60006121166126a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601254868261216291906144bb565b11156121a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219a90614946565b60405180910390fd5b60006121ad6126a6565b6040516020016121bd91906149ae565b604051602081830303815290604052805190602001209050612223868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483613308565b612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225990614a15565b60405180910390fd5b86600b600061226f6126a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b891906144bb565b925050819055506122d06122ca6126a6565b88612f74565b50505050505050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081116123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae90614409565b60405180910390fd5b6011548111156123fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f39061449b565b60405180910390fd5b60105481612408610d89565b61241291906144bb565b1115612453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244a9061455d565b60405180910390fd5b61245b6126a6565b73ffffffffffffffffffffffffffffffffffffffff1661247961183c565b73ffffffffffffffffffffffffffffffffffffffff16146124cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c690614244565b60405180910390fd5b6124d98284612f74565b505050565b6124e66126a6565b73ffffffffffffffffffffffffffffffffffffffff1661250461183c565b73ffffffffffffffffffffffffffffffffffffffff161461255a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255190614244565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c190614aa7565b60405180910390fd5b6125d381612eae565b50565b600b6020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612663612760565b11158015612672575060005482105b801561269f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061277482612c1f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127df576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166128006126a6565b73ffffffffffffffffffffffffffffffffffffffff16148061282f575061282e856128296126a6565b6122df565b5b80612874575061283d6126a6565b73ffffffffffffffffffffffffffffffffffffffff1661285c84610b6c565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806128ad576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612914576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612921858585600161331f565b61292d600084876126ae565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612bad576000548214612bac57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c188585856001613325565b5050505050565b612c2761381d565b600082905080612c35612760565b11158015612c44575060005481105b15612e77576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e7557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d59578092505050612ea9565b5b600115612e7457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e6f578092505050612ea9565b612d5a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f8e82826040518060200160405280600081525061332b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fdb6126a6565b8786866040518563ffffffff1660e01b8152600401612ffd9493929190614b1c565b602060405180830381600087803b15801561301757600080fd5b505af192505050801561304857506040513d601f19601f820116820180604052508101906130459190614b7d565b60015b6130c2573d8060008114613078576040519150601f19603f3d011682016040523d82523d6000602084013e61307d565b606091505b506000815114156130ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054613124906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054613150906141c6565b801561319d5780601f106131725761010080835404028352916020019161319d565b820191906000526020600020905b81548152906001019060200180831161318057829003601f168201915b5050505050905090565b606060008214156131ef576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613303565b600082905060005b6000821461322157808061320a90614374565b915050600a8261321a9190614bd9565b91506131f7565b60008167ffffffffffffffff81111561323d5761323c613b3c565b5b6040519080825280601f01601f19166020018201604052801561326f5781602001600182028036833780820191505090505b5090505b600085146132fc576001826132889190614c0a565b9150600a856132979190614c3e565b60306132a391906144bb565b60f81b8183815181106132b9576132b8614316565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132f59190614bd9565b9450613273565b8093505050505b919050565b600082613315858461333d565b1490509392505050565b50505050565b50505050565b61333883838360016133b2565b505050565b60008082905060005b84518110156133a757600085828151811061336457613363614316565b5b602002602001015190508083116133865761337f8382613780565b9250613393565b6133908184613780565b92505b50808061339f90614374565b915050613346565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561341f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561345a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613467600086838761331f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561363157506136308773ffffffffffffffffffffffffffffffffffffffff16612f92565b5b156136f7575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136a66000888480600101955088612fb5565b6136dc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156136375782600054146136f257600080fd5b613763565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156136f8575b8160008190555050506137796000868387613325565b5050505050565b600082600052816020526040600020905092915050565b8280546137a3906141c6565b90600052602060002090601f0160209004810192826137c5576000855561380c565b82601f106137de57805160ff191683800117855561380c565b8280016001018555821561380c579182015b8281111561380b5782518255916020019190600101906137f0565b5b5090506138199190613860565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613879576000816000905550600101613861565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6138c681613891565b81146138d157600080fd5b50565b6000813590506138e3816138bd565b92915050565b6000602082840312156138ff576138fe613887565b5b600061390d848285016138d4565b91505092915050565b60008115159050919050565b61392b81613916565b82525050565b60006020820190506139466000830184613922565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561398657808201518184015260208101905061396b565b83811115613995576000848401525b50505050565b6000601f19601f8301169050919050565b60006139b78261394c565b6139c18185613957565b93506139d1818560208601613968565b6139da8161399b565b840191505092915050565b600060208201905081810360008301526139ff81846139ac565b905092915050565b6000819050919050565b613a1a81613a07565b8114613a2557600080fd5b50565b600081359050613a3781613a11565b92915050565b600060208284031215613a5357613a52613887565b5b6000613a6184828501613a28565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a9582613a6a565b9050919050565b613aa581613a8a565b82525050565b6000602082019050613ac06000830184613a9c565b92915050565b613acf81613a8a565b8114613ada57600080fd5b50565b600081359050613aec81613ac6565b92915050565b60008060408385031215613b0957613b08613887565b5b6000613b1785828601613add565b9250506020613b2885828601613a28565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b748261399b565b810181811067ffffffffffffffff82111715613b9357613b92613b3c565b5b80604052505050565b6000613ba661387d565b9050613bb28282613b6b565b919050565b600067ffffffffffffffff821115613bd257613bd1613b3c565b5b613bdb8261399b565b9050602081019050919050565b82818337600083830152505050565b6000613c0a613c0584613bb7565b613b9c565b905082815260208101848484011115613c2657613c25613b37565b5b613c31848285613be8565b509392505050565b600082601f830112613c4e57613c4d613b32565b5b8135613c5e848260208601613bf7565b91505092915050565b600060208284031215613c7d57613c7c613887565b5b600082013567ffffffffffffffff811115613c9b57613c9a61388c565b5b613ca784828501613c39565b91505092915050565b613cb981613a07565b82525050565b6000602082019050613cd46000830184613cb0565b92915050565b600080600060608486031215613cf357613cf2613887565b5b6000613d0186828701613add565b9350506020613d1286828701613add565b9250506040613d2386828701613a28565b9150509250925092565b6000819050919050565b613d4081613d2d565b82525050565b6000602082019050613d5b6000830184613d37565b92915050565b600060208284031215613d7757613d76613887565b5b6000613d8584828501613add565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613dc381613a07565b82525050565b6000613dd58383613dba565b60208301905092915050565b6000602082019050919050565b6000613df982613d8e565b613e038185613d99565b9350613e0e83613daa565b8060005b83811015613e3f578151613e268882613dc9565b9750613e3183613de1565b925050600181019050613e12565b5085935050505092915050565b60006020820190508181036000830152613e668184613dee565b905092915050565b613e7781613d2d565b8114613e8257600080fd5b50565b600081359050613e9481613e6e565b92915050565b600060208284031215613eb057613eaf613887565b5b6000613ebe84828501613e85565b91505092915050565b613ed081613916565b8114613edb57600080fd5b50565b600081359050613eed81613ec7565b92915050565b60008060408385031215613f0a57613f09613887565b5b6000613f1885828601613add565b9250506020613f2985828601613ede565b9150509250929050565b600067ffffffffffffffff821115613f4e57613f4d613b3c565b5b613f578261399b565b9050602081019050919050565b6000613f77613f7284613f33565b613b9c565b905082815260208101848484011115613f9357613f92613b37565b5b613f9e848285613be8565b509392505050565b600082601f830112613fbb57613fba613b32565b5b8135613fcb848260208601613f64565b91505092915050565b60008060008060808587031215613fee57613fed613887565b5b6000613ffc87828801613add565b945050602061400d87828801613add565b935050604061401e87828801613a28565b925050606085013567ffffffffffffffff81111561403f5761403e61388c565b5b61404b87828801613fa6565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261407757614076613b32565b5b8235905067ffffffffffffffff81111561409457614093614057565b5b6020830191508360208202830111156140b0576140af61405c565b5b9250929050565b6000806000604084860312156140d0576140cf613887565b5b60006140de86828701613a28565b935050602084013567ffffffffffffffff8111156140ff576140fe61388c565b5b61410b86828701614061565b92509250509250925092565b6000806040838503121561412e5761412d613887565b5b600061413c85828601613add565b925050602061414d85828601613add565b9150509250929050565b6000806040838503121561416e5761416d613887565b5b600061417c85828601613a28565b925050602061418d85828601613add565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141de57607f821691505b602082108114156141f2576141f1614197565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061422e602083613957565b9150614239826141f8565b602082019050919050565b6000602082019050818103600083015261425d81614221565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061429a601f83613957565b91506142a582614264565b602082019050919050565b600060208201905081810360008301526142c98161428d565b9050919050565b600081905092915050565b50565b60006142eb6000836142d0565b91506142f6826142db565b600082019050919050565b600061430c826142de565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061437f82613a07565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143b2576143b1614345565b5b600182019050919050565b7f4d757374206d696e74206174206c65617374206f6e6521000000000000000000600082015250565b60006143f3601783613957565b91506143fe826143bd565b602082019050919050565b60006020820190508181036000830152614422816143e6565b9050919050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360008201527f20696e2061207472616e73616374696f6e000000000000000000000000000000602082015250565b6000614485603183613957565b915061449082614429565b604082019050919050565b600060208201905081810360008301526144b481614478565b9050919050565b60006144c682613a07565b91506144d183613a07565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561450657614505614345565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000614547601483613957565b915061455282614511565b602082019050919050565b600060208201905081810360008301526145768161453a565b9050919050565b600061458882613a07565b915061459383613a07565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145cc576145cb614345565b5b828202905092915050565b7f4e6f7420656e6f75676820457468657221000000000000000000000000000000600082015250565b600061460d601183613957565b9150614618826145d7565b602082019050919050565b6000602082019050818103600083015261463c81614600565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000614679601783613957565b915061468482614643565b602082019050919050565b600060208201905081810360008301526146a88161466c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061470b602f83613957565b9150614716826146af565b604082019050919050565b6000602082019050818103600083015261473a816146fe565b9050919050565b600081905092915050565b60006147578261394c565b6147618185614741565b9350614771818560208601613968565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461479f816141c6565b6147a98186614741565b945060018216600081146147c457600181146147d557614808565b60ff19831686528186019350614808565b6147de8561477d565b60005b83811015614800578154818901526001820191506020810190506147e1565b838801955050505b50505092915050565b600061481d828661474c565b9150614829828561474c565b91506148358284614792565b9150819050949350505050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b600061489e602283613957565b91506148a982614842565b604082019050919050565b600060208201905081810360008301526148cd81614891565b9050919050565b7f4d6178696d756d204e465473207065722061646472657373206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614930602183613957565b915061493b826148d4565b604082019050919050565b6000602082019050818103600083015261495f81614923565b9050919050565b60008160601b9050919050565b600061497e82614966565b9050919050565b600061499082614973565b9050919050565b6149a86149a382613a8a565b614985565b82525050565b60006149ba8284614997565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b60006149ff600e83613957565b9150614a0a826149c9565b602082019050919050565b60006020820190508181036000830152614a2e816149f2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a91602683613957565b9150614a9c82614a35565b604082019050919050565b60006020820190508181036000830152614ac081614a84565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614aee82614ac7565b614af88185614ad2565b9350614b08818560208601613968565b614b118161399b565b840191505092915050565b6000608082019050614b316000830187613a9c565b614b3e6020830186613a9c565b614b4b6040830185613cb0565b8181036060830152614b5d8184614ae3565b905095945050505050565b600081519050614b77816138bd565b92915050565b600060208284031215614b9357614b92613887565b5b6000614ba184828501614b68565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614be482613a07565b9150614bef83613a07565b925082614bff57614bfe614baa565b5b828204905092915050565b6000614c1582613a07565b9150614c2083613a07565b925082821015614c3357614c32614345565b5b828203905092915050565b6000614c4982613a07565b9150614c5483613a07565b925082614c6457614c63614baa565b5b82820690509291505056fea2646970667358221220e93647f6c37b092726d49e4d0f5db72ed38ae06aabb6add4bcb333e60069ee9164736f6c63430008090033697066733a2f2f516d647266354d485476356142394b455062695a4d707332785a42415a63314d4c5865484d32795443776d4d44532f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102725760003560e01c806370a082311161014f578063a0712d68116100c1578063d2cab0561161007a578063d2cab056146108e5578063d5abeb0114610901578063e985e9c51461092c578063efbd73f414610969578063f2fde38b14610992578063f9d38e97146109bb57610272565b8063a0712d68146107e6578063a22cb46514610802578063a45ba8e71461082b578063b071401b14610856578063b88d4fde1461087f578063c87b56dd146108a857610272565b80638da5cb5b116101135780638da5cb5b146106e657806391b7f5ed1461071157806394354fd01461073a57806395d245e41461076557806395d89b4114610790578063a035b1fe146107bb57610272565b806370a0823114610615578063715018a6146106525780637cb64759146106695780637ec4a659146106925780638b610dbc146106bb57610272565b806342842e0e116101e85780635503a0e8116101ac5780635503a0e8146105155780635bc020bc146105405780635c975abb1461055757806362b99ad4146105825780636352211e146105ad5780636caede3d146105ea57610272565b806342842e0e14610432578063438b63001461045b57806345bb71ef146104985780634fdd43cb146104c157806351830227146104ea57610272565b806318160ddd1161023a57806318160ddd1461036e57806323b872dd146103995780632eb4a7ab146103c257806332b95372146103ed57806336566f06146104045780633ccfd60b1461041b57610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806316ba10e014610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906138e9565b6109f8565b6040516102ab9190613931565b60405180910390f35b3480156102c057600080fd5b506102c9610ada565b6040516102d691906139e5565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613a3d565b610b6c565b6040516103139190613aab565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613af2565b610be8565b005b34801561035157600080fd5b5061036c60048036038101906103679190613c67565b610cf3565b005b34801561037a57600080fd5b50610383610d89565b6040516103909190613cbf565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190613cda565b610da0565b005b3480156103ce57600080fd5b506103d7610db0565b6040516103e49190613d46565b60405180910390f35b3480156103f957600080fd5b50610402610db6565b005b34801561041057600080fd5b50610419610e5e565b005b34801561042757600080fd5b50610430610f06565b005b34801561043e57600080fd5b5061045960048036038101906104549190613cda565b611058565b005b34801561046757600080fd5b50610482600480360381019061047d9190613d61565b611078565b60405161048f9190613e4c565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613a3d565b611293565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190613c67565b611319565b005b3480156104f657600080fd5b506104ff6113af565b60405161050c9190613931565b60405180910390f35b34801561052157600080fd5b5061052a6113c2565b60405161053791906139e5565b60405180910390f35b34801561054c57600080fd5b50610555611450565b005b34801561056357600080fd5b5061056c6114f8565b6040516105799190613931565b60405180910390f35b34801561058e57600080fd5b5061059761150b565b6040516105a491906139e5565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf9190613a3d565b611599565b6040516105e19190613aab565b60405180910390f35b3480156105f657600080fd5b506105ff6115af565b60405161060c9190613931565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613d61565b6115c2565b6040516106499190613cbf565b60405180910390f35b34801561065e57600080fd5b50610667611692565b005b34801561067557600080fd5b50610690600480360381019061068b9190613e9a565b61171a565b005b34801561069e57600080fd5b506106b960048036038101906106b49190613c67565b6117a0565b005b3480156106c757600080fd5b506106d0611836565b6040516106dd9190613cbf565b60405180910390f35b3480156106f257600080fd5b506106fb61183c565b6040516107089190613aab565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190613a3d565b611866565b005b34801561074657600080fd5b5061074f6118ec565b60405161075c9190613cbf565b60405180910390f35b34801561077157600080fd5b5061077a6118f2565b6040516107879190613cbf565b60405180910390f35b34801561079c57600080fd5b506107a56118f8565b6040516107b291906139e5565b60405180910390f35b3480156107c757600080fd5b506107d061198a565b6040516107dd9190613cbf565b60405180910390f35b61080060048036038101906107fb9190613a3d565b611990565b005b34801561080e57600080fd5b5061082960048036038101906108249190613ef3565b611b27565b005b34801561083757600080fd5b50610840611c9f565b60405161084d91906139e5565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190613a3d565b611d2d565b005b34801561088b57600080fd5b506108a660048036038101906108a19190613fd4565b611db3565b005b3480156108b457600080fd5b506108cf60048036038101906108ca9190613a3d565b611e2f565b6040516108dc91906139e5565b60405180910390f35b6108ff60048036038101906108fa91906140b7565b611f88565b005b34801561090d57600080fd5b506109166122d9565b6040516109239190613cbf565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190614117565b6122df565b6040516109609190613931565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190614157565b612373565b005b34801561099e57600080fd5b506109b960048036038101906109b49190613d61565b6124de565b005b3480156109c757600080fd5b506109e260048036038101906109dd9190613d61565b6125d6565b6040516109ef9190613cbf565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ac357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad35750610ad2826125ee565b5b9050919050565b606060028054610ae9906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b15906141c6565b8015610b625780601f10610b3757610100808354040283529160200191610b62565b820191906000526020600020905b815481529060010190602001808311610b4557829003601f168201915b5050505050905090565b6000610b7782612658565b610bad576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf382611599565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7a6126a6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cac5750610caa81610ca56126a6565b6122df565b155b15610ce3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cee8383836126ae565b505050565b610cfb6126a6565b73ffffffffffffffffffffffffffffffffffffffff16610d1961183c565b73ffffffffffffffffffffffffffffffffffffffff1614610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6690614244565b60405180910390fd5b80600d9080519060200190610d85929190613797565b5050565b6000610d93612760565b6001546000540303905090565b610dab838383612769565b505050565b600a5481565b610dbe6126a6565b73ffffffffffffffffffffffffffffffffffffffff16610ddc61183c565b73ffffffffffffffffffffffffffffffffffffffff1614610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2990614244565b60405180910390fd5b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b610e666126a6565b73ffffffffffffffffffffffffffffffffffffffff16610e8461183c565b73ffffffffffffffffffffffffffffffffffffffff1614610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190614244565b60405180910390fd5b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b610f0e6126a6565b73ffffffffffffffffffffffffffffffffffffffff16610f2c61183c565b73ffffffffffffffffffffffffffffffffffffffff1614610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7990614244565b60405180910390fd5b60026009541415610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf906142b0565b60405180910390fd5b60026009819055506000610fda61183c565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ffd90614301565b60006040518083038185875af1925050503d806000811461103a576040519150601f19603f3d011682016040523d82523d6000602084013e61103f565b606091505b505090508061104d57600080fd5b506001600981905550565b61107383838360405180602001604052806000815250611db3565b505050565b60606000611085836115c2565b905060008167ffffffffffffffff8111156110a3576110a2613b3c565b5b6040519080825280602002602001820160405280156110d15781602001602082028036833780820191505090505b50905060006110de612760565b90506000805b84821080156110f557506010548311155b15611286576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156112025750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b1561120f57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611272578385848151811061125757611256614316565b5b602002602001018181525050828061126e90614374565b9350505b838061127d90614374565b945050506110e4565b8395505050505050919050565b61129b6126a6565b73ffffffffffffffffffffffffffffffffffffffff166112b961183c565b73ffffffffffffffffffffffffffffffffffffffff161461130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690614244565b60405180910390fd5b8060128190555050565b6113216126a6565b73ffffffffffffffffffffffffffffffffffffffff1661133f61183c565b73ffffffffffffffffffffffffffffffffffffffff1614611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90614244565b60405180910390fd5b80600e90805190602001906113ab929190613797565b5050565b601460029054906101000a900460ff1681565b600d80546113cf906141c6565b80601f01602080910402602001604051908101604052809291908181526020018280546113fb906141c6565b80156114485780601f1061141d57610100808354040283529160200191611448565b820191906000526020600020905b81548152906001019060200180831161142b57829003601f168201915b505050505081565b6114586126a6565b73ffffffffffffffffffffffffffffffffffffffff1661147661183c565b73ffffffffffffffffffffffffffffffffffffffff16146114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390614244565b60405180910390fd5b601460029054906101000a900460ff1615601460026101000a81548160ff021916908315150217905550565b601460009054906101000a900460ff1681565b600c8054611518906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611544906141c6565b80156115915780601f1061156657610100808354040283529160200191611591565b820191906000526020600020905b81548152906001019060200180831161157457829003601f168201915b505050505081565b60006115a482612c1f565b600001519050919050565b601460019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61169a6126a6565b73ffffffffffffffffffffffffffffffffffffffff166116b861183c565b73ffffffffffffffffffffffffffffffffffffffff161461170e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170590614244565b60405180910390fd5b6117186000612eae565b565b6117226126a6565b73ffffffffffffffffffffffffffffffffffffffff1661174061183c565b73ffffffffffffffffffffffffffffffffffffffff1614611796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178d90614244565b60405180910390fd5b80600a8190555050565b6117a86126a6565b73ffffffffffffffffffffffffffffffffffffffff166117c661183c565b73ffffffffffffffffffffffffffffffffffffffff161461181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390614244565b60405180910390fd5b80600c9080519060200190611832929190613797565b5050565b60135481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61186e6126a6565b73ffffffffffffffffffffffffffffffffffffffff1661188c61183c565b73ffffffffffffffffffffffffffffffffffffffff16146118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990614244565b60405180910390fd5b80600f8190555050565b60115481565b60125481565b606060038054611907906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611933906141c6565b80156119805780601f1061195557610100808354040283529160200191611980565b820191906000526020600020905b81548152906001019060200180831161196357829003601f168201915b5050505050905090565b600f5481565b80600081116119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb90614409565b60405180910390fd5b601154811115611a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a109061449b565b60405180910390fd5b60105481611a25610d89565b611a2f91906144bb565b1115611a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a679061455d565b60405180910390fd5b8180600f54611a7f919061457d565b341015611ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab890614623565b60405180910390fd5b601460009054906101000a900460ff1615611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b089061468f565b60405180910390fd5b611b22611b1c6126a6565b84612f74565b505050565b611b2f6126a6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b94576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ba16126a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c4e6126a6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c939190613931565b60405180910390a35050565b600e8054611cac906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd8906141c6565b8015611d255780601f10611cfa57610100808354040283529160200191611d25565b820191906000526020600020905b815481529060010190602001808311611d0857829003601f168201915b505050505081565b611d356126a6565b73ffffffffffffffffffffffffffffffffffffffff16611d5361183c565b73ffffffffffffffffffffffffffffffffffffffff1614611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090614244565b60405180910390fd5b8060118190555050565b611dbe848484612769565b611ddd8373ffffffffffffffffffffffffffffffffffffffff16612f92565b8015611df25750611df084848484612fb5565b155b15611e29576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611e3a82612658565b611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7090614721565b60405180910390fd5b60001515601460029054906101000a900460ff1615151415611f2757600e8054611ea2906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611ece906141c6565b8015611f1b5780601f10611ef057610100808354040283529160200191611f1b565b820191906000526020600020905b815481529060010190602001808311611efe57829003601f168201915b50505050509050611f83565b6000611f31613115565b90506000815111611f515760405180602001604052806000815250611f7f565b80611f5b846131a7565b600d604051602001611f6f93929190614811565b6040516020818303038152906040525b9150505b919050565b8260008111611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390614409565b60405180910390fd5b601154811115612011576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120089061449b565b60405180910390fd5b6010548161201d610d89565b61202791906144bb565b1115612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f9061455d565b60405180910390fd5b8380600f54612077919061457d565b3410156120b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b090614623565b60405180910390fd5b601460019054906101000a900460ff16612108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ff906148b4565b60405180910390fd5b6000600b60006121166126a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601254868261216291906144bb565b11156121a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219a90614946565b60405180910390fd5b60006121ad6126a6565b6040516020016121bd91906149ae565b604051602081830303815290604052805190602001209050612223868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483613308565b612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225990614a15565b60405180910390fd5b86600b600061226f6126a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b891906144bb565b925050819055506122d06122ca6126a6565b88612f74565b50505050505050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081116123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae90614409565b60405180910390fd5b6011548111156123fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f39061449b565b60405180910390fd5b60105481612408610d89565b61241291906144bb565b1115612453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244a9061455d565b60405180910390fd5b61245b6126a6565b73ffffffffffffffffffffffffffffffffffffffff1661247961183c565b73ffffffffffffffffffffffffffffffffffffffff16146124cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c690614244565b60405180910390fd5b6124d98284612f74565b505050565b6124e66126a6565b73ffffffffffffffffffffffffffffffffffffffff1661250461183c565b73ffffffffffffffffffffffffffffffffffffffff161461255a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255190614244565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c190614aa7565b60405180910390fd5b6125d381612eae565b50565b600b6020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612663612760565b11158015612672575060005482105b801561269f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061277482612c1f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127df576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166128006126a6565b73ffffffffffffffffffffffffffffffffffffffff16148061282f575061282e856128296126a6565b6122df565b5b80612874575061283d6126a6565b73ffffffffffffffffffffffffffffffffffffffff1661285c84610b6c565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806128ad576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612914576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612921858585600161331f565b61292d600084876126ae565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612bad576000548214612bac57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c188585856001613325565b5050505050565b612c2761381d565b600082905080612c35612760565b11158015612c44575060005481105b15612e77576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e7557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d59578092505050612ea9565b5b600115612e7457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e6f578092505050612ea9565b612d5a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f8e82826040518060200160405280600081525061332b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fdb6126a6565b8786866040518563ffffffff1660e01b8152600401612ffd9493929190614b1c565b602060405180830381600087803b15801561301757600080fd5b505af192505050801561304857506040513d601f19601f820116820180604052508101906130459190614b7d565b60015b6130c2573d8060008114613078576040519150601f19603f3d011682016040523d82523d6000602084013e61307d565b606091505b506000815114156130ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054613124906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054613150906141c6565b801561319d5780601f106131725761010080835404028352916020019161319d565b820191906000526020600020905b81548152906001019060200180831161318057829003601f168201915b5050505050905090565b606060008214156131ef576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613303565b600082905060005b6000821461322157808061320a90614374565b915050600a8261321a9190614bd9565b91506131f7565b60008167ffffffffffffffff81111561323d5761323c613b3c565b5b6040519080825280601f01601f19166020018201604052801561326f5781602001600182028036833780820191505090505b5090505b600085146132fc576001826132889190614c0a565b9150600a856132979190614c3e565b60306132a391906144bb565b60f81b8183815181106132b9576132b8614316565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132f59190614bd9565b9450613273565b8093505050505b919050565b600082613315858461333d565b1490509392505050565b50505050565b50505050565b61333883838360016133b2565b505050565b60008082905060005b84518110156133a757600085828151811061336457613363614316565b5b602002602001015190508083116133865761337f8382613780565b9250613393565b6133908184613780565b92505b50808061339f90614374565b915050613346565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561341f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561345a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613467600086838761331f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561363157506136308773ffffffffffffffffffffffffffffffffffffffff16612f92565b5b156136f7575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136a66000888480600101955088612fb5565b6136dc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156136375782600054146136f257600080fd5b613763565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156136f8575b8160008190555050506137796000868387613325565b5050505050565b600082600052816020526040600020905092915050565b8280546137a3906141c6565b90600052602060002090601f0160209004810192826137c5576000855561380c565b82601f106137de57805160ff191683800117855561380c565b8280016001018555821561380c579182015b8281111561380b5782518255916020019190600101906137f0565b5b5090506138199190613860565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613879576000816000905550600101613861565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6138c681613891565b81146138d157600080fd5b50565b6000813590506138e3816138bd565b92915050565b6000602082840312156138ff576138fe613887565b5b600061390d848285016138d4565b91505092915050565b60008115159050919050565b61392b81613916565b82525050565b60006020820190506139466000830184613922565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561398657808201518184015260208101905061396b565b83811115613995576000848401525b50505050565b6000601f19601f8301169050919050565b60006139b78261394c565b6139c18185613957565b93506139d1818560208601613968565b6139da8161399b565b840191505092915050565b600060208201905081810360008301526139ff81846139ac565b905092915050565b6000819050919050565b613a1a81613a07565b8114613a2557600080fd5b50565b600081359050613a3781613a11565b92915050565b600060208284031215613a5357613a52613887565b5b6000613a6184828501613a28565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a9582613a6a565b9050919050565b613aa581613a8a565b82525050565b6000602082019050613ac06000830184613a9c565b92915050565b613acf81613a8a565b8114613ada57600080fd5b50565b600081359050613aec81613ac6565b92915050565b60008060408385031215613b0957613b08613887565b5b6000613b1785828601613add565b9250506020613b2885828601613a28565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b748261399b565b810181811067ffffffffffffffff82111715613b9357613b92613b3c565b5b80604052505050565b6000613ba661387d565b9050613bb28282613b6b565b919050565b600067ffffffffffffffff821115613bd257613bd1613b3c565b5b613bdb8261399b565b9050602081019050919050565b82818337600083830152505050565b6000613c0a613c0584613bb7565b613b9c565b905082815260208101848484011115613c2657613c25613b37565b5b613c31848285613be8565b509392505050565b600082601f830112613c4e57613c4d613b32565b5b8135613c5e848260208601613bf7565b91505092915050565b600060208284031215613c7d57613c7c613887565b5b600082013567ffffffffffffffff811115613c9b57613c9a61388c565b5b613ca784828501613c39565b91505092915050565b613cb981613a07565b82525050565b6000602082019050613cd46000830184613cb0565b92915050565b600080600060608486031215613cf357613cf2613887565b5b6000613d0186828701613add565b9350506020613d1286828701613add565b9250506040613d2386828701613a28565b9150509250925092565b6000819050919050565b613d4081613d2d565b82525050565b6000602082019050613d5b6000830184613d37565b92915050565b600060208284031215613d7757613d76613887565b5b6000613d8584828501613add565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613dc381613a07565b82525050565b6000613dd58383613dba565b60208301905092915050565b6000602082019050919050565b6000613df982613d8e565b613e038185613d99565b9350613e0e83613daa565b8060005b83811015613e3f578151613e268882613dc9565b9750613e3183613de1565b925050600181019050613e12565b5085935050505092915050565b60006020820190508181036000830152613e668184613dee565b905092915050565b613e7781613d2d565b8114613e8257600080fd5b50565b600081359050613e9481613e6e565b92915050565b600060208284031215613eb057613eaf613887565b5b6000613ebe84828501613e85565b91505092915050565b613ed081613916565b8114613edb57600080fd5b50565b600081359050613eed81613ec7565b92915050565b60008060408385031215613f0a57613f09613887565b5b6000613f1885828601613add565b9250506020613f2985828601613ede565b9150509250929050565b600067ffffffffffffffff821115613f4e57613f4d613b3c565b5b613f578261399b565b9050602081019050919050565b6000613f77613f7284613f33565b613b9c565b905082815260208101848484011115613f9357613f92613b37565b5b613f9e848285613be8565b509392505050565b600082601f830112613fbb57613fba613b32565b5b8135613fcb848260208601613f64565b91505092915050565b60008060008060808587031215613fee57613fed613887565b5b6000613ffc87828801613add565b945050602061400d87828801613add565b935050604061401e87828801613a28565b925050606085013567ffffffffffffffff81111561403f5761403e61388c565b5b61404b87828801613fa6565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261407757614076613b32565b5b8235905067ffffffffffffffff81111561409457614093614057565b5b6020830191508360208202830111156140b0576140af61405c565b5b9250929050565b6000806000604084860312156140d0576140cf613887565b5b60006140de86828701613a28565b935050602084013567ffffffffffffffff8111156140ff576140fe61388c565b5b61410b86828701614061565b92509250509250925092565b6000806040838503121561412e5761412d613887565b5b600061413c85828601613add565b925050602061414d85828601613add565b9150509250929050565b6000806040838503121561416e5761416d613887565b5b600061417c85828601613a28565b925050602061418d85828601613add565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141de57607f821691505b602082108114156141f2576141f1614197565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061422e602083613957565b9150614239826141f8565b602082019050919050565b6000602082019050818103600083015261425d81614221565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061429a601f83613957565b91506142a582614264565b602082019050919050565b600060208201905081810360008301526142c98161428d565b9050919050565b600081905092915050565b50565b60006142eb6000836142d0565b91506142f6826142db565b600082019050919050565b600061430c826142de565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061437f82613a07565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143b2576143b1614345565b5b600182019050919050565b7f4d757374206d696e74206174206c65617374206f6e6521000000000000000000600082015250565b60006143f3601783613957565b91506143fe826143bd565b602082019050919050565b60006020820190508181036000830152614422816143e6565b9050919050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360008201527f20696e2061207472616e73616374696f6e000000000000000000000000000000602082015250565b6000614485603183613957565b915061449082614429565b604082019050919050565b600060208201905081810360008301526144b481614478565b9050919050565b60006144c682613a07565b91506144d183613a07565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561450657614505614345565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000614547601483613957565b915061455282614511565b602082019050919050565b600060208201905081810360008301526145768161453a565b9050919050565b600061458882613a07565b915061459383613a07565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145cc576145cb614345565b5b828202905092915050565b7f4e6f7420656e6f75676820457468657221000000000000000000000000000000600082015250565b600061460d601183613957565b9150614618826145d7565b602082019050919050565b6000602082019050818103600083015261463c81614600565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000614679601783613957565b915061468482614643565b602082019050919050565b600060208201905081810360008301526146a88161466c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061470b602f83613957565b9150614716826146af565b604082019050919050565b6000602082019050818103600083015261473a816146fe565b9050919050565b600081905092915050565b60006147578261394c565b6147618185614741565b9350614771818560208601613968565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461479f816141c6565b6147a98186614741565b945060018216600081146147c457600181146147d557614808565b60ff19831686528186019350614808565b6147de8561477d565b60005b83811015614800578154818901526001820191506020810190506147e1565b838801955050505b50505092915050565b600061481d828661474c565b9150614829828561474c565b91506148358284614792565b9150819050949350505050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b600061489e602283613957565b91506148a982614842565b604082019050919050565b600060208201905081810360008301526148cd81614891565b9050919050565b7f4d6178696d756d204e465473207065722061646472657373206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614930602183613957565b915061493b826148d4565b604082019050919050565b6000602082019050818103600083015261495f81614923565b9050919050565b60008160601b9050919050565b600061497e82614966565b9050919050565b600061499082614973565b9050919050565b6149a86149a382613a8a565b614985565b82525050565b60006149ba8284614997565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b60006149ff600e83613957565b9150614a0a826149c9565b602082019050919050565b60006020820190508181036000830152614a2e816149f2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a91602683613957565b9150614a9c82614a35565b604082019050919050565b60006020820190508181036000830152614ac081614a84565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614aee82614ac7565b614af88185614ad2565b9350614b08818560208601613968565b614b118161399b565b840191505092915050565b6000608082019050614b316000830187613a9c565b614b3e6020830186613a9c565b614b4b6040830185613cb0565b8181036060830152614b5d8184614ae3565b905095945050505050565b600081519050614b77816138bd565b92915050565b600060208284031215614b9357614b92613887565b5b6000614ba184828501614b68565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614be482613a07565b9150614bef83613a07565b925082614bff57614bfe614baa565b5b828204905092915050565b6000614c1582613a07565b9150614c2083613a07565b925082821015614c3357614c32614345565b5b828203905092915050565b6000614c4982613a07565b9150614c5483613a07565b925082614c6457614c63614baa565b5b82820690509291505056fea2646970667358221220e93647f6c37b092726d49e4d0f5db72ed38ae06aabb6add4bcb333e60069ee9164736f6c63430008090033

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.