ETH Price: $2,969.12 (-1.70%)
Gas: 2 Gwei

Token

Kobolds (KBT)
 

Overview

Max Total Supply

7,009 KBT

Holders

3,608

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 KBT
0x841251f4a7636eeab62b884f13fcfbf472cbef14
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Kobolds

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

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

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



//    ____  _______    ______  __  ______   ____  ____     ____  __________         
//    / __ \/ ____/ |  / / __ \/ / /_  __/  / __ \/ __ \   / __ \/  _/ ____/         
//   / /_/ / __/  | | / / / / / /   / /    / / / / /_/ /  / / / // // __/            
//  / _, _/ /___  | |/ / /_/ / /___/ /    / /_/ / _, _/  / /_/ // // /___            
// /_/ |_/_____/__|___/\____/_____/_/_____\____/_/_|_|  /_____/___/_____/ ____  _____
// | |     / / ____/  /   |  / __ \/ ____/  / //_/ __ \/ __ )/ __ \/ /   / __ \/ ___/
// | | /| / / __/    / /| | / /_/ / __/    / ,< / / / / __  / / / / /   / / / /\__ \ 
// | |/ |/ / /___   / ___ |/ _, _/ /___   / /| / /_/ / /_/ / /_/ / /___/ /_/ /___/ / 
// |__/|__/_____/  /_/  |_/_/ |_/_____/  /_/ |_\____/_____/\____/_____/_____//____/            ¯                                                                                                                                                                                                            `'´              `'*'´¯                   '                                         '                              '                             ¯ `'*'´ ¯     '                 '                               '`*^·–·^*'´'           ‘



