ETH Price: $3,392.72 (-2.54%)
Gas: 1 Gwei

Token

Kitty Crypto Gang (KCG)
 

Overview

Max Total Supply

7,997 KCG

Holders

1,751

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 KCG
0x7994926fb3764b6e6f94f9dd5e8791542396ca0d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

KCG is a community driven brand of 3D Kitties and are Metaverse ready. With a limited supply of only 7997 Kitties within the collection and over 300 available traits, KCG is one of the most variated collections available on the market.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KCG

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : KCG.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;

// @title:      Kitty Crypto Gang
// @twitter:    https://twitter.com/KittyCryptoGang
// @url:        https://www.kittycryptogang.com/

/*
 * █▄▀ █ ▀█▀ ▀█▀ █▄█   █▀▀ █▀█ █▄█ █▀█ ▀█▀ █▀█   █▀▀ ▄▀█ █▄░█ █▀▀
 * █░█ █ ░█░ ░█░ ░█░   █▄▄ █▀▄ ░█░ █▀▀ ░█░ █▄█   █▄█ █▀█ █░▀█ █▄█
 */

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

contract KCG is ERC721A, Ownable, ReentrancyGuard {
    using Address for address;
    using MerkleProof for bytes32[];

    // ===== Variables =====
    string public baseTokenURI;
    uint256 public mintPrice = 0.25 ether;
    uint256 public collectionSize = 7997;
    uint256 public whitelistMintMaxSupply = 5000;
    uint256 public reservedSize = 220;
    uint256 public maxItemsPerWallet = 2;
    uint256 public maxItemsPerTx = 2;

    bool public whitelistMintPaused = true;
    bool public raffleMintPaused = true;
    bool public publicMintPaused = true;

    bytes32 whitelistMerkleRoot;
    bytes32 rafflelistMerkleRoot;

    mapping(address => uint256) public whitelistMintedAmount;
    mapping(address => uint256) public raffleMintedAmount;

    // ===== Constructor =====
    constructor() ERC721A("Kitty Crypto Gang", "KCG", 10) {}

    // ===== Modifier =====
    function _onlySender() private view {
        require(msg.sender == tx.origin);
    }

    modifier onlySender {
        _onlySender();
        _;
    }

    // ===== Dev mint =====
    function devMint(uint256 amount) external onlySender onlyOwner {
        require(amount <= reservedSize, "Minting amount exceeds reserved size");
        require((totalSupply() + amount) <= collectionSize, "Sold out!");
        require(
            amount % maxBatchSize == 0,
            "Can only mint a multiple of the maxBatchSize"
        );
        uint256 numChunks = amount / maxBatchSize;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(msg.sender, maxBatchSize);
        }
    }

    // ===== Whitelist mint =====
    function kittyMint(bytes32[] memory proof) external payable onlySender nonReentrant {
        require(!whitelistMintPaused, "Whitelist mint is paused");
        require(
            isAddressWhitelisted(proof, msg.sender),
            "You are not eligible for a whitelist mint"
        );

        uint256 amount = _getMintAmount(msg.value);

        require(
            whitelistMintedAmount[msg.sender] + amount <= maxItemsPerWallet,
            "Minting amount exceeds allowance per wallet"
        );

        require(whitelistMintMaxSupply >= amount, "Whitelist mint is sold out");

        whitelistMintMaxSupply = whitelistMintMaxSupply - amount;

        whitelistMintedAmount[msg.sender] += amount;

        _mintWithoutValidation(msg.sender, amount);
    }

    // ===== Raffle mint =====
    function raffleMint(bytes32[] memory proof) external payable onlySender nonReentrant {
        require(!raffleMintPaused, "Raffle mint is paused");
        require(
            isAddressOnRafflelist(proof, msg.sender),
            "You are not eligible for a raffle mint"
        );

        uint256 amount = _getMintAmount(msg.value);

        require(
            raffleMintedAmount[msg.sender] + amount <= maxItemsPerWallet,
            "Minting amount exceeds allowance per wallet"
        );

        raffleMintedAmount[msg.sender] += amount;

        _mintWithoutValidation(msg.sender, amount);
    }

    // ===== Public mint =====
    function publicMint() external payable onlySender nonReentrant {
        require(!publicMintPaused, "Public mint is paused");

        uint256 amount = _getMintAmount(msg.value);

        require(
            amount <= maxItemsPerTx,
            "Minting amount exceeds allowance per tx"
        );

        _mintWithoutValidation(msg.sender, amount);
    }

    // ===== Helper =====
    function _getMintAmount(uint256 value) internal view returns (uint256) {
        uint256 remainder = value % mintPrice;
        require(remainder == 0, "Send a divisible amount of eth");

        uint256 amount = value / mintPrice;
        require(amount > 0, "Amount to mint is 0");
        require(
            (totalSupply() + amount) <= collectionSize - reservedSize,
            "Sold out!"
        );
        return amount;
    }

    function _mintWithoutValidation(address to, uint256 amount) internal {
        require((totalSupply() + amount) <= collectionSize, "Sold out!");
        _safeMint(to, amount);
    }

    function isAddressWhitelisted(bytes32[] memory proof, address _address)
        public
        view
        returns (bool)
    {
        return isAddressInMerkleRoot(whitelistMerkleRoot, proof, _address);
    }

    function isAddressOnRafflelist(bytes32[] memory proof, address _address)
        public
        view
        returns (bool)
    {
        return isAddressInMerkleRoot(rafflelistMerkleRoot, proof, _address);
    }

    function isAddressInMerkleRoot(
        bytes32 merkleRoot,
        bytes32[] memory proof,
        address _address
    ) internal pure returns (bool) {
        return proof.verify(merkleRoot, keccak256(abi.encodePacked(_address)));
    }

    // ===== Setter (owner only) =====
    function setReservedSize(uint256 _reservedSize) external onlyOwner {
        reservedSize = _reservedSize;
    }

    function setPublicMintPaused(bool _publicMintPaused) external onlyOwner {
        publicMintPaused = _publicMintPaused;
    }

    function setRaffleMintPaused(bool _raffleMintPaused) external onlyOwner {
        raffleMintPaused = _raffleMintPaused;
    }

    function setWhitelistMintPaused(bool _whitelistMintPaused)
        external
        onlyOwner
    {
        whitelistMintPaused = _whitelistMintPaused;
    }

    function setWhitelistMintMaxSupply(uint256 _whitelistMintMaxSupply)
        external
        onlyOwner
    {
        whitelistMintMaxSupply = _whitelistMintMaxSupply;
    }

    function setWhitelistMintMerkleRoot(bytes32 _whitelistMerkleRoot)
        external
        onlyOwner
    {
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }

    function setRaffleMintMerkleRoot(bytes32 _rafflelistMerkleRoot)
        external
        onlyOwner
    {
        rafflelistMerkleRoot = _rafflelistMerkleRoot;
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }

    function setMaxItemsPerTx(uint256 _maxItemsPerTx) external onlyOwner {
        maxItemsPerTx = _maxItemsPerTx;
    }

    function setMaxItemsPerWallet(uint256 _maxItemsPerWallet) external onlyOwner {
        maxItemsPerWallet = _maxItemsPerWallet;
    }

    function setBaseTokenURI(string memory _baseTokenURI) external onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    // ===== Withdraw to owner =====
    function withdrawAll() external onlyOwner onlySender nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Failed to send ether");
    }

    // ===== View =====
    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721A)
        returns (string memory)
    {
        return
            string(abi.encodePacked(baseTokenURI, Strings.toString(tokenId)));
    }

    function walletOfOwner(address address_) public virtual view returns (uint256[] memory) {
        uint256 _balance = balanceOf(address_);
        uint256[] memory _tokens = new uint256[] (_balance);
        uint256 _index;
        uint256 _loopThrough = totalSupply();
        for (uint256 i = 0; i < _loopThrough; i++) {
            bool _exists = _exists(i);
            if (_exists) {
                if (ownerOf(i) == address_) { _tokens[_index] = i; _index++; }
            }
            else if (!_exists && _tokens[_balance - 1] == 0) { _loopThrough++; }
        }
        return _tokens;
    }
}

