ETH Price: $3,091.02 (-0.39%)
Gas: 2 Gwei

Token

PiXiu Never Poop (PNP)
 

Overview

Max Total Supply

2,000 PNP

Holders

867

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PNP
0xc2bf53639861a84c186c5440c0579d2bad435d81
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

PiXiu is a collection of ancient beasts in legend tales.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PNP

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : PNP.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721A.sol";
import "./IMinter.sol";

contract PNP is IMinter, ERC721A, Ownable {

    uint256 constant OVERALL = 2000;
    uint256 maxSupply;
    uint256 public maxRevealedId;
    // Base URI
    string public notRevealedURI;
    mapping(address => bool) public minter;

    // ERC721A
    uint256 constant maxBatchSize_ = 2000;
    uint256 constant collectionSize_ = 1;

    uint public immutable devReserve;
    uint16 public devMinted;
    uint16 public publicMinted;

    bool public publicMintActive = false;

    event SetMinter(address minter, bool enabled);
    event Revealed(uint256 curTokenId, uint256 tokenId);
    event BaseURIChanged(string uri);
    event NotRevealedURIChanged(string uri);
    event SetMaxSupply(uint256 amount0, uint256 amount1);

    struct MintConf {
        uint16 maxMint;
        uint16 maxPerAddrMint;
        uint256 price;
    }

    MintConf public publicMintConf;
    mapping(address => uint16) public publicAddrMinted;

    constructor(string memory _initNotRevealedUri) 
        ERC721A("PiXiu Never Poop", "PNP", maxBatchSize_, collectionSize_) {
        notRevealedURI = _initNotRevealedUri;

        // TODO: need be change for mainnet.
        maxSupply = 2000;
        devReserve = 500;

        publicMintConf = MintConf(1500, 1, 0);
    }

    function getOverall() external pure returns (uint256) {
        return OVERALL;
    }

    function getMaxSupply() external view returns (uint256) {
        return maxSupply;
    }

    function setMaxSupply(uint256 amount) external onlyOwner {
        require(amount >= totalSupply(), "Less than already mint");
        require(amount <= OVERALL, "Overall supply exceeded");
        emit SetMaxSupply(maxSupply, amount);

        maxSupply = amount;
    }

    // ====== Minter ======
    function setMinter(address minter_, bool enabled) external onlyOwner {
        require(minter_ != address(0), "Invalid minter");
        minter[minter_] = enabled;
        emit SetMinter(minter_, enabled);
    }

    modifier onlyMinter() {
        require(minter[msg.sender], "Only minter");
        _;
    }

    function setNotRevealedURI(string memory notRevealedURI_)
        external
        onlyOwner
    {
        notRevealedURI = notRevealedURI_;
    }


    function mint(address to, uint256 quantity) external onlyMinter {
        _batchMint(to, quantity);
    }  


    function _batchMint(address to, uint256 quantity) internal {
        require(quantity > 0, "Invalid quantity");
        require(to != address(0), "Mint to the zero address");
        require(totalSupply() + quantity <= maxSupply, "Max supply exceeded");

        _safeMint(to, quantity);
    }


    function setBaseURI(string calldata uri) external onlyOwner {
        _baseURI = uri;
    }

    function reveal(uint256 tokenId) external onlyOwner {
        maxRevealedId = tokenId;
        emit Revealed(totalSupply(), tokenId);
    }

    function _isRevealed(uint256 tokenId) private view returns (bool) {
        return tokenId <= maxRevealedId;
    }

    function baseURI() external view returns (string memory) {
        return _baseURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721A)
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (!_isRevealed(tokenId)) {
            return notRevealedURI;
        }

        if (bytes(_baseURI).length == 0) {
            return notRevealedURI;
        }

        return super.tokenURI(tokenId);
    }

    function burn(uint256 tokenId) external {
        transferFrom(
            msg.sender,
            address(0x000000000000000000000000000000000000dEaD),
            tokenId
        );
    }


    /// *****  mint  *****
    function togglePublicMintStatus() external override onlyOwner {
        publicMintActive = !publicMintActive;
    }

    function devMint(uint16 quantity, address to) external override onlyOwner {
        _devMint(quantity, to);
    }

    function devMintToMultiAddr(uint16 quantity, address[] calldata addresses)
        external
        override
        onlyOwner
    {
        require(addresses.length > 0, "Invalid addresses");

        for (uint256 i = 0; i < addresses.length; i++) {
            _devMint(quantity, addresses[i]);
        }
    }

    function setPublicMintConf(
        uint16 maxMint,
        uint16 maxPerAddrMint,
        uint256 price
    ) external onlyOwner {
        require((maxMint <= maxSupply), "Max supply exceeded");
        publicMintConf = MintConf(maxMint, maxPerAddrMint, price);
    }


    function publicMint(uint16 quantity) external {
        require(publicMintActive && publicMintConf.price == 0, "Public mint is not active");
        doPublicMint(msg.sender, quantity);
    }

    function payMint(uint16 quantity) external payable {
        require(publicMintActive, "Public mint is not active");
        doPublicMint(msg.sender, quantity);
        _refundIfOver(uint256(publicMintConf.price) * quantity);
    }

    function doPublicMint(address to, uint16 quantity) internal {
        require(
            publicAddrMinted[to] + quantity <= publicMintConf.maxPerAddrMint,
            "Max mint amount per account exceeded");

        publicMinted += quantity;
        publicAddrMinted[to] += quantity;

        _batchMint(to, quantity);
    }


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

    function _devMint(uint16 quantity, address to) private {
        require(devMinted + quantity <= devReserve, "Max reserve exceeded");

        devMinted += quantity;
        _batchMint(to, quantity);
    }


    function _refundIfOver(uint256 spend) private {
        require(msg.value >= spend, "Need to send more ETH");

        if (msg.value > spend) {
            payable(msg.sender).transfer(msg.value - spend);
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  string internal _baseURI;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

}

File 4 of 13 : IMinter.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IMinter {
    event SignerChanged(address signer);


    event PublicMintPriceChanged(uint256 price);

    function togglePublicMintStatus() external;

    function devMint(uint16 quantity, address to) external;

    function devMintToMultiAddr(uint16 quantity, address[] calldata addresses)
        external;


    function withdraw() external;
}

File 5 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 6 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 7 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 8 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 9 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 tokenId);

    /**
     * @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 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"NotRevealedURIChanged","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":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"PublicMintPriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"curTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Revealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"SetMaxSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SetMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"SignerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"quantity","type":"uint16"},{"internalType":"address","name":"to","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"quantity","type":"uint16"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"devMintToMultiAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOverall","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"maxRevealedId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"quantity","type":"uint16"}],"name":"payMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicAddrMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"quantity","type":"uint16"}],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintConf","outputs":[{"internalType":"uint16","name":"maxMint","type":"uint16"},{"internalType":"uint16","name":"maxPerAddrMint","type":"uint16"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"reveal","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter_","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"notRevealedURI_","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"maxMint","type":"uint16"},{"internalType":"uint16","name":"maxPerAddrMint","type":"uint16"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicMintConf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526000805560006008556000600e60046101000a81548160ff0219169083151502179055503480156200003557600080fd5b50604051620062083803806200620883398181016040528101906200005b91906200045d565b6040518060400160405280601081526020017f5069586975204e6576657220506f6f70000000000000000000000000000000008152506040518060400160405280600381526020017f504e5000000000000000000000000000000000000000000000000000000000008152506107d060016000811162000112576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001099062000594565b60405180910390fd5b6000821162000158576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014f9062000572565b60405180910390fd5b8360019080519060200190620001709291906200033b565b508260029080519060200190620001899291906200033b565b508160a08181525050806080818152505050505050620001be620001b26200026d60201b60201c565b6200027560201b60201c565b80600c9080519060200190620001d69291906200033b565b506107d0600a819055506101f460c0818152505060405180606001604052806105dc61ffff168152602001600161ffff1681526020016000815250600f60008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff1602179055506040820151816001015590505050620006f8565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003499062000664565b90600052602060002090601f0160209004810192826200036d5760008555620003b9565b82601f106200038857805160ff1916838001178555620003b9565b82800160010185558215620003b9579182015b82811115620003b85782518255916020019190600101906200039b565b5b509050620003c89190620003cc565b5090565b5b80821115620003e7576000816000905550600101620003cd565b5090565b600062000402620003fc84620005ea565b620005b6565b9050828152602081018484840111156200041b57600080fd5b620004288482856200062e565b509392505050565b600082601f8301126200044257600080fd5b815162000454848260208601620003eb565b91505092915050565b6000602082840312156200047057600080fd5b600082015167ffffffffffffffff8111156200048b57600080fd5b620004998482850162000430565b91505092915050565b6000620004b16027836200061d565b91507f455243373231413a206d61782062617463682073697a65206d7573742062652060008301527f6e6f6e7a65726f000000000000000000000000000000000000000000000000006020830152604082019050919050565b600062000519602e836200061d565b91507f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008301527f6e6f6e7a65726f20737570706c790000000000000000000000000000000000006020830152604082019050919050565b600060208201905081810360008301526200058d81620004a2565b9050919050565b60006020820190508181036000830152620005af816200050a565b9050919050565b6000604051905081810181811067ffffffffffffffff82111715620005e057620005df620006c9565b5b8060405250919050565b600067ffffffffffffffff821115620006085762000607620006c9565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b838110156200064e57808201518184015260208101905062000631565b838111156200065e576000848401525b50505050565b600060028204905060018216806200067d57607f821691505b602082108114156200069457620006936200069a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60805160a05160c051615ace6200073a600039600081816124f70152612fe6015260008181612d6f01528181612d980152613844015260005050615ace6000f3fe60806040526004361061027d5760003560e01c8063722503801161014f578063c105c02e116100c1578063d7224ba01161007a578063d7224ba014610977578063e985e9c5146109a2578063f2c4ce1e146109df578063f2fde38b14610a08578063f607cc4c14610a31578063fcd2a42714610a5a5761027d565b8063c105c02e14610855578063c2ca0ac514610882578063c7418b3d146108ab578063c87b56dd146108e8578063cf456ae714610925578063d5ca32361461094e5761027d565b8063a22cb46511610113578063a22cb46514610766578063a4f4f8af1461078f578063adf2131b146107ba578063b67c25a3146107e5578063b88d4fde14610810578063c0ecaba4146108395761027d565b806372250380146106a55780638377d377146106d05780638da5cb5b146106f957806395d89b411461072457806397f5ec671461074f5761027d565b806340c10f19116101f35780636352211e116101ac5780636352211e146105955780636bf9ec40146105d25780636c0360eb146105fd5780636f8b44b01461062857806370a0823114610651578063715018a61461068e5761027d565b806340c10f191461048957806342842e0e146104b257806342966c68146104db5780634c0f38c2146105045780634f6ccce71461052f57806355f804b31461056c5761027d565b806318160ddd1161024557806318160ddd1461037957806323b872dd146103a45780632f745c59146103cd5780633b4705821461040a5780633ccfd60b146104355780633dd08c381461044c5761027d565b806301ffc9a71461028257806306fdde03146102bf57806308037267146102ea578063081812fc14610313578063095ea7b314610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a4919061414e565b610a85565b6040516102b69190615009565b60405180910390f35b3480156102cb57600080fd5b506102d4610bcf565b6040516102e19190615024565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c91906142e3565b610c61565b005b34801561031f57600080fd5b5061033a60048036038101906103359190614332565b610da3565b6040516103479190614f79565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190614112565b610e28565b005b34801561038557600080fd5b5061038e610f41565b60405161039b91906154b8565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c6919061400c565b610f4a565b005b3480156103d957600080fd5b506103f460048036038101906103ef9190614112565b610f5a565b60405161040191906154b8565b60405180910390f35b34801561041657600080fd5b5061041f611158565b60405161042c91906154b8565b60405180910390f35b34801561044157600080fd5b5061044a611162565b005b34801561045857600080fd5b50610473600480360381019061046e9190613fa7565b61128d565b6040516104809190615009565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190614112565b6112ad565b005b3480156104be57600080fd5b506104d960048036038101906104d4919061400c565b611347565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190614332565b611367565b005b34801561051057600080fd5b50610519611377565b60405161052691906154b8565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190614332565b611381565b60405161056391906154b8565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e91906141a0565b6113d4565b005b3480156105a157600080fd5b506105bc60048036038101906105b79190614332565b611466565b6040516105c99190614f79565b60405180910390f35b3480156105de57600080fd5b506105e761147c565b6040516105f491906154b8565b60405180910390f35b34801561060957600080fd5b50610612611482565b60405161061f9190615024565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190614332565b611514565b005b34801561065d57600080fd5b5061067860048036038101906106739190613fa7565b611664565b60405161068591906154b8565b60405180910390f35b34801561069a57600080fd5b506106a361174d565b005b3480156106b157600080fd5b506106ba6117d5565b6040516106c79190615024565b60405180910390f35b3480156106dc57600080fd5b506106f760048036038101906106f2919061424f565b611863565b005b34801561070557600080fd5b5061070e6118ed565b60405161071b9190614f79565b60405180910390f35b34801561073057600080fd5b50610739611917565b6040516107469190615024565b60405180910390f35b34801561075b57600080fd5b506107646119a9565b005b34801561077257600080fd5b5061078d600480360381019061078891906140d6565b611a51565b005b34801561079b57600080fd5b506107a4611bd2565b6040516107b19190615466565b60405180910390f35b3480156107c657600080fd5b506107cf611be6565b6040516107dc9190615466565b60405180910390f35b3480156107f157600080fd5b506107fa611bfa565b6040516108079190615009565b60405180910390f35b34801561081c57600080fd5b506108376004803603810190610832919061405b565b611c0d565b005b610853600480360381019061084e9190614226565b611c69565b005b34801561086157600080fd5b5061086a611ce2565b60405161087993929190615481565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a49190614332565b611d16565b005b3480156108b757600080fd5b506108d260048036038101906108cd9190613fa7565b611ddc565b6040516108df9190615466565b60405180910390f35b3480156108f457600080fd5b5061090f600480360381019061090a9190614332565b611dfd565b60405161091c9190615024565b60405180910390f35b34801561093157600080fd5b5061094c600480360381019061094791906140d6565b611fa0565b005b34801561095a57600080fd5b506109756004803603810190610970919061428b565b612120565b005b34801561098357600080fd5b5061098c612260565b60405161099991906154b8565b60405180910390f35b3480156109ae57600080fd5b506109c960048036038101906109c49190613fd0565b612266565b6040516109d69190615009565b60405180910390f35b3480156109eb57600080fd5b50610a066004803603810190610a0191906141e5565b6122fa565b005b348015610a1457600080fd5b50610a2f6004803603810190610a2a9190613fa7565b612390565b005b348015610a3d57600080fd5b50610a586004803603810190610a539190614226565b612488565b005b348015610a6657600080fd5b50610a6f6124f5565b604051610a7c91906154b8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b5057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bb857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bc85750610bc782612519565b5b9050919050565b606060018054610bde906158ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0a906158ac565b8015610c575780601f10610c2c57610100808354040283529160200191610c57565b820191906000526020600020905b815481529060010190602001808311610c3a57829003601f168201915b5050505050905090565b610c69612583565b73ffffffffffffffffffffffffffffffffffffffff16610c876118ed565b73ffffffffffffffffffffffffffffffffffffffff1614610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd490615246565b60405180910390fd5b600a548361ffff161115610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90615066565b60405180910390fd5b60405180606001604052808461ffff1681526020018361ffff16815260200182815250600f60008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555060408201518160010155905050505050565b6000610dae8261258b565b610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490615406565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e3382611466565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b906152c6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ec3612583565b73ffffffffffffffffffffffffffffffffffffffff161480610ef25750610ef181610eec612583565b612266565b5b610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f28906151e6565b60405180910390fd5b610f3c838383612598565b505050565b60008054905090565b610f5583838361264a565b505050565b6000610f6583611664565b8210610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90615046565b60405180910390fd5b6000610fb0610f41565b905060008060005b83811015611116576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110aa57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561110257868414156110f3578195505050505050611152565b83806110fe906158de565b9450505b50808061110e906158de565b915050610fb8565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611149906153a6565b60405180910390fd5b92915050565b60006107d0905090565b61116a612583565b73ffffffffffffffffffffffffffffffffffffffff166111886118ed565b73ffffffffffffffffffffffffffffffffffffffff16146111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d590615246565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161120490614f64565b60006040518083038185875af1925050503d8060008114611241576040519150601f19603f3d011682016040523d82523d6000602084013e611246565b606091505b505090508061128a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611281906150a6565b60405180910390fd5b50565b600d6020528060005260406000206000915054906101000a900460ff1681565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133090615166565b60405180910390fd5b6113438282612c03565b5050565b61136283838360405180602001604052806000815250611c0d565b505050565b6113743361dead83610f4a565b50565b6000600a54905090565b600061138b610f41565b82106113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c390615126565b60405180910390fd5b819050919050565b6113dc612583565b73ffffffffffffffffffffffffffffffffffffffff166113fa6118ed565b73ffffffffffffffffffffffffffffffffffffffff1614611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790615246565b60405180910390fd5b818160039190611461929190613c62565b505050565b600061147182612d1b565b600001519050919050565b600b5481565b606060038054611491906158ac565b80601f01602080910402602001604051908101604052809291908181526020018280546114bd906158ac565b801561150a5780601f106114df5761010080835404028352916020019161150a565b820191906000526020600020905b8154815290600101906020018083116114ed57829003601f168201915b5050505050905090565b61151c612583565b73ffffffffffffffffffffffffffffffffffffffff1661153a6118ed565b73ffffffffffffffffffffffffffffffffffffffff1614611590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158790615246565b60405180910390fd5b611598610f41565b8110156115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d1906150e6565b60405180910390fd5b6107d081111561161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690615346565b60405180910390fd5b7f4e4144d58c74765aab6b864c8cb807767198960f6ae6b4b135c56d41b639b7fe600a54826040516116529291906154d3565b60405180910390a180600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90615206565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611755612583565b73ffffffffffffffffffffffffffffffffffffffff166117736118ed565b73ffffffffffffffffffffffffffffffffffffffff16146117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090615246565b60405180910390fd5b6117d36000612f1e565b565b600c80546117e2906158ac565b80601f016020809104026020016040519081016040528092919081815260200182805461180e906158ac565b801561185b5780601f106118305761010080835404028352916020019161185b565b820191906000526020600020905b81548152906001019060200180831161183e57829003601f168201915b505050505081565b61186b612583565b73ffffffffffffffffffffffffffffffffffffffff166118896118ed565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690615246565b60405180910390fd5b6118e98282612fe4565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611926906158ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611952906158ac565b801561199f5780601f106119745761010080835404028352916020019161199f565b820191906000526020600020905b81548152906001019060200180831161198257829003601f168201915b5050505050905090565b6119b1612583565b73ffffffffffffffffffffffffffffffffffffffff166119cf6118ed565b73ffffffffffffffffffffffffffffffffffffffff1614611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c90615246565b60405180910390fd5b600e60049054906101000a900460ff1615600e60046101000a81548160ff021916908315150217905550565b611a59612583565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90615286565b60405180910390fd5b8060076000611ad4612583565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b81612583565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bc69190615009565b60405180910390a35050565b600e60029054906101000a900461ffff1681565b600e60009054906101000a900461ffff1681565b600e60049054906101000a900460ff1681565b611c1884848461264a565b611c24848484846130b1565b611c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5a906152e6565b60405180910390fd5b50505050565b600e60049054906101000a900460ff16611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf90615446565b60405180910390fd5b611cc23382613248565b611cdf8161ffff16600f60010154611cda91906156e0565b6133bf565b50565b600f8060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16908060010154905083565b611d1e612583565b73ffffffffffffffffffffffffffffffffffffffff16611d3c6118ed565b73ffffffffffffffffffffffffffffffffffffffff1614611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990615246565b60405180910390fd5b80600b819055507f9a5a126d5a9736641cc82adfebab5f62e9429e7963b9810cffdc9184c5fda2a7611dc2610f41565b82604051611dd19291906154d3565b60405180910390a150565b60116020528060005260406000206000915054906101000a900461ffff1681565b6060611e088261258b565b611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e90615266565b60405180910390fd5b611e5082613460565b611ee657600c8054611e61906158ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611e8d906158ac565b8015611eda5780601f10611eaf57610100808354040283529160200191611eda565b820191906000526020600020905b815481529060010190602001808311611ebd57829003601f168201915b50505050509050611f9b565b600060038054611ef5906158ac565b90501415611f8f57600c8054611f0a906158ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611f36906158ac565b8015611f835780601f10611f5857610100808354040283529160200191611f83565b820191906000526020600020905b815481529060010190602001808311611f6657829003601f168201915b50505050509050611f9b565b611f988261346f565b90505b919050565b611fa8612583565b73ffffffffffffffffffffffffffffffffffffffff16611fc66118ed565b73ffffffffffffffffffffffffffffffffffffffff161461201c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201390615246565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561208c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612083906151a6565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1f96bc657d385fd83da973a43f2ad969e6d96b6779b779571a7306db7ca1cd008282604051612114929190614fe0565b60405180910390a15050565b612128612583565b73ffffffffffffffffffffffffffffffffffffffff166121466118ed565b73ffffffffffffffffffffffffffffffffffffffff161461219c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219390615246565b60405180910390fd5b600082829050116121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d9906153e6565b60405180910390fd5b60005b8282905081101561225a576122478484848481811061222d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906122429190613fa7565b612fe4565b8080612252906158de565b9150506121e5565b50505050565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612302612583565b73ffffffffffffffffffffffffffffffffffffffff166123206118ed565b73ffffffffffffffffffffffffffffffffffffffff1614612376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236d90615246565b60405180910390fd5b80600c908051906020019061238c929190613ce8565b5050565b612398612583565b73ffffffffffffffffffffffffffffffffffffffff166123b66118ed565b73ffffffffffffffffffffffffffffffffffffffff161461240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390615246565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561247c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247390615086565b60405180910390fd5b61248581612f1e565b50565b600e60049054906101000a900460ff1680156124a957506000600f60010154145b6124e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124df90615446565b60405180910390fd5b6124f23382613248565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061265582612d1b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661267c612583565b73ffffffffffffffffffffffffffffffffffffffff1614806126d857506126a1612583565b73ffffffffffffffffffffffffffffffffffffffff166126c084610da3565b73ffffffffffffffffffffffffffffffffffffffff16145b806126f457506126f382600001516126ee612583565b612266565b5b905080612736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272d906152a6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279f90615226565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280f90615146565b60405180910390fd5b6128258585856001613599565b6128356000848460000151612598565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166128a3919061573a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661294791906155db565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612a4d9190615659565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b9357612ac38161258b565b15612b92576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bfb868686600161359f565b505050505050565b60008111612c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3d906151c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cad90615386565b60405180910390fd5b600a5481612cc2610f41565b612ccc9190615659565b1115612d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0490615066565b60405180910390fd5b612d1782826135a5565b5050565b612d23613d6e565b612d2c8261258b565b612d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d62906150c6565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612dcf5760017f000000000000000000000000000000000000000000000000000000000000000084612dc2919061576e565b612dcc9190615659565b90505b60008390505b818110612edd576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ec957809350505050612f19565b508080612ed590615882565b915050612dd5565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f10906153c6565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f000000000000000000000000000000000000000000000000000000000000000082600e60009054906101000a900461ffff166130219190615621565b61ffff161115613066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305d90615186565b60405180910390fd5b81600e60008282829054906101000a900461ffff166130859190615621565b92506101000a81548161ffff021916908361ffff1602179055506130ad818361ffff16612c03565b5050565b60006130d28473ffffffffffffffffffffffffffffffffffffffff166135c3565b1561323b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130fb612583565b8786866040518563ffffffff1660e01b815260040161311d9493929190614f94565b602060405180830381600087803b15801561313757600080fd5b505af192505050801561316857506040513d601f19601f820116820180604052508101906131659190614177565b60015b6131eb573d8060008114613198576040519150601f19603f3d011682016040523d82523d6000602084013e61319d565b606091505b506000815114156131e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131da906152e6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613240565b600190505b949350505050565b600f60000160029054906101000a900461ffff1661ffff1681601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166132b99190615621565b61ffff1611156132fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f590615106565b60405180910390fd5b80600e60028282829054906101000a900461ffff1661331d9190615621565b92506101000a81548161ffff021916908361ffff16021790555080601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166133939190615621565b92506101000a81548161ffff021916908361ffff1602179055506133bb828261ffff16612c03565b5050565b80341015613402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f990615306565b60405180910390fd5b8034111561345d573373ffffffffffffffffffffffffffffffffffffffff166108fc8234613430919061576e565b9081150290604051600060405180830381858888f1935050505015801561345b573d6000803e3d6000fd5b505b50565b6000600b548211159050919050565b606061347a8261258b565b6134b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b090615266565b60405180910390fd5b6000600380546134c8906158ac565b80601f01602080910402602001604051908101604052809291908181526020018280546134f4906158ac565b80156135415780601f1061351657610100808354040283529160200191613541565b820191906000526020600020905b81548152906001019060200180831161352457829003601f168201915b5050505050905060008151116135665760405180602001604052806000815250613591565b80613570846135d6565b604051602001613581929190614f40565b6040516020818303038152906040525b915050919050565b50505050565b50505050565b6135bf828260405180602001604052806000815250613783565b5050565b600080823b905060008111915050919050565b6060600082141561361e576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061377e565b600082905060005b60008214613650578080613639906158de565b915050600a8261364991906156af565b9150613626565b60008167ffffffffffffffff811115613692577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156136c45781602001600182028036833780820191505090505b5090505b60008514613777576001826136dd919061576e565b9150600a856136ec9190615927565b60306136f89190615659565b60f81b818381518110613734577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561377091906156af565b94506136c8565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156137f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f090615366565b60405180910390fd5b6138028161258b565b15613842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383990615326565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156138a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389c90615426565b60405180910390fd5b6138b26000858386613599565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516139af91906155db565b6fffffffffffffffffffffffffffffffff1681526020018583602001516139d691906155db565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613c4557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613be560008884886130b1565b613c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c1b906152e6565b60405180910390fd5b8180613c2f906158de565b9250508080613c3d906158de565b915050613b74565b5080600081905550613c5a600087858861359f565b505050505050565b828054613c6e906158ac565b90600052602060002090601f016020900481019282613c905760008555613cd7565b82601f10613ca957803560ff1916838001178555613cd7565b82800160010185558215613cd7579182015b82811115613cd6578235825591602001919060010190613cbb565b5b509050613ce49190613da8565b5090565b828054613cf4906158ac565b90600052602060002090601f016020900481019282613d165760008555613d5d565b82601f10613d2f57805160ff1916838001178555613d5d565b82800160010185558215613d5d579182015b82811115613d5c578251825591602001919060010190613d41565b5b509050613d6a9190613da8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613dc1576000816000905550600101613da9565b5090565b6000613dd8613dd38461552d565b6154fc565b905082815260208101848484011115613df057600080fd5b613dfb848285615840565b509392505050565b6000613e16613e118461555d565b6154fc565b905082815260208101848484011115613e2e57600080fd5b613e39848285615840565b509392505050565b600081359050613e5081615a25565b92915050565b60008083601f840112613e6857600080fd5b8235905067ffffffffffffffff811115613e8157600080fd5b602083019150836020820283011115613e9957600080fd5b9250929050565b600081359050613eaf81615a3c565b92915050565b600081359050613ec481615a53565b92915050565b600081519050613ed981615a53565b92915050565b600082601f830112613ef057600080fd5b8135613f00848260208601613dc5565b91505092915050565b60008083601f840112613f1b57600080fd5b8235905067ffffffffffffffff811115613f3457600080fd5b602083019150836001820283011115613f4c57600080fd5b9250929050565b600082601f830112613f6457600080fd5b8135613f74848260208601613e03565b91505092915050565b600081359050613f8c81615a6a565b92915050565b600081359050613fa181615a81565b92915050565b600060208284031215613fb957600080fd5b6000613fc784828501613e41565b91505092915050565b60008060408385031215613fe357600080fd5b6000613ff185828601613e41565b925050602061400285828601613e41565b9150509250929050565b60008060006060848603121561402157600080fd5b600061402f86828701613e41565b935050602061404086828701613e41565b925050604061405186828701613f92565b9150509250925092565b6000806000806080858703121561407157600080fd5b600061407f87828801613e41565b945050602061409087828801613e41565b93505060406140a187828801613f92565b925050606085013567ffffffffffffffff8111156140be57600080fd5b6140ca87828801613edf565b91505092959194509250565b600080604083850312156140e957600080fd5b60006140f785828601613e41565b925050602061410885828601613ea0565b9150509250929050565b6000806040838503121561412557600080fd5b600061413385828601613e41565b925050602061414485828601613f92565b9150509250929050565b60006020828403121561416057600080fd5b600061416e84828501613eb5565b91505092915050565b60006020828403121561418957600080fd5b600061419784828501613eca565b91505092915050565b600080602083850312156141b357600080fd5b600083013567ffffffffffffffff8111156141cd57600080fd5b6141d985828601613f09565b92509250509250929050565b6000602082840312156141f757600080fd5b600082013567ffffffffffffffff81111561421157600080fd5b61421d84828501613f53565b91505092915050565b60006020828403121561423857600080fd5b600061424684828501613f7d565b91505092915050565b6000806040838503121561426257600080fd5b600061427085828601613f7d565b925050602061428185828601613e41565b9150509250929050565b6000806000604084860312156142a057600080fd5b60006142ae86828701613f7d565b935050602084013567ffffffffffffffff8111156142cb57600080fd5b6142d786828701613e56565b92509250509250925092565b6000806000606084860312156142f857600080fd5b600061430686828701613f7d565b935050602061431786828701613f7d565b925050604061432886828701613f92565b9150509250925092565b60006020828403121561434457600080fd5b600061435284828501613f92565b91505092915050565b614364816157a2565b82525050565b614373816157b4565b82525050565b60006143848261558d565b61438e81856155a3565b935061439e81856020860161584f565b6143a781615a14565b840191505092915050565b60006143bd82615598565b6143c781856155bf565b93506143d781856020860161584f565b6143e081615a14565b840191505092915050565b60006143f682615598565b61440081856155d0565b935061441081856020860161584f565b80840191505092915050565b60006144296022836155bf565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061448f6013836155bf565b91507f4d617820737570706c79206578636565646564000000000000000000000000006000830152602082019050919050565b60006144cf6026836155bf565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614535600f836155bf565b91507f5472616e73666572206661696c656400000000000000000000000000000000006000830152602082019050919050565b6000614575602a836155bf565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b60006145db6016836155bf565b91507f4c657373207468616e20616c7265616479206d696e74000000000000000000006000830152602082019050919050565b600061461b6024836155bf565b91507f4d6178206d696e7420616d6f756e7420706572206163636f756e74206578636560008301527f65646564000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146816023836155bf565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146e76025836155bf565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061474d600b836155bf565b91507f4f6e6c79206d696e7465720000000000000000000000000000000000000000006000830152602082019050919050565b600061478d6014836155bf565b91507f4d617820726573657276652065786365656465640000000000000000000000006000830152602082019050919050565b60006147cd600e836155bf565b91507f496e76616c6964206d696e7465720000000000000000000000000000000000006000830152602082019050919050565b600061480d6010836155bf565b91507f496e76616c6964207175616e74697479000000000000000000000000000000006000830152602082019050919050565b600061484d6039836155bf565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b60006148b3602b836155bf565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006149196026836155bf565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061497f6020836155bf565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006149bf602f836155bf565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614a25601a836155bf565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000614a656032836155bf565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000614acb6022836155bf565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b316000836155b4565b9150600082019050919050565b6000614b4b6033836155bf565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000614bb16015836155bf565b91507f4e65656420746f2073656e64206d6f72652045544800000000000000000000006000830152602082019050919050565b6000614bf1601d836155bf565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b6000614c316017836155bf565b91507f4f766572616c6c20737570706c792065786365656465640000000000000000006000830152602082019050919050565b6000614c716021836155bf565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614cd76018836155bf565b91507f4d696e7420746f20746865207a65726f206164647265737300000000000000006000830152602082019050919050565b6000614d17602e836155bf565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000614d7d602f836155bf565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614de36011836155bf565b91507f496e76616c6964206164647265737365730000000000000000000000000000006000830152602082019050919050565b6000614e23602d836155bf565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000614e896022836155bf565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614eef6019836155bf565b91507f5075626c6963206d696e74206973206e6f7420616374697665000000000000006000830152602082019050919050565b614f2b81615808565b82525050565b614f3a81615836565b82525050565b6000614f4c82856143eb565b9150614f5882846143eb565b91508190509392505050565b6000614f6f82614b24565b9150819050919050565b6000602082019050614f8e600083018461435b565b92915050565b6000608082019050614fa9600083018761435b565b614fb6602083018661435b565b614fc36040830185614f31565b8181036060830152614fd58184614379565b905095945050505050565b6000604082019050614ff5600083018561435b565b615002602083018461436a565b9392505050565b600060208201905061501e600083018461436a565b92915050565b6000602082019050818103600083015261503e81846143b2565b905092915050565b6000602082019050818103600083015261505f8161441c565b9050919050565b6000602082019050818103600083015261507f81614482565b9050919050565b6000602082019050818103600083015261509f816144c2565b9050919050565b600060208201905081810360008301526150bf81614528565b9050919050565b600060208201905081810360008301526150df81614568565b9050919050565b600060208201905081810360008301526150ff816145ce565b9050919050565b6000602082019050818103600083015261511f8161460e565b9050919050565b6000602082019050818103600083015261513f81614674565b9050919050565b6000602082019050818103600083015261515f816146da565b9050919050565b6000602082019050818103600083015261517f81614740565b9050919050565b6000602082019050818103600083015261519f81614780565b9050919050565b600060208201905081810360008301526151bf816147c0565b9050919050565b600060208201905081810360008301526151df81614800565b9050919050565b600060208201905081810360008301526151ff81614840565b9050919050565b6000602082019050818103600083015261521f816148a6565b9050919050565b6000602082019050818103600083015261523f8161490c565b9050919050565b6000602082019050818103600083015261525f81614972565b9050919050565b6000602082019050818103600083015261527f816149b2565b9050919050565b6000602082019050818103600083015261529f81614a18565b9050919050565b600060208201905081810360008301526152bf81614a58565b9050919050565b600060208201905081810360008301526152df81614abe565b9050919050565b600060208201905081810360008301526152ff81614b3e565b9050919050565b6000602082019050818103600083015261531f81614ba4565b9050919050565b6000602082019050818103600083015261533f81614be4565b9050919050565b6000602082019050818103600083015261535f81614c24565b9050919050565b6000602082019050818103600083015261537f81614c64565b9050919050565b6000602082019050818103600083015261539f81614cca565b9050919050565b600060208201905081810360008301526153bf81614d0a565b9050919050565b600060208201905081810360008301526153df81614d70565b9050919050565b600060208201905081810360008301526153ff81614dd6565b9050919050565b6000602082019050818103600083015261541f81614e16565b9050919050565b6000602082019050818103600083015261543f81614e7c565b9050919050565b6000602082019050818103600083015261545f81614ee2565b9050919050565b600060208201905061547b6000830184614f22565b92915050565b60006060820190506154966000830186614f22565b6154a36020830185614f22565b6154b06040830184614f31565b949350505050565b60006020820190506154cd6000830184614f31565b92915050565b60006040820190506154e86000830185614f31565b6154f56020830184614f31565b9392505050565b6000604051905081810181811067ffffffffffffffff82111715615523576155226159e5565b5b8060405250919050565b600067ffffffffffffffff821115615548576155476159e5565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615578576155776159e5565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006155e6826157ec565b91506155f1836157ec565b9250826fffffffffffffffffffffffffffffffff0382111561561657615615615958565b5b828201905092915050565b600061562c82615808565b915061563783615808565b92508261ffff0382111561564e5761564d615958565b5b828201905092915050565b600061566482615836565b915061566f83615836565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156156a4576156a3615958565b5b828201905092915050565b60006156ba82615836565b91506156c583615836565b9250826156d5576156d4615987565b5b828204905092915050565b60006156eb82615836565b91506156f683615836565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561572f5761572e615958565b5b828202905092915050565b6000615745826157ec565b9150615750836157ec565b92508282101561576357615762615958565b5b828203905092915050565b600061577982615836565b915061578483615836565b92508282101561579757615796615958565b5b828203905092915050565b60006157ad82615816565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561586d578082015181840152602081019050615852565b8381111561587c576000848401525b50505050565b600061588d82615836565b915060008214156158a1576158a0615958565b5b600182039050919050565b600060028204905060018216806158c457607f821691505b602082108114156158d8576158d76159b6565b5b50919050565b60006158e982615836565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561591c5761591b615958565b5b600182019050919050565b600061593282615836565b915061593d83615836565b92508261594d5761594c615987565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615a2e816157a2565b8114615a3957600080fd5b50565b615a45816157b4565b8114615a5057600080fd5b50565b615a5c816157c0565b8114615a6757600080fd5b50565b615a7381615808565b8114615a7e57600080fd5b50565b615a8a81615836565b8114615a9557600080fd5b5056fea26469706673582212201a18436cabb3b69b8e3861339da7811933441d043c5874e93b8d360503427a3264736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063722503801161014f578063c105c02e116100c1578063d7224ba01161007a578063d7224ba014610977578063e985e9c5146109a2578063f2c4ce1e146109df578063f2fde38b14610a08578063f607cc4c14610a31578063fcd2a42714610a5a5761027d565b8063c105c02e14610855578063c2ca0ac514610882578063c7418b3d146108ab578063c87b56dd146108e8578063cf456ae714610925578063d5ca32361461094e5761027d565b8063a22cb46511610113578063a22cb46514610766578063a4f4f8af1461078f578063adf2131b146107ba578063b67c25a3146107e5578063b88d4fde14610810578063c0ecaba4146108395761027d565b806372250380146106a55780638377d377146106d05780638da5cb5b146106f957806395d89b411461072457806397f5ec671461074f5761027d565b806340c10f19116101f35780636352211e116101ac5780636352211e146105955780636bf9ec40146105d25780636c0360eb146105fd5780636f8b44b01461062857806370a0823114610651578063715018a61461068e5761027d565b806340c10f191461048957806342842e0e146104b257806342966c68146104db5780634c0f38c2146105045780634f6ccce71461052f57806355f804b31461056c5761027d565b806318160ddd1161024557806318160ddd1461037957806323b872dd146103a45780632f745c59146103cd5780633b4705821461040a5780633ccfd60b146104355780633dd08c381461044c5761027d565b806301ffc9a71461028257806306fdde03146102bf57806308037267146102ea578063081812fc14610313578063095ea7b314610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a4919061414e565b610a85565b6040516102b69190615009565b60405180910390f35b3480156102cb57600080fd5b506102d4610bcf565b6040516102e19190615024565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c91906142e3565b610c61565b005b34801561031f57600080fd5b5061033a60048036038101906103359190614332565b610da3565b6040516103479190614f79565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190614112565b610e28565b005b34801561038557600080fd5b5061038e610f41565b60405161039b91906154b8565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c6919061400c565b610f4a565b005b3480156103d957600080fd5b506103f460048036038101906103ef9190614112565b610f5a565b60405161040191906154b8565b60405180910390f35b34801561041657600080fd5b5061041f611158565b60405161042c91906154b8565b60405180910390f35b34801561044157600080fd5b5061044a611162565b005b34801561045857600080fd5b50610473600480360381019061046e9190613fa7565b61128d565b6040516104809190615009565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190614112565b6112ad565b005b3480156104be57600080fd5b506104d960048036038101906104d4919061400c565b611347565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190614332565b611367565b005b34801561051057600080fd5b50610519611377565b60405161052691906154b8565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190614332565b611381565b60405161056391906154b8565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e91906141a0565b6113d4565b005b3480156105a157600080fd5b506105bc60048036038101906105b79190614332565b611466565b6040516105c99190614f79565b60405180910390f35b3480156105de57600080fd5b506105e761147c565b6040516105f491906154b8565b60405180910390f35b34801561060957600080fd5b50610612611482565b60405161061f9190615024565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190614332565b611514565b005b34801561065d57600080fd5b5061067860048036038101906106739190613fa7565b611664565b60405161068591906154b8565b60405180910390f35b34801561069a57600080fd5b506106a361174d565b005b3480156106b157600080fd5b506106ba6117d5565b6040516106c79190615024565b60405180910390f35b3480156106dc57600080fd5b506106f760048036038101906106f2919061424f565b611863565b005b34801561070557600080fd5b5061070e6118ed565b60405161071b9190614f79565b60405180910390f35b34801561073057600080fd5b50610739611917565b6040516107469190615024565b60405180910390f35b34801561075b57600080fd5b506107646119a9565b005b34801561077257600080fd5b5061078d600480360381019061078891906140d6565b611a51565b005b34801561079b57600080fd5b506107a4611bd2565b6040516107b19190615466565b60405180910390f35b3480156107c657600080fd5b506107cf611be6565b6040516107dc9190615466565b60405180910390f35b3480156107f157600080fd5b506107fa611bfa565b6040516108079190615009565b60405180910390f35b34801561081c57600080fd5b506108376004803603810190610832919061405b565b611c0d565b005b610853600480360381019061084e9190614226565b611c69565b005b34801561086157600080fd5b5061086a611ce2565b60405161087993929190615481565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a49190614332565b611d16565b005b3480156108b757600080fd5b506108d260048036038101906108cd9190613fa7565b611ddc565b6040516108df9190615466565b60405180910390f35b3480156108f457600080fd5b5061090f600480360381019061090a9190614332565b611dfd565b60405161091c9190615024565b60405180910390f35b34801561093157600080fd5b5061094c600480360381019061094791906140d6565b611fa0565b005b34801561095a57600080fd5b506109756004803603810190610970919061428b565b612120565b005b34801561098357600080fd5b5061098c612260565b60405161099991906154b8565b60405180910390f35b3480156109ae57600080fd5b506109c960048036038101906109c49190613fd0565b612266565b6040516109d69190615009565b60405180910390f35b3480156109eb57600080fd5b50610a066004803603810190610a0191906141e5565b6122fa565b005b348015610a1457600080fd5b50610a2f6004803603810190610a2a9190613fa7565b612390565b005b348015610a3d57600080fd5b50610a586004803603810190610a539190614226565b612488565b005b348015610a6657600080fd5b50610a6f6124f5565b604051610a7c91906154b8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b5057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bb857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bc85750610bc782612519565b5b9050919050565b606060018054610bde906158ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0a906158ac565b8015610c575780601f10610c2c57610100808354040283529160200191610c57565b820191906000526020600020905b815481529060010190602001808311610c3a57829003601f168201915b5050505050905090565b610c69612583565b73ffffffffffffffffffffffffffffffffffffffff16610c876118ed565b73ffffffffffffffffffffffffffffffffffffffff1614610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd490615246565b60405180910390fd5b600a548361ffff161115610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90615066565b60405180910390fd5b60405180606001604052808461ffff1681526020018361ffff16815260200182815250600f60008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555060408201518160010155905050505050565b6000610dae8261258b565b610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490615406565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e3382611466565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b906152c6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ec3612583565b73ffffffffffffffffffffffffffffffffffffffff161480610ef25750610ef181610eec612583565b612266565b5b610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f28906151e6565b60405180910390fd5b610f3c838383612598565b505050565b60008054905090565b610f5583838361264a565b505050565b6000610f6583611664565b8210610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90615046565b60405180910390fd5b6000610fb0610f41565b905060008060005b83811015611116576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110aa57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561110257868414156110f3578195505050505050611152565b83806110fe906158de565b9450505b50808061110e906158de565b915050610fb8565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611149906153a6565b60405180910390fd5b92915050565b60006107d0905090565b61116a612583565b73ffffffffffffffffffffffffffffffffffffffff166111886118ed565b73ffffffffffffffffffffffffffffffffffffffff16146111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d590615246565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161120490614f64565b60006040518083038185875af1925050503d8060008114611241576040519150601f19603f3d011682016040523d82523d6000602084013e611246565b606091505b505090508061128a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611281906150a6565b60405180910390fd5b50565b600d6020528060005260406000206000915054906101000a900460ff1681565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133090615166565b60405180910390fd5b6113438282612c03565b5050565b61136283838360405180602001604052806000815250611c0d565b505050565b6113743361dead83610f4a565b50565b6000600a54905090565b600061138b610f41565b82106113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c390615126565b60405180910390fd5b819050919050565b6113dc612583565b73ffffffffffffffffffffffffffffffffffffffff166113fa6118ed565b73ffffffffffffffffffffffffffffffffffffffff1614611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790615246565b60405180910390fd5b818160039190611461929190613c62565b505050565b600061147182612d1b565b600001519050919050565b600b5481565b606060038054611491906158ac565b80601f01602080910402602001604051908101604052809291908181526020018280546114bd906158ac565b801561150a5780601f106114df5761010080835404028352916020019161150a565b820191906000526020600020905b8154815290600101906020018083116114ed57829003601f168201915b5050505050905090565b61151c612583565b73ffffffffffffffffffffffffffffffffffffffff1661153a6118ed565b73ffffffffffffffffffffffffffffffffffffffff1614611590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158790615246565b60405180910390fd5b611598610f41565b8110156115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d1906150e6565b60405180910390fd5b6107d081111561161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690615346565b60405180910390fd5b7f4e4144d58c74765aab6b864c8cb807767198960f6ae6b4b135c56d41b639b7fe600a54826040516116529291906154d3565b60405180910390a180600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90615206565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611755612583565b73ffffffffffffffffffffffffffffffffffffffff166117736118ed565b73ffffffffffffffffffffffffffffffffffffffff16146117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090615246565b60405180910390fd5b6117d36000612f1e565b565b600c80546117e2906158ac565b80601f016020809104026020016040519081016040528092919081815260200182805461180e906158ac565b801561185b5780601f106118305761010080835404028352916020019161185b565b820191906000526020600020905b81548152906001019060200180831161183e57829003601f168201915b505050505081565b61186b612583565b73ffffffffffffffffffffffffffffffffffffffff166118896118ed565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690615246565b60405180910390fd5b6118e98282612fe4565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611926906158ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611952906158ac565b801561199f5780601f106119745761010080835404028352916020019161199f565b820191906000526020600020905b81548152906001019060200180831161198257829003601f168201915b5050505050905090565b6119b1612583565b73ffffffffffffffffffffffffffffffffffffffff166119cf6118ed565b73ffffffffffffffffffffffffffffffffffffffff1614611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c90615246565b60405180910390fd5b600e60049054906101000a900460ff1615600e60046101000a81548160ff021916908315150217905550565b611a59612583565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90615286565b60405180910390fd5b8060076000611ad4612583565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b81612583565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bc69190615009565b60405180910390a35050565b600e60029054906101000a900461ffff1681565b600e60009054906101000a900461ffff1681565b600e60049054906101000a900460ff1681565b611c1884848461264a565b611c24848484846130b1565b611c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5a906152e6565b60405180910390fd5b50505050565b600e60049054906101000a900460ff16611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf90615446565b60405180910390fd5b611cc23382613248565b611cdf8161ffff16600f60010154611cda91906156e0565b6133bf565b50565b600f8060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16908060010154905083565b611d1e612583565b73ffffffffffffffffffffffffffffffffffffffff16611d3c6118ed565b73ffffffffffffffffffffffffffffffffffffffff1614611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990615246565b60405180910390fd5b80600b819055507f9a5a126d5a9736641cc82adfebab5f62e9429e7963b9810cffdc9184c5fda2a7611dc2610f41565b82604051611dd19291906154d3565b60405180910390a150565b60116020528060005260406000206000915054906101000a900461ffff1681565b6060611e088261258b565b611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e90615266565b60405180910390fd5b611e5082613460565b611ee657600c8054611e61906158ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611e8d906158ac565b8015611eda5780601f10611eaf57610100808354040283529160200191611eda565b820191906000526020600020905b815481529060010190602001808311611ebd57829003601f168201915b50505050509050611f9b565b600060038054611ef5906158ac565b90501415611f8f57600c8054611f0a906158ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611f36906158ac565b8015611f835780601f10611f5857610100808354040283529160200191611f83565b820191906000526020600020905b815481529060010190602001808311611f6657829003601f168201915b50505050509050611f9b565b611f988261346f565b90505b919050565b611fa8612583565b73ffffffffffffffffffffffffffffffffffffffff16611fc66118ed565b73ffffffffffffffffffffffffffffffffffffffff161461201c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201390615246565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561208c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612083906151a6565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1f96bc657d385fd83da973a43f2ad969e6d96b6779b779571a7306db7ca1cd008282604051612114929190614fe0565b60405180910390a15050565b612128612583565b73ffffffffffffffffffffffffffffffffffffffff166121466118ed565b73ffffffffffffffffffffffffffffffffffffffff161461219c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219390615246565b60405180910390fd5b600082829050116121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d9906153e6565b60405180910390fd5b60005b8282905081101561225a576122478484848481811061222d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906122429190613fa7565b612fe4565b8080612252906158de565b9150506121e5565b50505050565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612302612583565b73ffffffffffffffffffffffffffffffffffffffff166123206118ed565b73ffffffffffffffffffffffffffffffffffffffff1614612376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236d90615246565b60405180910390fd5b80600c908051906020019061238c929190613ce8565b5050565b612398612583565b73ffffffffffffffffffffffffffffffffffffffff166123b66118ed565b73ffffffffffffffffffffffffffffffffffffffff161461240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390615246565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561247c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247390615086565b60405180910390fd5b61248581612f1e565b50565b600e60049054906101000a900460ff1680156124a957506000600f60010154145b6124e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124df90615446565b60405180910390fd5b6124f23382613248565b50565b7f00000000000000000000000000000000000000000000000000000000000001f481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061265582612d1b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661267c612583565b73ffffffffffffffffffffffffffffffffffffffff1614806126d857506126a1612583565b73ffffffffffffffffffffffffffffffffffffffff166126c084610da3565b73ffffffffffffffffffffffffffffffffffffffff16145b806126f457506126f382600001516126ee612583565b612266565b5b905080612736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272d906152a6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279f90615226565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280f90615146565b60405180910390fd5b6128258585856001613599565b6128356000848460000151612598565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166128a3919061573a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661294791906155db565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612a4d9190615659565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b9357612ac38161258b565b15612b92576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bfb868686600161359f565b505050505050565b60008111612c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3d906151c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cad90615386565b60405180910390fd5b600a5481612cc2610f41565b612ccc9190615659565b1115612d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0490615066565b60405180910390fd5b612d1782826135a5565b5050565b612d23613d6e565b612d2c8261258b565b612d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d62906150c6565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000007d08310612dcf5760017f00000000000000000000000000000000000000000000000000000000000007d084612dc2919061576e565b612dcc9190615659565b90505b60008390505b818110612edd576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ec957809350505050612f19565b508080612ed590615882565b915050612dd5565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f10906153c6565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f00000000000000000000000000000000000000000000000000000000000001f482600e60009054906101000a900461ffff166130219190615621565b61ffff161115613066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305d90615186565b60405180910390fd5b81600e60008282829054906101000a900461ffff166130859190615621565b92506101000a81548161ffff021916908361ffff1602179055506130ad818361ffff16612c03565b5050565b60006130d28473ffffffffffffffffffffffffffffffffffffffff166135c3565b1561323b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130fb612583565b8786866040518563ffffffff1660e01b815260040161311d9493929190614f94565b602060405180830381600087803b15801561313757600080fd5b505af192505050801561316857506040513d601f19601f820116820180604052508101906131659190614177565b60015b6131eb573d8060008114613198576040519150601f19603f3d011682016040523d82523d6000602084013e61319d565b606091505b506000815114156131e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131da906152e6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613240565b600190505b949350505050565b600f60000160029054906101000a900461ffff1661ffff1681601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166132b99190615621565b61ffff1611156132fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f590615106565b60405180910390fd5b80600e60028282829054906101000a900461ffff1661331d9190615621565b92506101000a81548161ffff021916908361ffff16021790555080601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166133939190615621565b92506101000a81548161ffff021916908361ffff1602179055506133bb828261ffff16612c03565b5050565b80341015613402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f990615306565b60405180910390fd5b8034111561345d573373ffffffffffffffffffffffffffffffffffffffff166108fc8234613430919061576e565b9081150290604051600060405180830381858888f1935050505015801561345b573d6000803e3d6000fd5b505b50565b6000600b548211159050919050565b606061347a8261258b565b6134b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b090615266565b60405180910390fd5b6000600380546134c8906158ac565b80601f01602080910402602001604051908101604052809291908181526020018280546134f4906158ac565b80156135415780601f1061351657610100808354040283529160200191613541565b820191906000526020600020905b81548152906001019060200180831161352457829003601f168201915b5050505050905060008151116135665760405180602001604052806000815250613591565b80613570846135d6565b604051602001613581929190614f40565b6040516020818303038152906040525b915050919050565b50505050565b50505050565b6135bf828260405180602001604052806000815250613783565b5050565b600080823b905060008111915050919050565b6060600082141561361e576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061377e565b600082905060005b60008214613650578080613639906158de565b915050600a8261364991906156af565b9150613626565b60008167ffffffffffffffff811115613692577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156136c45781602001600182028036833780820191505090505b5090505b60008514613777576001826136dd919061576e565b9150600a856136ec9190615927565b60306136f89190615659565b60f81b818381518110613734577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561377091906156af565b94506136c8565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156137f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f090615366565b60405180910390fd5b6138028161258b565b15613842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383990615326565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000007d08311156138a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389c90615426565b60405180910390fd5b6138b26000858386613599565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516139af91906155db565b6fffffffffffffffffffffffffffffffff1681526020018583602001516139d691906155db565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613c4557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613be560008884886130b1565b613c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c1b906152e6565b60405180910390fd5b8180613c2f906158de565b9250508080613c3d906158de565b915050613b74565b5080600081905550613c5a600087858861359f565b505050505050565b828054613c6e906158ac565b90600052602060002090601f016020900481019282613c905760008555613cd7565b82601f10613ca957803560ff1916838001178555613cd7565b82800160010185558215613cd7579182015b82811115613cd6578235825591602001919060010190613cbb565b5b509050613ce49190613da8565b5090565b828054613cf4906158ac565b90600052602060002090601f016020900481019282613d165760008555613d5d565b82601f10613d2f57805160ff1916838001178555613d5d565b82800160010185558215613d5d579182015b82811115613d5c578251825591602001919060010190613d41565b5b509050613d6a9190613da8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613dc1576000816000905550600101613da9565b5090565b6000613dd8613dd38461552d565b6154fc565b905082815260208101848484011115613df057600080fd5b613dfb848285615840565b509392505050565b6000613e16613e118461555d565b6154fc565b905082815260208101848484011115613e2e57600080fd5b613e39848285615840565b509392505050565b600081359050613e5081615a25565b92915050565b60008083601f840112613e6857600080fd5b8235905067ffffffffffffffff811115613e8157600080fd5b602083019150836020820283011115613e9957600080fd5b9250929050565b600081359050613eaf81615a3c565b92915050565b600081359050613ec481615a53565b92915050565b600081519050613ed981615a53565b92915050565b600082601f830112613ef057600080fd5b8135613f00848260208601613dc5565b91505092915050565b60008083601f840112613f1b57600080fd5b8235905067ffffffffffffffff811115613f3457600080fd5b602083019150836001820283011115613f4c57600080fd5b9250929050565b600082601f830112613f6457600080fd5b8135613f74848260208601613e03565b91505092915050565b600081359050613f8c81615a6a565b92915050565b600081359050613fa181615a81565b92915050565b600060208284031215613fb957600080fd5b6000613fc784828501613e41565b91505092915050565b60008060408385031215613fe357600080fd5b6000613ff185828601613e41565b925050602061400285828601613e41565b9150509250929050565b60008060006060848603121561402157600080fd5b600061402f86828701613e41565b935050602061404086828701613e41565b925050604061405186828701613f92565b9150509250925092565b6000806000806080858703121561407157600080fd5b600061407f87828801613e41565b945050602061409087828801613e41565b93505060406140a187828801613f92565b925050606085013567ffffffffffffffff8111156140be57600080fd5b6140ca87828801613edf565b91505092959194509250565b600080604083850312156140e957600080fd5b60006140f785828601613e41565b925050602061410885828601613ea0565b9150509250929050565b6000806040838503121561412557600080fd5b600061413385828601613e41565b925050602061414485828601613f92565b9150509250929050565b60006020828403121561416057600080fd5b600061416e84828501613eb5565b91505092915050565b60006020828403121561418957600080fd5b600061419784828501613eca565b91505092915050565b600080602083850312156141b357600080fd5b600083013567ffffffffffffffff8111156141cd57600080fd5b6141d985828601613f09565b92509250509250929050565b6000602082840312156141f757600080fd5b600082013567ffffffffffffffff81111561421157600080fd5b61421d84828501613f53565b91505092915050565b60006020828403121561423857600080fd5b600061424684828501613f7d565b91505092915050565b6000806040838503121561426257600080fd5b600061427085828601613f7d565b925050602061428185828601613e41565b9150509250929050565b6000806000604084860312156142a057600080fd5b60006142ae86828701613f7d565b935050602084013567ffffffffffffffff8111156142cb57600080fd5b6142d786828701613e56565b92509250509250925092565b6000806000606084860312156142f857600080fd5b600061430686828701613f7d565b935050602061431786828701613f7d565b925050604061432886828701613f92565b9150509250925092565b60006020828403121561434457600080fd5b600061435284828501613f92565b91505092915050565b614364816157a2565b82525050565b614373816157b4565b82525050565b60006143848261558d565b61438e81856155a3565b935061439e81856020860161584f565b6143a781615a14565b840191505092915050565b60006143bd82615598565b6143c781856155bf565b93506143d781856020860161584f565b6143e081615a14565b840191505092915050565b60006143f682615598565b61440081856155d0565b935061441081856020860161584f565b80840191505092915050565b60006144296022836155bf565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061448f6013836155bf565b91507f4d617820737570706c79206578636565646564000000000000000000000000006000830152602082019050919050565b60006144cf6026836155bf565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614535600f836155bf565b91507f5472616e73666572206661696c656400000000000000000000000000000000006000830152602082019050919050565b6000614575602a836155bf565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b60006145db6016836155bf565b91507f4c657373207468616e20616c7265616479206d696e74000000000000000000006000830152602082019050919050565b600061461b6024836155bf565b91507f4d6178206d696e7420616d6f756e7420706572206163636f756e74206578636560008301527f65646564000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146816023836155bf565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146e76025836155bf565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061474d600b836155bf565b91507f4f6e6c79206d696e7465720000000000000000000000000000000000000000006000830152602082019050919050565b600061478d6014836155bf565b91507f4d617820726573657276652065786365656465640000000000000000000000006000830152602082019050919050565b60006147cd600e836155bf565b91507f496e76616c6964206d696e7465720000000000000000000000000000000000006000830152602082019050919050565b600061480d6010836155bf565b91507f496e76616c6964207175616e74697479000000000000000000000000000000006000830152602082019050919050565b600061484d6039836155bf565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b60006148b3602b836155bf565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006149196026836155bf565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061497f6020836155bf565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006149bf602f836155bf565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614a25601a836155bf565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000614a656032836155bf565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000614acb6022836155bf565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b316000836155b4565b9150600082019050919050565b6000614b4b6033836155bf565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000614bb16015836155bf565b91507f4e65656420746f2073656e64206d6f72652045544800000000000000000000006000830152602082019050919050565b6000614bf1601d836155bf565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b6000614c316017836155bf565b91507f4f766572616c6c20737570706c792065786365656465640000000000000000006000830152602082019050919050565b6000614c716021836155bf565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614cd76018836155bf565b91507f4d696e7420746f20746865207a65726f206164647265737300000000000000006000830152602082019050919050565b6000614d17602e836155bf565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000614d7d602f836155bf565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614de36011836155bf565b91507f496e76616c6964206164647265737365730000000000000000000000000000006000830152602082019050919050565b6000614e23602d836155bf565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000614e896022836155bf565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614eef6019836155bf565b91507f5075626c6963206d696e74206973206e6f7420616374697665000000000000006000830152602082019050919050565b614f2b81615808565b82525050565b614f3a81615836565b82525050565b6000614f4c82856143eb565b9150614f5882846143eb565b91508190509392505050565b6000614f6f82614b24565b9150819050919050565b6000602082019050614f8e600083018461435b565b92915050565b6000608082019050614fa9600083018761435b565b614fb6602083018661435b565b614fc36040830185614f31565b8181036060830152614fd58184614379565b905095945050505050565b6000604082019050614ff5600083018561435b565b615002602083018461436a565b9392505050565b600060208201905061501e600083018461436a565b92915050565b6000602082019050818103600083015261503e81846143b2565b905092915050565b6000602082019050818103600083015261505f8161441c565b9050919050565b6000602082019050818103600083015261507f81614482565b9050919050565b6000602082019050818103600083015261509f816144c2565b9050919050565b600060208201905081810360008301526150bf81614528565b9050919050565b600060208201905081810360008301526150df81614568565b9050919050565b600060208201905081810360008301526150ff816145ce565b9050919050565b6000602082019050818103600083015261511f8161460e565b9050919050565b6000602082019050818103600083015261513f81614674565b9050919050565b6000602082019050818103600083015261515f816146da565b9050919050565b6000602082019050818103600083015261517f81614740565b9050919050565b6000602082019050818103600083015261519f81614780565b9050919050565b600060208201905081810360008301526151bf816147c0565b9050919050565b600060208201905081810360008301526151df81614800565b9050919050565b600060208201905081810360008301526151ff81614840565b9050919050565b6000602082019050818103600083015261521f816148a6565b9050919050565b6000602082019050818103600083015261523f8161490c565b9050919050565b6000602082019050818103600083015261525f81614972565b9050919050565b6000602082019050818103600083015261527f816149b2565b9050919050565b6000602082019050818103600083015261529f81614a18565b9050919050565b600060208201905081810360008301526152bf81614a58565b9050919050565b600060208201905081810360008301526152df81614abe565b9050919050565b600060208201905081810360008301526152ff81614b3e565b9050919050565b6000602082019050818103600083015261531f81614ba4565b9050919050565b6000602082019050818103600083015261533f81614be4565b9050919050565b6000602082019050818103600083015261535f81614c24565b9050919050565b6000602082019050818103600083015261537f81614c64565b9050919050565b6000602082019050818103600083015261539f81614cca565b9050919050565b600060208201905081810360008301526153bf81614d0a565b9050919050565b600060208201905081810360008301526153df81614d70565b9050919050565b600060208201905081810360008301526153ff81614dd6565b9050919050565b6000602082019050818103600083015261541f81614e16565b9050919050565b6000602082019050818103600083015261543f81614e7c565b9050919050565b6000602082019050818103600083015261545f81614ee2565b9050919050565b600060208201905061547b6000830184614f22565b92915050565b60006060820190506154966000830186614f22565b6154a36020830185614f22565b6154b06040830184614f31565b949350505050565b60006020820190506154cd6000830184614f31565b92915050565b60006040820190506154e86000830185614f31565b6154f56020830184614f31565b9392505050565b6000604051905081810181811067ffffffffffffffff82111715615523576155226159e5565b5b8060405250919050565b600067ffffffffffffffff821115615548576155476159e5565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615578576155776159e5565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006155e6826157ec565b91506155f1836157ec565b9250826fffffffffffffffffffffffffffffffff0382111561561657615615615958565b5b828201905092915050565b600061562c82615808565b915061563783615808565b92508261ffff0382111561564e5761564d615958565b5b828201905092915050565b600061566482615836565b915061566f83615836565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156156a4576156a3615958565b5b828201905092915050565b60006156ba82615836565b91506156c583615836565b9250826156d5576156d4615987565b5b828204905092915050565b60006156eb82615836565b91506156f683615836565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561572f5761572e615958565b5b828202905092915050565b6000615745826157ec565b9150615750836157ec565b92508282101561576357615762615958565b5b828203905092915050565b600061577982615836565b915061578483615836565b92508282101561579757615796615958565b5b828203905092915050565b60006157ad82615816565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561586d578082015181840152602081019050615852565b8381111561587c576000848401525b50505050565b600061588d82615836565b915060008214156158a1576158a0615958565b5b600182039050919050565b600060028204905060018216806158c457607f821691505b602082108114156158d8576158d76159b6565b5b50919050565b60006158e982615836565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561591c5761591b615958565b5b600182019050919050565b600061593282615836565b915061593d83615836565b92508261594d5761594c615987565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615a2e816157a2565b8114615a3957600080fd5b50565b615a45816157b4565b8114615a5057600080fd5b50565b615a5c816157c0565b8114615a6757600080fd5b50565b615a7381615808565b8114615a7e57600080fd5b50565b615a8a81615836565b8114615a9557600080fd5b5056fea26469706673582212201a18436cabb3b69b8e3861339da7811933441d043c5874e93b8d360503427a3264736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initNotRevealedUri (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


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.