contract Kobolds is ERC721A,Ownable, ReentrancyGuard {
    string public baseURI;
    uint256 public MAX_SUPPLY = 6999;
    bool public curOpenState = false;

    // for public
    uint256 public constant publicCost = 0.01 ether;
    uint256 public constant maxPerWallet = 5;

    // for free 
    uint256 public freeMinted = 0;
    uint256 public constant MAX_FREE_SUPPLY = 1000;
    uint256 public constant maxFreePerWallet = 1;
    
    bool public manualOpenFreeMint = false;

    mapping (address => bool) private ogMinted;

    // for dev
    //using ECDSA for bytes32;
    bytes32 public _ogRoot;
    uint256 public constant maxWLmint = 10;
    bool private isInitMint = false;

    constructor() ERC721A("Kobolds","KBT",maxWLmint,MAX_SUPPLY) {
    }

    // public function  
    function setWLRoot(bytes32 newMerkleRoot) external onlyOwner{
        _ogRoot = newMerkleRoot;
    }

    function numberMinted(address account) public view returns(uint256) {
        return _numberMinted(account);
    }

    function initMint() external onlyOwner {
        require(isInitMint == false,"already inited!");
        _safeMint(msg.sender,1); 
        isInitMint = true;  
    }

    function OGMint(bytes32[] memory proof) 
            external 
            payable 
            isValidMerkleProof(proof,_ogRoot) {
        require(curOpenState,"not open yet!");
        require(ogMinted[msg.sender] == false, "");
        _safeMint(msg.sender,maxWLmint);
        ogMinted[msg.sender] = true;
    }

    function Mint(uint256 quantity) external payable mintCompliance(quantity) {
        require(curOpenState,"not open yet!");
        require(msg.sender == tx.origin, "must be real kobolds!!");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Purchase would exceed max supply");
        
        uint256 minted = numberMinted(msg.sender);
        require(minted + quantity <= maxPerWallet, "max 5 per wallet");


        uint256 price;
        if (minted > 0) {
            price = publicCost * quantity;
        } else if (freeMinted < MAX_FREE_SUPPLY) {
            price = (quantity - 1) * quantity;
            freeMinted = freeMinted + 1;
        }

        if (manualOpenFreeMint == true) {
            price = 0;
        }
        
        require(msg.value >= price,"Ether value sent is not correct");
 
        _safeMint(msg.sender, quantity);
        refundIfOver(price);
    }

    function changeCurOpenState(bool state) onlyOwner external {
        curOpenState = state;
    }

    function changeManualOpenFreeMint(bool state) onlyOwner external {
        manualOpenFreeMint = state;
    }

    function setBaseURI(string memory _baseUri) public onlyOwner {
        baseURI = _baseUri;
    }

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

    function canOGMint(bytes32[] calldata merkleProof) view external returns (bool res){
        require(_ogRoot != "", "root not set");
        if (MerkleProof.verify(merkleProof,_ogRoot,keccak256(abi.encodePacked(msg.sender))) && ogMinted[msg.sender] == false)
        {
            return true;
        }
        return false;
    }

    function refundIfOver(uint256 price) internal {
        require(msg.value >= price, "Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

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

    // modifier 
    modifier mintCompliance(uint256 quantity) {
        require(totalSupply() + quantity <= MAX_SUPPLY,"not enough limit!");
        _;
    } 
    modifier isValidMerkleProof(bytes32[] memory merkleProof, bytes32 root) {
        require(root != "", "OG mint not set");
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address does not exist in list"
        );
        _;
    }
}

File 2 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 3 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 4 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 1;

  uint256 internal immutable collectionSize;
  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.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

File 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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 13 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 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":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"OGMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"_ogRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"canOGMint","outputs":[{"internalType":"bool","name":"res","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"changeCurOpenState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"changeManualOpenFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"curOpenState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualOpenFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWLmint","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":[{"internalType":"address","name":"account","type":"address"}],"name":"numberMinted","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":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sacrifice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setWLRoot","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"}]

60c060405260016000556000600755611b57600b556000600c60006101000a81548160ff0219169083151502179055506000600d556000600e60006101000a81548160ff0219169083151502179055506000601160006101000a81548160ff0219169083151502179055503480156200007757600080fd5b506040518060400160405280600781526020017f4b6f626f6c6473000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4b42540000000000000000000000000000000000000000000000000000000000815250600a600b54600081116200012f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012690620003d7565b60405180910390fd5b6000821162000175576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016c90620003b5565b60405180910390fd5b83600190805190602001906200018d929190620002b7565b508260029080519060200190620001a6929190620002b7565b508160a08181525050806080818152505050505050620001db620001cf620001e960201b60201c565b620001f160201b60201c565b60016009819055506200050d565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c5906200040a565b90600052602060002090601f016020900481019282620002e9576000855562000335565b82601f106200030457805160ff191683800117855562000335565b8280016001018555821562000335579182015b828111156200033457825182559160200191906001019062000317565b5b50905062000344919062000348565b5090565b5b808211156200036357600081600090555060010162000349565b5090565b600062000376602783620003f9565b915062000383826200046f565b604082019050919050565b60006200039d602e83620003f9565b9150620003aa82620004be565b604082019050919050565b60006020820190508181036000830152620003d08162000367565b9050919050565b60006020820190508181036000830152620003f2816200038e565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200042357607f821691505b602082108114156200043a576200043962000440565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516156c66200053e6000396000818161297e015281816129a701526131ef0152600050506156c66000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063b88d4fde116100b6578063dc33e6811161007a578063dc33e68114610852578063e0737f7a1461088f578063e985e9c5146108a6578063f02642ab146108e3578063f2fde38b14610920578063f93b11dc1461094957610246565b8063b88d4fde1461076d578063b90864b214610796578063c87b56dd146107bf578063d10a1a2b146107fc578063d7224ba01461082757610246565b806395d89b41116100fd57806395d89b411461069a5780639da7f834146106c5578063a22cb465146106f0578063a702735714610719578063b11c7f821461074457610246565b8063715018a6146105ed578063858455e1146106045780638693da201461062d5780638a040df4146106585780638da5cb5b1461066f57610246565b80632f745c59116101c75780634f6ccce71161018b5780634f6ccce7146104e257806355f804b31461051f5780636352211e146105485780636c0360eb1461058557806370a08231146105b057610246565b80632f745c59146103fb57806332cb6b0c1461043857806342842e0e14610463578063453c23101461048c5780634c0a9fd0146104b757610246565b8063081812fc1161020e578063081812fc14610316578063095ea7b3146103535780631091d62c1461037c57806318160ddd146103a757806323b872dd146103d257610246565b80630186d1371461024b57806301ffc9a71461026757806302ddb65b146102a457806306fdde03146102cf57806307883703146102fa575b600080fd5b61026560048036038101906102609190613b75565b610974565b005b34801561027357600080fd5b5061028e60048036038101906102899190613c08565b610b76565b60405161029b919061438f565b60405180910390f35b3480156102b057600080fd5b506102b9610cc0565b6040516102c69190614847565b60405180910390f35b3480156102db57600080fd5b506102e4610cc6565b6040516102f191906143c5565b60405180910390f35b610314600480360381019061030f9190613c9b565b610d58565b005b34801561032257600080fd5b5061033d60048036038101906103389190613c9b565b610ffe565b60405161034a9190614328565b60405180910390f35b34801561035f57600080fd5b5061037a60048036038101906103759190613af4565b611083565b005b34801561038857600080fd5b5061039161119c565b60405161039e9190614847565b60405180910390f35b3480156103b357600080fd5b506103bc6111a1565b6040516103c99190614847565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906139ee565b6111aa565b005b34801561040757600080fd5b50610422600480360381019061041d9190613af4565b6111ba565b60405161042f9190614847565b60405180910390f35b34801561044457600080fd5b5061044d6113b8565b60405161045a9190614847565b60405180910390f35b34801561046f57600080fd5b5061048a600480360381019061048591906139ee565b6113be565b005b34801561049857600080fd5b506104a16113de565b6040516104ae9190614847565b60405180910390f35b3480156104c357600080fd5b506104cc6113e3565b6040516104d9919061438f565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190613c9b565b6113f6565b6040516105169190614847565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190613c5a565b611449565b005b34801561055457600080fd5b5061056f600480360381019061056a9190613c9b565b6114df565b60405161057c9190614328565b60405180910390f35b34801561059157600080fd5b5061059a6114f5565b6040516105a791906143c5565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190613989565b611583565b6040516105e49190614847565b60405180910390f35b3480156105f957600080fd5b5061060261166c565b005b34801561061057600080fd5b5061062b60048036038101906106269190613bb6565b6116f4565b005b34801561063957600080fd5b5061064261178d565b60405161064f9190614847565b60405180910390f35b34801561066457600080fd5b5061066d611798565b005b34801561067b57600080fd5b50610684611919565b6040516106919190614328565b60405180910390f35b3480156106a657600080fd5b506106af611943565b6040516106bc91906143c5565b60405180910390f35b3480156106d157600080fd5b506106da6119d5565b6040516106e791906143aa565b60405180910390f35b3480156106fc57600080fd5b5061071760048036038101906107129190613ab8565b6119db565b005b34801561072557600080fd5b5061072e611b5c565b60405161073b9190614847565b60405180910390f35b34801561075057600080fd5b5061076b60048036038101906107669190613bdf565b611b61565b005b34801561077957600080fd5b50610794600480360381019061078f9190613a3d565b611be7565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613bb6565b611c43565b005b3480156107cb57600080fd5b506107e660048036038101906107e19190613c9b565b611cdc565b6040516107f391906143c5565b60405180910390f35b34801561080857600080fd5b50610811611d83565b60405161081e9190614847565b60405180910390f35b34801561083357600080fd5b5061083c611d89565b6040516108499190614847565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190613989565b611d8f565b6040516108869190614847565b60405180910390f35b34801561089b57600080fd5b506108a4611da1565b005b3480156108b257600080fd5b506108cd60048036038101906108c891906139b2565b611e9b565b6040516108da919061438f565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613b30565b611f2f565b604051610917919061438f565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190613989565b61205f565b005b34801561095557600080fd5b5061095e612157565b60405161096b919061438f565b60405180910390f35b8060105460008114156109bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b390614647565b60405180910390fd5b6109ed8282336040516020016109d291906142c9565b6040516020818303038152906040528051906020012061216a565b610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2390614567565b60405180910390fd5b600c60009054906101000a900460ff16610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7290614487565b60405180910390fd5b60001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b05906146e7565b60405180910390fd5b610b1933600a612181565b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c4157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ca957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cb95750610cb88261219f565b5b9050919050565b6103e881565b606060018054610cd590614bf8565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0190614bf8565b8015610d4e5780601f10610d2357610100808354040283529160200191610d4e565b820191906000526020600020905b815481529060010190602001808311610d3157829003601f168201915b5050505050905090565b80600b5481610d656111a1565b610d6f91906149a9565b1115610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790614427565b60405180910390fd5b600c60009054906101000a900460ff16610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690614487565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490614447565b60405180910390fd5b600b5482610e796111a1565b610e8391906149a9565b1115610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb906145a7565b60405180910390fd5b6000610ecf33611d8f565b905060058382610edf91906149a9565b1115610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1790614467565b60405180910390fd5b600080821115610f445783662386f26fc10000610f3d9190614a30565b9050610f81565b6103e8600d541015610f805783600185610f5e9190614abe565b610f689190614a30565b90506001600d54610f7991906149a9565b600d819055505b5b60011515600e60009054906101000a900460ff1615151415610fa257600090505b80341015610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc90614547565b60405180910390fd5b610fef3385612181565b610ff881612209565b50505050565b6000611009826122aa565b611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90614807565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061108e826114df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f6906146c7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661111e6122b7565b73ffffffffffffffffffffffffffffffffffffffff16148061114d575061114c816111476122b7565b611e9b565b5b61118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390614587565b60405180910390fd5b6111978383836122bf565b505050565b600a81565b60008054905090565b6111b5838383612371565b505050565b60006111c583611583565b8210611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd906143e7565b60405180910390fd5b60006112106111a1565b905060008060005b83811015611376576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461130a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561136257868414156113535781955050505050506113b2565b838061135e90614c5b565b9450505b50808061136e90614c5b565b915050611218565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a9906147a7565b60405180910390fd5b92915050565b600b5481565b6113d983838360405180602001604052806000815250611be7565b505050565b600581565b600c60009054906101000a900460ff1681565b60006114006111a1565b8210611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906144e7565b60405180910390fd5b819050919050565b6114516122b7565b73ffffffffffffffffffffffffffffffffffffffff1661146f611919565b73ffffffffffffffffffffffffffffffffffffffff16146114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90614607565b60405180910390fd5b80600a90805190602001906114db92919061367e565b5050565b60006114ea8261292a565b600001519050919050565b600a805461150290614bf8565b80601f016020809104026020016040519081016040528092919081815260200182805461152e90614bf8565b801561157b5780601f106115505761010080835404028352916020019161157b565b820191906000526020600020905b81548152906001019060200180831161155e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb906145c7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116746122b7565b73ffffffffffffffffffffffffffffffffffffffff16611692611919565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90614607565b60405180910390fd5b6116f26000612b2d565b565b6116fc6122b7565b73ffffffffffffffffffffffffffffffffffffffff1661171a611919565b73ffffffffffffffffffffffffffffffffffffffff1614611770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176790614607565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b662386f26fc1000081565b6117a06122b7565b73ffffffffffffffffffffffffffffffffffffffff166117be611919565b73ffffffffffffffffffffffffffffffffffffffff1614611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b90614607565b60405180910390fd5b6002600954141561185a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611851906147c7565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161188890614313565b60006040518083038185875af1925050503d80600081146118c5576040519150601f19603f3d011682016040523d82523d6000602084013e6118ca565b606091505b505090508061190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190590614627565b60405180910390fd5b506001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461195290614bf8565b80601f016020809104026020016040519081016040528092919081815260200182805461197e90614bf8565b80156119cb5780601f106119a0576101008083540402835291602001916119cb565b820191906000526020600020905b8154815290600101906020018083116119ae57829003601f168201915b5050505050905090565b60105481565b6119e36122b7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4890614687565b60405180910390fd5b8060066000611a5e6122b7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b0b6122b7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b50919061438f565b60405180910390a35050565b600181565b611b696122b7565b73ffffffffffffffffffffffffffffffffffffffff16611b87611919565b73ffffffffffffffffffffffffffffffffffffffff1614611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490614607565b60405180910390fd5b8060108190555050565b611bf2848484612371565b611bfe84848484612bf3565b611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490614707565b60405180910390fd5b50505050565b611c4b6122b7565b73ffffffffffffffffffffffffffffffffffffffff16611c69611919565b73ffffffffffffffffffffffffffffffffffffffff1614611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690614607565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060611ce7826122aa565b611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d90614667565b60405180910390fd5b6000611d30612d8a565b90506000815111611d505760405180602001604052806000815250611d7b565b80611d5a84612e1c565b604051602001611d6b9291906142e4565b6040516020818303038152906040525b915050919050565b600d5481565b60075481565b6000611d9a82612fc9565b9050919050565b611da96122b7565b73ffffffffffffffffffffffffffffffffffffffff16611dc7611919565b73ffffffffffffffffffffffffffffffffffffffff1614611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1490614607565b60405180910390fd5b60001515601160009054906101000a900460ff16151514611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a90614787565b60405180910390fd5b611e7e336001612181565b6001601160006101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000806010541415611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d90614407565b60405180910390fd5b611fea838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105433604051602001611fcf91906142c9565b6040516020818303038152906040528051906020012061216a565b8015612046575060001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b156120545760019050612059565b600090505b92915050565b6120676122b7565b73ffffffffffffffffffffffffffffffffffffffff16612085611919565b73ffffffffffffffffffffffffffffffffffffffff16146120db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d290614607565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561214b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612142906144a7565b60405180910390fd5b61215481612b2d565b50565b600e60009054906101000a900460ff1681565b60008261217785846130b2565b1490509392505050565b61219b82826040518060200160405280600081525061312e565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8034101561224c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224390614727565b60405180910390fd5b803411156122a7573373ffffffffffffffffffffffffffffffffffffffff166108fc823461227a9190614abe565b9081150290604051600060405180830381858888f193505050501580156122a5573d6000803e3d6000fd5b505b50565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061237c8261292a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166123a36122b7565b73ffffffffffffffffffffffffffffffffffffffff1614806123ff57506123c86122b7565b73ffffffffffffffffffffffffffffffffffffffff166123e784610ffe565b73ffffffffffffffffffffffffffffffffffffffff16145b8061241b575061241a82600001516124156122b7565b611e9b565b5b90508061245d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612454906146a7565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146124cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c6906145e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561253f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253690614507565b60405180910390fd5b61254c858585600161360d565b61255c60008484600001516122bf565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125ca9190614a8a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661266e9190614963565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461277491906149a9565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128ba576127ea816122aa565b156128b9576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129228686866001613613565b505050505050565b612932613704565b61293b826122aa565b61297a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612971906144c7565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106129de5760017f0000000000000000000000000000000000000000000000000000000000000000846129d19190614abe565b6129db91906149a9565b90505b60008390505b818110612aec576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ad857809350505050612b28565b508080612ae490614bce565b9150506129e4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1f906147e7565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612c148473ffffffffffffffffffffffffffffffffffffffff16613619565b15612d7d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c3d6122b7565b8786866040518563ffffffff1660e01b8152600401612c5f9493929190614343565b602060405180830381600087803b158015612c7957600080fd5b505af1925050508015612caa57506040513d601f19601f82011682018060405250810190612ca79190613c31565b60015b612d2d573d8060008114612cda576040519150601f19603f3d011682016040523d82523d6000602084013e612cdf565b606091505b50600081511415612d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1c90614707565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d82565b600190505b949350505050565b6060600a8054612d9990614bf8565b80601f0160208091040260200160405190810160405280929190818152602001828054612dc590614bf8565b8015612e125780601f10612de757610100808354040283529160200191612e12565b820191906000526020600020905b815481529060010190602001808311612df557829003601f168201915b5050505050905090565b60606000821415612e64576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fc4565b600082905060005b60008214612e96578080612e7f90614c5b565b915050600a82612e8f91906149ff565b9150612e6c565b60008167ffffffffffffffff811115612ed8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f0a5781602001600182028036833780820191505090505b5090505b60008514612fbd57600182612f239190614abe565b9150600a85612f329190614cc8565b6030612f3e91906149a9565b60f81b818381518110612f7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fb691906149ff565b9450612f0e565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561303a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303190614527565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60008082905060005b84518110156131235761310e82868381518110613101577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161363c565b9150808061311b90614c5b565b9150506130bb565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156131a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319b90614767565b60405180910390fd5b6131ad816122aa565b156131ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e490614747565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324790614827565b60405180910390fd5b61325d600085838661360d565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161335a9190614963565b6fffffffffffffffffffffffffffffffff1681526020018583602001516133819190614963565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156135f057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135906000888488612bf3565b6135cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c690614707565b60405180910390fd5b81806135da90614c5b565b92505080806135e890614c5b565b91505061351f565b50806000819055506136056000878588613613565b505050505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008183106136545761364f8284613667565b61365f565b61365e8383613667565b5b905092915050565b600082600052816020526040600020905092915050565b82805461368a90614bf8565b90600052602060002090601f0160209004810192826136ac57600085556136f3565b82601f106136c557805160ff19168380011785556136f3565b828001600101855582156136f3579182015b828111156136f25782518255916020019190600101906136d7565b5b509050613700919061373e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561375757600081600090555060010161373f565b5090565b600061376e61376984614887565b614862565b9050808382526020820190508285602086028201111561378d57600080fd5b60005b858110156137bd57816137a388826138e1565b845260208401935060208301925050600181019050613790565b5050509392505050565b60006137da6137d5846148b3565b614862565b9050828152602081018484840111156137f257600080fd5b6137fd848285614b8c565b509392505050565b6000613818613813846148e4565b614862565b90508281526020810184848401111561383057600080fd5b61383b848285614b8c565b509392505050565b6000813590506138528161561d565b92915050565b60008083601f84011261386a57600080fd5b8235905067ffffffffffffffff81111561388357600080fd5b60208301915083602082028301111561389b57600080fd5b9250929050565b600082601f8301126138b357600080fd5b81356138c384826020860161375b565b91505092915050565b6000813590506138db81615634565b92915050565b6000813590506138f08161564b565b92915050565b60008135905061390581615662565b92915050565b60008151905061391a81615662565b92915050565b600082601f83011261393157600080fd5b81356139418482602086016137c7565b91505092915050565b600082601f83011261395b57600080fd5b813561396b848260208601613805565b91505092915050565b60008135905061398381615679565b92915050565b60006020828403121561399b57600080fd5b60006139a984828501613843565b91505092915050565b600080604083850312156139c557600080fd5b60006139d385828601613843565b92505060206139e485828601613843565b9150509250929050565b600080600060608486031215613a0357600080fd5b6000613a1186828701613843565b9350506020613a2286828701613843565b9250506040613a3386828701613974565b9150509250925092565b60008060008060808587031215613a5357600080fd5b6000613a6187828801613843565b9450506020613a7287828801613843565b9350506040613a8387828801613974565b925050606085013567ffffffffffffffff811115613aa057600080fd5b613aac87828801613920565b91505092959194509250565b60008060408385031215613acb57600080fd5b6000613ad985828601613843565b9250506020613aea858286016138cc565b9150509250929050565b60008060408385031215613b0757600080fd5b6000613b1585828601613843565b9250506020613b2685828601613974565b9150509250929050565b60008060208385031215613b4357600080fd5b600083013567ffffffffffffffff811115613b5d57600080fd5b613b6985828601613858565b92509250509250929050565b600060208284031215613b8757600080fd5b600082013567ffffffffffffffff811115613ba157600080fd5b613bad848285016138a2565b91505092915050565b600060208284031215613bc857600080fd5b6000613bd6848285016138cc565b91505092915050565b600060208284031215613bf157600080fd5b6000613bff848285016138e1565b91505092915050565b600060208284031215613c1a57600080fd5b6000613c28848285016138f6565b91505092915050565b600060208284031215613c4357600080fd5b6000613c518482850161390b565b91505092915050565b600060208284031215613c6c57600080fd5b600082013567ffffffffffffffff811115613c8657600080fd5b613c928482850161394a565b91505092915050565b600060208284031215613cad57600080fd5b6000613cbb84828501613974565b91505092915050565b613ccd81614af2565b82525050565b613ce4613cdf82614af2565b614ca4565b82525050565b613cf381614b04565b82525050565b613d0281614b10565b82525050565b6000613d1382614915565b613d1d818561492b565b9350613d2d818560208601614b9b565b613d3681614db5565b840191505092915050565b6000613d4c82614920565b613d568185614947565b9350613d66818560208601614b9b565b613d6f81614db5565b840191505092915050565b6000613d8582614920565b613d8f8185614958565b9350613d9f818560208601614b9b565b80840191505092915050565b6000613db8602283614947565b9150613dc382614dd3565b604082019050919050565b6000613ddb600c83614947565b9150613de682614e22565b602082019050919050565b6000613dfe601183614947565b9150613e0982614e4b565b602082019050919050565b6000613e21601683614947565b9150613e2c82614e74565b602082019050919050565b6000613e44601083614947565b9150613e4f82614e9d565b602082019050919050565b6000613e67600d83614947565b9150613e7282614ec6565b602082019050919050565b6000613e8a602683614947565b9150613e9582614eef565b604082019050919050565b6000613ead602a83614947565b9150613eb882614f3e565b604082019050919050565b6000613ed0602383614947565b9150613edb82614f8d565b604082019050919050565b6000613ef3602583614947565b9150613efe82614fdc565b604082019050919050565b6000613f16603183614947565b9150613f218261502b565b604082019050919050565b6000613f39601f83614947565b9150613f448261507a565b602082019050919050565b6000613f5c601e83614947565b9150613f67826150a3565b602082019050919050565b6000613f7f603983614947565b9150613f8a826150cc565b604082019050919050565b6000613fa2602083614947565b9150613fad8261511b565b602082019050919050565b6000613fc5602b83614947565b9150613fd082615144565b604082019050919050565b6000613fe8602683614947565b9150613ff382615193565b604082019050919050565b600061400b600583614958565b9150614016826151e2565b600582019050919050565b600061402e602083614947565b91506140398261520b565b602082019050919050565b6000614051601183614947565b915061405c82615234565b602082019050919050565b6000614074600f83614947565b915061407f8261525d565b602082019050919050565b6000614097602f83614947565b91506140a282615286565b604082019050919050565b60006140ba601a83614947565b91506140c5826152d5565b602082019050919050565b60006140dd603283614947565b91506140e8826152fe565b604082019050919050565b6000614100602283614947565b915061410b8261534d565b604082019050919050565b600061412360008361493c565b915061412e8261539c565b600082019050919050565b6000614146600083614947565b91506141518261539c565b600082019050919050565b6000614169603383614947565b91506141748261539f565b604082019050919050565b600061418c601683614947565b9150614197826153ee565b602082019050919050565b60006141af601d83614947565b91506141ba82615417565b602082019050919050565b60006141d2602183614947565b91506141dd82615440565b604082019050919050565b60006141f5600f83614947565b91506142008261548f565b602082019050919050565b6000614218602e83614947565b9150614223826154b8565b604082019050919050565b600061423b601f83614947565b915061424682615507565b602082019050919050565b600061425e602f83614947565b915061426982615530565b604082019050919050565b6000614281602d83614947565b915061428c8261557f565b604082019050919050565b60006142a4602283614947565b91506142af826155ce565b604082019050919050565b6142c381614b82565b82525050565b60006142d58284613cd3565b60148201915081905092915050565b60006142f08285613d7a565b91506142fc8284613d7a565b915061430782613ffe565b91508190509392505050565b600061431e82614116565b9150819050919050565b600060208201905061433d6000830184613cc4565b92915050565b60006080820190506143586000830187613cc4565b6143656020830186613cc4565b61437260408301856142ba565b81810360608301526143848184613d08565b905095945050505050565b60006020820190506143a46000830184613cea565b92915050565b60006020820190506143bf6000830184613cf9565b92915050565b600060208201905081810360008301526143df8184613d41565b905092915050565b6000602082019050818103600083015261440081613dab565b9050919050565b6000602082019050818103600083015261442081613dce565b9050919050565b6000602082019050818103600083015261444081613df1565b9050919050565b6000602082019050818103600083015261446081613e14565b9050919050565b6000602082019050818103600083015261448081613e37565b9050919050565b600060208201905081810360008301526144a081613e5a565b9050919050565b600060208201905081810360008301526144c081613e7d565b9050919050565b600060208201905081810360008301526144e081613ea0565b9050919050565b6000602082019050818103600083015261450081613ec3565b9050919050565b6000602082019050818103600083015261452081613ee6565b9050919050565b6000602082019050818103600083015261454081613f09565b9050919050565b6000602082019050818103600083015261456081613f2c565b9050919050565b6000602082019050818103600083015261458081613f4f565b9050919050565b600060208201905081810360008301526145a081613f72565b9050919050565b600060208201905081810360008301526145c081613f95565b9050919050565b600060208201905081810360008301526145e081613fb8565b9050919050565b6000602082019050818103600083015261460081613fdb565b9050919050565b6000602082019050818103600083015261462081614021565b9050919050565b6000602082019050818103600083015261464081614044565b9050919050565b6000602082019050818103600083015261466081614067565b9050919050565b600060208201905081810360008301526146808161408a565b9050919050565b600060208201905081810360008301526146a0816140ad565b9050919050565b600060208201905081810360008301526146c0816140d0565b9050919050565b600060208201905081810360008301526146e0816140f3565b9050919050565b6000602082019050818103600083015261470081614139565b9050919050565b600060208201905081810360008301526147208161415c565b9050919050565b600060208201905081810360008301526147408161417f565b9050919050565b60006020820190508181036000830152614760816141a2565b9050919050565b60006020820190508181036000830152614780816141c5565b9050919050565b600060208201905081810360008301526147a0816141e8565b9050919050565b600060208201905081810360008301526147c08161420b565b9050919050565b600060208201905081810360008301526147e08161422e565b9050919050565b6000602082019050818103600083015261480081614251565b9050919050565b6000602082019050818103600083015261482081614274565b9050919050565b6000602082019050818103600083015261484081614297565b9050919050565b600060208201905061485c60008301846142ba565b92915050565b600061486c61487d565b90506148788282614c2a565b919050565b6000604051905090565b600067ffffffffffffffff8211156148a2576148a1614d86565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156148ce576148cd614d86565b5b6148d782614db5565b9050602081019050919050565b600067ffffffffffffffff8211156148ff576148fe614d86565b5b61490882614db5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061496e82614b46565b915061497983614b46565b9250826fffffffffffffffffffffffffffffffff0382111561499e5761499d614cf9565b5b828201905092915050565b60006149b482614b82565b91506149bf83614b82565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149f4576149f3614cf9565b5b828201905092915050565b6000614a0a82614b82565b9150614a1583614b82565b925082614a2557614a24614d28565b5b828204905092915050565b6000614a3b82614b82565b9150614a4683614b82565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a7f57614a7e614cf9565b5b828202905092915050565b6000614a9582614b46565b9150614aa083614b46565b925082821015614ab357614ab2614cf9565b5b828203905092915050565b6000614ac982614b82565b9150614ad483614b82565b925082821015614ae757614ae6614cf9565b5b828203905092915050565b6000614afd82614b62565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614bb9578082015181840152602081019050614b9e565b83811115614bc8576000848401525b50505050565b6000614bd982614b82565b91506000821415614bed57614bec614cf9565b5b600182039050919050565b60006002820490506001821680614c1057607f821691505b60208210811415614c2457614c23614d57565b5b50919050565b614c3382614db5565b810181811067ffffffffffffffff82111715614c5257614c51614d86565b5b80604052505050565b6000614c6682614b82565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c9957614c98614cf9565b5b600182019050919050565b6000614caf82614cb6565b9050919050565b6000614cc182614dc6565b9050919050565b6000614cd382614b82565b9150614cde83614b82565b925082614cee57614ced614d28565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f726f6f74206e6f74207365740000000000000000000000000000000000000000600082015250565b7f6e6f7420656e6f756768206c696d697421000000000000000000000000000000600082015250565b7f6d757374206265207265616c206b6f626f6c6473212100000000000000000000600082015250565b7f6d61782035207065722077616c6c657400000000000000000000000000000000600082015250565b7f6e6f74206f70656e207965742100000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4164647265737320646f6573206e6f7420657869737420696e206c6973740000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f736163726966696365206661696c65642e000000000000000000000000000000600082015250565b7f4f47206d696e74206e6f74207365740000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f616c726561647920696e69746564210000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61562681614af2565b811461563157600080fd5b50565b61563d81614b04565b811461564857600080fd5b50565b61565481614b10565b811461565f57600080fd5b50565b61566b81614b1a565b811461567657600080fd5b50565b61568281614b82565b811461568d57600080fd5b5056fea2646970667358221220039640b5861a12271f4003f68a9dd622d560277ed2d08f30b352c3609d02016864736f6c63430008010033

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063715018a611610139578063b88d4fde116100b6578063dc33e6811161007a578063dc33e68114610852578063e0737f7a1461088f578063e985e9c5146108a6578063f02642ab146108e3578063f2fde38b14610920578063f93b11dc1461094957610246565b8063b88d4fde1461076d578063b90864b214610796578063c87b56dd146107bf578063d10a1a2b146107fc578063d7224ba01461082757610246565b806395d89b41116100fd57806395d89b411461069a5780639da7f834146106c5578063a22cb465146106f0578063a702735714610719578063b11c7f821461074457610246565b8063715018a6146105ed578063858455e1146106045780638693da201461062d5780638a040df4146106585780638da5cb5b1461066f57610246565b80632f745c59116101c75780634f6ccce71161018b5780634f6ccce7146104e257806355f804b31461051f5780636352211e146105485780636c0360eb1461058557806370a08231146105b057610246565b80632f745c59146103fb57806332cb6b0c1461043857806342842e0e14610463578063453c23101461048c5780634c0a9fd0146104b757610246565b8063081812fc1161020e578063081812fc14610316578063095ea7b3146103535780631091d62c1461037c57806318160ddd146103a757806323b872dd146103d257610246565b80630186d1371461024b57806301ffc9a71461026757806302ddb65b146102a457806306fdde03146102cf57806307883703146102fa575b600080fd5b61026560048036038101906102609190613b75565b610974565b005b34801561027357600080fd5b5061028e60048036038101906102899190613c08565b610b76565b60405161029b919061438f565b60405180910390f35b3480156102b057600080fd5b506102b9610cc0565b6040516102c69190614847565b60405180910390f35b3480156102db57600080fd5b506102e4610cc6565b6040516102f191906143c5565b60405180910390f35b610314600480360381019061030f9190613c9b565b610d58565b005b34801561032257600080fd5b5061033d60048036038101906103389190613c9b565b610ffe565b60405161034a9190614328565b60405180910390f35b34801561035f57600080fd5b5061037a60048036038101906103759190613af4565b611083565b005b34801561038857600080fd5b5061039161119c565b60405161039e9190614847565b60405180910390f35b3480156103b357600080fd5b506103bc6111a1565b6040516103c99190614847565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906139ee565b6111aa565b005b34801561040757600080fd5b50610422600480360381019061041d9190613af4565b6111ba565b60405161042f9190614847565b60405180910390f35b34801561044457600080fd5b5061044d6113b8565b60405161045a9190614847565b60405180910390f35b34801561046f57600080fd5b5061048a600480360381019061048591906139ee565b6113be565b005b34801561049857600080fd5b506104a16113de565b6040516104ae9190614847565b60405180910390f35b3480156104c357600080fd5b506104cc6113e3565b6040516104d9919061438f565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190613c9b565b6113f6565b6040516105169190614847565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190613c5a565b611449565b005b34801561055457600080fd5b5061056f600480360381019061056a9190613c9b565b6114df565b60405161057c9190614328565b60405180910390f35b34801561059157600080fd5b5061059a6114f5565b6040516105a791906143c5565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190613989565b611583565b6040516105e49190614847565b60405180910390f35b3480156105f957600080fd5b5061060261166c565b005b34801561061057600080fd5b5061062b60048036038101906106269190613bb6565b6116f4565b005b34801561063957600080fd5b5061064261178d565b60405161064f9190614847565b60405180910390f35b34801561066457600080fd5b5061066d611798565b005b34801561067b57600080fd5b50610684611919565b6040516106919190614328565b60405180910390f35b3480156106a657600080fd5b506106af611943565b6040516106bc91906143c5565b60405180910390f35b3480156106d157600080fd5b506106da6119d5565b6040516106e791906143aa565b60405180910390f35b3480156106fc57600080fd5b5061071760048036038101906107129190613ab8565b6119db565b005b34801561072557600080fd5b5061072e611b5c565b60405161073b9190614847565b60405180910390f35b34801561075057600080fd5b5061076b60048036038101906107669190613bdf565b611b61565b005b34801561077957600080fd5b50610794600480360381019061078f9190613a3d565b611be7565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613bb6565b611c43565b005b3480156107cb57600080fd5b506107e660048036038101906107e19190613c9b565b611cdc565b6040516107f391906143c5565b60405180910390f35b34801561080857600080fd5b50610811611d83565b60405161081e9190614847565b60405180910390f35b34801561083357600080fd5b5061083c611d89565b6040516108499190614847565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190613989565b611d8f565b6040516108869190614847565b60405180910390f35b34801561089b57600080fd5b506108a4611da1565b005b3480156108b257600080fd5b506108cd60048036038101906108c891906139b2565b611e9b565b6040516108da919061438f565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613b30565b611f2f565b604051610917919061438f565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190613989565b61205f565b005b34801561095557600080fd5b5061095e612157565b60405161096b919061438f565b60405180910390f35b8060105460008114156109bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b390614647565b60405180910390fd5b6109ed8282336040516020016109d291906142c9565b6040516020818303038152906040528051906020012061216a565b610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2390614567565b60405180910390fd5b600c60009054906101000a900460ff16610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7290614487565b60405180910390fd5b60001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b05906146e7565b60405180910390fd5b610b1933600a612181565b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c4157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ca957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cb95750610cb88261219f565b5b9050919050565b6103e881565b606060018054610cd590614bf8565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0190614bf8565b8015610d4e5780601f10610d2357610100808354040283529160200191610d4e565b820191906000526020600020905b815481529060010190602001808311610d3157829003601f168201915b5050505050905090565b80600b5481610d656111a1565b610d6f91906149a9565b1115610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790614427565b60405180910390fd5b600c60009054906101000a900460ff16610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690614487565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490614447565b60405180910390fd5b600b5482610e796111a1565b610e8391906149a9565b1115610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb906145a7565b60405180910390fd5b6000610ecf33611d8f565b905060058382610edf91906149a9565b1115610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1790614467565b60405180910390fd5b600080821115610f445783662386f26fc10000610f3d9190614a30565b9050610f81565b6103e8600d541015610f805783600185610f5e9190614abe565b610f689190614a30565b90506001600d54610f7991906149a9565b600d819055505b5b60011515600e60009054906101000a900460ff1615151415610fa257600090505b80341015610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc90614547565b60405180910390fd5b610fef3385612181565b610ff881612209565b50505050565b6000611009826122aa565b611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90614807565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061108e826114df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f6906146c7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661111e6122b7565b73ffffffffffffffffffffffffffffffffffffffff16148061114d575061114c816111476122b7565b611e9b565b5b61118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390614587565b60405180910390fd5b6111978383836122bf565b505050565b600a81565b60008054905090565b6111b5838383612371565b505050565b60006111c583611583565b8210611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd906143e7565b60405180910390fd5b60006112106111a1565b905060008060005b83811015611376576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461130a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561136257868414156113535781955050505050506113b2565b838061135e90614c5b565b9450505b50808061136e90614c5b565b915050611218565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a9906147a7565b60405180910390fd5b92915050565b600b5481565b6113d983838360405180602001604052806000815250611be7565b505050565b600581565b600c60009054906101000a900460ff1681565b60006114006111a1565b8210611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906144e7565b60405180910390fd5b819050919050565b6114516122b7565b73ffffffffffffffffffffffffffffffffffffffff1661146f611919565b73ffffffffffffffffffffffffffffffffffffffff16146114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90614607565b60405180910390fd5b80600a90805190602001906114db92919061367e565b5050565b60006114ea8261292a565b600001519050919050565b600a805461150290614bf8565b80601f016020809104026020016040519081016040528092919081815260200182805461152e90614bf8565b801561157b5780601f106115505761010080835404028352916020019161157b565b820191906000526020600020905b81548152906001019060200180831161155e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb906145c7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116746122b7565b73ffffffffffffffffffffffffffffffffffffffff16611692611919565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90614607565b60405180910390fd5b6116f26000612b2d565b565b6116fc6122b7565b73ffffffffffffffffffffffffffffffffffffffff1661171a611919565b73ffffffffffffffffffffffffffffffffffffffff1614611770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176790614607565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b662386f26fc1000081565b6117a06122b7565b73ffffffffffffffffffffffffffffffffffffffff166117be611919565b73ffffffffffffffffffffffffffffffffffffffff1614611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b90614607565b60405180910390fd5b6002600954141561185a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611851906147c7565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161188890614313565b60006040518083038185875af1925050503d80600081146118c5576040519150601f19603f3d011682016040523d82523d6000602084013e6118ca565b606091505b505090508061190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190590614627565b60405180910390fd5b506001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461195290614bf8565b80601f016020809104026020016040519081016040528092919081815260200182805461197e90614bf8565b80156119cb5780601f106119a0576101008083540402835291602001916119cb565b820191906000526020600020905b8154815290600101906020018083116119ae57829003601f168201915b5050505050905090565b60105481565b6119e36122b7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4890614687565b60405180910390fd5b8060066000611a5e6122b7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b0b6122b7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b50919061438f565b60405180910390a35050565b600181565b611b696122b7565b73ffffffffffffffffffffffffffffffffffffffff16611b87611919565b73ffffffffffffffffffffffffffffffffffffffff1614611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490614607565b60405180910390fd5b8060108190555050565b611bf2848484612371565b611bfe84848484612bf3565b611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490614707565b60405180910390fd5b50505050565b611c4b6122b7565b73ffffffffffffffffffffffffffffffffffffffff16611c69611919565b73ffffffffffffffffffffffffffffffffffffffff1614611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690614607565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060611ce7826122aa565b611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d90614667565b60405180910390fd5b6000611d30612d8a565b90506000815111611d505760405180602001604052806000815250611d7b565b80611d5a84612e1c565b604051602001611d6b9291906142e4565b6040516020818303038152906040525b915050919050565b600d5481565b60075481565b6000611d9a82612fc9565b9050919050565b611da96122b7565b73ffffffffffffffffffffffffffffffffffffffff16611dc7611919565b73ffffffffffffffffffffffffffffffffffffffff1614611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1490614607565b60405180910390fd5b60001515601160009054906101000a900460ff16151514611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a90614787565b60405180910390fd5b611e7e336001612181565b6001601160006101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000806010541415611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d90614407565b60405180910390fd5b611fea838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105433604051602001611fcf91906142c9565b6040516020818303038152906040528051906020012061216a565b8015612046575060001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b156120545760019050612059565b600090505b92915050565b6120676122b7565b73ffffffffffffffffffffffffffffffffffffffff16612085611919565b73ffffffffffffffffffffffffffffffffffffffff16146120db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d290614607565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561214b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612142906144a7565b60405180910390fd5b61215481612b2d565b50565b600e60009054906101000a900460ff1681565b60008261217785846130b2565b1490509392505050565b61219b82826040518060200160405280600081525061312e565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8034101561224c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224390614727565b60405180910390fd5b803411156122a7573373ffffffffffffffffffffffffffffffffffffffff166108fc823461227a9190614abe565b9081150290604051600060405180830381858888f193505050501580156122a5573d6000803e3d6000fd5b505b50565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061237c8261292a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166123a36122b7565b73ffffffffffffffffffffffffffffffffffffffff1614806123ff57506123c86122b7565b73ffffffffffffffffffffffffffffffffffffffff166123e784610ffe565b73ffffffffffffffffffffffffffffffffffffffff16145b8061241b575061241a82600001516124156122b7565b611e9b565b5b90508061245d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612454906146a7565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146124cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c6906145e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561253f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253690614507565b60405180910390fd5b61254c858585600161360d565b61255c60008484600001516122bf565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125ca9190614a8a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661266e9190614963565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461277491906149a9565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128ba576127ea816122aa565b156128b9576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129228686866001613613565b505050505050565b612932613704565b61293b826122aa565b61297a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612971906144c7565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106129de5760017f000000000000000000000000000000000000000000000000000000000000000a846129d19190614abe565b6129db91906149a9565b90505b60008390505b818110612aec576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ad857809350505050612b28565b508080612ae490614bce565b9150506129e4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1f906147e7565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612c148473ffffffffffffffffffffffffffffffffffffffff16613619565b15612d7d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c3d6122b7565b8786866040518563ffffffff1660e01b8152600401612c5f9493929190614343565b602060405180830381600087803b158015612c7957600080fd5b505af1925050508015612caa57506040513d601f19601f82011682018060405250810190612ca79190613c31565b60015b612d2d573d8060008114612cda576040519150601f19603f3d011682016040523d82523d6000602084013e612cdf565b606091505b50600081511415612d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1c90614707565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d82565b600190505b949350505050565b6060600a8054612d9990614bf8565b80601f0160208091040260200160405190810160405280929190818152602001828054612dc590614bf8565b8015612e125780601f10612de757610100808354040283529160200191612e12565b820191906000526020600020905b815481529060010190602001808311612df557829003601f168201915b5050505050905090565b60606000821415612e64576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fc4565b600082905060005b60008214612e96578080612e7f90614c5b565b915050600a82612e8f91906149ff565b9150612e6c565b60008167ffffffffffffffff811115612ed8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f0a5781602001600182028036833780820191505090505b5090505b60008514612fbd57600182612f239190614abe565b9150600a85612f329190614cc8565b6030612f3e91906149a9565b60f81b818381518110612f7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fb691906149ff565b9450612f0e565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561303a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303190614527565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60008082905060005b84518110156131235761310e82868381518110613101577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161363c565b9150808061311b90614c5b565b9150506130bb565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156131a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319b90614767565b60405180910390fd5b6131ad816122aa565b156131ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e490614747565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115613250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324790614827565b60405180910390fd5b61325d600085838661360d565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161335a9190614963565b6fffffffffffffffffffffffffffffffff1681526020018583602001516133819190614963565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156135f057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135906000888488612bf3565b6135cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c690614707565b60405180910390fd5b81806135da90614c5b565b92505080806135e890614c5b565b91505061351f565b50806000819055506136056000878588613613565b505050505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008183106136545761364f8284613667565b61365f565b61365e8383613667565b5b905092915050565b600082600052816020526040600020905092915050565b82805461368a90614bf8565b90600052602060002090601f0160209004810192826136ac57600085556136f3565b82601f106136c557805160ff19168380011785556136f3565b828001600101855582156136f3579182015b828111156136f25782518255916020019190600101906136d7565b5b509050613700919061373e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561375757600081600090555060010161373f565b5090565b600061376e61376984614887565b614862565b9050808382526020820190508285602086028201111561378d57600080fd5b60005b858110156137bd57816137a388826138e1565b845260208401935060208301925050600181019050613790565b5050509392505050565b60006137da6137d5846148b3565b614862565b9050828152602081018484840111156137f257600080fd5b6137fd848285614b8c565b509392505050565b6000613818613813846148e4565b614862565b90508281526020810184848401111561383057600080fd5b61383b848285614b8c565b509392505050565b6000813590506138528161561d565b92915050565b60008083601f84011261386a57600080fd5b8235905067ffffffffffffffff81111561388357600080fd5b60208301915083602082028301111561389b57600080fd5b9250929050565b600082601f8301126138b357600080fd5b81356138c384826020860161375b565b91505092915050565b6000813590506138db81615634565b92915050565b6000813590506138f08161564b565b92915050565b60008135905061390581615662565b92915050565b60008151905061391a81615662565b92915050565b600082601f83011261393157600080fd5b81356139418482602086016137c7565b91505092915050565b600082601f83011261395b57600080fd5b813561396b848260208601613805565b91505092915050565b60008135905061398381615679565b92915050565b60006020828403121561399b57600080fd5b60006139a984828501613843565b91505092915050565b600080604083850312156139c557600080fd5b60006139d385828601613843565b92505060206139e485828601613843565b9150509250929050565b600080600060608486031215613a0357600080fd5b6000613a1186828701613843565b9350506020613a2286828701613843565b9250506040613a3386828701613974565b9150509250925092565b60008060008060808587031215613a5357600080fd5b6000613a6187828801613843565b9450506020613a7287828801613843565b9350506040613a8387828801613974565b925050606085013567ffffffffffffffff811115613aa057600080fd5b613aac87828801613920565b91505092959194509250565b60008060408385031215613acb57600080fd5b6000613ad985828601613843565b9250506020613aea858286016138cc565b9150509250929050565b60008060408385031215613b0757600080fd5b6000613b1585828601613843565b9250506020613b2685828601613974565b9150509250929050565b60008060208385031215613b4357600080fd5b600083013567ffffffffffffffff811115613b5d57600080fd5b613b6985828601613858565b92509250509250929050565b600060208284031215613b8757600080fd5b600082013567ffffffffffffffff811115613ba157600080fd5b613bad848285016138a2565b91505092915050565b600060208284031215613bc857600080fd5b6000613bd6848285016138cc565b91505092915050565b600060208284031215613bf157600080fd5b6000613bff848285016138e1565b91505092915050565b600060208284031215613c1a57600080fd5b6000613c28848285016138f6565b91505092915050565b600060208284031215613c4357600080fd5b6000613c518482850161390b565b91505092915050565b600060208284031215613c6c57600080fd5b600082013567ffffffffffffffff811115613c8657600080fd5b613c928482850161394a565b91505092915050565b600060208284031215613cad57600080fd5b6000613cbb84828501613974565b91505092915050565b613ccd81614af2565b82525050565b613ce4613cdf82614af2565b614ca4565b82525050565b613cf381614b04565b82525050565b613d0281614b10565b82525050565b6000613d1382614915565b613d1d818561492b565b9350613d2d818560208601614b9b565b613d3681614db5565b840191505092915050565b6000613d4c82614920565b613d568185614947565b9350613d66818560208601614b9b565b613d6f81614db5565b840191505092915050565b6000613d8582614920565b613d8f8185614958565b9350613d9f818560208601614b9b565b80840191505092915050565b6000613db8602283614947565b9150613dc382614dd3565b604082019050919050565b6000613ddb600c83614947565b9150613de682614e22565b602082019050919050565b6000613dfe601183614947565b9150613e0982614e4b565b602082019050919050565b6000613e21601683614947565b9150613e2c82614e74565b602082019050919050565b6000613e44601083614947565b9150613e4f82614e9d565b602082019050919050565b6000613e67600d83614947565b9150613e7282614ec6565b602082019050919050565b6000613e8a602683614947565b9150613e9582614eef565b604082019050919050565b6000613ead602a83614947565b9150613eb882614f3e565b604082019050919050565b6000613ed0602383614947565b9150613edb82614f8d565b604082019050919050565b6000613ef3602583614947565b9150613efe82614fdc565b604082019050919050565b6000613f16603183614947565b9150613f218261502b565b604082019050919050565b6000613f39601f83614947565b9150613f448261507a565b602082019050919050565b6000613f5c601e83614947565b9150613f67826150a3565b602082019050919050565b6000613f7f603983614947565b9150613f8a826150cc565b604082019050919050565b6000613fa2602083614947565b9150613fad8261511b565b602082019050919050565b6000613fc5602b83614947565b9150613fd082615144565b604082019050919050565b6000613fe8602683614947565b9150613ff382615193565b604082019050919050565b600061400b600583614958565b9150614016826151e2565b600582019050919050565b600061402e602083614947565b91506140398261520b565b602082019050919050565b6000614051601183614947565b915061405c82615234565b602082019050919050565b6000614074600f83614947565b915061407f8261525d565b602082019050919050565b6000614097602f83614947565b91506140a282615286565b604082019050919050565b60006140ba601a83614947565b91506140c5826152d5565b602082019050919050565b60006140dd603283614947565b91506140e8826152fe565b604082019050919050565b6000614100602283614947565b915061410b8261534d565b604082019050919050565b600061412360008361493c565b915061412e8261539c565b600082019050919050565b6000614146600083614947565b91506141518261539c565b600082019050919050565b6000614169603383614947565b91506141748261539f565b604082019050919050565b600061418c601683614947565b9150614197826153ee565b602082019050919050565b60006141af601d83614947565b91506141ba82615417565b602082019050919050565b60006141d2602183614947565b91506141dd82615440565b604082019050919050565b60006141f5600f83614947565b91506142008261548f565b602082019050919050565b6000614218602e83614947565b9150614223826154b8565b604082019050919050565b600061423b601f83614947565b915061424682615507565b602082019050919050565b600061425e602f83614947565b915061426982615530565b604082019050919050565b6000614281602d83614947565b915061428c8261557f565b604082019050919050565b60006142a4602283614947565b91506142af826155ce565b604082019050919050565b6142c381614b82565b82525050565b60006142d58284613cd3565b60148201915081905092915050565b60006142f08285613d7a565b91506142fc8284613d7a565b915061430782613ffe565b91508190509392505050565b600061431e82614116565b9150819050919050565b600060208201905061433d6000830184613cc4565b92915050565b60006080820190506143586000830187613cc4565b6143656020830186613cc4565b61437260408301856142ba565b81810360608301526143848184613d08565b905095945050505050565b60006020820190506143a46000830184613cea565b92915050565b60006020820190506143bf6000830184613cf9565b92915050565b600060208201905081810360008301526143df8184613d41565b905092915050565b6000602082019050818103600083015261440081613dab565b9050919050565b6000602082019050818103600083015261442081613dce565b9050919050565b6000602082019050818103600083015261444081613df1565b9050919050565b6000602082019050818103600083015261446081613e14565b9050919050565b6000602082019050818103600083015261448081613e37565b9050919050565b600060208201905081810360008301526144a081613e5a565b9050919050565b600060208201905081810360008301526144c081613e7d565b9050919050565b600060208201905081810360008301526144e081613ea0565b9050919050565b6000602082019050818103600083015261450081613ec3565b9050919050565b6000602082019050818103600083015261452081613ee6565b9050919050565b6000602082019050818103600083015261454081613f09565b9050919050565b6000602082019050818103600083015261456081613f2c565b9050919050565b6000602082019050818103600083015261458081613f4f565b9050919050565b600060208201905081810360008301526145a081613f72565b9050919050565b600060208201905081810360008301526145c081613f95565b9050919050565b600060208201905081810360008301526145e081613fb8565b9050919050565b6000602082019050818103600083015261460081613fdb565b9050919050565b6000602082019050818103600083015261462081614021565b9050919050565b6000602082019050818103600083015261464081614044565b9050919050565b6000602082019050818103600083015261466081614067565b9050919050565b600060208201905081810360008301526146808161408a565b9050919050565b600060208201905081810360008301526146a0816140ad565b9050919050565b600060208201905081810360008301526146c0816140d0565b9050919050565b600060208201905081810360008301526146e0816140f3565b9050919050565b6000602082019050818103600083015261470081614139565b9050919050565b600060208201905081810360008301526147208161415c565b9050919050565b600060208201905081810360008301526147408161417f565b9050919050565b60006020820190508181036000830152614760816141a2565b9050919050565b60006020820190508181036000830152614780816141c5565b9050919050565b600060208201905081810360008301526147a0816141e8565b9050919050565b600060208201905081810360008301526147c08161420b565b9050919050565b600060208201905081810360008301526147e08161422e565b9050919050565b6000602082019050818103600083015261480081614251565b9050919050565b6000602082019050818103600083015261482081614274565b9050919050565b6000602082019050818103600083015261484081614297565b9050919050565b600060208201905061485c60008301846142ba565b92915050565b600061486c61487d565b90506148788282614c2a565b919050565b6000604051905090565b600067ffffffffffffffff8211156148a2576148a1614d86565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156148ce576148cd614d86565b5b6148d782614db5565b9050602081019050919050565b600067ffffffffffffffff8211156148ff576148fe614d86565b5b61490882614db5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061496e82614b46565b915061497983614b46565b9250826fffffffffffffffffffffffffffffffff0382111561499e5761499d614cf9565b5b828201905092915050565b60006149b482614b82565b91506149bf83614b82565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149f4576149f3614cf9565b5b828201905092915050565b6000614a0a82614b82565b9150614a1583614b82565b925082614a2557614a24614d28565b5b828204905092915050565b6000614a3b82614b82565b9150614a4683614b82565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a7f57614a7e614cf9565b5b828202905092915050565b6000614a9582614b46565b9150614aa083614b46565b925082821015614ab357614ab2614cf9565b5b828203905092915050565b6000614ac982614b82565b9150614ad483614b82565b925082821015614ae757614ae6614cf9565b5b828203905092915050565b6000614afd82614b62565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614bb9578082015181840152602081019050614b9e565b83811115614bc8576000848401525b50505050565b6000614bd982614b82565b91506000821415614bed57614bec614cf9565b5b600182039050919050565b60006002820490506001821680614c1057607f821691505b60208210811415614c2457614c23614d57565b5b50919050565b614c3382614db5565b810181811067ffffffffffffffff82111715614c5257614c51614d86565b5b80604052505050565b6000614c6682614b82565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c9957614c98614cf9565b5b600182019050919050565b6000614caf82614cb6565b9050919050565b6000614cc182614dc6565b9050919050565b6000614cd382614b82565b9150614cde83614b82565b925082614cee57614ced614d28565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f726f6f74206e6f74207365740000000000000000000000000000000000000000600082015250565b7f6e6f7420656e6f756768206c696d697421000000000000000000000000000000600082015250565b7f6d757374206265207265616c206b6f626f6c6473212100000000000000000000600082015250565b7f6d61782035207065722077616c6c657400000000000000000000000000000000600082015250565b7f6e6f74206f70656e207965742100000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4164647265737320646f6573206e6f7420657869737420696e206c6973740000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f736163726966696365206661696c65642e000000000000000000000000000000600082015250565b7f4f47206d696e74206e6f74207365740000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f616c726561647920696e69746564210000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61562681614af2565b811461563157600080fd5b50565b61563d81614b04565b811461564857600080fd5b50565b61565481614b10565b811461565f57600080fd5b50565b61566b81614b1a565b811461567657600080fd5b50565b61568281614b82565b811461568d57600080fd5b5056fea2646970667358221220039640b5861a12271f4003f68a9dd622d560277ed2d08f30b352c3609d02016864736f6c63430008010033

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.