File 2 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creators: locationtba.eth, 2pmflow.eth

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..).
 *
 * 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 maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

  /**
   * @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(totalSupply). 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 Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
   * by default, can be overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `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 > currentIndex - 1) {
      endIndex = currentIndex - 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 6 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 9 of 14 : 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 10 of 14 : 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 11 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"_address","type":"address"}],"name":"isAddressOnRafflelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"_address","type":"address"}],"name":"isAddressWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"kittyMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxItemsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItemsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"raffleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"raffleMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"raffleMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedSize","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":"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":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxItemsPerTx","type":"uint256"}],"name":"setMaxItemsPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxItemsPerWallet","type":"uint256"}],"name":"setMaxItemsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicMintPaused","type":"bool"}],"name":"setPublicMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rafflelistMerkleRoot","type":"bytes32"}],"name":"setRaffleMintMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_raffleMintPaused","type":"bool"}],"name":"setRaffleMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reservedSize","type":"uint256"}],"name":"setReservedSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistMintMaxSupply","type":"uint256"}],"name":"setWhitelistMintMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMintMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_whitelistMintPaused","type":"bool"}],"name":"setWhitelistMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526000805560006007556703782dace9d90000600b55611f3d600c55611388600d5560dc600e556002600f5560026010556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055503480156200009257600080fd5b506040518060400160405280601181526020017f4b697474792043727970746f2047616e670000000000000000000000000000008152506040518060400160405280600381526020017f4b43470000000000000000000000000000000000000000000000000000000000815250600a6000811162000147576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013e9062000357565b60405180910390fd5b82600190805190602001906200015f92919062000280565b5081600290805190602001906200017892919062000280565b508060808181525050505050620001a462000198620001b260201b60201c565b620001ba60201b60201c565b60016009819055506200043e565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028e906200038a565b90600052602060002090601f016020900481019282620002b25760008555620002fe565b82601f10620002cd57805160ff1916838001178555620002fe565b82800160010185558215620002fe579182015b82811115620002fd578251825591602001919060010190620002e0565b5b5090506200030d919062000311565b5090565b5b808211156200032c57600081600090555060010162000312565b5090565b60006200033f60278362000379565b91506200034c82620003ef565b604082019050919050565b60006020820190508181036000830152620003728162000330565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620003a357607f821691505b60208210811415620003ba57620003b9620003c0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b608051615fdf6200047d6000396000818161159e0152818161160c01528181611649015281816132ba015281816132e3015261390b0152615fdf6000f3fe6080604052600436106102e45760003560e01c806370a0823111610190578063b74e1f4d116100dc578063db7aa4f911610095578063e985e9c51161006f578063e985e9c514610b21578063f2fde38b14610b5e578063f4a0a52814610b87578063fc9d0fb514610bb0576102e4565b8063db7aa4f914610aa4578063ddbcba6e14610acf578063e4effacb14610af8576102e4565b8063b74e1f4d14610980578063b88d4fde146109ab578063beb4709f146109d4578063c87b56dd14610a11578063d547cfb714610a4e578063d7224ba014610a79576102e4565b8063853828b61161014957806395d89b411161012357806395d89b41146108e5578063a22cb46514610910578063a4c6368a14610939578063a773974614610955576102e4565b8063853828b6146108665780638da5cb5b1461087d578063957d85e4146108a8576102e4565b806370a082311461076c578063715018a6146107a957806371ee2c44146107c057806379e1587a146107e95780637a4e5715146108145780637deb69ad1461083d576102e4565b806330666a4d1161024f5780633e59ab9c1161020857806345c0f533116101e257806345c0f5331461069c5780634f6ccce7146106c75780636352211e146107045780636817c76c14610741576102e4565b80633e59ab9c1461061a57806342842e0e14610636578063438b63001461065f576102e4565b806330666a4d1461051e578063339493481461054957806333d9d5fd14610572578063353002301461059d578063375a069a146105c85780633c732464146105f1576102e4565b806318160ddd116102a157806318160ddd1461041d5780631fac2a351461044857806323b872dd1461048557806326092b83146104ae5780632f745c59146104b857806330176e13146104f5576102e4565b806301ffc9a7146102e957806306fdde0314610326578063081812fc14610351578063095ea7b31461038e5780630996896b146103b7578063180fec04146103f4575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b919061438a565b610bd9565b60405161031d9190614c2e565b60405180910390f35b34801561033257600080fd5b5061033b610d23565b6040516103489190614c49565b60405180910390f35b34801561035d57600080fd5b506103786004803603810190610373919061442d565b610db5565b6040516103859190614ba5565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b0919061424b565b610e3a565b005b3480156103c357600080fd5b506103de60048036038101906103d991906142d4565b610f53565b6040516103eb9190614c2e565b60405180910390f35b34801561040057600080fd5b5061041b6004803603810190610416919061442d565b610f6a565b005b34801561042957600080fd5b50610432610ff0565b60405161043f91906150ab565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a91906140c8565b610ff9565b60405161047c91906150ab565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190614135565b611011565b005b6104b6611021565b005b3480156104c457600080fd5b506104df60048036038101906104da919061424b565b61112e565b6040516104ec91906150ab565b60405180910390f35b34801561050157600080fd5b5061051c600480360381019061051791906143e4565b61132c565b005b34801561052a57600080fd5b506105336113c2565b60405161054091906150ab565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190614330565b6113c8565b005b34801561057e57600080fd5b50610587611461565b6040516105949190614c2e565b60405180910390f35b3480156105a957600080fd5b506105b2611474565b6040516105bf91906150ab565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea919061442d565b61147a565b005b3480156105fd57600080fd5b506106186004803603810190610613919061442d565b611685565b005b610634600480360381019061062f919061428b565b61170b565b005b34801561064257600080fd5b5061065d60048036038101906106589190614135565b61195b565b005b34801561066b57600080fd5b50610686600480360381019061068191906140c8565b61197b565b6040516106939190614c0c565b60405180910390f35b3480156106a857600080fd5b506106b1611adc565b6040516106be91906150ab565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e9919061442d565b611ae2565b6040516106fb91906150ab565b60405180910390f35b34801561071057600080fd5b5061072b6004803603810190610726919061442d565b611b35565b6040516107389190614ba5565b60405180910390f35b34801561074d57600080fd5b50610756611b4b565b60405161076391906150ab565b60405180910390f35b34801561077857600080fd5b50610793600480360381019061078e91906140c8565b611b51565b6040516107a091906150ab565b60405180910390f35b3480156107b557600080fd5b506107be611c3a565b005b3480156107cc57600080fd5b506107e760048036038101906107e29190614330565b611cc2565b005b3480156107f557600080fd5b506107fe611d5b565b60405161080b91906150ab565b60405180910390f35b34801561082057600080fd5b5061083b6004803603810190610836919061442d565b611d61565b005b34801561084957600080fd5b50610864600480360381019061085f919061442d565b611de7565b005b34801561087257600080fd5b5061087b611e6d565b005b34801561088957600080fd5b50610892611ff6565b60405161089f9190614ba5565b60405180910390f35b3480156108b457600080fd5b506108cf60048036038101906108ca91906140c8565b612020565b6040516108dc91906150ab565b60405180910390f35b3480156108f157600080fd5b506108fa612038565b6040516109079190614c49565b60405180910390f35b34801561091c57600080fd5b506109376004803603810190610932919061420b565b6120ca565b005b610953600480360381019061094e919061428b565b61224b565b005b34801561096157600080fd5b5061096a612442565b6040516109779190614c2e565b60405180910390f35b34801561098c57600080fd5b50610995612455565b6040516109a29190614c2e565b60405180910390f35b3480156109b757600080fd5b506109d260048036038101906109cd9190614188565b612468565b005b3480156109e057600080fd5b506109fb60048036038101906109f691906142d4565b6124c4565b604051610a089190614c2e565b60405180910390f35b348015610a1d57600080fd5b50610a386004803603810190610a33919061442d565b6124db565b604051610a459190614c49565b60405180910390f35b348015610a5a57600080fd5b50610a6361250f565b604051610a709190614c49565b60405180910390f35b348015610a8557600080fd5b50610a8e61259d565b604051610a9b91906150ab565b60405180910390f35b348015610ab057600080fd5b50610ab96125a3565b604051610ac691906150ab565b60405180910390f35b348015610adb57600080fd5b50610af66004803603810190610af1919061435d565b6125a9565b005b348015610b0457600080fd5b50610b1f6004803603810190610b1a919061435d565b61262f565b005b348015610b2d57600080fd5b50610b486004803603810190610b4391906140f5565b6126b5565b604051610b559190614c2e565b60405180910390f35b348015610b6a57600080fd5b50610b856004803603810190610b8091906140c8565b612749565b005b348015610b9357600080fd5b50610bae6004803603810190610ba9919061442d565b612841565b005b348015610bbc57600080fd5b50610bd76004803603810190610bd29190614330565b6128c7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ca457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d0c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d1c5750610d1b82612960565b5b9050919050565b606060018054610d3290615450565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5e90615450565b8015610dab5780601f10610d8057610100808354040283529160200191610dab565b820191906000526020600020905b815481529060010190602001808311610d8e57829003601f168201915b5050505050905090565b6000610dc0826129ca565b610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df69061502b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e4582611b35565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90614f0b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ed56129d7565b73ffffffffffffffffffffffffffffffffffffffff161480610f045750610f0381610efe6129d7565b6126b5565b5b610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a90614dab565b60405180910390fd5b610f4e8383836129df565b505050565b6000610f626012548484612a91565b905092915050565b610f726129d7565b73ffffffffffffffffffffffffffffffffffffffff16610f90611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90614e4b565b60405180910390fd5b80600f8190555050565b60008054905090565b60146020528060005260406000206000915090505481565b61101c838383612ad7565b505050565b611029613090565b6002600954141561106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106690614fcb565b60405180910390fd5b6002600981905550601160029054906101000a900460ff16156110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90614ecb565b60405180910390fd5b60006110d2346130ca565b9050601054811115611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090614d0b565b60405180910390fd5b61112333826131e3565b506001600981905550565b600061113983611b51565b821061117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190614c6b565b60405180910390fd5b6000611184610ff0565b905060008060005b838110156112ea576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461127e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112d657868414156112c7578195505050505050611326565b83806112d2906154b3565b9450505b5080806112e2906154b3565b91505061118c565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d90614fab565b60405180910390fd5b92915050565b6113346129d7565b73ffffffffffffffffffffffffffffffffffffffff16611352611ff6565b73ffffffffffffffffffffffffffffffffffffffff16146113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90614e4b565b60405180910390fd5b80600a90805190602001906113be929190613def565b5050565b60105481565b6113d06129d7565b73ffffffffffffffffffffffffffffffffffffffff166113ee611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90614e4b565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b601160029054906101000a900460ff1681565b600d5481565b611482613090565b61148a6129d7565b73ffffffffffffffffffffffffffffffffffffffff166114a8611ff6565b73ffffffffffffffffffffffffffffffffffffffff16146114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590614e4b565b60405180910390fd5b600e54811115611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90614ceb565b60405180910390fd5b600c548161154f610ff0565b611559919061525b565b111561159a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115919061506b565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000826115c8919061552a565b14611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90614f8b565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008261163691906152b1565b905060005b818110156116805761166d337f0000000000000000000000000000000000000000000000000000000000000000613248565b8080611678906154b3565b91505061163b565b505050565b61168d6129d7565b73ffffffffffffffffffffffffffffffffffffffff166116ab611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f890614e4b565b60405180910390fd5b80600e8190555050565b611713613090565b60026009541415611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090614fcb565b60405180910390fd5b6002600981905550601160009054906101000a900460ff16156117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890614deb565b60405180910390fd5b6117bb8133610f53565b6117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190614eeb565b60405180910390fd5b6000611805346130ca565b9050600f5481601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611855919061525b565b1115611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d90614d8b565b60405180910390fd5b80600d5410156118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290614feb565b60405180910390fd5b80600d546118e99190615316565b600d8190555080601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461193e919061525b565b9250508190555061194f33826131e3565b50600160098190555050565b61197683838360405180602001604052806000815250612468565b505050565b6060600061198883611b51565b905060008167ffffffffffffffff8111156119a6576119a5615617565b5b6040519080825280602002602001820160405280156119d45781602001602082028036833780820191505090505b5090506000806119e2610ff0565b905060005b81811015611acf5760006119fa826129ca565b90508015611a72578773ffffffffffffffffffffffffffffffffffffffff16611a2283611b35565b73ffffffffffffffffffffffffffffffffffffffff161415611a6d5781858581518110611a5257611a516155e8565b5b6020026020010181815250508380611a69906154b3565b9450505b611abb565b80158015611aa65750600085600188611a8b9190615316565b81518110611a9c57611a9b6155e8565b5b6020026020010151145b15611aba578280611ab6906154b3565b9350505b5b508080611ac7906154b3565b9150506119e7565b5082945050505050919050565b600c5481565b6000611aec610ff0565b8210611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2490614d2b565b60405180910390fd5b819050919050565b6000611b4082613266565b600001519050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990614e0b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611c426129d7565b73ffffffffffffffffffffffffffffffffffffffff16611c60611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad90614e4b565b60405180910390fd5b611cc06000613469565b565b611cca6129d7565b73ffffffffffffffffffffffffffffffffffffffff16611ce8611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3590614e4b565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b600e5481565b611d696129d7565b73ffffffffffffffffffffffffffffffffffffffff16611d87611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd490614e4b565b60405180910390fd5b8060108190555050565b611def6129d7565b73ffffffffffffffffffffffffffffffffffffffff16611e0d611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90614e4b565b60405180910390fd5b80600d8190555050565b611e756129d7565b73ffffffffffffffffffffffffffffffffffffffff16611e93611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614611ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee090614e4b565b60405180910390fd5b611ef1613090565b60026009541415611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90614fcb565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611f6590614b90565b60006040518083038185875af1925050503d8060008114611fa2576040519150601f19603f3d011682016040523d82523d6000602084013e611fa7565b606091505b5050905080611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290614e6b565b60405180910390fd5b506001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60156020528060005260406000206000915090505481565b60606002805461204790615450565b80601f016020809104026020016040519081016040528092919081815260200182805461207390615450565b80156120c05780601f10612095576101008083540402835291602001916120c0565b820191906000526020600020905b8154815290600101906020018083116120a357829003601f168201915b5050505050905090565b6120d26129d7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213790614e8b565b60405180910390fd5b806006600061214d6129d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121fa6129d7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161223f9190614c2e565b60405180910390a35050565b612253613090565b60026009541415612299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229090614fcb565b60405180910390fd5b6002600981905550601160019054906101000a900460ff16156122f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e890614dcb565b60405180910390fd5b6122fb81336124c4565b61233a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123319061508b565b60405180910390fd5b6000612345346130ca565b9050600f5481601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612395919061525b565b11156123d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cd90614d8b565b60405180910390fd5b80601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612425919061525b565b9250508190555061243633826131e3565b50600160098190555050565b601160019054906101000a900460ff1681565b601160009054906101000a900460ff1681565b612473848484612ad7565b61247f8484848461352f565b6124be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b590614f2b565b60405180910390fd5b50505050565b60006124d36013548484612a91565b905092915050565b6060600a6124e8836136c6565b6040516020016124f9929190614b6c565b6040516020818303038152906040529050919050565b600a805461251c90615450565b80601f016020809104026020016040519081016040528092919081815260200182805461254890615450565b80156125955780601f1061256a57610100808354040283529160200191612595565b820191906000526020600020905b81548152906001019060200180831161257857829003601f168201915b505050505081565b60075481565b600f5481565b6125b16129d7565b73ffffffffffffffffffffffffffffffffffffffff166125cf611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c90614e4b565b60405180910390fd5b8060138190555050565b6126376129d7565b73ffffffffffffffffffffffffffffffffffffffff16612655611ff6565b73ffffffffffffffffffffffffffffffffffffffff16146126ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a290614e4b565b60405180910390fd5b8060128190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127516129d7565b73ffffffffffffffffffffffffffffffffffffffff1661276f611ff6565b73ffffffffffffffffffffffffffffffffffffffff16146127c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bc90614e4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282c90614c8b565b60405180910390fd5b61283e81613469565b50565b6128496129d7565b73ffffffffffffffffffffffffffffffffffffffff16612867611ff6565b73ffffffffffffffffffffffffffffffffffffffff16146128bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b490614e4b565b60405180910390fd5b80600b8190555050565b6128cf6129d7565b73ffffffffffffffffffffffffffffffffffffffff166128ed611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614612943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293a90614e4b565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612ace8483604051602001612aa89190614b25565b60405160208183030381529060405280519060200120856138279092919063ffffffff16565b90509392505050565b6000612ae282613266565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612b096129d7565b73ffffffffffffffffffffffffffffffffffffffff161480612b655750612b2e6129d7565b73ffffffffffffffffffffffffffffffffffffffff16612b4d84610db5565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b815750612b808260000151612b7b6129d7565b6126b5565b5b905080612bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bba90614eab565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2c90614e2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9c90614d4b565b60405180910390fd5b612cb2858585600161383e565b612cc260008484600001516129df565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612d3091906152e2565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612dd49190615215565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612eda919061525b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561302057612f50816129ca565b1561301f576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130888686866001613844565b505050505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146130c857600080fd5b565b600080600b54836130db919061552a565b905060008114613120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311790614d6b565b60405180910390fd5b6000600b548461313091906152b1565b905060008111613175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316c90614ccb565b60405180910390fd5b600e54600c546131859190615316565b8161318e610ff0565b613198919061525b565b11156131d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d09061506b565b60405180910390fd5b8092505050919050565b600c54816131ef610ff0565b6131f9919061525b565b111561323a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132319061506b565b60405180910390fd5b6132448282613248565b5050565b61326282826040518060200160405280600081525061384a565b5050565b61326e613e75565b613277826129ca565b6132b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ad90614cab565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061331a5760017f00000000000000000000000000000000000000000000000000000000000000008461330d9190615316565b613317919061525b565b90505b60008390505b818110613428576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461341457809350505050613464565b50808061342090615426565b915050613320565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345b9061500b565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006135508473ffffffffffffffffffffffffffffffffffffffff16613d29565b156136b9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135796129d7565b8786866040518563ffffffff1660e01b815260040161359b9493929190614bc0565b602060405180830381600087803b1580156135b557600080fd5b505af19250505080156135e657506040513d601f19601f820116820180604052508101906135e391906143b7565b60015b613669573d8060008114613616576040519150601f19603f3d011682016040523d82523d6000602084013e61361b565b606091505b50600081511415613661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365890614f2b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136be565b600190505b949350505050565b6060600082141561370e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613822565b600082905060005b60008214613740578080613729906154b3565b915050600a8261373991906152b1565b9150613716565b60008167ffffffffffffffff81111561375c5761375b615617565b5b6040519080825280601f01601f19166020018201604052801561378e5781602001600182028036833780820191505090505b5090505b6000851461381b576001826137a79190615316565b9150600a856137b6919061552a565b60306137c2919061525b565b60f81b8183815181106137d8576137d76155e8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561381491906152b1565b9450613792565b8093505050505b919050565b6000826138348584613d3c565b1490509392505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156138c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b790614f6b565b60405180910390fd5b6138c9816129ca565b15613909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390090614f4b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561396c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139639061504b565b60405180910390fd5b613979600085838661383e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613a769190615215565b6fffffffffffffffffffffffffffffffff168152602001858360200151613a9d9190615215565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613d0c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613cac600088848861352f565b613ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ce290614f2b565b60405180910390fd5b8180613cf6906154b3565b9250508080613d04906154b3565b915050613c3b565b5080600081905550613d216000878588613844565b505050505050565b600080823b905060008111915050919050565b60008082905060005b8451811015613de4576000858281518110613d6357613d626155e8565b5b60200260200101519050808311613da4578281604051602001613d87929190614b40565b604051602081830303815290604052805190602001209250613dd0565b8083604051602001613db7929190614b40565b6040516020818303038152906040528051906020012092505b508080613ddc906154b3565b915050613d45565b508091505092915050565b828054613dfb90615450565b90600052602060002090601f016020900481019282613e1d5760008555613e64565b82601f10613e3657805160ff1916838001178555613e64565b82800160010185558215613e64579182015b82811115613e63578251825591602001919060010190613e48565b5b509050613e719190613eaf565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613ec8576000816000905550600101613eb0565b5090565b6000613edf613eda846150eb565b6150c6565b90508083825260208201905082856020860282011115613f0257613f0161564b565b5b60005b85811015613f325781613f188882614018565b845260208401935060208301925050600181019050613f05565b5050509392505050565b6000613f4f613f4a84615117565b6150c6565b905082815260208101848484011115613f6b57613f6a615650565b5b613f768482856153e4565b509392505050565b6000613f91613f8c84615148565b6150c6565b905082815260208101848484011115613fad57613fac615650565b5b613fb88482856153e4565b509392505050565b600081359050613fcf81615f36565b92915050565b600082601f830112613fea57613fe9615646565b5b8135613ffa848260208601613ecc565b91505092915050565b60008135905061401281615f4d565b92915050565b60008135905061402781615f64565b92915050565b60008135905061403c81615f7b565b92915050565b60008151905061405181615f7b565b92915050565b600082601f83011261406c5761406b615646565b5b813561407c848260208601613f3c565b91505092915050565b600082601f83011261409a57614099615646565b5b81356140aa848260208601613f7e565b91505092915050565b6000813590506140c281615f92565b92915050565b6000602082840312156140de576140dd61565a565b5b60006140ec84828501613fc0565b91505092915050565b6000806040838503121561410c5761410b61565a565b5b600061411a85828601613fc0565b925050602061412b85828601613fc0565b9150509250929050565b60008060006060848603121561414e5761414d61565a565b5b600061415c86828701613fc0565b935050602061416d86828701613fc0565b925050604061417e868287016140b3565b9150509250925092565b600080600080608085870312156141a2576141a161565a565b5b60006141b087828801613fc0565b94505060206141c187828801613fc0565b93505060406141d2878288016140b3565b925050606085013567ffffffffffffffff8111156141f3576141f2615655565b5b6141ff87828801614057565b91505092959194509250565b600080604083850312156142225761422161565a565b5b600061423085828601613fc0565b925050602061424185828601614003565b9150509250929050565b600080604083850312156142625761426161565a565b5b600061427085828601613fc0565b9250506020614281858286016140b3565b9150509250929050565b6000602082840312156142a1576142a061565a565b5b600082013567ffffffffffffffff8111156142bf576142be615655565b5b6142cb84828501613fd5565b91505092915050565b600080604083850312156142eb576142ea61565a565b5b600083013567ffffffffffffffff81111561430957614308615655565b5b61431585828601613fd5565b925050602061432685828601613fc0565b9150509250929050565b6000602082840312156143465761434561565a565b5b600061435484828501614003565b91505092915050565b6000602082840312156143735761437261565a565b5b600061438184828501614018565b91505092915050565b6000602082840312156143a05761439f61565a565b5b60006143ae8482850161402d565b91505092915050565b6000602082840312156143cd576143cc61565a565b5b60006143db84828501614042565b91505092915050565b6000602082840312156143fa576143f961565a565b5b600082013567ffffffffffffffff81111561441857614417615655565b5b61442484828501614085565b91505092915050565b6000602082840312156144435761444261565a565b5b6000614451848285016140b3565b91505092915050565b60006144668383614b07565b60208301905092915050565b61447b8161534a565b82525050565b61449261448d8261534a565b6154fc565b82525050565b60006144a38261519e565b6144ad81856151cc565b93506144b883615179565b8060005b838110156144e95781516144d0888261445a565b97506144db836151bf565b9250506001810190506144bc565b5085935050505092915050565b6144ff8161535c565b82525050565b61451661451182615368565b61550e565b82525050565b6000614527826151a9565b61453181856151dd565b93506145418185602086016153f3565b61454a8161565f565b840191505092915050565b6000614560826151b4565b61456a81856151f9565b935061457a8185602086016153f3565b6145838161565f565b840191505092915050565b6000614599826151b4565b6145a3818561520a565b93506145b38185602086016153f3565b80840191505092915050565b600081546145cc81615450565b6145d6818661520a565b945060018216600081146145f1576001811461460257614635565b60ff19831686528186019350614635565b61460b85615189565b60005b8381101561462d5781548189015260018201915060208101905061460e565b838801955050505b50505092915050565b600061464b6022836151f9565b91506146568261567d565b604082019050919050565b600061466e6026836151f9565b9150614679826156cc565b604082019050919050565b6000614691602a836151f9565b915061469c8261571b565b604082019050919050565b60006146b46013836151f9565b91506146bf8261576a565b602082019050919050565b60006146d76024836151f9565b91506146e282615793565b604082019050919050565b60006146fa6027836151f9565b9150614705826157e2565b604082019050919050565b600061471d6023836151f9565b915061472882615831565b604082019050919050565b60006147406025836151f9565b915061474b82615880565b604082019050919050565b6000614763601e836151f9565b915061476e826158cf565b602082019050919050565b6000614786602b836151f9565b9150614791826158f8565b604082019050919050565b60006147a96039836151f9565b91506147b482615947565b604082019050919050565b60006147cc6015836151f9565b91506147d782615996565b602082019050919050565b60006147ef6018836151f9565b91506147fa826159bf565b602082019050919050565b6000614812602b836151f9565b915061481d826159e8565b604082019050919050565b60006148356026836151f9565b915061484082615a37565b604082019050919050565b60006148586020836151f9565b915061486382615a86565b602082019050919050565b600061487b6014836151f9565b915061488682615aaf565b602082019050919050565b600061489e601a836151f9565b91506148a982615ad8565b602082019050919050565b60006148c16032836151f9565b91506148cc82615b01565b604082019050919050565b60006148e46015836151f9565b91506148ef82615b50565b602082019050919050565b60006149076029836151f9565b915061491282615b79565b604082019050919050565b600061492a6022836151f9565b915061493582615bc8565b604082019050919050565b600061494d6000836151ee565b915061495882615c17565b600082019050919050565b60006149706033836151f9565b915061497b82615c1a565b604082019050919050565b6000614993601d836151f9565b915061499e82615c69565b602082019050919050565b60006149b66021836151f9565b91506149c182615c92565b604082019050919050565b60006149d9602c836151f9565b91506149e482615ce1565b604082019050919050565b60006149fc602e836151f9565b9150614a0782615d30565b604082019050919050565b6000614a1f601f836151f9565b9150614a2a82615d7f565b602082019050919050565b6000614a42601a836151f9565b9150614a4d82615da8565b602082019050919050565b6000614a65602f836151f9565b9150614a7082615dd1565b604082019050919050565b6000614a88602d836151f9565b9150614a9382615e20565b604082019050919050565b6000614aab6022836151f9565b9150614ab682615e6f565b604082019050919050565b6000614ace6009836151f9565b9150614ad982615ebe565b602082019050919050565b6000614af16026836151f9565b9150614afc82615ee7565b604082019050919050565b614b10816153da565b82525050565b614b1f816153da565b82525050565b6000614b318284614481565b60148201915081905092915050565b6000614b4c8285614505565b602082019150614b5c8284614505565b6020820191508190509392505050565b6000614b7882856145bf565b9150614b84828461458e565b91508190509392505050565b6000614b9b82614940565b9150819050919050565b6000602082019050614bba6000830184614472565b92915050565b6000608082019050614bd56000830187614472565b614be26020830186614472565b614bef6040830185614b16565b8181036060830152614c01818461451c565b905095945050505050565b60006020820190508181036000830152614c268184614498565b905092915050565b6000602082019050614c4360008301846144f6565b92915050565b60006020820190508181036000830152614c638184614555565b905092915050565b60006020820190508181036000830152614c848161463e565b9050919050565b60006020820190508181036000830152614ca481614661565b9050919050565b60006020820190508181036000830152614cc481614684565b9050919050565b60006020820190508181036000830152614ce4816146a7565b9050919050565b60006020820190508181036000830152614d04816146ca565b9050919050565b60006020820190508181036000830152614d24816146ed565b9050919050565b60006020820190508181036000830152614d4481614710565b9050919050565b60006020820190508181036000830152614d6481614733565b9050919050565b60006020820190508181036000830152614d8481614756565b9050919050565b60006020820190508181036000830152614da481614779565b9050919050565b60006020820190508181036000830152614dc48161479c565b9050919050565b60006020820190508181036000830152614de4816147bf565b9050919050565b60006020820190508181036000830152614e04816147e2565b9050919050565b60006020820190508181036000830152614e2481614805565b9050919050565b60006020820190508181036000830152614e4481614828565b9050919050565b60006020820190508181036000830152614e648161484b565b9050919050565b60006020820190508181036000830152614e848161486e565b9050919050565b60006020820190508181036000830152614ea481614891565b9050919050565b60006020820190508181036000830152614ec4816148b4565b9050919050565b60006020820190508181036000830152614ee4816148d7565b9050919050565b60006020820190508181036000830152614f04816148fa565b9050919050565b60006020820190508181036000830152614f248161491d565b9050919050565b60006020820190508181036000830152614f4481614963565b9050919050565b60006020820190508181036000830152614f6481614986565b9050919050565b60006020820190508181036000830152614f84816149a9565b9050919050565b60006020820190508181036000830152614fa4816149cc565b9050919050565b60006020820190508181036000830152614fc4816149ef565b9050919050565b60006020820190508181036000830152614fe481614a12565b9050919050565b6000602082019050818103600083015261500481614a35565b9050919050565b6000602082019050818103600083015261502481614a58565b9050919050565b6000602082019050818103600083015261504481614a7b565b9050919050565b6000602082019050818103600083015261506481614a9e565b9050919050565b6000602082019050818103600083015261508481614ac1565b9050919050565b600060208201905081810360008301526150a481614ae4565b9050919050565b60006020820190506150c06000830184614b16565b92915050565b60006150d06150e1565b90506150dc8282615482565b919050565b6000604051905090565b600067ffffffffffffffff82111561510657615105615617565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561513257615131615617565b5b61513b8261565f565b9050602081019050919050565b600067ffffffffffffffff82111561516357615162615617565b5b61516c8261565f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006152208261539e565b915061522b8361539e565b9250826fffffffffffffffffffffffffffffffff038211156152505761524f61555b565b5b828201905092915050565b6000615266826153da565b9150615271836153da565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152a6576152a561555b565b5b828201905092915050565b60006152bc826153da565b91506152c7836153da565b9250826152d7576152d661558a565b5b828204905092915050565b60006152ed8261539e565b91506152f88361539e565b92508282101561530b5761530a61555b565b5b828203905092915050565b6000615321826153da565b915061532c836153da565b92508282101561533f5761533e61555b565b5b828203905092915050565b6000615355826153ba565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156154115780820151818401526020810190506153f6565b83811115615420576000848401525b50505050565b6000615431826153da565b915060008214156154455761544461555b565b5b600182039050919050565b6000600282049050600182168061546857607f821691505b6020821081141561547c5761547b6155b9565b5b50919050565b61548b8261565f565b810181811067ffffffffffffffff821117156154aa576154a9615617565b5b80604052505050565b60006154be826153da565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154f1576154f061555b565b5b600182019050919050565b600061550782615518565b9050919050565b6000819050919050565b600061552382615670565b9050919050565b6000615535826153da565b9150615540836153da565b9250826155505761554f61558a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f416d6f756e7420746f206d696e74206973203000000000000000000000000000600082015250565b7f4d696e74696e6720616d6f756e7420657863656564732072657365727665642060008201527f73697a6500000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720616d6f756e74206578636565647320616c6c6f77616e636560008201527f2070657220747800000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53656e64206120646976697369626c6520616d6f756e74206f66206574680000600082015250565b7f4d696e74696e6720616d6f756e74206578636565647320616c6c6f77616e636560008201527f207065722077616c6c6574000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f526166666c65206d696e74206973207061757365640000000000000000000000600082015250565b7f57686974656c697374206d696e74206973207061757365640000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4661696c656420746f2073656e64206574686572000000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f5075626c6963206d696e74206973207061757365640000000000000000000000600082015250565b7f596f7520617265206e6f7420656c696769626c6520666f72206120776869746560008201527f6c697374206d696e740000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f57686974656c697374206d696e7420697320736f6c64206f7574000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b7f596f7520617265206e6f7420656c696769626c6520666f72206120726166666c60008201527f65206d696e740000000000000000000000000000000000000000000000000000602082015250565b615f3f8161534a565b8114615f4a57600080fd5b50565b615f568161535c565b8114615f6157600080fd5b50565b615f6d81615368565b8114615f7857600080fd5b50565b615f8481615372565b8114615f8f57600080fd5b50565b615f9b816153da565b8114615fa657600080fd5b5056fea264697066735822122044155e6a7f0849fdc04707227737f1b59e3e3473a097d6e11d9a349ae977eba864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102e45760003560e01c806370a0823111610190578063b74e1f4d116100dc578063db7aa4f911610095578063e985e9c51161006f578063e985e9c514610b21578063f2fde38b14610b5e578063f4a0a52814610b87578063fc9d0fb514610bb0576102e4565b8063db7aa4f914610aa4578063ddbcba6e14610acf578063e4effacb14610af8576102e4565b8063b74e1f4d14610980578063b88d4fde146109ab578063beb4709f146109d4578063c87b56dd14610a11578063d547cfb714610a4e578063d7224ba014610a79576102e4565b8063853828b61161014957806395d89b411161012357806395d89b41146108e5578063a22cb46514610910578063a4c6368a14610939578063a773974614610955576102e4565b8063853828b6146108665780638da5cb5b1461087d578063957d85e4146108a8576102e4565b806370a082311461076c578063715018a6146107a957806371ee2c44146107c057806379e1587a146107e95780637a4e5715146108145780637deb69ad1461083d576102e4565b806330666a4d1161024f5780633e59ab9c1161020857806345c0f533116101e257806345c0f5331461069c5780634f6ccce7146106c75780636352211e146107045780636817c76c14610741576102e4565b80633e59ab9c1461061a57806342842e0e14610636578063438b63001461065f576102e4565b806330666a4d1461051e578063339493481461054957806333d9d5fd14610572578063353002301461059d578063375a069a146105c85780633c732464146105f1576102e4565b806318160ddd116102a157806318160ddd1461041d5780631fac2a351461044857806323b872dd1461048557806326092b83146104ae5780632f745c59146104b857806330176e13146104f5576102e4565b806301ffc9a7146102e957806306fdde0314610326578063081812fc14610351578063095ea7b31461038e5780630996896b146103b7578063180fec04146103f4575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b919061438a565b610bd9565b60405161031d9190614c2e565b60405180910390f35b34801561033257600080fd5b5061033b610d23565b6040516103489190614c49565b60405180910390f35b34801561035d57600080fd5b506103786004803603810190610373919061442d565b610db5565b6040516103859190614ba5565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b0919061424b565b610e3a565b005b3480156103c357600080fd5b506103de60048036038101906103d991906142d4565b610f53565b6040516103eb9190614c2e565b60405180910390f35b34801561040057600080fd5b5061041b6004803603810190610416919061442d565b610f6a565b005b34801561042957600080fd5b50610432610ff0565b60405161043f91906150ab565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a91906140c8565b610ff9565b60405161047c91906150ab565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190614135565b611011565b005b6104b6611021565b005b3480156104c457600080fd5b506104df60048036038101906104da919061424b565b61112e565b6040516104ec91906150ab565b60405180910390f35b34801561050157600080fd5b5061051c600480360381019061051791906143e4565b61132c565b005b34801561052a57600080fd5b506105336113c2565b60405161054091906150ab565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190614330565b6113c8565b005b34801561057e57600080fd5b50610587611461565b6040516105949190614c2e565b60405180910390f35b3480156105a957600080fd5b506105b2611474565b6040516105bf91906150ab565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea919061442d565b61147a565b005b3480156105fd57600080fd5b506106186004803603810190610613919061442d565b611685565b005b610634600480360381019061062f919061428b565b61170b565b005b34801561064257600080fd5b5061065d60048036038101906106589190614135565b61195b565b005b34801561066b57600080fd5b50610686600480360381019061068191906140c8565b61197b565b6040516106939190614c0c565b60405180910390f35b3480156106a857600080fd5b506106b1611adc565b6040516106be91906150ab565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e9919061442d565b611ae2565b6040516106fb91906150ab565b60405180910390f35b34801561071057600080fd5b5061072b6004803603810190610726919061442d565b611b35565b6040516107389190614ba5565b60405180910390f35b34801561074d57600080fd5b50610756611b4b565b60405161076391906150ab565b60405180910390f35b34801561077857600080fd5b50610793600480360381019061078e91906140c8565b611b51565b6040516107a091906150ab565b60405180910390f35b3480156107b557600080fd5b506107be611c3a565b005b3480156107cc57600080fd5b506107e760048036038101906107e29190614330565b611cc2565b005b3480156107f557600080fd5b506107fe611d5b565b60405161080b91906150ab565b60405180910390f35b34801561082057600080fd5b5061083b6004803603810190610836919061442d565b611d61565b005b34801561084957600080fd5b50610864600480360381019061085f919061442d565b611de7565b005b34801561087257600080fd5b5061087b611e6d565b005b34801561088957600080fd5b50610892611ff6565b60405161089f9190614ba5565b60405180910390f35b3480156108b457600080fd5b506108cf60048036038101906108ca91906140c8565b612020565b6040516108dc91906150ab565b60405180910390f35b3480156108f157600080fd5b506108fa612038565b6040516109079190614c49565b60405180910390f35b34801561091c57600080fd5b506109376004803603810190610932919061420b565b6120ca565b005b610953600480360381019061094e919061428b565b61224b565b005b34801561096157600080fd5b5061096a612442565b6040516109779190614c2e565b60405180910390f35b34801561098c57600080fd5b50610995612455565b6040516109a29190614c2e565b60405180910390f35b3480156109b757600080fd5b506109d260048036038101906109cd9190614188565b612468565b005b3480156109e057600080fd5b506109fb60048036038101906109f691906142d4565b6124c4565b604051610a089190614c2e565b60405180910390f35b348015610a1d57600080fd5b50610a386004803603810190610a33919061442d565b6124db565b604051610a459190614c49565b60405180910390f35b348015610a5a57600080fd5b50610a6361250f565b604051610a709190614c49565b60405180910390f35b348015610a8557600080fd5b50610a8e61259d565b604051610a9b91906150ab565b60405180910390f35b348015610ab057600080fd5b50610ab96125a3565b604051610ac691906150ab565b60405180910390f35b348015610adb57600080fd5b50610af66004803603810190610af1919061435d565b6125a9565b005b348015610b0457600080fd5b50610b1f6004803603810190610b1a919061435d565b61262f565b005b348015610b2d57600080fd5b50610b486004803603810190610b4391906140f5565b6126b5565b604051610b559190614c2e565b60405180910390f35b348015610b6a57600080fd5b50610b856004803603810190610b8091906140c8565b612749565b005b348015610b9357600080fd5b50610bae6004803603810190610ba9919061442d565b612841565b005b348015610bbc57600080fd5b50610bd76004803603810190610bd29190614330565b6128c7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ca457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d0c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d1c5750610d1b82612960565b5b9050919050565b606060018054610d3290615450565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5e90615450565b8015610dab5780601f10610d8057610100808354040283529160200191610dab565b820191906000526020600020905b815481529060010190602001808311610d8e57829003601f168201915b5050505050905090565b6000610dc0826129ca565b610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df69061502b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e4582611b35565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90614f0b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ed56129d7565b73ffffffffffffffffffffffffffffffffffffffff161480610f045750610f0381610efe6129d7565b6126b5565b5b610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a90614dab565b60405180910390fd5b610f4e8383836129df565b505050565b6000610f626012548484612a91565b905092915050565b610f726129d7565b73ffffffffffffffffffffffffffffffffffffffff16610f90611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90614e4b565b60405180910390fd5b80600f8190555050565b60008054905090565b60146020528060005260406000206000915090505481565b61101c838383612ad7565b505050565b611029613090565b6002600954141561106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106690614fcb565b60405180910390fd5b6002600981905550601160029054906101000a900460ff16156110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90614ecb565b60405180910390fd5b60006110d2346130ca565b9050601054811115611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090614d0b565b60405180910390fd5b61112333826131e3565b506001600981905550565b600061113983611b51565b821061117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190614c6b565b60405180910390fd5b6000611184610ff0565b905060008060005b838110156112ea576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461127e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112d657868414156112c7578195505050505050611326565b83806112d2906154b3565b9450505b5080806112e2906154b3565b91505061118c565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d90614fab565b60405180910390fd5b92915050565b6113346129d7565b73ffffffffffffffffffffffffffffffffffffffff16611352611ff6565b73ffffffffffffffffffffffffffffffffffffffff16146113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90614e4b565b60405180910390fd5b80600a90805190602001906113be929190613def565b5050565b60105481565b6113d06129d7565b73ffffffffffffffffffffffffffffffffffffffff166113ee611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90614e4b565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b601160029054906101000a900460ff1681565b600d5481565b611482613090565b61148a6129d7565b73ffffffffffffffffffffffffffffffffffffffff166114a8611ff6565b73ffffffffffffffffffffffffffffffffffffffff16146114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590614e4b565b60405180910390fd5b600e54811115611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90614ceb565b60405180910390fd5b600c548161154f610ff0565b611559919061525b565b111561159a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115919061506b565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a826115c8919061552a565b14611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90614f8b565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a8261163691906152b1565b905060005b818110156116805761166d337f000000000000000000000000000000000000000000000000000000000000000a613248565b8080611678906154b3565b91505061163b565b505050565b61168d6129d7565b73ffffffffffffffffffffffffffffffffffffffff166116ab611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f890614e4b565b60405180910390fd5b80600e8190555050565b611713613090565b60026009541415611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090614fcb565b60405180910390fd5b6002600981905550601160009054906101000a900460ff16156117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890614deb565b60405180910390fd5b6117bb8133610f53565b6117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190614eeb565b60405180910390fd5b6000611805346130ca565b9050600f5481601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611855919061525b565b1115611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d90614d8b565b60405180910390fd5b80600d5410156118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290614feb565b60405180910390fd5b80600d546118e99190615316565b600d8190555080601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461193e919061525b565b9250508190555061194f33826131e3565b50600160098190555050565b61197683838360405180602001604052806000815250612468565b505050565b6060600061198883611b51565b905060008167ffffffffffffffff8111156119a6576119a5615617565b5b6040519080825280602002602001820160405280156119d45781602001602082028036833780820191505090505b5090506000806119e2610ff0565b905060005b81811015611acf5760006119fa826129ca565b90508015611a72578773ffffffffffffffffffffffffffffffffffffffff16611a2283611b35565b73ffffffffffffffffffffffffffffffffffffffff161415611a6d5781858581518110611a5257611a516155e8565b5b6020026020010181815250508380611a69906154b3565b9450505b611abb565b80158015611aa65750600085600188611a8b9190615316565b81518110611a9c57611a9b6155e8565b5b6020026020010151145b15611aba578280611ab6906154b3565b9350505b5b508080611ac7906154b3565b9150506119e7565b5082945050505050919050565b600c5481565b6000611aec610ff0565b8210611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2490614d2b565b60405180910390fd5b819050919050565b6000611b4082613266565b600001519050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990614e0b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611c426129d7565b73ffffffffffffffffffffffffffffffffffffffff16611c60611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad90614e4b565b60405180910390fd5b611cc06000613469565b565b611cca6129d7565b73ffffffffffffffffffffffffffffffffffffffff16611ce8611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3590614e4b565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b600e5481565b611d696129d7565b73ffffffffffffffffffffffffffffffffffffffff16611d87611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd490614e4b565b60405180910390fd5b8060108190555050565b611def6129d7565b73ffffffffffffffffffffffffffffffffffffffff16611e0d611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90614e4b565b60405180910390fd5b80600d8190555050565b611e756129d7565b73ffffffffffffffffffffffffffffffffffffffff16611e93611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614611ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee090614e4b565b60405180910390fd5b611ef1613090565b60026009541415611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90614fcb565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611f6590614b90565b60006040518083038185875af1925050503d8060008114611fa2576040519150601f19603f3d011682016040523d82523d6000602084013e611fa7565b606091505b5050905080611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290614e6b565b60405180910390fd5b506001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60156020528060005260406000206000915090505481565b60606002805461204790615450565b80601f016020809104026020016040519081016040528092919081815260200182805461207390615450565b80156120c05780601f10612095576101008083540402835291602001916120c0565b820191906000526020600020905b8154815290600101906020018083116120a357829003601f168201915b5050505050905090565b6120d26129d7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213790614e8b565b60405180910390fd5b806006600061214d6129d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121fa6129d7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161223f9190614c2e565b60405180910390a35050565b612253613090565b60026009541415612299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229090614fcb565b60405180910390fd5b6002600981905550601160019054906101000a900460ff16156122f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e890614dcb565b60405180910390fd5b6122fb81336124c4565b61233a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123319061508b565b60405180910390fd5b6000612345346130ca565b9050600f5481601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612395919061525b565b11156123d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cd90614d8b565b60405180910390fd5b80601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612425919061525b565b9250508190555061243633826131e3565b50600160098190555050565b601160019054906101000a900460ff1681565b601160009054906101000a900460ff1681565b612473848484612ad7565b61247f8484848461352f565b6124be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b590614f2b565b60405180910390fd5b50505050565b60006124d36013548484612a91565b905092915050565b6060600a6124e8836136c6565b6040516020016124f9929190614b6c565b6040516020818303038152906040529050919050565b600a805461251c90615450565b80601f016020809104026020016040519081016040528092919081815260200182805461254890615450565b80156125955780601f1061256a57610100808354040283529160200191612595565b820191906000526020600020905b81548152906001019060200180831161257857829003601f168201915b505050505081565b60075481565b600f5481565b6125b16129d7565b73ffffffffffffffffffffffffffffffffffffffff166125cf611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c90614e4b565b60405180910390fd5b8060138190555050565b6126376129d7565b73ffffffffffffffffffffffffffffffffffffffff16612655611ff6565b73ffffffffffffffffffffffffffffffffffffffff16146126ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a290614e4b565b60405180910390fd5b8060128190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127516129d7565b73ffffffffffffffffffffffffffffffffffffffff1661276f611ff6565b73ffffffffffffffffffffffffffffffffffffffff16146127c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bc90614e4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282c90614c8b565b60405180910390fd5b61283e81613469565b50565b6128496129d7565b73ffffffffffffffffffffffffffffffffffffffff16612867611ff6565b73ffffffffffffffffffffffffffffffffffffffff16146128bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b490614e4b565b60405180910390fd5b80600b8190555050565b6128cf6129d7565b73ffffffffffffffffffffffffffffffffffffffff166128ed611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614612943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293a90614e4b565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612ace8483604051602001612aa89190614b25565b60405160208183030381529060405280519060200120856138279092919063ffffffff16565b90509392505050565b6000612ae282613266565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612b096129d7565b73ffffffffffffffffffffffffffffffffffffffff161480612b655750612b2e6129d7565b73ffffffffffffffffffffffffffffffffffffffff16612b4d84610db5565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b815750612b808260000151612b7b6129d7565b6126b5565b5b905080612bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bba90614eab565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2c90614e2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9c90614d4b565b60405180910390fd5b612cb2858585600161383e565b612cc260008484600001516129df565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612d3091906152e2565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612dd49190615215565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612eda919061525b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561302057612f50816129ca565b1561301f576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130888686866001613844565b505050505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146130c857600080fd5b565b600080600b54836130db919061552a565b905060008114613120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311790614d6b565b60405180910390fd5b6000600b548461313091906152b1565b905060008111613175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316c90614ccb565b60405180910390fd5b600e54600c546131859190615316565b8161318e610ff0565b613198919061525b565b11156131d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d09061506b565b60405180910390fd5b8092505050919050565b600c54816131ef610ff0565b6131f9919061525b565b111561323a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132319061506b565b60405180910390fd5b6132448282613248565b5050565b61326282826040518060200160405280600081525061384a565b5050565b61326e613e75565b613277826129ca565b6132b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ad90614cab565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a831061331a5760017f000000000000000000000000000000000000000000000000000000000000000a8461330d9190615316565b613317919061525b565b90505b60008390505b818110613428576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461341457809350505050613464565b50808061342090615426565b915050613320565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345b9061500b565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006135508473ffffffffffffffffffffffffffffffffffffffff16613d29565b156136b9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135796129d7565b8786866040518563ffffffff1660e01b815260040161359b9493929190614bc0565b602060405180830381600087803b1580156135b557600080fd5b505af19250505080156135e657506040513d601f19601f820116820180604052508101906135e391906143b7565b60015b613669573d8060008114613616576040519150601f19603f3d011682016040523d82523d6000602084013e61361b565b606091505b50600081511415613661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365890614f2b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136be565b600190505b949350505050565b6060600082141561370e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613822565b600082905060005b60008214613740578080613729906154b3565b915050600a8261373991906152b1565b9150613716565b60008167ffffffffffffffff81111561375c5761375b615617565b5b6040519080825280601f01601f19166020018201604052801561378e5781602001600182028036833780820191505090505b5090505b6000851461381b576001826137a79190615316565b9150600a856137b6919061552a565b60306137c2919061525b565b60f81b8183815181106137d8576137d76155e8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561381491906152b1565b9450613792565b8093505050505b919050565b6000826138348584613d3c565b1490509392505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156138c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b790614f6b565b60405180910390fd5b6138c9816129ca565b15613909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390090614f4b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a83111561396c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139639061504b565b60405180910390fd5b613979600085838661383e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613a769190615215565b6fffffffffffffffffffffffffffffffff168152602001858360200151613a9d9190615215565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613d0c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613cac600088848861352f565b613ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ce290614f2b565b60405180910390fd5b8180613cf6906154b3565b9250508080613d04906154b3565b915050613c3b565b5080600081905550613d216000878588613844565b505050505050565b600080823b905060008111915050919050565b60008082905060005b8451811015613de4576000858281518110613d6357613d626155e8565b5b60200260200101519050808311613da4578281604051602001613d87929190614b40565b604051602081830303815290604052805190602001209250613dd0565b8083604051602001613db7929190614b40565b6040516020818303038152906040528051906020012092505b508080613ddc906154b3565b915050613d45565b508091505092915050565b828054613dfb90615450565b90600052602060002090601f016020900481019282613e1d5760008555613e64565b82601f10613e3657805160ff1916838001178555613e64565b82800160010185558215613e64579182015b82811115613e63578251825591602001919060010190613e48565b5b509050613e719190613eaf565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613ec8576000816000905550600101613eb0565b5090565b6000613edf613eda846150eb565b6150c6565b90508083825260208201905082856020860282011115613f0257613f0161564b565b5b60005b85811015613f325781613f188882614018565b845260208401935060208301925050600181019050613f05565b5050509392505050565b6000613f4f613f4a84615117565b6150c6565b905082815260208101848484011115613f6b57613f6a615650565b5b613f768482856153e4565b509392505050565b6000613f91613f8c84615148565b6150c6565b905082815260208101848484011115613fad57613fac615650565b5b613fb88482856153e4565b509392505050565b600081359050613fcf81615f36565b92915050565b600082601f830112613fea57613fe9615646565b5b8135613ffa848260208601613ecc565b91505092915050565b60008135905061401281615f4d565b92915050565b60008135905061402781615f64565b92915050565b60008135905061403c81615f7b565b92915050565b60008151905061405181615f7b565b92915050565b600082601f83011261406c5761406b615646565b5b813561407c848260208601613f3c565b91505092915050565b600082601f83011261409a57614099615646565b5b81356140aa848260208601613f7e565b91505092915050565b6000813590506140c281615f92565b92915050565b6000602082840312156140de576140dd61565a565b5b60006140ec84828501613fc0565b91505092915050565b6000806040838503121561410c5761410b61565a565b5b600061411a85828601613fc0565b925050602061412b85828601613fc0565b9150509250929050565b60008060006060848603121561414e5761414d61565a565b5b600061415c86828701613fc0565b935050602061416d86828701613fc0565b925050604061417e868287016140b3565b9150509250925092565b600080600080608085870312156141a2576141a161565a565b5b60006141b087828801613fc0565b94505060206141c187828801613fc0565b93505060406141d2878288016140b3565b925050606085013567ffffffffffffffff8111156141f3576141f2615655565b5b6141ff87828801614057565b91505092959194509250565b600080604083850312156142225761422161565a565b5b600061423085828601613fc0565b925050602061424185828601614003565b9150509250929050565b600080604083850312156142625761426161565a565b5b600061427085828601613fc0565b9250506020614281858286016140b3565b9150509250929050565b6000602082840312156142a1576142a061565a565b5b600082013567ffffffffffffffff8111156142bf576142be615655565b5b6142cb84828501613fd5565b91505092915050565b600080604083850312156142eb576142ea61565a565b5b600083013567ffffffffffffffff81111561430957614308615655565b5b61431585828601613fd5565b925050602061432685828601613fc0565b9150509250929050565b6000602082840312156143465761434561565a565b5b600061435484828501614003565b91505092915050565b6000602082840312156143735761437261565a565b5b600061438184828501614018565b91505092915050565b6000602082840312156143a05761439f61565a565b5b60006143ae8482850161402d565b91505092915050565b6000602082840312156143cd576143cc61565a565b5b60006143db84828501614042565b91505092915050565b6000602082840312156143fa576143f961565a565b5b600082013567ffffffffffffffff81111561441857614417615655565b5b61442484828501614085565b91505092915050565b6000602082840312156144435761444261565a565b5b6000614451848285016140b3565b91505092915050565b60006144668383614b07565b60208301905092915050565b61447b8161534a565b82525050565b61449261448d8261534a565b6154fc565b82525050565b60006144a38261519e565b6144ad81856151cc565b93506144b883615179565b8060005b838110156144e95781516144d0888261445a565b97506144db836151bf565b9250506001810190506144bc565b5085935050505092915050565b6144ff8161535c565b82525050565b61451661451182615368565b61550e565b82525050565b6000614527826151a9565b61453181856151dd565b93506145418185602086016153f3565b61454a8161565f565b840191505092915050565b6000614560826151b4565b61456a81856151f9565b935061457a8185602086016153f3565b6145838161565f565b840191505092915050565b6000614599826151b4565b6145a3818561520a565b93506145b38185602086016153f3565b80840191505092915050565b600081546145cc81615450565b6145d6818661520a565b945060018216600081146145f1576001811461460257614635565b60ff19831686528186019350614635565b61460b85615189565b60005b8381101561462d5781548189015260018201915060208101905061460e565b838801955050505b50505092915050565b600061464b6022836151f9565b91506146568261567d565b604082019050919050565b600061466e6026836151f9565b9150614679826156cc565b604082019050919050565b6000614691602a836151f9565b915061469c8261571b565b604082019050919050565b60006146b46013836151f9565b91506146bf8261576a565b602082019050919050565b60006146d76024836151f9565b91506146e282615793565b604082019050919050565b60006146fa6027836151f9565b9150614705826157e2565b604082019050919050565b600061471d6023836151f9565b915061472882615831565b604082019050919050565b60006147406025836151f9565b915061474b82615880565b604082019050919050565b6000614763601e836151f9565b915061476e826158cf565b602082019050919050565b6000614786602b836151f9565b9150614791826158f8565b604082019050919050565b60006147a96039836151f9565b91506147b482615947565b604082019050919050565b60006147cc6015836151f9565b91506147d782615996565b602082019050919050565b60006147ef6018836151f9565b91506147fa826159bf565b602082019050919050565b6000614812602b836151f9565b915061481d826159e8565b604082019050919050565b60006148356026836151f9565b915061484082615a37565b604082019050919050565b60006148586020836151f9565b915061486382615a86565b602082019050919050565b600061487b6014836151f9565b915061488682615aaf565b602082019050919050565b600061489e601a836151f9565b91506148a982615ad8565b602082019050919050565b60006148c16032836151f9565b91506148cc82615b01565b604082019050919050565b60006148e46015836151f9565b91506148ef82615b50565b602082019050919050565b60006149076029836151f9565b915061491282615b79565b604082019050919050565b600061492a6022836151f9565b915061493582615bc8565b604082019050919050565b600061494d6000836151ee565b915061495882615c17565b600082019050919050565b60006149706033836151f9565b915061497b82615c1a565b604082019050919050565b6000614993601d836151f9565b915061499e82615c69565b602082019050919050565b60006149b66021836151f9565b91506149c182615c92565b604082019050919050565b60006149d9602c836151f9565b91506149e482615ce1565b604082019050919050565b60006149fc602e836151f9565b9150614a0782615d30565b604082019050919050565b6000614a1f601f836151f9565b9150614a2a82615d7f565b602082019050919050565b6000614a42601a836151f9565b9150614a4d82615da8565b602082019050919050565b6000614a65602f836151f9565b9150614a7082615dd1565b604082019050919050565b6000614a88602d836151f9565b9150614a9382615e20565b604082019050919050565b6000614aab6022836151f9565b9150614ab682615e6f565b604082019050919050565b6000614ace6009836151f9565b9150614ad982615ebe565b602082019050919050565b6000614af16026836151f9565b9150614afc82615ee7565b604082019050919050565b614b10816153da565b82525050565b614b1f816153da565b82525050565b6000614b318284614481565b60148201915081905092915050565b6000614b4c8285614505565b602082019150614b5c8284614505565b6020820191508190509392505050565b6000614b7882856145bf565b9150614b84828461458e565b91508190509392505050565b6000614b9b82614940565b9150819050919050565b6000602082019050614bba6000830184614472565b92915050565b6000608082019050614bd56000830187614472565b614be26020830186614472565b614bef6040830185614b16565b8181036060830152614c01818461451c565b905095945050505050565b60006020820190508181036000830152614c268184614498565b905092915050565b6000602082019050614c4360008301846144f6565b92915050565b60006020820190508181036000830152614c638184614555565b905092915050565b60006020820190508181036000830152614c848161463e565b9050919050565b60006020820190508181036000830152614ca481614661565b9050919050565b60006020820190508181036000830152614cc481614684565b9050919050565b60006020820190508181036000830152614ce4816146a7565b9050919050565b60006020820190508181036000830152614d04816146ca565b9050919050565b60006020820190508181036000830152614d24816146ed565b9050919050565b60006020820190508181036000830152614d4481614710565b9050919050565b60006020820190508181036000830152614d6481614733565b9050919050565b60006020820190508181036000830152614d8481614756565b9050919050565b60006020820190508181036000830152614da481614779565b9050919050565b60006020820190508181036000830152614dc48161479c565b9050919050565b60006020820190508181036000830152614de4816147bf565b9050919050565b60006020820190508181036000830152614e04816147e2565b9050919050565b60006020820190508181036000830152614e2481614805565b9050919050565b60006020820190508181036000830152614e4481614828565b9050919050565b60006020820190508181036000830152614e648161484b565b9050919050565b60006020820190508181036000830152614e848161486e565b9050919050565b60006020820190508181036000830152614ea481614891565b9050919050565b60006020820190508181036000830152614ec4816148b4565b9050919050565b60006020820190508181036000830152614ee4816148d7565b9050919050565b60006020820190508181036000830152614f04816148fa565b9050919050565b60006020820190508181036000830152614f248161491d565b9050919050565b60006020820190508181036000830152614f4481614963565b9050919050565b60006020820190508181036000830152614f6481614986565b9050919050565b60006020820190508181036000830152614f84816149a9565b9050919050565b60006020820190508181036000830152614fa4816149cc565b9050919050565b60006020820190508181036000830152614fc4816149ef565b9050919050565b60006020820190508181036000830152614fe481614a12565b9050919050565b6000602082019050818103600083015261500481614a35565b9050919050565b6000602082019050818103600083015261502481614a58565b9050919050565b6000602082019050818103600083015261504481614a7b565b9050919050565b6000602082019050818103600083015261506481614a9e565b9050919050565b6000602082019050818103600083015261508481614ac1565b9050919050565b600060208201905081810360008301526150a481614ae4565b9050919050565b60006020820190506150c06000830184614b16565b92915050565b60006150d06150e1565b90506150dc8282615482565b919050565b6000604051905090565b600067ffffffffffffffff82111561510657615105615617565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561513257615131615617565b5b61513b8261565f565b9050602081019050919050565b600067ffffffffffffffff82111561516357615162615617565b5b61516c8261565f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006152208261539e565b915061522b8361539e565b9250826fffffffffffffffffffffffffffffffff038211156152505761524f61555b565b5b828201905092915050565b6000615266826153da565b9150615271836153da565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152a6576152a561555b565b5b828201905092915050565b60006152bc826153da565b91506152c7836153da565b9250826152d7576152d661558a565b5b828204905092915050565b60006152ed8261539e565b91506152f88361539e565b92508282101561530b5761530a61555b565b5b828203905092915050565b6000615321826153da565b915061532c836153da565b92508282101561533f5761533e61555b565b5b828203905092915050565b6000615355826153ba565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156154115780820151818401526020810190506153f6565b83811115615420576000848401525b50505050565b6000615431826153da565b915060008214156154455761544461555b565b5b600182039050919050565b6000600282049050600182168061546857607f821691505b6020821081141561547c5761547b6155b9565b5b50919050565b61548b8261565f565b810181811067ffffffffffffffff821117156154aa576154a9615617565b5b80604052505050565b60006154be826153da565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154f1576154f061555b565b5b600182019050919050565b600061550782615518565b9050919050565b6000819050919050565b600061552382615670565b9050919050565b6000615535826153da565b9150615540836153da565b9250826155505761554f61558a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f416d6f756e7420746f206d696e74206973203000000000000000000000000000600082015250565b7f4d696e74696e6720616d6f756e7420657863656564732072657365727665642060008201527f73697a6500000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720616d6f756e74206578636565647320616c6c6f77616e636560008201527f2070657220747800000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53656e64206120646976697369626c6520616d6f756e74206f66206574680000600082015250565b7f4d696e74696e6720616d6f756e74206578636565647320616c6c6f77616e636560008201527f207065722077616c6c6574000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f526166666c65206d696e74206973207061757365640000000000000000000000600082015250565b7f57686974656c697374206d696e74206973207061757365640000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4661696c656420746f2073656e64206574686572000000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f5075626c6963206d696e74206973207061757365640000000000000000000000600082015250565b7f596f7520617265206e6f7420656c696769626c6520666f72206120776869746560008201527f6c697374206d696e740000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f57686974656c697374206d696e7420697320736f6c64206f7574000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b7f596f7520617265206e6f7420656c696769626c6520666f72206120726166666c60008201527f65206d696e740000000000000000000000000000000000000000000000000000602082015250565b615f3f8161534a565b8114615f4a57600080fd5b50565b615f568161535c565b8114615f6157600080fd5b50565b615f6d81615368565b8114615f7857600080fd5b50565b615f8481615372565b8114615f8f57600080fd5b50565b615f9b816153da565b8114615fa657600080fd5b5056fea264697066735822122044155e6a7f0849fdc04707227737f1b59e3e3473a097d6e11d9a349ae977eba864736f6c63430008070033

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.