ETH Price: $2,715.77 (+1.76%)
Gas: 0.77 Gwei

Token

Zelenskiy NFT (ZFT)
 

Overview

Max Total Supply

9,510 ZFT

Holders

127

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ZFT
0x95d53b02105f0efa39a888ef4f44ee4dd29c0767
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Zelenskiy NFT token contract has migrated to 0x1090144d6F2B77e127620fD5503be12f45B8d6C3.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ZelenskiyNFT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
byzantium EvmVersion
File 1 of 13 : ZelenskiyNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import "./ERC721X.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract ZelenskiyNFT is ERC721X, Ownable {

    enum RevealStatus{
        MINT,
        REVEAL,
        REVEALED
    }

    struct PayableAddress {
        address payable addr;
        uint256 share;
    }

    event Paid(address indexed _from, uint256 _value, uint8 _whitelist);
    event Charity(address indexed _to, uint256 _value, bytes data);
    event Withdrawal(address indexed _to, uint256 _value, bytes data);
    event UriChange(string newURI);
    event WhitelistStatusChange(bool status);
    event MintStopped(bool status);
    event NewRoot(bytes32 root);
    event Payout(uint256 amount);
    event Refund(address indexed _to, uint256 amount, bytes data);
    event MintTimeSet(uint _start, uint _end);
    event LockTimerStarted(uint _start, uint _end);
    event AdminMinted(uint256 amount);
    event Distribution(uint256 _value, address _to, uint256 _amount);
    event Deposit(uint256 _value, address _from);

    uint256 public constant priceDefault = 0.2 ether;
    uint256 public constant priceWhitelist = 0.15 ether;

    uint256 public constant amountWhitelist = 1;
    uint256 public constant amountDefault = 3;

    uint256 public constant maxTotalSupply = 1000;
    uint256 public constant communityMintSupply = 500;
    uint256 private communitySold = 0;

    string private theBaseURI = "https://zelenskiynft.mypinata.cloud/ipfs/QmVHUj9uM7HxK5xSi2vbip9ySXYkLBEPWecQeJcbVKzBmH/";

    uint256 private charitySum = 0;
    uint256 private teamSum = 0;
    uint256 private saleSum = 0;

    mapping(address => uint256) private mints;
    mapping(address => bool) private whitelistClaimed;
    mapping(address => bool) private communityWhitelistClaimed;

    bytes32 private root;
    bytes32 private communityRoot;
    bool private communityRootIsSet = false;
    bool private rootIsSet = false;

    RevealStatus private revealStatus = RevealStatus.REVEAL;

    uint public constant whitelistStartTime = 1653598800;
    uint public constant whitelistEndTime = 1653600600;
    uint public constant publicMintStartTime = 1653601500;
    uint public constant whitelist2StartTime = 1654189200;

    address public constant communityWallet = 0x949c48b29b3F5e75ff30bd8dA4bA6de23Aa34f91;
    address public constant multisigOwnerWallet = 0x15E6733Be8401d33b4Cf542411d400c823DF6187;

    bool private mintStopped = false;

    bool private adminMinted = false;

    uint private functionLockTime = 0;

    bool private lockReturns = false;

    address public constant charityUA   = 0x3A0106911013eca7A0675d8F1ba7F404eD973cAb;
    address public constant charityEU   = 0x78042877DF422a9769E0fE1748FEf35d4A4718a0;
    address public constant liquidity   = 0x7A6B855D613C136098de4FEd8725DF7A7c2f7F5c;
    address public constant marketing   = 0x777C680b055cF6E97506B42DDeF4063061d7a5b4;
    address public constant development = 0xaE987CfFaf8149EFff92546ca399D41b4Da6c57B;
    address public constant team        = 0xBedc8cDC12047465690cbc358C69b2ea671217ac;

    constructor() ERC721X("Zelenskiy NFT", "ZFT") {}


    modifier ownerIsMultisig() {
        require(owner() == multisigOwnerWallet, "Owner is not multisignature wallet");
        _;
    }

    modifier whitelist2Started(){
        require(block.timestamp >= whitelist2StartTime, "Whitelist2 not started yet");
        _;
    }

    modifier whitelistActive() {
        require(whitelistStartTime != 0 && whitelistEndTime != 0, "Mint start time is not set");
        require(block.timestamp >= whitelistStartTime && block.timestamp <= whitelistEndTime, "Mint not started yet");
        _;
    }

    modifier whitelistEnded() {
        require(whitelistStartTime != 0 && whitelistEndTime != 0, "Mint start time is not set");
        require(block.timestamp >= whitelistEndTime, "Public mint not started yet");
        _;
    }

    modifier publicMintStarted() {
        require(block.timestamp >= publicMintStartTime, "Public mint not started yet");
        _;
    }

    // Mint remainder of collection to list on opensea
    function mintRemainder(uint256 amount) public onlyOwner ownerIsMultisig {
        require(mintStopped, "Mint not stopped yet");
        _mint(communityWallet, amount);
    }

    function buy(uint256 amount, bytes32[] calldata _proof) public payable whitelistActive {
        require(msg.sender == tx.origin, "payment not allowed from contract");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_proof, root, leaf), "Address not in whitelist");
        require(whitelistClaimed[msg.sender] == false, "Whitelist already claimed");
        
        require(amount <= amountWhitelist, "too much for whitelist");
        require(mints[msg.sender] + amount <= amountWhitelist, "too much for whitelist");
        
        require(nextId + amount <= maxTotalSupply, "Maximum supply reached");
        uint256 price;
        price = priceWhitelist;

        require(msg.value >= price * amount, "Not enough eth");

        if(msg.value > price * amount){
            uint256 refundAmount = msg.value - price * amount;
            (bool sent, bytes memory data) = msg.sender.call{value: refundAmount}("refund");
            require(sent, "Refund failed");
            emit Refund(msg.sender, refundAmount, data);
        }
        
        mints[msg.sender] += amount;

        saleSum += price * amount;

        whitelistClaimed[msg.sender] = true;

        _mint(msg.sender, amount);
    }

    function buyDefault(uint256 amount) public payable whitelistEnded {
        require(mintStopped == false, "Mint is stopped");
        require(msg.sender == tx.origin, "payment not allowed from this contract");
        require(mints[msg.sender] + amount <= amountDefault, "too much mints for this wallet");

        require(nextId + amount <= maxTotalSupply - communityMintSupply, "Maximum supply reached");
        uint256 price;
        price = priceDefault;

        require(msg.value >= price * amount, "Not enough eth");

        if(msg.value > price * amount){
            uint256 refundAmount = msg.value - price * amount;
            (bool sent, bytes memory data) = msg.sender.call{value: refundAmount}("refund");
            require(sent, "Refund failed");
            emit Refund(msg.sender, refundAmount, data);
        }

        mints[msg.sender] += amount;

        saleSum += price * amount;

        _mint(msg.sender, amount);
    }

    function communityClaim(bytes32[] calldata _proof) public payable whitelist2Started {
        require(msg.sender == tx.origin, "payment not allowed from this contract");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_proof, communityRoot, leaf), "Address not in whitelist");
        require(communityWhitelistClaimed[msg.sender] == false, "Whitelist already claimed");

        require(communitySold <= 500, "Maximum community mint reached");

        mints[msg.sender] += 1;
        communityWhitelistClaimed[msg.sender] = true;

        communitySold += 1;

        _mint(msg.sender, 1);
    }

    function setCommunityRoot(bytes32 _newRoot) public onlyOwner ownerIsMultisig {
        communityRoot = _newRoot;
        emit NewRoot(_newRoot);
    }

    function getCommunitySold() public view returns(uint256) {
        return communitySold;
    }

    // Mint to previous contract buyers
    function distribution(address to, uint256 amount, uint256 value) public payable onlyOwner {
        require(lockReturns == false, "Return locked");
        emit Distribution(value, to, amount);
       _mint(to, amount);
    }

    function setLockReturns() public onlyOwner {
        lockReturns = true; 
    }

    function setBaseURI(string memory newBaseURI) public onlyOwner ownerIsMultisig {
        if(functionLockTime == 0){
            functionLockTime = block.timestamp;
            emit LockTimerStarted(functionLockTime, functionLockTime + 48 hours);
            return;
        }else{
            require(block.timestamp >= functionLockTime + 48 hours, "48 hours not passed yet");
            functionLockTime = 0;
        }
        require(revealStatus != RevealStatus.REVEALED, "URI modifications after reveal are prohibited");
        theBaseURI = newBaseURI;
        emit UriChange(newBaseURI);
        if(revealStatus == RevealStatus.MINT){
            revealStatus = RevealStatus.REVEAL;
        }else{
            revealStatus = RevealStatus.REVEALED;
        }
    }

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

    function sendEther(address payable addr, uint256 amount, bool isCharity) private {
        (bool sent, bytes memory data) = addr.call{value: amount}("");
        require(sent, "Failed to send ether");
        if(isCharity){
            emit Charity(addr, amount, data);
            charitySum += amount;
        }else{
            emit Withdrawal(addr, amount, data);
            teamSum += amount;
        }
    }

    function pay() public onlyOwner whitelistEnded ownerIsMultisig {
        if(functionLockTime == 0){
            functionLockTime = block.timestamp;
            emit LockTimerStarted(functionLockTime, functionLockTime + 48 hours);
            return;
        }else{
            require(block.timestamp >= functionLockTime + 48 hours, "48 hours not passed yet");
            functionLockTime = 0;
        }
        uint256 balance = address(this).balance;
        emit Payout(balance);
        

        sendEther(payable(charityUA), balance/2, true);
        sendEther(payable(charityEU), balance/10, true);
        
        sendEther(payable(liquidity), balance*5/100, false);
        sendEther(payable(marketing), balance/5, false);
        sendEther(payable(development), balance/10, false);
        sendEther(payable(team), balance*5/100, false);
    }

    function getEthOnContract() public view returns (uint256) {
        return address(this).balance;
    }

    function checkAddressInWhiteList(bytes32[] calldata _proof) view public returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(_proof, root, leaf);
    }

    function getWhitelistStatus() view public returns (bool) {
        return block.timestamp >= whitelistStartTime && block.timestamp <= whitelistEndTime;
    }

    function getCharitySum() view public returns (uint256) {
        return charitySum;
    }

    function getTeamSum() view public returns (uint256) {
        return teamSum;
    }

    function setRoot(bytes32 _newRoot) public onlyOwner ownerIsMultisig {
        require(rootIsSet == false, "Root already set");
        rootIsSet = true;
        root = _newRoot;
        emit NewRoot(_newRoot);
    }

    function storeEth() public payable {
        require(msg.sender == communityWallet, "Wrong address");
    }

    function checkWallet(address _from) private pure returns (bool) {
        return _from == charityUA ||
            _from == charityEU ||
            _from == liquidity ||
            _from == marketing ||
            _from == development ||
            _from == team;
    }

    fallback() external payable {
        if(checkWallet(msg.sender)){
            emit Deposit(msg.value, msg.sender);
            return;
        }
        require(!mintStopped, "Mint stopped");
        require(msg.value >= 0.2 ether, "Not enough ether");
        uint256 amount = 0;

        if(msg.value == priceDefault){
            amount = 1;
        }else if(msg.value > priceDefault*2 && msg.value <= priceDefault*3){
            amount = 2;
        }else if(msg.value >= priceDefault*3){
            amount = 3;
        }
        buyDefault(amount);
    }

    receive() external payable {
        if(checkWallet(msg.sender)){
            emit Deposit(msg.value, msg.sender);
            return;
        }
        require(!mintStopped, "Mint stopped");
        require(msg.value >= priceDefault, "Not enough ether");
        uint256 amount = 0;

        if(msg.value == priceDefault){
            amount = 1;
        }else if(msg.value > priceDefault*2 && msg.value <= priceDefault*3){
            amount = 2;
        }else if(msg.value >= priceDefault*3){
            amount = 3;
        }
        buyDefault(amount);
    }

    function stopMint() public onlyOwner ownerIsMultisig {
        if(functionLockTime == 0){
            functionLockTime = block.timestamp;
            emit LockTimerStarted(functionLockTime, functionLockTime + 1 hours);
            return;
        }else{
            require(block.timestamp >= functionLockTime + 1 hours, "Hour not passed yet");
            mintStopped = true;
            functionLockTime = 0;
            emit MintStopped(true);
        }
    }

    function getCommunityMintAmount() public view returns(uint256) {
        return communitySold;
    }
}

File 2 of 13 : ERC721X.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension and the Enumerable extension
 *
 * @dev Only allows token IDs are minted serially starting from token ID 1
 *
 * @dev Does not support burning tokens or in any way changing the ownership of a token
 *      to address(0)
 */
contract ERC721X is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
  using Address for address;
  using Strings for uint256;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

  /**
   * @dev Returns next token ID to be mint
   */
  uint256 public nextId = 1;

  /**
   * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. It
   *      also sets a `maxTotalSupply` variable to cap the tokens to ever be created
   */
  constructor(string memory name_, string memory symbol_) {
    _name = name_;
    _symbol = symbol_;
  }

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

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

    uint256 count = 0;

    for(uint256 i = 1; _exists(i); i++) {
      if(_owners[i] == owner) {
        count++;
        if(_owners[i + 1] == address(0) && _exists(i + 1)) count++;
      }
    }

    return count;
  }

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

    return _owners[tokenId];
  }

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

  /**
   * @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 virtual override {
    address owner = ownerOf(tokenId);
    require(to != owner, "ERC721X: approval to current owner");

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

    _approve(to, tokenId);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

  /**
   * @dev See {IERC721-transferFrom}.
   */
  function transferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public virtual override {
    //solhint-disable-next-line max-line-length
    require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721X: transfer caller is not owner nor approved");

    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public virtual override {
    require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721X: transfer caller is not owner nor approved");
    _safeTransfer(from, to, tokenId, _data);
  }

  /**
   * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
   * are aware of the ERC721 protocol to prevent tokens from being forever locked.
   *
   * `_data` is additional data, it has no specified format and it is sent in call to `to`.
   *
   * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
   * implement alternative mechanisms to perform token transfer, such as signature-based.
   *
   * Requirements:
   *
   * - `from` cannot be the zero address.
   * - `to` cannot be the zero address.
   * - `tokenId` token must exist and be owned by `from`.
   * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
   *
   * Emits a {Transfer} event.
   */
  function _safeTransfer(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) internal virtual {
    _transfer(from, to, tokenId);
    require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721X: transfer to non ERC721Receiver implementer");
  }

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

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

  /**
   * @dev Safely mints the token with next consecutive ID and transfers it to `to`. Setting
   *      `amount` to `true` will mint another nft.
   *
   * Requirements:
   *
   * - `tokenId` must not exist.
   * - `maxTotalSupply` maximum total supply has not been reached
   * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(address to, uint256 amount) internal virtual {
    _safeMint(to, amount, "");
  }

  /**
   * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
   * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
   */
  function _safeMint(
    address to,
    uint256 amount,
    bytes memory _data
  ) internal virtual {
    _mint(to, amount);

    uint256 n = amount;

    for(uint256 i = 0; i < n; i++) {
      require(
        _checkOnERC721Received(address(0), to, nextId - i - 1, _data),
        "ERC721X: transfer to non ERC721Receiver implementer"
      );
    }
  }

  /**
   * @dev Mints the token with next consecutive ID and transfers it to `to`. Setting
   *      `amount` to `true` will mint another nft.
   *
   * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `maxTotalSupply` maximum total supply has not been reached
   *
   * Emits a {Transfer} event.
   */
  function _mint(address to, uint256 amount) internal virtual {
    // The below calculations do not depend on user input and
    // are very hard to overflow (nextId must be >= 2^256-2 for
    // that to happen) so using `unchecked` as a means of saving
    // gas is safe here
    unchecked {
      require(to != address(0), "ERC721X: mint to the zero address");

      uint256 n = amount;

      for(uint256 i = 0; i < n; i++) {
        _beforeTokenTransfer(address(0), to, nextId + i);
        emit Transfer(address(0), to, nextId + i);
        _owners[nextId + i] = to;
      }

      nextId += n;
    }
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) internal virtual {
    // The below calculations are very hard to overflow (nextId must
    // be = 2^256-1 for that to happen) so using `unchecked` as
    // a means of saving gas is safe here
    unchecked {
      require(
        ownerOf(tokenId) == from,
        "ERC721X: transfer of token that is not own"
      );
      require(to != address(0), "ERC721X: transfer to the zero address");

      _beforeTokenTransfer(from, to, tokenId);

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

      if(_owners[tokenId] == address(0)) {
        _owners[tokenId] = to;
      }

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

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

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

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

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

  /**
   * @dev See {IEnumerableERC721-totalSupply}.
   */
  function totalSupply() external view returns (uint256) {
    return nextId - 1;
  }

  /**
   * @dev See {IEnumerableERC721-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) external view returns (uint256) {
    require(_exists(index + 1), "ERC721X: global index out of bounds");

    return index + 1;
  }

  /**
   * @dev See {IEnumerableERC721-tokenOfOwnerByIndex}.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256) {
    require(owner != address(0), "ERC721X: balance query for the zero address");

    uint256 count = 0;
    uint256 i = 1;

    for(; _exists(i) && count < index + 1; i++) {
      if(_owners[i] == owner) {
        count++;
        if(_owners[i + 1] == address(0) && count < index + 1 && _exists(i + 1)) {
          count++;
          i++;
        }
      }
    }

    if(count == index + 1) return i - 1;
    else revert("ERC721X: owner index out of bounds");
  }
}

File 3 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);
}

File 4 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 5 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 6 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 7 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 8 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 9 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 10 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AdminMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Charity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"},{"indexed":false,"internalType":"address","name":"_from","type":"address"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"},{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Distribution","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_start","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_end","type":"uint256"}],"name":"LockTimerStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"MintStopped","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_start","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_end","type":"uint256"}],"name":"MintTimeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"NewRoot","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":false,"internalType":"uint256","name":"_value","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"_whitelist","type":"uint8"}],"name":"Paid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Payout","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Refund","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"UriChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"WhitelistStatusChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Withdrawal","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"amountDefault","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountWhitelist","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":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buyDefault","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"charityEU","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityUA","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"checkAddressInWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"communityClaim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"communityMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"development","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"distribution","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCharitySum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCommunityMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCommunitySold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEthOnContract","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTeamSum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"liquidity","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintRemainder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"multisigOwnerWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"priceDefault","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setCommunityRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setLockReturns","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"storeEth","outputs":[],"stateMutability":"payable","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":"team","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelist2StartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6001600555600060075561010060405260586080818152906200429860a039805162000034916008916020909101906200018f565b5060006009819055600a819055600b8190556011805464ffffffffff1916620100001790556012556013805460ff191690553480156200007357600080fd5b50604080518082018252600d81527f5a656c656e736b6979204e46540000000000000000000000000000000000000060208083019182528351808501909452600384527f5a46540000000000000000000000000000000000000000000000000000000000908401528151919291620000ee916000916200018f565b508051620001049060019060208401906200018f565b505050620001336200012462000139640100000000026401000000009004565b6401000000006200013d810204565b6200028a565b3390565b60068054600160a060020a03838116600160a060020a0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019d9062000235565b90600052602060002090601f016020900481019282620001c157600085556200020c565b82601f10620001dc57805160ff19168380011785556200020c565b828001600101855582156200020c579182015b828111156200020c578251825591602001919060010190620001ef565b506200021a9291506200021e565b5090565b5b808211156200021a57600081556001016200021f565b6002810460018216806200024a57607f821691505b60208210810362000284577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b613ffe806200029a6000396000f3fe608060405260043610610397576000357c0100000000000000000000000000000000000000000000000000000000900480637a0767d0116101ee578063c4a9329e1161011f578063d9ebc352116100bd578063e985e9c51161008c578063e985e9c514610b16578063ebdfd72214610b5f578063f2fde38b14610b77578063f91dbf5114610b9757610522565b8063d9ebc35214610a9f578063dab5f34014610ac7578063dcba94f514610ae7578063e164e9ed14610b0357610522565b8063d1224f08116100f9578063d1224f081461065a578063d290ae5e14610a5e578063d3cf00a314610a72578063d558296514610a8a57610522565b8063c4a9329e146109f6578063c757483914610a16578063c87b56dd14610a3e57610522565b80638da5cb5b1161018c5780639c76b14b116101665780639c76b14b14610981578063a22cb465146109a1578063a3569a79146109c1578063b88d4fde146109d657610522565b80638da5cb5b146109365780639292caaf1461095457806395d89b411461096c57610522565b806383d88c96116101c857806383d88c96146108d157806385f2aef2146108e6578063887129d61461090e57806388bccf281461092157610522565b80637a0767d01461086c5780637b929c271461088157806381d1f938146108a957610522565b8063394bfa6b116102c85780635a19b4db11610266578063682a2e1011610240578063682a2e10146107ff5780636ec0578a1461081757806370a0823114610837578063715018a61461085757610522565b80635a19b4db146107b657806361b8ce8c146107c95780636352211e146107df57610522565b80634f6ccce7116102a25780634f6ccce7146107595780635074f3011461077957806355f804b31461078e57806357277b92146107ae57610522565b8063394bfa6b146106fe5780633e1c908e1461072657806342842e0e1461073957610522565b806323b872dd116103355780632ab4d0521161030f5780632ab4d052146106845780632d3e474a1461069a5780632f745c59146106c25780632fff1796146106e257610522565b806323b872dd1461063a578063245b01aa1461065a57806325c1f1671461066f57610522565b8063095ea7b311610371578063095ea7b3146105ba57806318160ddd146105da5780631a686502146105fd5780631b9265b81461062557610522565b806301ffc9a71461052b57806306fdde0314610560578063081812fc1461058257610522565b36610522576103a533610bad565b156103e457604080513481523360208201527f4bcc17093cdf51079c755de089be5a85e70fa374ec656c194480fbdcda224a53910160405180910390a1005b6011546301000000900460ff16156104465760405160e560020a62461bcd02815260206004820152600c60248201527f4d696e742073746f70706564000000000000000000000000000000000000000060448201526064015b60405180910390fd5b6702c68af0bb1400003410156104a15760405160e560020a62461bcd02815260206004820152601060248201527f4e6f7420656e6f75676820657468657200000000000000000000000000000000604482015260640161043d565b60006702c68af0bb14000034036104ba57506001610517565b6104cd6702c68af0bb14000060026137bf565b341180156104ed57506104e96702c68af0bb14000060036137bf565b3411155b156104fa57506002610517565b61050d6702c68af0bb14000060036137bf565b3410610517575060035b61052081610c98565b005b6103a533610bad565b34801561053757600080fd5b5061054b6105463660046137f4565b611048565b60405190151581526020015b60405180910390f35b34801561056c57600080fd5b50610575611117565b6040516105579190613869565b34801561058e57600080fd5b506105a261059d36600461387c565b6111a9565b604051600160a060020a039091168152602001610557565b3480156105c657600080fd5b506105206105d53660046138b1565b611245565b3480156105e657600080fd5b506105ef61137c565b604051908152602001610557565b34801561060957600080fd5b506105a2737a6b855d613c136098de4fed8725df7a7c2f7f5c81565b34801561063157600080fd5b50610520611392565b34801561064657600080fd5b506105206106553660046138db565b61164f565b34801561066657600080fd5b506007546105ef565b34801561067b57600080fd5b506009546105ef565b34801561069057600080fd5b506105ef6103e881565b3480156106a657600080fd5b506105a273777c680b055cf6e97506b42ddef4063061d7a5b481565b3480156106ce57600080fd5b506105ef6106dd3660046138b1565b611683565b3480156106ee57600080fd5b506105ef670214e8348c4f000081565b34801561070a57600080fd5b506105a27315e6733be8401d33b4cf542411d400c823df618781565b61052061073436600461387c565b610c98565b34801561074557600080fd5b506105206107543660046138db565b611828565b34801561076557600080fd5b506105ef61077436600461387c565b611843565b34801561078557600080fd5b506105ef600181565b34801561079a57600080fd5b506105206107a93660046139a6565b6118d3565b610520611b41565b6105206107c4366004613a3a565b611ba7565b3480156107d557600080fd5b506105ef60055481565b3480156107eb57600080fd5b506105a26107fa36600461387c565b6120ee565b34801561080b57600080fd5b506105ef636298ec9081565b34801561082357600080fd5b5061052061083236600461387c565b61218a565b34801561084357600080fd5b506105ef610852366004613a86565b612281565b34801561086357600080fd5b5061052061235a565b34801561087857600080fd5b5061054b612391565b34801561088d57600080fd5b506105a273ae987cffaf8149efff92546ca399d41b4da6c57b81565b3480156108b557600080fd5b506105a2733a0106911013eca7a0675d8f1ba7f404ed973cab81565b3480156108dd57600080fd5b506105206123ae565b3480156108f257600080fd5b506105a273bedc8cdc12047465690cbc358c69b2ea671217ac81565b61052061091c366004613aa1565b6123ea565b34801561092d57600080fd5b50600a546105ef565b34801561094257600080fd5b50600654600160a060020a03166105a2565b34801561096057600080fd5b506105ef63628fea5081565b34801561097857600080fd5b506105756124c0565b34801561098d57600080fd5b5061052061099c36600461387c565b6124cf565b3480156109ad57600080fd5b506105206109bc366004613ad4565b612588565b3480156109cd57600080fd5b506105ef600381565b3480156109e257600080fd5b506105206109f1366004613b10565b612593565b348015610a0257600080fd5b5061054b610a11366004613b8c565b6125ce565b348015610a2257600080fd5b506105a273949c48b29b3f5e75ff30bd8da4ba6de23aa34f9181565b348015610a4a57600080fd5b50610575610a5936600461387c565b61264f565b348015610a6a57600080fd5b5030316105ef565b348015610a7e57600080fd5b506105ef63628ff4dc81565b348015610a9657600080fd5b5061052061272b565b348015610aab57600080fd5b506105a27378042877df422a9769e0fe1748fef35d4a4718a081565b348015610ad357600080fd5b50610520610ae236600461387c565b612890565b348015610af357600080fd5b506105ef6702c68af0bb14000081565b610520610b11366004613b8c565b6129ae565b348015610b2257600080fd5b5061054b610b31366004613bce565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205460ff1690565b348015610b6b57600080fd5b506105ef63628ff15881565b348015610b8357600080fd5b50610520610b92366004613a86565b612c0d565b348015610ba357600080fd5b506105ef6101f481565b6000600160a060020a038216733a0106911013eca7a0675d8f1ba7f404ed973cab1480610bf65750600160a060020a0382167378042877df422a9769e0fe1748fef35d4a4718a0145b80610c1d5750600160a060020a038216737a6b855d613c136098de4fed8725df7a7c2f7f5c145b80610c445750600160a060020a03821673777c680b055cf6e97506b42ddef4063061d7a5b4145b80610c6b5750600160a060020a03821673ae987cffaf8149efff92546ca399d41b4da6c57b145b80610c925750600160a060020a03821673bedc8cdc12047465690cbc358c69b2ea671217ac145b92915050565b63628ff158421015610cef5760405160e560020a62461bcd02815260206004820152601b60248201527f5075626c6963206d696e74206e6f742073746172746564207965740000000000604482015260640161043d565b6011546301000000900460ff1615610d4c5760405160e560020a62461bcd02815260206004820152600f60248201527f4d696e742069732073746f707065640000000000000000000000000000000000604482015260640161043d565b333214610d6e5760405160e560020a62461bcd02815260040161043d90613c01565b336000908152600c6020526040902054600390610d8c908390613c5e565b1115610ddd5760405160e560020a62461bcd02815260206004820152601e60248201527f746f6f206d756368206d696e747320666f7220746869732077616c6c65740000604482015260640161043d565b610deb6101f46103e8613c76565b81600554610df99190613c5e565b1115610e4a5760405160e560020a62461bcd02815260206004820152601660248201527f4d6178696d756d20737570706c79207265616368656400000000000000000000604482015260640161043d565b6702c68af0bb140000610e5d82826137bf565b341015610eaf5760405160e560020a62461bcd02815260206004820152600e60248201527f4e6f7420656e6f75676820657468000000000000000000000000000000000000604482015260640161043d565b610eb982826137bf565b341115610ff4576000610ecc83836137bf565b610ed69034613c76565b905060008033600160a060020a031683604051610f16907f726566756e640000000000000000000000000000000000000000000000000000815260060190565b60006040518083038185875af1925050503d8060008114610f53576040519150601f19603f3d011682016040523d82523d6000602084013e610f58565b606091505b509150915081610fad5760405160e560020a62461bcd02815260206004820152600d60248201527f526566756e64206661696c656400000000000000000000000000000000000000604482015260640161043d565b33600160a060020a03167ff31f998394417c30993c15334c5a7008d1d564c61d3c703bc19976c8d81f05db8483604051610fe8929190613c8d565b60405180910390a25050505b336000908152600c602052604081208054849290611013908490613c5e565b90915550611023905082826137bf565b600b60008282546110349190613c5e565b9091555061104490503383612cc2565b5050565b6000600160e060020a031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806110ab5750600160e060020a031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806110df5750600160e060020a031982167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610c9257507f01ffc9a700000000000000000000000000000000000000000000000000000000600160e060020a0319831614610c92565b60606000805461112690613ca6565b80601f016020809104026020016040519081016040528092919081815260200182805461115290613ca6565b801561119f5780601f106111745761010080835404028352916020019161119f565b820191906000526020600020905b81548152906001019060200180831161118257829003601f168201915b5050505050905090565b60006111b482612dd9565b6112295760405160e560020a62461bcd02815260206004820152602d60248201527f455243373231583a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e00000000000000000000000000000000000000606482015260840161043d565b50600090815260036020526040902054600160a060020a031690565b6000611250826120ee565b905080600160a060020a031683600160a060020a0316036112dc5760405160e560020a62461bcd02815260206004820152602260248201527f455243373231583a20617070726f76616c20746f2063757272656e74206f776e60448201527f6572000000000000000000000000000000000000000000000000000000000000606482015260840161043d565b33600160a060020a03821614806112f857506112f88133610b31565b61136d5760405160e560020a62461bcd02815260206004820152603960248201527f455243373231583a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161043d565b6113778383612ded565b505050565b6000600160055461138d9190613c76565b905090565b600654600160a060020a031633146113bf5760405160e560020a62461bcd02815260040161043d90613ce3565b63628ff1584210156114165760405160e560020a62461bcd02815260206004820152601b60248201527f5075626c6963206d696e74206e6f742073746172746564207965740000000000604482015260640161043d565b7315e6733be8401d33b4cf542411d400c823df618761143d600654600160a060020a031690565b600160a060020a0316146114665760405160e560020a62461bcd02815260040161043d90613d18565b6012546000036114c0574260128190557f9268f698229a43dedc4a8717e7c0f33ee7f1525f0d36e7b149e54d2c1942f6e2906114a5816202a300613c5e565b604080519283526020830191909152015b60405180910390a1565b6012546114d0906202a300613c5e565b4210156115225760405160e560020a62461bcd02815260206004820152601760248201527f343820686f757273206e6f742070617373656420796574000000000000000000604482015260640161043d565b60006012556040513031808252907f22427047e1a674a9aff59700a2c8d00ea96e017ddf9236690bdedf1f21f28d9d9060200160405180910390a1611587733a0106911013eca7a0675d8f1ba7f404ed973cab611580600284613d8e565b6001612e68565b6115aa7378042877df422a9769e0fe1748fef35d4a4718a0611580600a84613d8e565b6115e0737a6b855d613c136098de4fed8725df7a7c2f7f5c60646115cf8460056137bf565b6115d99190613d8e565b6000612e68565b61160373777c680b055cf6e97506b42ddef4063061d7a5b46115d9600584613d8e565b61162673ae987cffaf8149efff92546ca399d41b4da6c57b6115d9600a84613d8e565b61164b73bedc8cdc12047465690cbc358c69b2ea671217ac60646115cf8460056137bf565b505b565b6116593382612fd7565b6116785760405160e560020a62461bcd02815260040161043d90613da2565b6113778383836130d1565b6000600160a060020a0383166116ae5760405160e560020a62461bcd02815260040161043d90613dff565b600060015b6116bc81612dd9565b80156116d157506116ce846001613c5e565b82105b1561179257600081815260026020526040902054600160a060020a03808716911603611780578161170181613e5c565b925060009050600281611715846001613c5e565b8152602081019190915260400160002054600160a060020a03161480156117455750611742846001613c5e565b82105b801561175f575061175f61175a826001613c5e565b612dd9565b15611780578161176e81613e5c565b925050808061177c90613e5c565b9150505b8061178a81613e5c565b9150506116b3565b61179d846001613c5e565b82036117b7576117ae600182613c76565b92505050610c92565b60405160e560020a62461bcd02815260206004820152602260248201527f455243373231583a206f776e657220696e646578206f7574206f6620626f756e60448201527f6473000000000000000000000000000000000000000000000000000000000000606482015260840161043d565b61137783838360405180602001604052806000815250612593565b600061185361175a836001613c5e565b6118c85760405160e560020a62461bcd02815260206004820152602360248201527f455243373231583a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e64730000000000000000000000000000000000000000000000000000000000606482015260840161043d565b610c92826001613c5e565b600654600160a060020a031633146119005760405160e560020a62461bcd02815260040161043d90613ce3565b7315e6733be8401d33b4cf542411d400c823df6187611927600654600160a060020a031690565b600160a060020a0316146119505760405160e560020a62461bcd02815260040161043d90613d18565b6012546000036119ac574260128190557f9268f698229a43dedc4a8717e7c0f33ee7f1525f0d36e7b149e54d2c1942f6e29061198f816202a300613c5e565b6040805192835260208301919091520160405180910390a161164b565b6012546119bc906202a300613c5e565b421015611a0e5760405160e560020a62461bcd02815260206004820152601760248201527f343820686f757273206e6f742070617373656420796574000000000000000000604482015260640161043d565b6000601255600260115462010000900460ff166002811115611a3257611a32613e75565b03611aa85760405160e560020a62461bcd02815260206004820152602d60248201527f555249206d6f64696669636174696f6e732061667465722072657665616c206160448201527f72652070726f6869626974656400000000000000000000000000000000000000606482015260840161043d565b8051611abb90600890602084019061370d565b507ff6ab6a5243b9265de8368f8e4f340b777415e04cc57121fca7e3fa01e58c78b281604051611aeb9190613869565b60405180910390a1600060115462010000900460ff166002811115611b1257611b12613e75565b03611b2d576011805462ff000019166201000017905561164b565b506011805462ff0000191662020000179055565b3373949c48b29b3f5e75ff30bd8da4ba6de23aa34f911461164d5760405160e560020a62461bcd02815260206004820152600d60248201527f57726f6e67206164647265737300000000000000000000000000000000000000604482015260640161043d565b63628fea504210158015611bbf575063628ff1584211155b611c0e5760405160e560020a62461bcd02815260206004820152601460248201527f4d696e74206e6f74207374617274656420796574000000000000000000000000604482015260640161043d565b333214611c865760405160e560020a62461bcd02815260206004820152602160248201527f7061796d656e74206e6f7420616c6c6f7765642066726f6d20636f6e7472616360448201527f7400000000000000000000000000000000000000000000000000000000000000606482015260840161043d565b6040516c0100000000000000000000000033026020820152600090603401604051602081830303815290604052805190602001209050611cfd83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050613284565b611d4c5760405160e560020a62461bcd02815260206004820152601860248201527f41646472657373206e6f7420696e2077686974656c6973740000000000000000604482015260640161043d565b336000908152600d602052604090205460ff1615611daf5760405160e560020a62461bcd02815260206004820152601960248201527f57686974656c69737420616c726561647920636c61696d656400000000000000604482015260640161043d565b6001841115611e035760405160e560020a62461bcd02815260206004820152601660248201527f746f6f206d75636820666f722077686974656c69737400000000000000000000604482015260640161043d565b336000908152600c6020526040902054600190611e21908690613c5e565b1115611e725760405160e560020a62461bcd02815260206004820152601660248201527f746f6f206d75636820666f722077686974656c69737400000000000000000000604482015260640161043d565b6103e884600554611e839190613c5e565b1115611ed45760405160e560020a62461bcd02815260206004820152601660248201527f4d6178696d756d20737570706c79207265616368656400000000000000000000604482015260640161043d565b670214e8348c4f0000611ee785826137bf565b341015611f395760405160e560020a62461bcd02815260206004820152600e60248201527f4e6f7420656e6f75676820657468000000000000000000000000000000000000604482015260640161043d565b611f4385826137bf565b34111561207e576000611f5686836137bf565b611f609034613c76565b905060008033600160a060020a031683604051611fa0907f726566756e640000000000000000000000000000000000000000000000000000815260060190565b60006040518083038185875af1925050503d8060008114611fdd576040519150601f19603f3d011682016040523d82523d6000602084013e611fe2565b606091505b5091509150816120375760405160e560020a62461bcd02815260206004820152600d60248201527f526566756e64206661696c656400000000000000000000000000000000000000604482015260640161043d565b33600160a060020a03167ff31f998394417c30993c15334c5a7008d1d564c61d3c703bc19976c8d81f05db8483604051612072929190613c8d565b60405180910390a25050505b336000908152600c60205260408120805487929061209d908490613c5e565b909155506120ad905085826137bf565b600b60008282546120be9190613c5e565b9091555050336000818152600d60205260409020805460ff191660011790556120e79086612cc2565b5050505050565b60006120f982612dd9565b61216e5760405160e560020a62461bcd02815260206004820152602a60248201527f455243373231583a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e00000000000000000000000000000000000000000000606482015260840161043d565b50600090815260026020526040902054600160a060020a031690565b600654600160a060020a031633146121b75760405160e560020a62461bcd02815260040161043d90613ce3565b7315e6733be8401d33b4cf542411d400c823df61876121de600654600160a060020a031690565b600160a060020a0316146122075760405160e560020a62461bcd02815260040161043d90613d18565b6011546301000000900460ff166122635760405160e560020a62461bcd02815260206004820152601460248201527f4d696e74206e6f742073746f7070656420796574000000000000000000000000604482015260640161043d565b61164b73949c48b29b3f5e75ff30bd8da4ba6de23aa34f9182612cc2565b6000600160a060020a0382166122ac5760405160e560020a62461bcd02815260040161043d90613dff565b600060015b6122ba81612dd9565b1561235357600081815260026020526040902054600160a060020a0380861691160361234157816122ea81613e5c565b9250600090506002816122fe846001613c5e565b8152602081019190915260400160002054600160a060020a031614801561232e575061232e61175a826001613c5e565b15612341578161233d81613e5c565b9250505b8061234b81613e5c565b9150506122b1565b5092915050565b600654600160a060020a031633146123875760405160e560020a62461bcd02815260040161043d90613ce3565b61164d600061329a565b600063628fea50421015801561138d57505063628ff15842111590565b600654600160a060020a031633146123db5760405160e560020a62461bcd02815260040161043d90613ce3565b6013805460ff19166001179055565b600654600160a060020a031633146124175760405160e560020a62461bcd02815260040161043d90613ce3565b60135460ff161561246d5760405160e560020a62461bcd02815260206004820152600d60248201527f52657475726e206c6f636b656400000000000000000000000000000000000000604482015260640161043d565b60408051828152600160a060020a03851660208201529081018390527fb6bcab815b7a952b8759f2f92fc9981dc1156f6c11bf4dc7e9cb3036495e653a9060600160405180910390a16113778383612cc2565b60606001805461112690613ca6565b600654600160a060020a031633146124fc5760405160e560020a62461bcd02815260040161043d90613ce3565b7315e6733be8401d33b4cf542411d400c823df6187612523600654600160a060020a031690565b600160a060020a03161461254c5760405160e560020a62461bcd02815260040161043d90613d18565b60108190556040518181527fcabf8550b9a306922529d9991dece81a1afb5b2d237560460464667de07cfbc9906020015b60405180910390a150565b6110443383836132f9565b61259d3383612fd7565b6125bc5760405160e560020a62461bcd02815260040161043d90613da2565b6125c8848484846133ca565b50505050565b6040516c0100000000000000000000000033026020820152600090819060340160405160208183030381529060405280519060200120905061264784848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050613284565b949350505050565b606061265a82612dd9565b6126cf5760405160e560020a62461bcd02815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161043d565b60006126d9613400565b905060008151116126f95760405180602001604052806000815250612724565b806127038461340f565b604051602001612714929190613e8e565b6040516020818303038152906040525b9392505050565b600654600160a060020a031633146127585760405160e560020a62461bcd02815260040161043d90613ce3565b7315e6733be8401d33b4cf542411d400c823df618761277f600654600160a060020a031690565b600160a060020a0316146127a85760405160e560020a62461bcd02815260040161043d90613d18565b6012546000036127e6574260128190557f9268f698229a43dedc4a8717e7c0f33ee7f1525f0d36e7b149e54d2c1942f6e2906114a581610e10613c5e565b6012546127f590610e10613c5e565b4210156128475760405160e560020a62461bcd02815260206004820152601360248201527f486f7572206e6f74207061737365642079657400000000000000000000000000604482015260640161043d565b6011805463ff000000191663010000001790556000601255604051600181527fbc0f7acaff8b73cba04dfbe72320fc77f019cbc71282745c98fad286a0805f0c906020016114b6565b600654600160a060020a031633146128bd5760405160e560020a62461bcd02815260040161043d90613ce3565b7315e6733be8401d33b4cf542411d400c823df61876128e4600654600160a060020a031690565b600160a060020a03161461290d5760405160e560020a62461bcd02815260040161043d90613d18565b601154610100900460ff16156129685760405160e560020a62461bcd02815260206004820152601060248201527f526f6f7420616c72656164792073657400000000000000000000000000000000604482015260640161043d565b6011805461ff001916610100179055600f8190556040517fcabf8550b9a306922529d9991dece81a1afb5b2d237560460464667de07cfbc99061257d9083815260200190565b636298ec90421015612a055760405160e560020a62461bcd02815260206004820152601a60248201527f57686974656c69737432206e6f74207374617274656420796574000000000000604482015260640161043d565b333214612a275760405160e560020a62461bcd02815260040161043d90613c01565b6040516c0100000000000000000000000033026020820152600090603401604051602081830303815290604052805190602001209050612a9e838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010549150849050613284565b612aed5760405160e560020a62461bcd02815260206004820152601860248201527f41646472657373206e6f7420696e2077686974656c6973740000000000000000604482015260640161043d565b336000908152600e602052604090205460ff1615612b505760405160e560020a62461bcd02815260206004820152601960248201527f57686974656c69737420616c726561647920636c61696d656400000000000000604482015260640161043d565b6101f46007541115612ba75760405160e560020a62461bcd02815260206004820152601e60248201527f4d6178696d756d20636f6d6d756e697479206d696e7420726561636865640000604482015260640161043d565b336000908152600c60205260408120805460019290612bc7908490613c5e565b9091555050336000908152600e60205260408120805460ff191660019081179091556007805491929091612bfc908490613c5e565b909155506113779050336001612cc2565b600654600160a060020a03163314612c3a5760405160e560020a62461bcd02815260040161043d90613ce3565b600160a060020a038116612cb95760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161043d565b61164b8161329a565b600160a060020a038216612d415760405160e560020a62461bcd02815260206004820152602160248201527f455243373231583a206d696e7420746f20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161043d565b8060005b81811015612dcb5760055460405190820190600160a060020a038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a460055481016000908152600260205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038616179055600101612d45565b506005805490910190555050565b60008115801590610c925750506005541190565b6000818152600360205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384169081179091558190612e2f826120ee565b600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008084600160a060020a03168460405160006040518083038185875af1925050503d8060008114612eb6576040519150601f19603f3d011682016040523d82523d6000602084013e612ebb565b606091505b509150915081612f105760405160e560020a62461bcd02815260206004820152601460248201527f4661696c656420746f2073656e64206574686572000000000000000000000000604482015260640161043d565b8215612f765784600160a060020a03167fa643712ad33544faa76eb9b49caa66b6eb5c22b406795b4a2fdcb6fca021c5bf8583604051612f51929190613c8d565b60405180910390a28360096000828254612f6b9190613c5e565b909155506120e79050565b84600160a060020a03167f180489ed98391c12b0b024acb7dcd85ce43619bcf0780aeca68aa3dd44651a5d8583604051612fb1929190613c8d565b60405180910390a283600a6000828254612fcb9190613c5e565b90915550505050505050565b6000612fe282612dd9565b6130575760405160e560020a62461bcd02815260206004820152602d60248201527f455243373231583a206f70657261746f7220717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e00000000000000000000000000000000000000606482015260840161043d565b6000613062836120ee565b905080600160a060020a031684600160a060020a0316148061309d575083600160a060020a0316613092846111a9565b600160a060020a0316145b806126475750600160a060020a0380821660009081526004602090815260408083209388168352929052205460ff16612647565b82600160a060020a03166130e4826120ee565b600160a060020a0316146131635760405160e560020a62461bcd02815260206004820152602a60248201527f455243373231583a207472616e73666572206f6620746f6b656e20746861742060448201527f6973206e6f74206f776e00000000000000000000000000000000000000000000606482015260840161043d565b600160a060020a0382166131e25760405160e560020a62461bcd02815260206004820152602560248201527f455243373231583a207472616e7366657220746f20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161043d565b6131ed600082612ded565b600081815260026020526040902054600160a060020a031661323e576000818152600260205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384161790555b8082600160a060020a031684600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000826132918584613563565b14949350505050565b60068054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b81600160a060020a031683600160a060020a03160361335d5760405160e560020a62461bcd02815260206004820152601a60248201527f455243373231583a20617070726f766520746f2063616c6c6572000000000000604482015260640161043d565b600160a060020a03838116600081815260046020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6133d58484846130d1565b6133e1848484846135d7565b6125c85760405160e560020a62461bcd02815260040161043d90613ee5565b60606008805461112690613ca6565b60608160000361345257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561347c578061346681613e5c565b91506134759050600a83613d8e565b9150613456565b60008167ffffffffffffffff81111561349757613497613917565b6040519080825280601f01601f1916602001820160405280156134c1576020820181803683370190505b5090505b8415612647576134d6600183613c76565b91506134e3600a86613f42565b6134ee906030613c5e565b7f01000000000000000000000000000000000000000000000000000000000000000281838151811061352257613522613f56565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061355c600a86613d8e565b94506134c5565b600081815b84518110156135cf57600085828151811061358557613585613f56565b602002602001015190508083116135ab57600083815260208290526040902092506135bc565b600081815260208490526040902092505b50806135c781613e5c565b915050613568565b509392505050565b6000600160a060020a0384163b15613702576040517f150b7a02000000000000000000000000000000000000000000000000000000008152600160a060020a0385169063150b7a0290613634903390899088908890600401613f6f565b6020604051808303816000875af192505050801561366f575060408051601f3d908101601f1916820190925261366c91810190613fab565b60015b6136cf573d80801561369d576040519150601f19603f3d011682016040523d82523d6000602084013e6136a2565b606091505b5080516000036136c75760405160e560020a62461bcd02815260040161043d90613ee5565b805181602001fd5b600160e060020a0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050612647565b506001949350505050565b82805461371990613ca6565b90600052602060002090601f01602090048101928261373b5760008555613781565b82601f1061375457805160ff1916838001178555613781565b82800160010185558215613781579182015b82811115613781578251825591602001919060010190613766565b5061378d929150613791565b5090565b5b8082111561378d5760008155600101613792565b60e060020a634e487b7102600052601160045260246000fd5b60008160001904831182151516156137d9576137d96137a6565b500290565b600160e060020a03198116811461164b57600080fd5b60006020828403121561380657600080fd5b8135612724816137de565b60005b8381101561382c578181015183820152602001613814565b838111156125c85750506000910152565b60008151808452613855816020860160208601613811565b601f01601f19169290920160200192915050565b602081526000612724602083018461383d565b60006020828403121561388e57600080fd5b5035919050565b8035600160a060020a03811681146138ac57600080fd5b919050565b600080604083850312156138c457600080fd5b6138cd83613895565b946020939093013593505050565b6000806000606084860312156138f057600080fd5b6138f984613895565b925061390760208501613895565b9150604084013590509250925092565b60e060020a634e487b7102600052604160045260246000fd5b600067ffffffffffffffff8084111561394b5761394b613917565b604051601f8501601f19908116603f0116810190828211818310171561397357613973613917565b8160405280935085815286868601111561398c57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156139b857600080fd5b813567ffffffffffffffff8111156139cf57600080fd5b8201601f810184136139e057600080fd5b61264784823560208401613930565b60008083601f840112613a0157600080fd5b50813567ffffffffffffffff811115613a1957600080fd5b6020830191508360208083028501011115613a3357600080fd5b9250929050565b600080600060408486031215613a4f57600080fd5b83359250602084013567ffffffffffffffff811115613a6d57600080fd5b613a79868287016139ef565b9497909650939450505050565b600060208284031215613a9857600080fd5b61272482613895565b600080600060608486031215613ab657600080fd5b613abf84613895565b95602085013595506040909401359392505050565b60008060408385031215613ae757600080fd5b613af083613895565b915060208301358015158114613b0557600080fd5b809150509250929050565b60008060008060808587031215613b2657600080fd5b613b2f85613895565b9350613b3d60208601613895565b925060408501359150606085013567ffffffffffffffff811115613b6057600080fd5b8501601f81018713613b7157600080fd5b613b8087823560208401613930565b91505092959194509250565b60008060208385031215613b9f57600080fd5b823567ffffffffffffffff811115613bb657600080fd5b613bc2858286016139ef565b90969095509350505050565b60008060408385031215613be157600080fd5b613bea83613895565b9150613bf860208401613895565b90509250929050565b60208082526026908201527f7061796d656e74206e6f7420616c6c6f7765642066726f6d207468697320636f60408201527f6e74726163740000000000000000000000000000000000000000000000000000606082015260800190565b60008219821115613c7157613c716137a6565b500190565b600082821015613c8857613c886137a6565b500390565b828152604060208201526000612647604083018461383d565b600281046001821680613cba57607f821691505b602082108103613cdd5760e060020a634e487b7102600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f4f776e6572206973206e6f74206d756c74697369676e61747572652077616c6c60408201527f6574000000000000000000000000000000000000000000000000000000000000606082015260800190565b60e060020a634e487b7102600052601260045260246000fd5b600082613d9d57613d9d613d75565b500490565b60208082526032908201527f455243373231583a207472616e736665722063616c6c6572206973206e6f742060408201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606082015260800190565b6020808252602b908201527f455243373231583a2062616c616e636520717565727920666f7220746865207a60408201527f65726f2061646472657373000000000000000000000000000000000000000000606082015260800190565b600060018201613e6e57613e6e6137a6565b5060010190565b60e060020a634e487b7102600052602160045260246000fd5b60008351613ea0818460208801613811565b835190830190613eb4818360208801613811565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60208082526033908201527f455243373231583a207472616e7366657220746f206e6f6e204552433732315260408201527f6563656976657220696d706c656d656e74657200000000000000000000000000606082015260800190565b600082613f5157613f51613d75565b500690565b60e060020a634e487b7102600052603260045260246000fd5b6000600160a060020a03808716835280861660208401525083604083015260806060830152613fa1608083018461383d565b9695505050505050565b600060208284031215613fbd57600080fd5b8151612724816137de56fea26469706673582212201d4ae3c4411c4c8ec8ad0b4f45c48b24ba8f14b1329f79a04efac7eb9a2abf5264736f6c634300080d003368747470733a2f2f7a656c656e736b69796e66742e6d7970696e6174612e636c6f75642f697066732f516d5648556a39754d3748784b35785369327662697039795358596b4c42455057656351654a6362564b7a426d482f

Deployed Bytecode

0x608060405260043610610397576000357c0100000000000000000000000000000000000000000000000000000000900480637a0767d0116101ee578063c4a9329e1161011f578063d9ebc352116100bd578063e985e9c51161008c578063e985e9c514610b16578063ebdfd72214610b5f578063f2fde38b14610b77578063f91dbf5114610b9757610522565b8063d9ebc35214610a9f578063dab5f34014610ac7578063dcba94f514610ae7578063e164e9ed14610b0357610522565b8063d1224f08116100f9578063d1224f081461065a578063d290ae5e14610a5e578063d3cf00a314610a72578063d558296514610a8a57610522565b8063c4a9329e146109f6578063c757483914610a16578063c87b56dd14610a3e57610522565b80638da5cb5b1161018c5780639c76b14b116101665780639c76b14b14610981578063a22cb465146109a1578063a3569a79146109c1578063b88d4fde146109d657610522565b80638da5cb5b146109365780639292caaf1461095457806395d89b411461096c57610522565b806383d88c96116101c857806383d88c96146108d157806385f2aef2146108e6578063887129d61461090e57806388bccf281461092157610522565b80637a0767d01461086c5780637b929c271461088157806381d1f938146108a957610522565b8063394bfa6b116102c85780635a19b4db11610266578063682a2e1011610240578063682a2e10146107ff5780636ec0578a1461081757806370a0823114610837578063715018a61461085757610522565b80635a19b4db146107b657806361b8ce8c146107c95780636352211e146107df57610522565b80634f6ccce7116102a25780634f6ccce7146107595780635074f3011461077957806355f804b31461078e57806357277b92146107ae57610522565b8063394bfa6b146106fe5780633e1c908e1461072657806342842e0e1461073957610522565b806323b872dd116103355780632ab4d0521161030f5780632ab4d052146106845780632d3e474a1461069a5780632f745c59146106c25780632fff1796146106e257610522565b806323b872dd1461063a578063245b01aa1461065a57806325c1f1671461066f57610522565b8063095ea7b311610371578063095ea7b3146105ba57806318160ddd146105da5780631a686502146105fd5780631b9265b81461062557610522565b806301ffc9a71461052b57806306fdde0314610560578063081812fc1461058257610522565b36610522576103a533610bad565b156103e457604080513481523360208201527f4bcc17093cdf51079c755de089be5a85e70fa374ec656c194480fbdcda224a53910160405180910390a1005b6011546301000000900460ff16156104465760405160e560020a62461bcd02815260206004820152600c60248201527f4d696e742073746f70706564000000000000000000000000000000000000000060448201526064015b60405180910390fd5b6702c68af0bb1400003410156104a15760405160e560020a62461bcd02815260206004820152601060248201527f4e6f7420656e6f75676820657468657200000000000000000000000000000000604482015260640161043d565b60006702c68af0bb14000034036104ba57506001610517565b6104cd6702c68af0bb14000060026137bf565b341180156104ed57506104e96702c68af0bb14000060036137bf565b3411155b156104fa57506002610517565b61050d6702c68af0bb14000060036137bf565b3410610517575060035b61052081610c98565b005b6103a533610bad565b34801561053757600080fd5b5061054b6105463660046137f4565b611048565b60405190151581526020015b60405180910390f35b34801561056c57600080fd5b50610575611117565b6040516105579190613869565b34801561058e57600080fd5b506105a261059d36600461387c565b6111a9565b604051600160a060020a039091168152602001610557565b3480156105c657600080fd5b506105206105d53660046138b1565b611245565b3480156105e657600080fd5b506105ef61137c565b604051908152602001610557565b34801561060957600080fd5b506105a2737a6b855d613c136098de4fed8725df7a7c2f7f5c81565b34801561063157600080fd5b50610520611392565b34801561064657600080fd5b506105206106553660046138db565b61164f565b34801561066657600080fd5b506007546105ef565b34801561067b57600080fd5b506009546105ef565b34801561069057600080fd5b506105ef6103e881565b3480156106a657600080fd5b506105a273777c680b055cf6e97506b42ddef4063061d7a5b481565b3480156106ce57600080fd5b506105ef6106dd3660046138b1565b611683565b3480156106ee57600080fd5b506105ef670214e8348c4f000081565b34801561070a57600080fd5b506105a27315e6733be8401d33b4cf542411d400c823df618781565b61052061073436600461387c565b610c98565b34801561074557600080fd5b506105206107543660046138db565b611828565b34801561076557600080fd5b506105ef61077436600461387c565b611843565b34801561078557600080fd5b506105ef600181565b34801561079a57600080fd5b506105206107a93660046139a6565b6118d3565b610520611b41565b6105206107c4366004613a3a565b611ba7565b3480156107d557600080fd5b506105ef60055481565b3480156107eb57600080fd5b506105a26107fa36600461387c565b6120ee565b34801561080b57600080fd5b506105ef636298ec9081565b34801561082357600080fd5b5061052061083236600461387c565b61218a565b34801561084357600080fd5b506105ef610852366004613a86565b612281565b34801561086357600080fd5b5061052061235a565b34801561087857600080fd5b5061054b612391565b34801561088d57600080fd5b506105a273ae987cffaf8149efff92546ca399d41b4da6c57b81565b3480156108b557600080fd5b506105a2733a0106911013eca7a0675d8f1ba7f404ed973cab81565b3480156108dd57600080fd5b506105206123ae565b3480156108f257600080fd5b506105a273bedc8cdc12047465690cbc358c69b2ea671217ac81565b61052061091c366004613aa1565b6123ea565b34801561092d57600080fd5b50600a546105ef565b34801561094257600080fd5b50600654600160a060020a03166105a2565b34801561096057600080fd5b506105ef63628fea5081565b34801561097857600080fd5b506105756124c0565b34801561098d57600080fd5b5061052061099c36600461387c565b6124cf565b3480156109ad57600080fd5b506105206109bc366004613ad4565b612588565b3480156109cd57600080fd5b506105ef600381565b3480156109e257600080fd5b506105206109f1366004613b10565b612593565b348015610a0257600080fd5b5061054b610a11366004613b8c565b6125ce565b348015610a2257600080fd5b506105a273949c48b29b3f5e75ff30bd8da4ba6de23aa34f9181565b348015610a4a57600080fd5b50610575610a5936600461387c565b61264f565b348015610a6a57600080fd5b5030316105ef565b348015610a7e57600080fd5b506105ef63628ff4dc81565b348015610a9657600080fd5b5061052061272b565b348015610aab57600080fd5b506105a27378042877df422a9769e0fe1748fef35d4a4718a081565b348015610ad357600080fd5b50610520610ae236600461387c565b612890565b348015610af357600080fd5b506105ef6702c68af0bb14000081565b610520610b11366004613b8c565b6129ae565b348015610b2257600080fd5b5061054b610b31366004613bce565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205460ff1690565b348015610b6b57600080fd5b506105ef63628ff15881565b348015610b8357600080fd5b50610520610b92366004613a86565b612c0d565b348015610ba357600080fd5b506105ef6101f481565b6000600160a060020a038216733a0106911013eca7a0675d8f1ba7f404ed973cab1480610bf65750600160a060020a0382167378042877df422a9769e0fe1748fef35d4a4718a0145b80610c1d5750600160a060020a038216737a6b855d613c136098de4fed8725df7a7c2f7f5c145b80610c445750600160a060020a03821673777c680b055cf6e97506b42ddef4063061d7a5b4145b80610c6b5750600160a060020a03821673ae987cffaf8149efff92546ca399d41b4da6c57b145b80610c925750600160a060020a03821673bedc8cdc12047465690cbc358c69b2ea671217ac145b92915050565b63628ff158421015610cef5760405160e560020a62461bcd02815260206004820152601b60248201527f5075626c6963206d696e74206e6f742073746172746564207965740000000000604482015260640161043d565b6011546301000000900460ff1615610d4c5760405160e560020a62461bcd02815260206004820152600f60248201527f4d696e742069732073746f707065640000000000000000000000000000000000604482015260640161043d565b333214610d6e5760405160e560020a62461bcd02815260040161043d90613c01565b336000908152600c6020526040902054600390610d8c908390613c5e565b1115610ddd5760405160e560020a62461bcd02815260206004820152601e60248201527f746f6f206d756368206d696e747320666f7220746869732077616c6c65740000604482015260640161043d565b610deb6101f46103e8613c76565b81600554610df99190613c5e565b1115610e4a5760405160e560020a62461bcd02815260206004820152601660248201527f4d6178696d756d20737570706c79207265616368656400000000000000000000604482015260640161043d565b6702c68af0bb140000610e5d82826137bf565b341015610eaf5760405160e560020a62461bcd02815260206004820152600e60248201527f4e6f7420656e6f75676820657468000000000000000000000000000000000000604482015260640161043d565b610eb982826137bf565b341115610ff4576000610ecc83836137bf565b610ed69034613c76565b905060008033600160a060020a031683604051610f16907f726566756e640000000000000000000000000000000000000000000000000000815260060190565b60006040518083038185875af1925050503d8060008114610f53576040519150601f19603f3d011682016040523d82523d6000602084013e610f58565b606091505b509150915081610fad5760405160e560020a62461bcd02815260206004820152600d60248201527f526566756e64206661696c656400000000000000000000000000000000000000604482015260640161043d565b33600160a060020a03167ff31f998394417c30993c15334c5a7008d1d564c61d3c703bc19976c8d81f05db8483604051610fe8929190613c8d565b60405180910390a25050505b336000908152600c602052604081208054849290611013908490613c5e565b90915550611023905082826137bf565b600b60008282546110349190613c5e565b9091555061104490503383612cc2565b5050565b6000600160e060020a031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806110ab5750600160e060020a031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806110df5750600160e060020a031982167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610c9257507f01ffc9a700000000000000000000000000000000000000000000000000000000600160e060020a0319831614610c92565b60606000805461112690613ca6565b80601f016020809104026020016040519081016040528092919081815260200182805461115290613ca6565b801561119f5780601f106111745761010080835404028352916020019161119f565b820191906000526020600020905b81548152906001019060200180831161118257829003601f168201915b5050505050905090565b60006111b482612dd9565b6112295760405160e560020a62461bcd02815260206004820152602d60248201527f455243373231583a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e00000000000000000000000000000000000000606482015260840161043d565b50600090815260036020526040902054600160a060020a031690565b6000611250826120ee565b905080600160a060020a031683600160a060020a0316036112dc5760405160e560020a62461bcd02815260206004820152602260248201527f455243373231583a20617070726f76616c20746f2063757272656e74206f776e60448201527f6572000000000000000000000000000000000000000000000000000000000000606482015260840161043d565b33600160a060020a03821614806112f857506112f88133610b31565b61136d5760405160e560020a62461bcd02815260206004820152603960248201527f455243373231583a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161043d565b6113778383612ded565b505050565b6000600160055461138d9190613c76565b905090565b600654600160a060020a031633146113bf5760405160e560020a62461bcd02815260040161043d90613ce3565b63628ff1584210156114165760405160e560020a62461bcd02815260206004820152601b60248201527f5075626c6963206d696e74206e6f742073746172746564207965740000000000604482015260640161043d565b7315e6733be8401d33b4cf542411d400c823df618761143d600654600160a060020a031690565b600160a060020a0316146114665760405160e560020a62461bcd02815260040161043d90613d18565b6012546000036114c0574260128190557f9268f698229a43dedc4a8717e7c0f33ee7f1525f0d36e7b149e54d2c1942f6e2906114a5816202a300613c5e565b604080519283526020830191909152015b60405180910390a1565b6012546114d0906202a300613c5e565b4210156115225760405160e560020a62461bcd02815260206004820152601760248201527f343820686f757273206e6f742070617373656420796574000000000000000000604482015260640161043d565b60006012556040513031808252907f22427047e1a674a9aff59700a2c8d00ea96e017ddf9236690bdedf1f21f28d9d9060200160405180910390a1611587733a0106911013eca7a0675d8f1ba7f404ed973cab611580600284613d8e565b6001612e68565b6115aa7378042877df422a9769e0fe1748fef35d4a4718a0611580600a84613d8e565b6115e0737a6b855d613c136098de4fed8725df7a7c2f7f5c60646115cf8460056137bf565b6115d99190613d8e565b6000612e68565b61160373777c680b055cf6e97506b42ddef4063061d7a5b46115d9600584613d8e565b61162673ae987cffaf8149efff92546ca399d41b4da6c57b6115d9600a84613d8e565b61164b73bedc8cdc12047465690cbc358c69b2ea671217ac60646115cf8460056137bf565b505b565b6116593382612fd7565b6116785760405160e560020a62461bcd02815260040161043d90613da2565b6113778383836130d1565b6000600160a060020a0383166116ae5760405160e560020a62461bcd02815260040161043d90613dff565b600060015b6116bc81612dd9565b80156116d157506116ce846001613c5e565b82105b1561179257600081815260026020526040902054600160a060020a03808716911603611780578161170181613e5c565b925060009050600281611715846001613c5e565b8152602081019190915260400160002054600160a060020a03161480156117455750611742846001613c5e565b82105b801561175f575061175f61175a826001613c5e565b612dd9565b15611780578161176e81613e5c565b925050808061177c90613e5c565b9150505b8061178a81613e5c565b9150506116b3565b61179d846001613c5e565b82036117b7576117ae600182613c76565b92505050610c92565b60405160e560020a62461bcd02815260206004820152602260248201527f455243373231583a206f776e657220696e646578206f7574206f6620626f756e60448201527f6473000000000000000000000000000000000000000000000000000000000000606482015260840161043d565b61137783838360405180602001604052806000815250612593565b600061185361175a836001613c5e565b6118c85760405160e560020a62461bcd02815260206004820152602360248201527f455243373231583a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e64730000000000000000000000000000000000000000000000000000000000606482015260840161043d565b610c92826001613c5e565b600654600160a060020a031633146119005760405160e560020a62461bcd02815260040161043d90613ce3565b7315e6733be8401d33b4cf542411d400c823df6187611927600654600160a060020a031690565b600160a060020a0316146119505760405160e560020a62461bcd02815260040161043d90613d18565b6012546000036119ac574260128190557f9268f698229a43dedc4a8717e7c0f33ee7f1525f0d36e7b149e54d2c1942f6e29061198f816202a300613c5e565b6040805192835260208301919091520160405180910390a161164b565b6012546119bc906202a300613c5e565b421015611a0e5760405160e560020a62461bcd02815260206004820152601760248201527f343820686f757273206e6f742070617373656420796574000000000000000000604482015260640161043d565b6000601255600260115462010000900460ff166002811115611a3257611a32613e75565b03611aa85760405160e560020a62461bcd02815260206004820152602d60248201527f555249206d6f64696669636174696f6e732061667465722072657665616c206160448201527f72652070726f6869626974656400000000000000000000000000000000000000606482015260840161043d565b8051611abb90600890602084019061370d565b507ff6ab6a5243b9265de8368f8e4f340b777415e04cc57121fca7e3fa01e58c78b281604051611aeb9190613869565b60405180910390a1600060115462010000900460ff166002811115611b1257611b12613e75565b03611b2d576011805462ff000019166201000017905561164b565b506011805462ff0000191662020000179055565b3373949c48b29b3f5e75ff30bd8da4ba6de23aa34f911461164d5760405160e560020a62461bcd02815260206004820152600d60248201527f57726f6e67206164647265737300000000000000000000000000000000000000604482015260640161043d565b63628fea504210158015611bbf575063628ff1584211155b611c0e5760405160e560020a62461bcd02815260206004820152601460248201527f4d696e74206e6f74207374617274656420796574000000000000000000000000604482015260640161043d565b333214611c865760405160e560020a62461bcd02815260206004820152602160248201527f7061796d656e74206e6f7420616c6c6f7765642066726f6d20636f6e7472616360448201527f7400000000000000000000000000000000000000000000000000000000000000606482015260840161043d565b6040516c0100000000000000000000000033026020820152600090603401604051602081830303815290604052805190602001209050611cfd83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050613284565b611d4c5760405160e560020a62461bcd02815260206004820152601860248201527f41646472657373206e6f7420696e2077686974656c6973740000000000000000604482015260640161043d565b336000908152600d602052604090205460ff1615611daf5760405160e560020a62461bcd02815260206004820152601960248201527f57686974656c69737420616c726561647920636c61696d656400000000000000604482015260640161043d565b6001841115611e035760405160e560020a62461bcd02815260206004820152601660248201527f746f6f206d75636820666f722077686974656c69737400000000000000000000604482015260640161043d565b336000908152600c6020526040902054600190611e21908690613c5e565b1115611e725760405160e560020a62461bcd02815260206004820152601660248201527f746f6f206d75636820666f722077686974656c69737400000000000000000000604482015260640161043d565b6103e884600554611e839190613c5e565b1115611ed45760405160e560020a62461bcd02815260206004820152601660248201527f4d6178696d756d20737570706c79207265616368656400000000000000000000604482015260640161043d565b670214e8348c4f0000611ee785826137bf565b341015611f395760405160e560020a62461bcd02815260206004820152600e60248201527f4e6f7420656e6f75676820657468000000000000000000000000000000000000604482015260640161043d565b611f4385826137bf565b34111561207e576000611f5686836137bf565b611f609034613c76565b905060008033600160a060020a031683604051611fa0907f726566756e640000000000000000000000000000000000000000000000000000815260060190565b60006040518083038185875af1925050503d8060008114611fdd576040519150601f19603f3d011682016040523d82523d6000602084013e611fe2565b606091505b5091509150816120375760405160e560020a62461bcd02815260206004820152600d60248201527f526566756e64206661696c656400000000000000000000000000000000000000604482015260640161043d565b33600160a060020a03167ff31f998394417c30993c15334c5a7008d1d564c61d3c703bc19976c8d81f05db8483604051612072929190613c8d565b60405180910390a25050505b336000908152600c60205260408120805487929061209d908490613c5e565b909155506120ad905085826137bf565b600b60008282546120be9190613c5e565b9091555050336000818152600d60205260409020805460ff191660011790556120e79086612cc2565b5050505050565b60006120f982612dd9565b61216e5760405160e560020a62461bcd02815260206004820152602a60248201527f455243373231583a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e00000000000000000000000000000000000000000000606482015260840161043d565b50600090815260026020526040902054600160a060020a031690565b600654600160a060020a031633146121b75760405160e560020a62461bcd02815260040161043d90613ce3565b7315e6733be8401d33b4cf542411d400c823df61876121de600654600160a060020a031690565b600160a060020a0316146122075760405160e560020a62461bcd02815260040161043d90613d18565b6011546301000000900460ff166122635760405160e560020a62461bcd02815260206004820152601460248201527f4d696e74206e6f742073746f7070656420796574000000000000000000000000604482015260640161043d565b61164b73949c48b29b3f5e75ff30bd8da4ba6de23aa34f9182612cc2565b6000600160a060020a0382166122ac5760405160e560020a62461bcd02815260040161043d90613dff565b600060015b6122ba81612dd9565b1561235357600081815260026020526040902054600160a060020a0380861691160361234157816122ea81613e5c565b9250600090506002816122fe846001613c5e565b8152602081019190915260400160002054600160a060020a031614801561232e575061232e61175a826001613c5e565b15612341578161233d81613e5c565b9250505b8061234b81613e5c565b9150506122b1565b5092915050565b600654600160a060020a031633146123875760405160e560020a62461bcd02815260040161043d90613ce3565b61164d600061329a565b600063628fea50421015801561138d57505063628ff15842111590565b600654600160a060020a031633146123db5760405160e560020a62461bcd02815260040161043d90613ce3565b6013805460ff19166001179055565b600654600160a060020a031633146124175760405160e560020a62461bcd02815260040161043d90613ce3565b60135460ff161561246d5760405160e560020a62461bcd02815260206004820152600d60248201527f52657475726e206c6f636b656400000000000000000000000000000000000000604482015260640161043d565b60408051828152600160a060020a03851660208201529081018390527fb6bcab815b7a952b8759f2f92fc9981dc1156f6c11bf4dc7e9cb3036495e653a9060600160405180910390a16113778383612cc2565b60606001805461112690613ca6565b600654600160a060020a031633146124fc5760405160e560020a62461bcd02815260040161043d90613ce3565b7315e6733be8401d33b4cf542411d400c823df6187612523600654600160a060020a031690565b600160a060020a03161461254c5760405160e560020a62461bcd02815260040161043d90613d18565b60108190556040518181527fcabf8550b9a306922529d9991dece81a1afb5b2d237560460464667de07cfbc9906020015b60405180910390a150565b6110443383836132f9565b61259d3383612fd7565b6125bc5760405160e560020a62461bcd02815260040161043d90613da2565b6125c8848484846133ca565b50505050565b6040516c0100000000000000000000000033026020820152600090819060340160405160208183030381529060405280519060200120905061264784848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050613284565b949350505050565b606061265a82612dd9565b6126cf5760405160e560020a62461bcd02815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161043d565b60006126d9613400565b905060008151116126f95760405180602001604052806000815250612724565b806127038461340f565b604051602001612714929190613e8e565b6040516020818303038152906040525b9392505050565b600654600160a060020a031633146127585760405160e560020a62461bcd02815260040161043d90613ce3565b7315e6733be8401d33b4cf542411d400c823df618761277f600654600160a060020a031690565b600160a060020a0316146127a85760405160e560020a62461bcd02815260040161043d90613d18565b6012546000036127e6574260128190557f9268f698229a43dedc4a8717e7c0f33ee7f1525f0d36e7b149e54d2c1942f6e2906114a581610e10613c5e565b6012546127f590610e10613c5e565b4210156128475760405160e560020a62461bcd02815260206004820152601360248201527f486f7572206e6f74207061737365642079657400000000000000000000000000604482015260640161043d565b6011805463ff000000191663010000001790556000601255604051600181527fbc0f7acaff8b73cba04dfbe72320fc77f019cbc71282745c98fad286a0805f0c906020016114b6565b600654600160a060020a031633146128bd5760405160e560020a62461bcd02815260040161043d90613ce3565b7315e6733be8401d33b4cf542411d400c823df61876128e4600654600160a060020a031690565b600160a060020a03161461290d5760405160e560020a62461bcd02815260040161043d90613d18565b601154610100900460ff16156129685760405160e560020a62461bcd02815260206004820152601060248201527f526f6f7420616c72656164792073657400000000000000000000000000000000604482015260640161043d565b6011805461ff001916610100179055600f8190556040517fcabf8550b9a306922529d9991dece81a1afb5b2d237560460464667de07cfbc99061257d9083815260200190565b636298ec90421015612a055760405160e560020a62461bcd02815260206004820152601a60248201527f57686974656c69737432206e6f74207374617274656420796574000000000000604482015260640161043d565b333214612a275760405160e560020a62461bcd02815260040161043d90613c01565b6040516c0100000000000000000000000033026020820152600090603401604051602081830303815290604052805190602001209050612a9e838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010549150849050613284565b612aed5760405160e560020a62461bcd02815260206004820152601860248201527f41646472657373206e6f7420696e2077686974656c6973740000000000000000604482015260640161043d565b336000908152600e602052604090205460ff1615612b505760405160e560020a62461bcd02815260206004820152601960248201527f57686974656c69737420616c726561647920636c61696d656400000000000000604482015260640161043d565b6101f46007541115612ba75760405160e560020a62461bcd02815260206004820152601e60248201527f4d6178696d756d20636f6d6d756e697479206d696e7420726561636865640000604482015260640161043d565b336000908152600c60205260408120805460019290612bc7908490613c5e565b9091555050336000908152600e60205260408120805460ff191660019081179091556007805491929091612bfc908490613c5e565b909155506113779050336001612cc2565b600654600160a060020a03163314612c3a5760405160e560020a62461bcd02815260040161043d90613ce3565b600160a060020a038116612cb95760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161043d565b61164b8161329a565b600160a060020a038216612d415760405160e560020a62461bcd02815260206004820152602160248201527f455243373231583a206d696e7420746f20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161043d565b8060005b81811015612dcb5760055460405190820190600160a060020a038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a460055481016000908152600260205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038616179055600101612d45565b506005805490910190555050565b60008115801590610c925750506005541190565b6000818152600360205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384169081179091558190612e2f826120ee565b600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008084600160a060020a03168460405160006040518083038185875af1925050503d8060008114612eb6576040519150601f19603f3d011682016040523d82523d6000602084013e612ebb565b606091505b509150915081612f105760405160e560020a62461bcd02815260206004820152601460248201527f4661696c656420746f2073656e64206574686572000000000000000000000000604482015260640161043d565b8215612f765784600160a060020a03167fa643712ad33544faa76eb9b49caa66b6eb5c22b406795b4a2fdcb6fca021c5bf8583604051612f51929190613c8d565b60405180910390a28360096000828254612f6b9190613c5e565b909155506120e79050565b84600160a060020a03167f180489ed98391c12b0b024acb7dcd85ce43619bcf0780aeca68aa3dd44651a5d8583604051612fb1929190613c8d565b60405180910390a283600a6000828254612fcb9190613c5e565b90915550505050505050565b6000612fe282612dd9565b6130575760405160e560020a62461bcd02815260206004820152602d60248201527f455243373231583a206f70657261746f7220717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e00000000000000000000000000000000000000606482015260840161043d565b6000613062836120ee565b905080600160a060020a031684600160a060020a0316148061309d575083600160a060020a0316613092846111a9565b600160a060020a0316145b806126475750600160a060020a0380821660009081526004602090815260408083209388168352929052205460ff16612647565b82600160a060020a03166130e4826120ee565b600160a060020a0316146131635760405160e560020a62461bcd02815260206004820152602a60248201527f455243373231583a207472616e73666572206f6620746f6b656e20746861742060448201527f6973206e6f74206f776e00000000000000000000000000000000000000000000606482015260840161043d565b600160a060020a0382166131e25760405160e560020a62461bcd02815260206004820152602560248201527f455243373231583a207472616e7366657220746f20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161043d565b6131ed600082612ded565b600081815260026020526040902054600160a060020a031661323e576000818152600260205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384161790555b8082600160a060020a031684600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000826132918584613563565b14949350505050565b60068054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b81600160a060020a031683600160a060020a03160361335d5760405160e560020a62461bcd02815260206004820152601a60248201527f455243373231583a20617070726f766520746f2063616c6c6572000000000000604482015260640161043d565b600160a060020a03838116600081815260046020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6133d58484846130d1565b6133e1848484846135d7565b6125c85760405160e560020a62461bcd02815260040161043d90613ee5565b60606008805461112690613ca6565b60608160000361345257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561347c578061346681613e5c565b91506134759050600a83613d8e565b9150613456565b60008167ffffffffffffffff81111561349757613497613917565b6040519080825280601f01601f1916602001820160405280156134c1576020820181803683370190505b5090505b8415612647576134d6600183613c76565b91506134e3600a86613f42565b6134ee906030613c5e565b7f01000000000000000000000000000000000000000000000000000000000000000281838151811061352257613522613f56565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061355c600a86613d8e565b94506134c5565b600081815b84518110156135cf57600085828151811061358557613585613f56565b602002602001015190508083116135ab57600083815260208290526040902092506135bc565b600081815260208490526040902092505b50806135c781613e5c565b915050613568565b509392505050565b6000600160a060020a0384163b15613702576040517f150b7a02000000000000000000000000000000000000000000000000000000008152600160a060020a0385169063150b7a0290613634903390899088908890600401613f6f565b6020604051808303816000875af192505050801561366f575060408051601f3d908101601f1916820190925261366c91810190613fab565b60015b6136cf573d80801561369d576040519150601f19603f3d011682016040523d82523d6000602084013e6136a2565b606091505b5080516000036136c75760405160e560020a62461bcd02815260040161043d90613ee5565b805181602001fd5b600160e060020a0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050612647565b506001949350505050565b82805461371990613ca6565b90600052602060002090601f01602090048101928261373b5760008555613781565b82601f1061375457805160ff1916838001178555613781565b82800160010185558215613781579182015b82811115613781578251825591602001919060010190613766565b5061378d929150613791565b5090565b5b8082111561378d5760008155600101613792565b60e060020a634e487b7102600052601160045260246000fd5b60008160001904831182151516156137d9576137d96137a6565b500290565b600160e060020a03198116811461164b57600080fd5b60006020828403121561380657600080fd5b8135612724816137de565b60005b8381101561382c578181015183820152602001613814565b838111156125c85750506000910152565b60008151808452613855816020860160208601613811565b601f01601f19169290920160200192915050565b602081526000612724602083018461383d565b60006020828403121561388e57600080fd5b5035919050565b8035600160a060020a03811681146138ac57600080fd5b919050565b600080604083850312156138c457600080fd5b6138cd83613895565b946020939093013593505050565b6000806000606084860312156138f057600080fd5b6138f984613895565b925061390760208501613895565b9150604084013590509250925092565b60e060020a634e487b7102600052604160045260246000fd5b600067ffffffffffffffff8084111561394b5761394b613917565b604051601f8501601f19908116603f0116810190828211818310171561397357613973613917565b8160405280935085815286868601111561398c57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156139b857600080fd5b813567ffffffffffffffff8111156139cf57600080fd5b8201601f810184136139e057600080fd5b61264784823560208401613930565b60008083601f840112613a0157600080fd5b50813567ffffffffffffffff811115613a1957600080fd5b6020830191508360208083028501011115613a3357600080fd5b9250929050565b600080600060408486031215613a4f57600080fd5b83359250602084013567ffffffffffffffff811115613a6d57600080fd5b613a79868287016139ef565b9497909650939450505050565b600060208284031215613a9857600080fd5b61272482613895565b600080600060608486031215613ab657600080fd5b613abf84613895565b95602085013595506040909401359392505050565b60008060408385031215613ae757600080fd5b613af083613895565b915060208301358015158114613b0557600080fd5b809150509250929050565b60008060008060808587031215613b2657600080fd5b613b2f85613895565b9350613b3d60208601613895565b925060408501359150606085013567ffffffffffffffff811115613b6057600080fd5b8501601f81018713613b7157600080fd5b613b8087823560208401613930565b91505092959194509250565b60008060208385031215613b9f57600080fd5b823567ffffffffffffffff811115613bb657600080fd5b613bc2858286016139ef565b90969095509350505050565b60008060408385031215613be157600080fd5b613bea83613895565b9150613bf860208401613895565b90509250929050565b60208082526026908201527f7061796d656e74206e6f7420616c6c6f7765642066726f6d207468697320636f60408201527f6e74726163740000000000000000000000000000000000000000000000000000606082015260800190565b60008219821115613c7157613c716137a6565b500190565b600082821015613c8857613c886137a6565b500390565b828152604060208201526000612647604083018461383d565b600281046001821680613cba57607f821691505b602082108103613cdd5760e060020a634e487b7102600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f4f776e6572206973206e6f74206d756c74697369676e61747572652077616c6c60408201527f6574000000000000000000000000000000000000000000000000000000000000606082015260800190565b60e060020a634e487b7102600052601260045260246000fd5b600082613d9d57613d9d613d75565b500490565b60208082526032908201527f455243373231583a207472616e736665722063616c6c6572206973206e6f742060408201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606082015260800190565b6020808252602b908201527f455243373231583a2062616c616e636520717565727920666f7220746865207a60408201527f65726f2061646472657373000000000000000000000000000000000000000000606082015260800190565b600060018201613e6e57613e6e6137a6565b5060010190565b60e060020a634e487b7102600052602160045260246000fd5b60008351613ea0818460208801613811565b835190830190613eb4818360208801613811565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60208082526033908201527f455243373231583a207472616e7366657220746f206e6f6e204552433732315260408201527f6563656976657220696d706c656d656e74657200000000000000000000000000606082015260800190565b600082613f5157613f51613d75565b500690565b60e060020a634e487b7102600052603260045260246000fd5b6000600160a060020a03808716835280861660208401525083604083015260806060830152613fa1608083018461383d565b9695505050505050565b600060208284031215613fbd57600080fd5b8151612724816137de56fea26469706673582212201d4ae3c4411c4c8ec8ad0b4f45c48b24ba8f14b1329f79a04efac7eb9a2abf5264736f6c634300080d0033

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.