ETH Price: $3,389.37 (-1.52%)
Gas: 2 Gwei

Token

PantherEGO (EGO)
 

Overview

Max Total Supply

1,374 EGO

Holders

449

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 EGO
0x05d7e7b644948deff6b4a26bc7c997c6f739a94a
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:
PantherEGO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : pantherego.sol
//          
//          
//          $$$$$$$\                      $$\     $$\                           $$$$$$$$\  $$$$$$\   $$$$$$\  
//          $$  __$$\                     $$ |    $$ |                          $$  _____|$$  __$$\ $$  __$$\ 
//          $$ |  $$ |$$$$$$\  $$$$$$$\ $$$$$$\   $$$$$$$\   $$$$$$\   $$$$$$\  $$ |      $$ /  \__|$$ /  $$ |
//          $$$$$$$  |\____$$\ $$  __$$\\_$$  _|  $$  __$$\ $$  __$$\ $$  __$$\ $$$$$\    $$ |$$$$\ $$ |  $$ |
//          $$  ____/ $$$$$$$ |$$ |  $$ | $$ |    $$ |  $$ |$$$$$$$$ |$$ |  \__|$$  __|   $$ |\_$$ |$$ |  $$ |
//          $$ |     $$  __$$ |$$ |  $$ | $$ |$$\ $$ |  $$ |$$   ____|$$ |      $$ |      $$ |  $$ |$$ |  $$ |
//          $$ |     \$$$$$$$ |$$ |  $$ | \$$$$  |$$ |  $$ |\$$$$$$$\ $$ |      $$$$$$$$\ \$$$$$$  | $$$$$$  |
//          \__|      \_______|\__|  \__|  \____/ \__|  \__| \_______|\__|      \________| \______/  \______/ 
//                                                                                                            
//                             
//                                                                                                                        
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract PantherEGO is ERC721A, Ownable {

    using Strings for uint256;

    mapping (address => uint256) private mintedWL;

    uint256 public maxSupply = 4444;
    uint256 private pricePublic = 0.06 ether;
    uint256 private priceWL = 0.04 ether;    
    uint256 public maxPerTxPublic = 4;
    uint256 public maxPerWL = 10;  // max panthers a WL user can hold (and max per tx)
    
    bytes32 public merkleRoot = "";
    string private baseURI = "";
    string public provenance = "";
    string public uriNotRevealed = "";
    
    bool public paused = true;
    bool public isRevealed;
    bool private useWhitelist;
    
    event Minted(address caller);

    
    constructor() ERC721A("PantherEGO", "EGO", 10) {}
    
    
    function mintPublic(uint256 qty) external payable{
        require(!paused, "Minting is paused");
        require(useWhitelist == false, "Sorry, we are still on whitelist mode!");
        
        uint256 supply = totalSupply();
        require(supply + qty <= maxSupply, "Sorry, not enough left!");
        require(qty <= maxPerTxPublic, "Sorry, too many per transaction");
        require(msg.value >= pricePublic * qty, "Sorry, not enough amount sent!"); 
        
        _safeMint(msg.sender, qty);
    
        emit Minted(msg.sender);
    }

    // revised
    function mintGiveaway(address _to, uint256 qty) external onlyOwner{
        uint256 supply = totalSupply();
        require(supply + qty <= maxSupply, "Sorry, not enough left!");
        _safeMint(_to, qty);
    }

    // whitelist mint, allows wallets on the whitelist to mint
    function mintWL(uint256 qty, bytes32[] memory proof) external payable {
        require(!paused, "Minting is paused");
        require(useWhitelist, "Whitelist sale must be active to mint.");
        
        uint256 supply = totalSupply();
        
        // check if the user was whitelisted
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(_verify(leaf, proof), "You are not whitelisted.");
        
        require(msg.value >= priceWL * qty, "Sorry, not enough amount sent!"); 
        require(mintedWL[msg.sender] + qty <= maxPerWL, "Sorry, you have reached the WL limit.");
        require(supply + qty <= maxSupply, "Sorry, not enough left!");
        require(qty <= maxPerWL, "Sorry, too many per transaction");
        
        mintedWL[msg.sender] += qty;
        _safeMint(msg.sender, qty);
        
        emit Minted(msg.sender);
    }
    
    
    function remaining() public view returns(uint256){
        uint256 left = maxSupply - totalSupply();
        return left;
    }

    function usingWhitelist() public view returns(bool) {
        return useWhitelist;
    }

    function getPriceWL() public view returns (uint256){
        return priceWL;
    }

    function getPricePublic() public view returns (uint256){
        return pricePublic;
    }
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (isRevealed == false) {
            return uriNotRevealed;
        }
        string memory base = baseURI;
        return bytes(base).length > 0 ? string(abi.encodePacked(base, tokenId.toString(), ".json")) : "";
    }

    // verify merkle tree leaf
    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool){
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }


    // ADMIN FUNCTIONS
    

    function flipUseWhitelist() public onlyOwner {
        useWhitelist = !useWhitelist;
    }

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

    // close minting forever!
    function closeMinting() public onlyOwner {
        uint256 supply = totalSupply();
        maxSupply = supply;
    }
    
    function flipRevealed(string memory _URI) public onlyOwner {
        baseURI = _URI;
        isRevealed = !isRevealed;
    }

    function setMaxPerWL(uint256 _max) public onlyOwner {
        maxPerWL = _max;
    }

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

    function setUriNotRevealed(string memory _URI) public onlyOwner {
        uriNotRevealed = _URI;
    }

    function setPriceWL(uint256 _newPrice) public onlyOwner {
        priceWL = _newPrice;
    }

    function setPricePublic(uint256 _newPrice) public onlyOwner {
        pricePublic = _newPrice;
    }

    function setMaxPerTx(uint256 _newMax) public onlyOwner {
        maxPerTxPublic = _newMax;
    }

    function setProvenanceHash(string memory _provenance) public onlyOwner {
        provenance = _provenance;
    }

    // Set merkle tree root
    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
           
        require(payable(0xc85E952a1030f9e16847B4D03d45a3ECC8e38780).send((balance * 500) / 10000));
        require(payable(0xf91C5f663B7A1BF38E3c68340cFAbAB673decFAB).send((balance * 350) / 10000));
        require(payable(0xefD6E3CA81e56b02867c45026074f712dD0135bB).send((balance * 450) / 10000));
        require(payable(0x6cfd6b3ca3413a3f4BC93642C0B600823dAfbbB9).send((balance * 1275) / 10000));
        require(payable(0x5B588e36FF358D4376A76FB163fd69Da02A2A9a5).send((balance * 225) / 10000));
        require(payable(0x8ebAc12B75D14D173a1727DC3eEbA78A1A3E382c).send((balance * 7200) / 10000));
    }



    // helpers


    // list all the tokens ids of a wallet
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
    
    
    
    receive() external payable {}
    
    
    
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 6 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

File 7 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 8 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"flipRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipUseWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPriceWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPerWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPricePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPriceWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setUriNotRevealed","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriNotRevealed","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usingWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405260008055600060075561115c600a5566d529ae9e860000600b55668e1bc9bf040000600c556004600d55600a600e556000600f5560405180602001604052806000815250601090805190602001906200005f929190620002be565b50604051806020016040528060008152506011908051906020019062000087929190620002be565b506040518060200160405280600081525060129080519060200190620000af929190620002be565b506001601360006101000a81548160ff021916908315150217905550348015620000d857600080fd5b506040518060400160405280600a81526020017f50616e7468657245474f000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f45474f0000000000000000000000000000000000000000000000000000000000815250600a600081116200018d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001849062000395565b60405180910390fd5b8260019080519060200190620001a5929190620002be565b508160029080519060200190620001be929190620002be565b508060808181525050505050620001ea620001de620001f060201b60201c565b620001f860201b60201c565b6200047c565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002cc90620003c8565b90600052602060002090601f016020900481019282620002f057600085556200033c565b82601f106200030b57805160ff19168380011785556200033c565b828001600101855582156200033c579182015b828111156200033b5782518255916020019190600101906200031e565b5b5090506200034b91906200034f565b5090565b5b808211156200036a57600081600090555060010162000350565b5090565b60006200037d602783620003b7565b91506200038a826200042d565b604082019050919050565b60006020820190508181036000830152620003b0816200036e565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620003e157607f821691505b60208210811415620003f857620003f7620003fe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b608051615c87620004a660003960008181613294015281816132bd01526138d90152615c876000f3fe6080604052600436106102b25760003560e01c80636352211e11610175578063a22cb465116100dc578063d5abeb0111610095578063eb24830d1161006f578063eb24830d14610a72578063ee64aefb14610a89578063efd0cbf914610ab4578063f2fde38b14610ad0576102b9565b8063d5abeb01146109df578063d7224ba014610a0a578063e985e9c514610a35576102b9565b8063a22cb465146108e2578063b88d4fde1461090b578063c3bb0cc214610934578063c6f6f2161461095d578063c87b56dd14610986578063d0bfb810146109c3576102b9565b806381d8488f1161012e57806381d8488f146107e45780638462151c1461080d57806387491c601461084a5780638da5cb5b1461086157806395d89b411461088c5780639943770d146108b7576102b9565b80636352211e146106d657806370a0823114610713578063715018a6146107505780637b7a7ca7146107675780637cb64759146107925780637f8448a9146107bb576102b9565b8063333171bb1161021957806354214f69116101d257806354214f69146105d657806354ea65851461060157806355234ec01461062c57806355f804b3146106575780635c975abb146106805780635daaf45d146106ab576102b9565b8063333171bb146104f05780633ccfd60b146105075780633fab10061461051e57806342842e0e146105475780634530a832146105705780634f6ccce714610599576102b9565b8063162d22611161026b578063162d2261146103e057806318160ddd1461040b5780631b60efb01461043657806323b872dd1461045f5780632eb4a7ab146104885780632f745c59146104b3576102b9565b806301ffc9a7146102be57806306fdde03146102fb578063081812fc14610326578063095ea7b3146103635780630f7309e81461038c57806310969523146103b7576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e560048036038101906102e091906142a9565b610af9565b6040516102f29190614a5d565b60405180910390f35b34801561030757600080fd5b50610310610c43565b60405161031d9190614a93565b60405180910390f35b34801561033257600080fd5b5061034d6004803603810190610348919061434c565b610cd5565b60405161035a91906149d4565b60405180910390f35b34801561036f57600080fd5b5061038a6004803603810190610385919061423c565b610d5a565b005b34801561039857600080fd5b506103a1610e73565b6040516103ae9190614a93565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190614303565b610f01565b005b3480156103ec57600080fd5b506103f5610f97565b6040516104029190614a93565b60405180910390f35b34801561041757600080fd5b50610420611025565b60405161042d9190614e35565b60405180910390f35b34801561044257600080fd5b5061045d6004803603810190610458919061423c565b61102e565b005b34801561046b57600080fd5b5061048660048036038101906104819190614126565b611115565b005b34801561049457600080fd5b5061049d611125565b6040516104aa9190614a78565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d5919061423c565b61112b565b6040516104e79190614e35565b60405180910390f35b3480156104fc57600080fd5b50610505611329565b005b34801561051357600080fd5b5061051c6113d1565b005b34801561052a57600080fd5b5061054560048036038101906105409190614303565b6116dc565b005b34801561055357600080fd5b5061056e60048036038101906105699190614126565b61179c565b005b34801561057c57600080fd5b506105976004803603810190610592919061434c565b6117bc565b005b3480156105a557600080fd5b506105c060048036038101906105bb919061434c565b611842565b6040516105cd9190614e35565b60405180910390f35b3480156105e257600080fd5b506105eb611895565b6040516105f89190614a5d565b60405180910390f35b34801561060d57600080fd5b506106166118a8565b6040516106239190614e35565b60405180910390f35b34801561063857600080fd5b506106416118b2565b60405161064e9190614e35565b60405180910390f35b34801561066357600080fd5b5061067e60048036038101906106799190614303565b6118d3565b005b34801561068c57600080fd5b50610695611969565b6040516106a29190614a5d565b60405180910390f35b3480156106b757600080fd5b506106c061197c565b6040516106cd9190614e35565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f8919061434c565b611986565b60405161070a91906149d4565b60405180910390f35b34801561071f57600080fd5b5061073a600480360381019061073591906140b9565b61199c565b6040516107479190614e35565b60405180910390f35b34801561075c57600080fd5b50610765611a85565b005b34801561077357600080fd5b5061077c611b0d565b6040516107899190614a5d565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b4919061427c565b611b24565b005b3480156107c757600080fd5b506107e260048036038101906107dd919061434c565b611baa565b005b3480156107f057600080fd5b5061080b6004803603810190610806919061434c565b611c30565b005b34801561081957600080fd5b50610834600480360381019061082f91906140b9565b611cb6565b6040516108419190614a3b565b60405180910390f35b34801561085657600080fd5b5061085f611dc0565b005b34801561086d57600080fd5b50610876611e52565b60405161088391906149d4565b60405180910390f35b34801561089857600080fd5b506108a1611e7c565b6040516108ae9190614a93565b60405180910390f35b3480156108c357600080fd5b506108cc611f0e565b6040516108d99190614e35565b60405180910390f35b3480156108ee57600080fd5b50610909600480360381019061090491906141fc565b611f14565b005b34801561091757600080fd5b50610932600480360381019061092d9190614179565b612095565b005b34801561094057600080fd5b5061095b60048036038101906109569190614303565b6120f1565b005b34801561096957600080fd5b50610984600480360381019061097f919061434c565b612187565b005b34801561099257600080fd5b506109ad60048036038101906109a8919061434c565b61220d565b6040516109ba9190614a93565b60405180910390f35b6109dd60048036038101906109d89190614379565b6123e6565b005b3480156109eb57600080fd5b506109f4612716565b604051610a019190614e35565b60405180910390f35b348015610a1657600080fd5b50610a1f61271c565b604051610a2c9190614e35565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a5791906140e6565b612722565b604051610a699190614a5d565b60405180910390f35b348015610a7e57600080fd5b50610a876127b6565b005b348015610a9557600080fd5b50610a9e61285e565b604051610aab9190614e35565b60405180910390f35b610ace6004803603810190610ac9919061434c565b612864565b005b348015610adc57600080fd5b50610af76004803603810190610af291906140b9565b612a40565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bc457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c2c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c3c5750610c3b82612b38565b5b9050919050565b606060018054610c5290615214565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7e90615214565b8015610ccb5780601f10610ca057610100808354040283529160200191610ccb565b820191906000526020600020905b815481529060010190602001808311610cae57829003601f168201915b5050505050905090565b6000610ce082612ba2565b610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1690614df5565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d6582611986565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd90614cd5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610df5612baf565b73ffffffffffffffffffffffffffffffffffffffff161480610e245750610e2381610e1e612baf565b612722565b5b610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a90614bb5565b60405180910390fd5b610e6e838383612bb7565b505050565b60118054610e8090615214565b80601f0160208091040260200160405190810160405280929190818152602001828054610eac90615214565b8015610ef95780601f10610ece57610100808354040283529160200191610ef9565b820191906000526020600020905b815481529060010190602001808311610edc57829003601f168201915b505050505081565b610f09612baf565b73ffffffffffffffffffffffffffffffffffffffff16610f27611e52565b73ffffffffffffffffffffffffffffffffffffffff1614610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490614c15565b60405180910390fd5b8060119080519060200190610f93929190613de0565b5050565b60128054610fa490615214565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd090615214565b801561101d5780601f10610ff25761010080835404028352916020019161101d565b820191906000526020600020905b81548152906001019060200180831161100057829003601f168201915b505050505081565b60008054905090565b611036612baf565b73ffffffffffffffffffffffffffffffffffffffff16611054611e52565b73ffffffffffffffffffffffffffffffffffffffff16146110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190614c15565b60405180910390fd5b60006110b4611025565b9050600a5482826110c59190614fc5565b1115611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90614c35565b60405180910390fd5b6111108383612c69565b505050565b611120838383612c87565b505050565b600f5481565b60006111368361199c565b8210611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90614ab5565b60405180910390fd5b6000611181611025565b905060008060005b838110156112e7576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461127b57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112d357868414156112c4578195505050505050611323565b83806112cf90615277565b9450505b5080806112df90615277565b915050611189565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90614d95565b60405180910390fd5b92915050565b611331612baf565b73ffffffffffffffffffffffffffffffffffffffff1661134f611e52565b73ffffffffffffffffffffffffffffffffffffffff16146113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90614c15565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b6113d9612baf565b73ffffffffffffffffffffffffffffffffffffffff166113f7611e52565b73ffffffffffffffffffffffffffffffffffffffff161461144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490614c15565b60405180910390fd5b600047905073c85e952a1030f9e16847b4d03d45a3ecc8e3878073ffffffffffffffffffffffffffffffffffffffff166108fc6127106101f484611491919061504c565b61149b919061501b565b9081150290604051600060405180830381858888f193505050506114be57600080fd5b73f91c5f663b7a1bf38e3c68340cfabab673decfab73ffffffffffffffffffffffffffffffffffffffff166108fc61271061015e846114fd919061504c565b611507919061501b565b9081150290604051600060405180830381858888f1935050505061152a57600080fd5b73efd6e3ca81e56b02867c45026074f712dd0135bb73ffffffffffffffffffffffffffffffffffffffff166108fc6127106101c284611569919061504c565b611573919061501b565b9081150290604051600060405180830381858888f1935050505061159657600080fd5b736cfd6b3ca3413a3f4bc93642c0b600823dafbbb973ffffffffffffffffffffffffffffffffffffffff166108fc6127106104fb846115d5919061504c565b6115df919061501b565b9081150290604051600060405180830381858888f1935050505061160257600080fd5b735b588e36ff358d4376a76fb163fd69da02a2a9a573ffffffffffffffffffffffffffffffffffffffff166108fc61271060e184611640919061504c565b61164a919061501b565b9081150290604051600060405180830381858888f1935050505061166d57600080fd5b738ebac12b75d14d173a1727dc3eeba78a1a3e382c73ffffffffffffffffffffffffffffffffffffffff166108fc612710611c20846116ac919061504c565b6116b6919061501b565b9081150290604051600060405180830381858888f193505050506116d957600080fd5b50565b6116e4612baf565b73ffffffffffffffffffffffffffffffffffffffff16611702611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90614c15565b60405180910390fd5b806010908051906020019061176e929190613de0565b50601360019054906101000a900460ff1615601360016101000a81548160ff02191690831515021790555050565b6117b783838360405180602001604052806000815250612095565b505050565b6117c4612baf565b73ffffffffffffffffffffffffffffffffffffffff166117e2611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90614c15565b60405180910390fd5b80600b8190555050565b600061184c611025565b821061188d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188490614b55565b60405180910390fd5b819050919050565b601360019054906101000a900460ff1681565b6000600b54905090565b6000806118bd611025565b600a546118ca91906150da565b90508091505090565b6118db612baf565b73ffffffffffffffffffffffffffffffffffffffff166118f9611e52565b73ffffffffffffffffffffffffffffffffffffffff161461194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690614c15565b60405180910390fd5b8060109080519060200190611965929190613de0565b5050565b601360009054906101000a900460ff1681565b6000600c54905090565b600061199182613240565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490614bd5565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611a8d612baf565b73ffffffffffffffffffffffffffffffffffffffff16611aab611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af890614c15565b60405180910390fd5b611b0b6000613443565b565b6000601360029054906101000a900460ff16905090565b611b2c612baf565b73ffffffffffffffffffffffffffffffffffffffff16611b4a611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790614c15565b60405180910390fd5b80600f8190555050565b611bb2612baf565b73ffffffffffffffffffffffffffffffffffffffff16611bd0611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d90614c15565b60405180910390fd5b80600e8190555050565b611c38612baf565b73ffffffffffffffffffffffffffffffffffffffff16611c56611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca390614c15565b60405180910390fd5b80600c8190555050565b60606000611cc38361199c565b90506000811415611d2057600067ffffffffffffffff811115611ce957611ce86153db565b5b604051908082528060200260200182016040528015611d175781602001602082028036833780820191505090505b50915050611dbb565b60008167ffffffffffffffff811115611d3c57611d3b6153db565b5b604051908082528060200260200182016040528015611d6a5781602001602082028036833780820191505090505b50905060005b82811015611db457611d82858261112b565b828281518110611d9557611d946153ac565b5b6020026020010181815250508080611dac90615277565b915050611d70565b8193505050505b919050565b611dc8612baf565b73ffffffffffffffffffffffffffffffffffffffff16611de6611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3390614c15565b60405180910390fd5b6000611e46611025565b905080600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611e8b90615214565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb790615214565b8015611f045780601f10611ed957610100808354040283529160200191611f04565b820191906000526020600020905b815481529060010190602001808311611ee757829003601f168201915b5050505050905090565b600d5481565b611f1c612baf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190614c75565b60405180910390fd5b8060066000611f97612baf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612044612baf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120899190614a5d565b60405180910390a35050565b6120a0848484612c87565b6120ac84848484613509565b6120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e290614d35565b60405180910390fd5b50505050565b6120f9612baf565b73ffffffffffffffffffffffffffffffffffffffff16612117611e52565b73ffffffffffffffffffffffffffffffffffffffff161461216d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216490614c15565b60405180910390fd5b8060129080519060200190612183929190613de0565b5050565b61218f612baf565b73ffffffffffffffffffffffffffffffffffffffff166121ad611e52565b73ffffffffffffffffffffffffffffffffffffffff1614612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa90614c15565b60405180910390fd5b80600d8190555050565b606061221882612ba2565b612257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224e90614c55565b60405180910390fd5b60001515601360019054906101000a900460ff1615151415612305576012805461228090615214565b80601f01602080910402602001604051908101604052809291908181526020018280546122ac90615214565b80156122f95780601f106122ce576101008083540402835291602001916122f9565b820191906000526020600020905b8154815290600101906020018083116122dc57829003601f168201915b505050505090506123e1565b60006010805461231490615214565b80601f016020809104026020016040519081016040528092919081815260200182805461234090615214565b801561238d5780601f106123625761010080835404028352916020019161238d565b820191906000526020600020905b81548152906001019060200180831161237057829003601f168201915b5050505050905060008151116123b257604051806020016040528060008152506123dd565b806123bc846136a0565b6040516020016123cd9291906149a5565b6040516020818303038152906040525b9150505b919050565b601360009054906101000a900460ff1615612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d90614d15565b60405180910390fd5b601360029054906101000a900460ff16612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c90614b35565b60405180910390fd5b600061248f611025565b90506000336040516020016124a4919061495e565b6040516020818303038152906040528051906020012090506124c68184613801565b612505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fc90614cb5565b60405180910390fd5b83600c54612513919061504c565b341015612555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254c90614cf5565b60405180910390fd5b600e5484600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125a39190614fc5565b11156125e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125db90614ad5565b60405180910390fd5b600a5484836125f39190614fc5565b1115612634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262b90614c35565b60405180910390fd5b600e54841115612679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267090614b95565b60405180910390fd5b83600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126c89190614fc5565b925050819055506126d93385612c69565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d83360405161270891906149d4565b60405180910390a150505050565b600a5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127be612baf565b73ffffffffffffffffffffffffffffffffffffffff166127dc611e52565b73ffffffffffffffffffffffffffffffffffffffff1614612832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282990614c15565b60405180910390fd5b601360029054906101000a900460ff1615601360026101000a81548160ff021916908315150217905550565b600e5481565b601360009054906101000a900460ff16156128b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ab90614d15565b60405180910390fd5b60001515601360029054906101000a900460ff1615151461290a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290190614db5565b60405180910390fd5b6000612914611025565b9050600a5482826129259190614fc5565b1115612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d90614c35565b60405180910390fd5b600d548211156129ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a290614b95565b60405180910390fd5b81600b546129b9919061504c565b3410156129fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f290614cf5565b60405180910390fd5b612a053383612c69565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d833604051612a3491906149d4565b60405180910390a15050565b612a48612baf565b73ffffffffffffffffffffffffffffffffffffffff16612a66611e52565b73ffffffffffffffffffffffffffffffffffffffff1614612abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab390614c15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2390614af5565b60405180910390fd5b612b3581613443565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612c83828260405180602001604052806000815250613818565b5050565b6000612c9282613240565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612cb9612baf565b73ffffffffffffffffffffffffffffffffffffffff161480612d155750612cde612baf565b73ffffffffffffffffffffffffffffffffffffffff16612cfd84610cd5565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d315750612d308260000151612d2b612baf565b612722565b5b905080612d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6a90614c95565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddc90614bf5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4c90614b75565b60405180910390fd5b612e628585856001613cf7565b612e726000848460000151612bb7565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612ee091906150a6565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612f849190614f7f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461308a9190614fc5565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156131d05761310081612ba2565b156131cf576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132388686866001613cfd565b505050505050565b613248613e66565b61325182612ba2565b613290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328790614b15565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106132f45760017f0000000000000000000000000000000000000000000000000000000000000000846132e791906150da565b6132f19190614fc5565b90505b60008390505b818110613402576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146133ee5780935050505061343e565b5080806133fa906151ea565b9150506132fa565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343590614dd5565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061352a8473ffffffffffffffffffffffffffffffffffffffff16613d03565b15613693578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613553612baf565b8786866040518563ffffffff1660e01b815260040161357594939291906149ef565b602060405180830381600087803b15801561358f57600080fd5b505af19250505080156135c057506040513d601f19601f820116820180604052508101906135bd91906142d6565b60015b613643573d80600081146135f0576040519150601f19603f3d011682016040523d82523d6000602084013e6135f5565b606091505b5060008151141561363b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363290614d35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613698565b600190505b949350505050565b606060008214156136e8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506137fc565b600082905060005b6000821461371a57808061370390615277565b915050600a82613713919061501b565b91506136f0565b60008167ffffffffffffffff811115613736576137356153db565b5b6040519080825280601f01601f1916602001820160405280156137685781602001600182028036833780820191505090505b5090505b600085146137f55760018261378191906150da565b9150600a8561379091906152ee565b603061379c9190614fc5565b60f81b8183815181106137b2576137b16153ac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137ee919061501b565b945061376c565b8093505050505b919050565b600061381082600f5485613d16565b905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561388e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388590614d75565b60405180910390fd5b61389781612ba2565b156138d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ce90614d55565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561393a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161393190614e15565b60405180910390fd5b6139476000858386613cf7565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613a449190614f7f565b6fffffffffffffffffffffffffffffffff168152602001858360200151613a6b9190614f7f565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613cda57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c7a6000888488613509565b613cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cb090614d35565b60405180910390fd5b8180613cc490615277565b9250508080613cd290615277565b915050613c09565b5080600081905550613cef6000878588613cfd565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b600082613d238584613d2d565b1490509392505050565b60008082905060005b8451811015613dd5576000858281518110613d5457613d536153ac565b5b60200260200101519050808311613d95578281604051602001613d78929190614979565b604051602081830303815290604052805190602001209250613dc1565b8083604051602001613da8929190614979565b6040516020818303038152906040528051906020012092505b508080613dcd90615277565b915050613d36565b508091505092915050565b828054613dec90615214565b90600052602060002090601f016020900481019282613e0e5760008555613e55565b82601f10613e2757805160ff1916838001178555613e55565b82800160010185558215613e55579182015b82811115613e54578251825591602001919060010190613e39565b5b509050613e629190613ea0565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613eb9576000816000905550600101613ea1565b5090565b6000613ed0613ecb84614e75565b614e50565b90508083825260208201905082856020860282011115613ef357613ef261540f565b5b60005b85811015613f235781613f098882614009565b845260208401935060208301925050600181019050613ef6565b5050509392505050565b6000613f40613f3b84614ea1565b614e50565b905082815260208101848484011115613f5c57613f5b615414565b5b613f678482856151a8565b509392505050565b6000613f82613f7d84614ed2565b614e50565b905082815260208101848484011115613f9e57613f9d615414565b5b613fa98482856151a8565b509392505050565b600081359050613fc081615bde565b92915050565b600082601f830112613fdb57613fda61540a565b5b8135613feb848260208601613ebd565b91505092915050565b60008135905061400381615bf5565b92915050565b60008135905061401881615c0c565b92915050565b60008135905061402d81615c23565b92915050565b60008151905061404281615c23565b92915050565b600082601f83011261405d5761405c61540a565b5b813561406d848260208601613f2d565b91505092915050565b600082601f83011261408b5761408a61540a565b5b813561409b848260208601613f6f565b91505092915050565b6000813590506140b381615c3a565b92915050565b6000602082840312156140cf576140ce61541e565b5b60006140dd84828501613fb1565b91505092915050565b600080604083850312156140fd576140fc61541e565b5b600061410b85828601613fb1565b925050602061411c85828601613fb1565b9150509250929050565b60008060006060848603121561413f5761413e61541e565b5b600061414d86828701613fb1565b935050602061415e86828701613fb1565b925050604061416f868287016140a4565b9150509250925092565b600080600080608085870312156141935761419261541e565b5b60006141a187828801613fb1565b94505060206141b287828801613fb1565b93505060406141c3878288016140a4565b925050606085013567ffffffffffffffff8111156141e4576141e3615419565b5b6141f087828801614048565b91505092959194509250565b600080604083850312156142135761421261541e565b5b600061422185828601613fb1565b925050602061423285828601613ff4565b9150509250929050565b600080604083850312156142535761425261541e565b5b600061426185828601613fb1565b9250506020614272858286016140a4565b9150509250929050565b6000602082840312156142925761429161541e565b5b60006142a084828501614009565b91505092915050565b6000602082840312156142bf576142be61541e565b5b60006142cd8482850161401e565b91505092915050565b6000602082840312156142ec576142eb61541e565b5b60006142fa84828501614033565b91505092915050565b6000602082840312156143195761431861541e565b5b600082013567ffffffffffffffff81111561433757614336615419565b5b61434384828501614076565b91505092915050565b6000602082840312156143625761436161541e565b5b6000614370848285016140a4565b91505092915050565b600080604083850312156143905761438f61541e565b5b600061439e858286016140a4565b925050602083013567ffffffffffffffff8111156143bf576143be615419565b5b6143cb85828601613fc6565b9150509250929050565b60006143e18383614940565b60208301905092915050565b6143f68161510e565b82525050565b61440d6144088261510e565b6152c0565b82525050565b600061441e82614f13565b6144288185614f41565b935061443383614f03565b8060005b8381101561446457815161444b88826143d5565b975061445683614f34565b925050600181019050614437565b5085935050505092915050565b61447a81615120565b82525050565b6144898161512c565b82525050565b6144a061449b8261512c565b6152d2565b82525050565b60006144b182614f1e565b6144bb8185614f52565b93506144cb8185602086016151b7565b6144d481615423565b840191505092915050565b60006144ea82614f29565b6144f48185614f63565b93506145048185602086016151b7565b61450d81615423565b840191505092915050565b600061452382614f29565b61452d8185614f74565b935061453d8185602086016151b7565b80840191505092915050565b6000614556602283614f63565b915061456182615441565b604082019050919050565b6000614579602583614f63565b915061458482615490565b604082019050919050565b600061459c602683614f63565b91506145a7826154df565b604082019050919050565b60006145bf602a83614f63565b91506145ca8261552e565b604082019050919050565b60006145e2602683614f63565b91506145ed8261557d565b604082019050919050565b6000614605602383614f63565b9150614610826155cc565b604082019050919050565b6000614628602583614f63565b91506146338261561b565b604082019050919050565b600061464b601f83614f63565b91506146568261566a565b602082019050919050565b600061466e603983614f63565b915061467982615693565b604082019050919050565b6000614691602b83614f63565b915061469c826156e2565b604082019050919050565b60006146b4602683614f63565b91506146bf82615731565b604082019050919050565b60006146d7600583614f74565b91506146e282615780565b600582019050919050565b60006146fa602083614f63565b9150614705826157a9565b602082019050919050565b600061471d601783614f63565b9150614728826157d2565b602082019050919050565b6000614740602f83614f63565b915061474b826157fb565b604082019050919050565b6000614763601a83614f63565b915061476e8261584a565b602082019050919050565b6000614786603283614f63565b915061479182615873565b604082019050919050565b60006147a9601883614f63565b91506147b4826158c2565b602082019050919050565b60006147cc602283614f63565b91506147d7826158eb565b604082019050919050565b60006147ef601e83614f63565b91506147fa8261593a565b602082019050919050565b6000614812601183614f63565b915061481d82615963565b602082019050919050565b6000614835603383614f63565b91506148408261598c565b604082019050919050565b6000614858601d83614f63565b9150614863826159db565b602082019050919050565b600061487b602183614f63565b915061488682615a04565b604082019050919050565b600061489e602e83614f63565b91506148a982615a53565b604082019050919050565b60006148c1602683614f63565b91506148cc82615aa2565b604082019050919050565b60006148e4602f83614f63565b91506148ef82615af1565b604082019050919050565b6000614907602d83614f63565b915061491282615b40565b604082019050919050565b600061492a602283614f63565b915061493582615b8f565b604082019050919050565b6149498161519e565b82525050565b6149588161519e565b82525050565b600061496a82846143fc565b60148201915081905092915050565b6000614985828561448f565b602082019150614995828461448f565b6020820191508190509392505050565b60006149b18285614518565b91506149bd8284614518565b91506149c8826146ca565b91508190509392505050565b60006020820190506149e960008301846143ed565b92915050565b6000608082019050614a0460008301876143ed565b614a1160208301866143ed565b614a1e604083018561494f565b8181036060830152614a3081846144a6565b905095945050505050565b60006020820190508181036000830152614a558184614413565b905092915050565b6000602082019050614a726000830184614471565b92915050565b6000602082019050614a8d6000830184614480565b92915050565b60006020820190508181036000830152614aad81846144df565b905092915050565b60006020820190508181036000830152614ace81614549565b9050919050565b60006020820190508181036000830152614aee8161456c565b9050919050565b60006020820190508181036000830152614b0e8161458f565b9050919050565b60006020820190508181036000830152614b2e816145b2565b9050919050565b60006020820190508181036000830152614b4e816145d5565b9050919050565b60006020820190508181036000830152614b6e816145f8565b9050919050565b60006020820190508181036000830152614b8e8161461b565b9050919050565b60006020820190508181036000830152614bae8161463e565b9050919050565b60006020820190508181036000830152614bce81614661565b9050919050565b60006020820190508181036000830152614bee81614684565b9050919050565b60006020820190508181036000830152614c0e816146a7565b9050919050565b60006020820190508181036000830152614c2e816146ed565b9050919050565b60006020820190508181036000830152614c4e81614710565b9050919050565b60006020820190508181036000830152614c6e81614733565b9050919050565b60006020820190508181036000830152614c8e81614756565b9050919050565b60006020820190508181036000830152614cae81614779565b9050919050565b60006020820190508181036000830152614cce8161479c565b9050919050565b60006020820190508181036000830152614cee816147bf565b9050919050565b60006020820190508181036000830152614d0e816147e2565b9050919050565b60006020820190508181036000830152614d2e81614805565b9050919050565b60006020820190508181036000830152614d4e81614828565b9050919050565b60006020820190508181036000830152614d6e8161484b565b9050919050565b60006020820190508181036000830152614d8e8161486e565b9050919050565b60006020820190508181036000830152614dae81614891565b9050919050565b60006020820190508181036000830152614dce816148b4565b9050919050565b60006020820190508181036000830152614dee816148d7565b9050919050565b60006020820190508181036000830152614e0e816148fa565b9050919050565b60006020820190508181036000830152614e2e8161491d565b9050919050565b6000602082019050614e4a600083018461494f565b92915050565b6000614e5a614e6b565b9050614e668282615246565b919050565b6000604051905090565b600067ffffffffffffffff821115614e9057614e8f6153db565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614ebc57614ebb6153db565b5b614ec582615423565b9050602081019050919050565b600067ffffffffffffffff821115614eed57614eec6153db565b5b614ef682615423565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f8a82615162565b9150614f9583615162565b9250826fffffffffffffffffffffffffffffffff03821115614fba57614fb961531f565b5b828201905092915050565b6000614fd08261519e565b9150614fdb8361519e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150105761500f61531f565b5b828201905092915050565b60006150268261519e565b91506150318361519e565b9250826150415761504061534e565b5b828204905092915050565b60006150578261519e565b91506150628361519e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561509b5761509a61531f565b5b828202905092915050565b60006150b182615162565b91506150bc83615162565b9250828210156150cf576150ce61531f565b5b828203905092915050565b60006150e58261519e565b91506150f08361519e565b9250828210156151035761510261531f565b5b828203905092915050565b60006151198261517e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156151d55780820151818401526020810190506151ba565b838111156151e4576000848401525b50505050565b60006151f58261519e565b915060008214156152095761520861531f565b5b600182039050919050565b6000600282049050600182168061522c57607f821691505b602082108114156152405761523f61537d565b5b50919050565b61524f82615423565b810181811067ffffffffffffffff8211171561526e5761526d6153db565b5b80604052505050565b60006152828261519e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156152b5576152b461531f565b5b600182019050919050565b60006152cb826152dc565b9050919050565b6000819050919050565b60006152e782615434565b9050919050565b60006152f98261519e565b91506153048361519e565b9250826153145761531361534e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c20796f75206861766520726561636865642074686520574c206c60008201527f696d69742e000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f57686974656c6973742073616c65206d7573742062652061637469766520746f60008201527f206d696e742e0000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c20746f6f206d616e7920706572207472616e73616374696f6e00600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f536f7272792c206e6f7420656e6f756768206c65667421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f596f7520617265206e6f742077686974656c69737465642e0000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c206e6f7420656e6f75676820616d6f756e742073656e74210000600082015250565b7f4d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f536f7272792c20776520617265207374696c6c206f6e2077686974656c69737460008201527f206d6f6465210000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b615be78161510e565b8114615bf257600080fd5b50565b615bfe81615120565b8114615c0957600080fd5b50565b615c158161512c565b8114615c2057600080fd5b50565b615c2c81615136565b8114615c3757600080fd5b50565b615c438161519e565b8114615c4e57600080fd5b5056fea26469706673582212206f812d62783d44484e5c57d313829ca90b992878657336d5cf945cb7a9e5f9c464736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80636352211e11610175578063a22cb465116100dc578063d5abeb0111610095578063eb24830d1161006f578063eb24830d14610a72578063ee64aefb14610a89578063efd0cbf914610ab4578063f2fde38b14610ad0576102b9565b8063d5abeb01146109df578063d7224ba014610a0a578063e985e9c514610a35576102b9565b8063a22cb465146108e2578063b88d4fde1461090b578063c3bb0cc214610934578063c6f6f2161461095d578063c87b56dd14610986578063d0bfb810146109c3576102b9565b806381d8488f1161012e57806381d8488f146107e45780638462151c1461080d57806387491c601461084a5780638da5cb5b1461086157806395d89b411461088c5780639943770d146108b7576102b9565b80636352211e146106d657806370a0823114610713578063715018a6146107505780637b7a7ca7146107675780637cb64759146107925780637f8448a9146107bb576102b9565b8063333171bb1161021957806354214f69116101d257806354214f69146105d657806354ea65851461060157806355234ec01461062c57806355f804b3146106575780635c975abb146106805780635daaf45d146106ab576102b9565b8063333171bb146104f05780633ccfd60b146105075780633fab10061461051e57806342842e0e146105475780634530a832146105705780634f6ccce714610599576102b9565b8063162d22611161026b578063162d2261146103e057806318160ddd1461040b5780631b60efb01461043657806323b872dd1461045f5780632eb4a7ab146104885780632f745c59146104b3576102b9565b806301ffc9a7146102be57806306fdde03146102fb578063081812fc14610326578063095ea7b3146103635780630f7309e81461038c57806310969523146103b7576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e560048036038101906102e091906142a9565b610af9565b6040516102f29190614a5d565b60405180910390f35b34801561030757600080fd5b50610310610c43565b60405161031d9190614a93565b60405180910390f35b34801561033257600080fd5b5061034d6004803603810190610348919061434c565b610cd5565b60405161035a91906149d4565b60405180910390f35b34801561036f57600080fd5b5061038a6004803603810190610385919061423c565b610d5a565b005b34801561039857600080fd5b506103a1610e73565b6040516103ae9190614a93565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190614303565b610f01565b005b3480156103ec57600080fd5b506103f5610f97565b6040516104029190614a93565b60405180910390f35b34801561041757600080fd5b50610420611025565b60405161042d9190614e35565b60405180910390f35b34801561044257600080fd5b5061045d6004803603810190610458919061423c565b61102e565b005b34801561046b57600080fd5b5061048660048036038101906104819190614126565b611115565b005b34801561049457600080fd5b5061049d611125565b6040516104aa9190614a78565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d5919061423c565b61112b565b6040516104e79190614e35565b60405180910390f35b3480156104fc57600080fd5b50610505611329565b005b34801561051357600080fd5b5061051c6113d1565b005b34801561052a57600080fd5b5061054560048036038101906105409190614303565b6116dc565b005b34801561055357600080fd5b5061056e60048036038101906105699190614126565b61179c565b005b34801561057c57600080fd5b506105976004803603810190610592919061434c565b6117bc565b005b3480156105a557600080fd5b506105c060048036038101906105bb919061434c565b611842565b6040516105cd9190614e35565b60405180910390f35b3480156105e257600080fd5b506105eb611895565b6040516105f89190614a5d565b60405180910390f35b34801561060d57600080fd5b506106166118a8565b6040516106239190614e35565b60405180910390f35b34801561063857600080fd5b506106416118b2565b60405161064e9190614e35565b60405180910390f35b34801561066357600080fd5b5061067e60048036038101906106799190614303565b6118d3565b005b34801561068c57600080fd5b50610695611969565b6040516106a29190614a5d565b60405180910390f35b3480156106b757600080fd5b506106c061197c565b6040516106cd9190614e35565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f8919061434c565b611986565b60405161070a91906149d4565b60405180910390f35b34801561071f57600080fd5b5061073a600480360381019061073591906140b9565b61199c565b6040516107479190614e35565b60405180910390f35b34801561075c57600080fd5b50610765611a85565b005b34801561077357600080fd5b5061077c611b0d565b6040516107899190614a5d565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b4919061427c565b611b24565b005b3480156107c757600080fd5b506107e260048036038101906107dd919061434c565b611baa565b005b3480156107f057600080fd5b5061080b6004803603810190610806919061434c565b611c30565b005b34801561081957600080fd5b50610834600480360381019061082f91906140b9565b611cb6565b6040516108419190614a3b565b60405180910390f35b34801561085657600080fd5b5061085f611dc0565b005b34801561086d57600080fd5b50610876611e52565b60405161088391906149d4565b60405180910390f35b34801561089857600080fd5b506108a1611e7c565b6040516108ae9190614a93565b60405180910390f35b3480156108c357600080fd5b506108cc611f0e565b6040516108d99190614e35565b60405180910390f35b3480156108ee57600080fd5b50610909600480360381019061090491906141fc565b611f14565b005b34801561091757600080fd5b50610932600480360381019061092d9190614179565b612095565b005b34801561094057600080fd5b5061095b60048036038101906109569190614303565b6120f1565b005b34801561096957600080fd5b50610984600480360381019061097f919061434c565b612187565b005b34801561099257600080fd5b506109ad60048036038101906109a8919061434c565b61220d565b6040516109ba9190614a93565b60405180910390f35b6109dd60048036038101906109d89190614379565b6123e6565b005b3480156109eb57600080fd5b506109f4612716565b604051610a019190614e35565b60405180910390f35b348015610a1657600080fd5b50610a1f61271c565b604051610a2c9190614e35565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a5791906140e6565b612722565b604051610a699190614a5d565b60405180910390f35b348015610a7e57600080fd5b50610a876127b6565b005b348015610a9557600080fd5b50610a9e61285e565b604051610aab9190614e35565b60405180910390f35b610ace6004803603810190610ac9919061434c565b612864565b005b348015610adc57600080fd5b50610af76004803603810190610af291906140b9565b612a40565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bc457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c2c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c3c5750610c3b82612b38565b5b9050919050565b606060018054610c5290615214565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7e90615214565b8015610ccb5780601f10610ca057610100808354040283529160200191610ccb565b820191906000526020600020905b815481529060010190602001808311610cae57829003601f168201915b5050505050905090565b6000610ce082612ba2565b610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1690614df5565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d6582611986565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd90614cd5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610df5612baf565b73ffffffffffffffffffffffffffffffffffffffff161480610e245750610e2381610e1e612baf565b612722565b5b610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a90614bb5565b60405180910390fd5b610e6e838383612bb7565b505050565b60118054610e8090615214565b80601f0160208091040260200160405190810160405280929190818152602001828054610eac90615214565b8015610ef95780601f10610ece57610100808354040283529160200191610ef9565b820191906000526020600020905b815481529060010190602001808311610edc57829003601f168201915b505050505081565b610f09612baf565b73ffffffffffffffffffffffffffffffffffffffff16610f27611e52565b73ffffffffffffffffffffffffffffffffffffffff1614610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490614c15565b60405180910390fd5b8060119080519060200190610f93929190613de0565b5050565b60128054610fa490615214565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd090615214565b801561101d5780601f10610ff25761010080835404028352916020019161101d565b820191906000526020600020905b81548152906001019060200180831161100057829003601f168201915b505050505081565b60008054905090565b611036612baf565b73ffffffffffffffffffffffffffffffffffffffff16611054611e52565b73ffffffffffffffffffffffffffffffffffffffff16146110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190614c15565b60405180910390fd5b60006110b4611025565b9050600a5482826110c59190614fc5565b1115611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90614c35565b60405180910390fd5b6111108383612c69565b505050565b611120838383612c87565b505050565b600f5481565b60006111368361199c565b8210611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90614ab5565b60405180910390fd5b6000611181611025565b905060008060005b838110156112e7576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461127b57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112d357868414156112c4578195505050505050611323565b83806112cf90615277565b9450505b5080806112df90615277565b915050611189565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90614d95565b60405180910390fd5b92915050565b611331612baf565b73ffffffffffffffffffffffffffffffffffffffff1661134f611e52565b73ffffffffffffffffffffffffffffffffffffffff16146113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90614c15565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b6113d9612baf565b73ffffffffffffffffffffffffffffffffffffffff166113f7611e52565b73ffffffffffffffffffffffffffffffffffffffff161461144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490614c15565b60405180910390fd5b600047905073c85e952a1030f9e16847b4d03d45a3ecc8e3878073ffffffffffffffffffffffffffffffffffffffff166108fc6127106101f484611491919061504c565b61149b919061501b565b9081150290604051600060405180830381858888f193505050506114be57600080fd5b73f91c5f663b7a1bf38e3c68340cfabab673decfab73ffffffffffffffffffffffffffffffffffffffff166108fc61271061015e846114fd919061504c565b611507919061501b565b9081150290604051600060405180830381858888f1935050505061152a57600080fd5b73efd6e3ca81e56b02867c45026074f712dd0135bb73ffffffffffffffffffffffffffffffffffffffff166108fc6127106101c284611569919061504c565b611573919061501b565b9081150290604051600060405180830381858888f1935050505061159657600080fd5b736cfd6b3ca3413a3f4bc93642c0b600823dafbbb973ffffffffffffffffffffffffffffffffffffffff166108fc6127106104fb846115d5919061504c565b6115df919061501b565b9081150290604051600060405180830381858888f1935050505061160257600080fd5b735b588e36ff358d4376a76fb163fd69da02a2a9a573ffffffffffffffffffffffffffffffffffffffff166108fc61271060e184611640919061504c565b61164a919061501b565b9081150290604051600060405180830381858888f1935050505061166d57600080fd5b738ebac12b75d14d173a1727dc3eeba78a1a3e382c73ffffffffffffffffffffffffffffffffffffffff166108fc612710611c20846116ac919061504c565b6116b6919061501b565b9081150290604051600060405180830381858888f193505050506116d957600080fd5b50565b6116e4612baf565b73ffffffffffffffffffffffffffffffffffffffff16611702611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90614c15565b60405180910390fd5b806010908051906020019061176e929190613de0565b50601360019054906101000a900460ff1615601360016101000a81548160ff02191690831515021790555050565b6117b783838360405180602001604052806000815250612095565b505050565b6117c4612baf565b73ffffffffffffffffffffffffffffffffffffffff166117e2611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90614c15565b60405180910390fd5b80600b8190555050565b600061184c611025565b821061188d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188490614b55565b60405180910390fd5b819050919050565b601360019054906101000a900460ff1681565b6000600b54905090565b6000806118bd611025565b600a546118ca91906150da565b90508091505090565b6118db612baf565b73ffffffffffffffffffffffffffffffffffffffff166118f9611e52565b73ffffffffffffffffffffffffffffffffffffffff161461194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690614c15565b60405180910390fd5b8060109080519060200190611965929190613de0565b5050565b601360009054906101000a900460ff1681565b6000600c54905090565b600061199182613240565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490614bd5565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611a8d612baf565b73ffffffffffffffffffffffffffffffffffffffff16611aab611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af890614c15565b60405180910390fd5b611b0b6000613443565b565b6000601360029054906101000a900460ff16905090565b611b2c612baf565b73ffffffffffffffffffffffffffffffffffffffff16611b4a611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790614c15565b60405180910390fd5b80600f8190555050565b611bb2612baf565b73ffffffffffffffffffffffffffffffffffffffff16611bd0611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d90614c15565b60405180910390fd5b80600e8190555050565b611c38612baf565b73ffffffffffffffffffffffffffffffffffffffff16611c56611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca390614c15565b60405180910390fd5b80600c8190555050565b60606000611cc38361199c565b90506000811415611d2057600067ffffffffffffffff811115611ce957611ce86153db565b5b604051908082528060200260200182016040528015611d175781602001602082028036833780820191505090505b50915050611dbb565b60008167ffffffffffffffff811115611d3c57611d3b6153db565b5b604051908082528060200260200182016040528015611d6a5781602001602082028036833780820191505090505b50905060005b82811015611db457611d82858261112b565b828281518110611d9557611d946153ac565b5b6020026020010181815250508080611dac90615277565b915050611d70565b8193505050505b919050565b611dc8612baf565b73ffffffffffffffffffffffffffffffffffffffff16611de6611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3390614c15565b60405180910390fd5b6000611e46611025565b905080600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611e8b90615214565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb790615214565b8015611f045780601f10611ed957610100808354040283529160200191611f04565b820191906000526020600020905b815481529060010190602001808311611ee757829003601f168201915b5050505050905090565b600d5481565b611f1c612baf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190614c75565b60405180910390fd5b8060066000611f97612baf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612044612baf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120899190614a5d565b60405180910390a35050565b6120a0848484612c87565b6120ac84848484613509565b6120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e290614d35565b60405180910390fd5b50505050565b6120f9612baf565b73ffffffffffffffffffffffffffffffffffffffff16612117611e52565b73ffffffffffffffffffffffffffffffffffffffff161461216d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216490614c15565b60405180910390fd5b8060129080519060200190612183929190613de0565b5050565b61218f612baf565b73ffffffffffffffffffffffffffffffffffffffff166121ad611e52565b73ffffffffffffffffffffffffffffffffffffffff1614612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa90614c15565b60405180910390fd5b80600d8190555050565b606061221882612ba2565b612257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224e90614c55565b60405180910390fd5b60001515601360019054906101000a900460ff1615151415612305576012805461228090615214565b80601f01602080910402602001604051908101604052809291908181526020018280546122ac90615214565b80156122f95780601f106122ce576101008083540402835291602001916122f9565b820191906000526020600020905b8154815290600101906020018083116122dc57829003601f168201915b505050505090506123e1565b60006010805461231490615214565b80601f016020809104026020016040519081016040528092919081815260200182805461234090615214565b801561238d5780601f106123625761010080835404028352916020019161238d565b820191906000526020600020905b81548152906001019060200180831161237057829003601f168201915b5050505050905060008151116123b257604051806020016040528060008152506123dd565b806123bc846136a0565b6040516020016123cd9291906149a5565b6040516020818303038152906040525b9150505b919050565b601360009054906101000a900460ff1615612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d90614d15565b60405180910390fd5b601360029054906101000a900460ff16612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c90614b35565b60405180910390fd5b600061248f611025565b90506000336040516020016124a4919061495e565b6040516020818303038152906040528051906020012090506124c68184613801565b612505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fc90614cb5565b60405180910390fd5b83600c54612513919061504c565b341015612555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254c90614cf5565b60405180910390fd5b600e5484600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125a39190614fc5565b11156125e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125db90614ad5565b60405180910390fd5b600a5484836125f39190614fc5565b1115612634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262b90614c35565b60405180910390fd5b600e54841115612679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267090614b95565b60405180910390fd5b83600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126c89190614fc5565b925050819055506126d93385612c69565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d83360405161270891906149d4565b60405180910390a150505050565b600a5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127be612baf565b73ffffffffffffffffffffffffffffffffffffffff166127dc611e52565b73ffffffffffffffffffffffffffffffffffffffff1614612832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282990614c15565b60405180910390fd5b601360029054906101000a900460ff1615601360026101000a81548160ff021916908315150217905550565b600e5481565b601360009054906101000a900460ff16156128b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ab90614d15565b60405180910390fd5b60001515601360029054906101000a900460ff1615151461290a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290190614db5565b60405180910390fd5b6000612914611025565b9050600a5482826129259190614fc5565b1115612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d90614c35565b60405180910390fd5b600d548211156129ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a290614b95565b60405180910390fd5b81600b546129b9919061504c565b3410156129fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f290614cf5565b60405180910390fd5b612a053383612c69565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d833604051612a3491906149d4565b60405180910390a15050565b612a48612baf565b73ffffffffffffffffffffffffffffffffffffffff16612a66611e52565b73ffffffffffffffffffffffffffffffffffffffff1614612abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab390614c15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2390614af5565b60405180910390fd5b612b3581613443565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612c83828260405180602001604052806000815250613818565b5050565b6000612c9282613240565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612cb9612baf565b73ffffffffffffffffffffffffffffffffffffffff161480612d155750612cde612baf565b73ffffffffffffffffffffffffffffffffffffffff16612cfd84610cd5565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d315750612d308260000151612d2b612baf565b612722565b5b905080612d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6a90614c95565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddc90614bf5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4c90614b75565b60405180910390fd5b612e628585856001613cf7565b612e726000848460000151612bb7565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612ee091906150a6565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612f849190614f7f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461308a9190614fc5565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156131d05761310081612ba2565b156131cf576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132388686866001613cfd565b505050505050565b613248613e66565b61325182612ba2565b613290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328790614b15565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106132f45760017f000000000000000000000000000000000000000000000000000000000000000a846132e791906150da565b6132f19190614fc5565b90505b60008390505b818110613402576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146133ee5780935050505061343e565b5080806133fa906151ea565b9150506132fa565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343590614dd5565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061352a8473ffffffffffffffffffffffffffffffffffffffff16613d03565b15613693578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613553612baf565b8786866040518563ffffffff1660e01b815260040161357594939291906149ef565b602060405180830381600087803b15801561358f57600080fd5b505af19250505080156135c057506040513d601f19601f820116820180604052508101906135bd91906142d6565b60015b613643573d80600081146135f0576040519150601f19603f3d011682016040523d82523d6000602084013e6135f5565b606091505b5060008151141561363b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363290614d35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613698565b600190505b949350505050565b606060008214156136e8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506137fc565b600082905060005b6000821461371a57808061370390615277565b915050600a82613713919061501b565b91506136f0565b60008167ffffffffffffffff811115613736576137356153db565b5b6040519080825280601f01601f1916602001820160405280156137685781602001600182028036833780820191505090505b5090505b600085146137f55760018261378191906150da565b9150600a8561379091906152ee565b603061379c9190614fc5565b60f81b8183815181106137b2576137b16153ac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137ee919061501b565b945061376c565b8093505050505b919050565b600061381082600f5485613d16565b905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561388e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388590614d75565b60405180910390fd5b61389781612ba2565b156138d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ce90614d55565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a83111561393a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161393190614e15565b60405180910390fd5b6139476000858386613cf7565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613a449190614f7f565b6fffffffffffffffffffffffffffffffff168152602001858360200151613a6b9190614f7f565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613cda57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c7a6000888488613509565b613cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cb090614d35565b60405180910390fd5b8180613cc490615277565b9250508080613cd290615277565b915050613c09565b5080600081905550613cef6000878588613cfd565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b600082613d238584613d2d565b1490509392505050565b60008082905060005b8451811015613dd5576000858281518110613d5457613d536153ac565b5b60200260200101519050808311613d95578281604051602001613d78929190614979565b604051602081830303815290604052805190602001209250613dc1565b8083604051602001613da8929190614979565b6040516020818303038152906040528051906020012092505b508080613dcd90615277565b915050613d36565b508091505092915050565b828054613dec90615214565b90600052602060002090601f016020900481019282613e0e5760008555613e55565b82601f10613e2757805160ff1916838001178555613e55565b82800160010185558215613e55579182015b82811115613e54578251825591602001919060010190613e39565b5b509050613e629190613ea0565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613eb9576000816000905550600101613ea1565b5090565b6000613ed0613ecb84614e75565b614e50565b90508083825260208201905082856020860282011115613ef357613ef261540f565b5b60005b85811015613f235781613f098882614009565b845260208401935060208301925050600181019050613ef6565b5050509392505050565b6000613f40613f3b84614ea1565b614e50565b905082815260208101848484011115613f5c57613f5b615414565b5b613f678482856151a8565b509392505050565b6000613f82613f7d84614ed2565b614e50565b905082815260208101848484011115613f9e57613f9d615414565b5b613fa98482856151a8565b509392505050565b600081359050613fc081615bde565b92915050565b600082601f830112613fdb57613fda61540a565b5b8135613feb848260208601613ebd565b91505092915050565b60008135905061400381615bf5565b92915050565b60008135905061401881615c0c565b92915050565b60008135905061402d81615c23565b92915050565b60008151905061404281615c23565b92915050565b600082601f83011261405d5761405c61540a565b5b813561406d848260208601613f2d565b91505092915050565b600082601f83011261408b5761408a61540a565b5b813561409b848260208601613f6f565b91505092915050565b6000813590506140b381615c3a565b92915050565b6000602082840312156140cf576140ce61541e565b5b60006140dd84828501613fb1565b91505092915050565b600080604083850312156140fd576140fc61541e565b5b600061410b85828601613fb1565b925050602061411c85828601613fb1565b9150509250929050565b60008060006060848603121561413f5761413e61541e565b5b600061414d86828701613fb1565b935050602061415e86828701613fb1565b925050604061416f868287016140a4565b9150509250925092565b600080600080608085870312156141935761419261541e565b5b60006141a187828801613fb1565b94505060206141b287828801613fb1565b93505060406141c3878288016140a4565b925050606085013567ffffffffffffffff8111156141e4576141e3615419565b5b6141f087828801614048565b91505092959194509250565b600080604083850312156142135761421261541e565b5b600061422185828601613fb1565b925050602061423285828601613ff4565b9150509250929050565b600080604083850312156142535761425261541e565b5b600061426185828601613fb1565b9250506020614272858286016140a4565b9150509250929050565b6000602082840312156142925761429161541e565b5b60006142a084828501614009565b91505092915050565b6000602082840312156142bf576142be61541e565b5b60006142cd8482850161401e565b91505092915050565b6000602082840312156142ec576142eb61541e565b5b60006142fa84828501614033565b91505092915050565b6000602082840312156143195761431861541e565b5b600082013567ffffffffffffffff81111561433757614336615419565b5b61434384828501614076565b91505092915050565b6000602082840312156143625761436161541e565b5b6000614370848285016140a4565b91505092915050565b600080604083850312156143905761438f61541e565b5b600061439e858286016140a4565b925050602083013567ffffffffffffffff8111156143bf576143be615419565b5b6143cb85828601613fc6565b9150509250929050565b60006143e18383614940565b60208301905092915050565b6143f68161510e565b82525050565b61440d6144088261510e565b6152c0565b82525050565b600061441e82614f13565b6144288185614f41565b935061443383614f03565b8060005b8381101561446457815161444b88826143d5565b975061445683614f34565b925050600181019050614437565b5085935050505092915050565b61447a81615120565b82525050565b6144898161512c565b82525050565b6144a061449b8261512c565b6152d2565b82525050565b60006144b182614f1e565b6144bb8185614f52565b93506144cb8185602086016151b7565b6144d481615423565b840191505092915050565b60006144ea82614f29565b6144f48185614f63565b93506145048185602086016151b7565b61450d81615423565b840191505092915050565b600061452382614f29565b61452d8185614f74565b935061453d8185602086016151b7565b80840191505092915050565b6000614556602283614f63565b915061456182615441565b604082019050919050565b6000614579602583614f63565b915061458482615490565b604082019050919050565b600061459c602683614f63565b91506145a7826154df565b604082019050919050565b60006145bf602a83614f63565b91506145ca8261552e565b604082019050919050565b60006145e2602683614f63565b91506145ed8261557d565b604082019050919050565b6000614605602383614f63565b9150614610826155cc565b604082019050919050565b6000614628602583614f63565b91506146338261561b565b604082019050919050565b600061464b601f83614f63565b91506146568261566a565b602082019050919050565b600061466e603983614f63565b915061467982615693565b604082019050919050565b6000614691602b83614f63565b915061469c826156e2565b604082019050919050565b60006146b4602683614f63565b91506146bf82615731565b604082019050919050565b60006146d7600583614f74565b91506146e282615780565b600582019050919050565b60006146fa602083614f63565b9150614705826157a9565b602082019050919050565b600061471d601783614f63565b9150614728826157d2565b602082019050919050565b6000614740602f83614f63565b915061474b826157fb565b604082019050919050565b6000614763601a83614f63565b915061476e8261584a565b602082019050919050565b6000614786603283614f63565b915061479182615873565b604082019050919050565b60006147a9601883614f63565b91506147b4826158c2565b602082019050919050565b60006147cc602283614f63565b91506147d7826158eb565b604082019050919050565b60006147ef601e83614f63565b91506147fa8261593a565b602082019050919050565b6000614812601183614f63565b915061481d82615963565b602082019050919050565b6000614835603383614f63565b91506148408261598c565b604082019050919050565b6000614858601d83614f63565b9150614863826159db565b602082019050919050565b600061487b602183614f63565b915061488682615a04565b604082019050919050565b600061489e602e83614f63565b91506148a982615a53565b604082019050919050565b60006148c1602683614f63565b91506148cc82615aa2565b604082019050919050565b60006148e4602f83614f63565b91506148ef82615af1565b604082019050919050565b6000614907602d83614f63565b915061491282615b40565b604082019050919050565b600061492a602283614f63565b915061493582615b8f565b604082019050919050565b6149498161519e565b82525050565b6149588161519e565b82525050565b600061496a82846143fc565b60148201915081905092915050565b6000614985828561448f565b602082019150614995828461448f565b6020820191508190509392505050565b60006149b18285614518565b91506149bd8284614518565b91506149c8826146ca565b91508190509392505050565b60006020820190506149e960008301846143ed565b92915050565b6000608082019050614a0460008301876143ed565b614a1160208301866143ed565b614a1e604083018561494f565b8181036060830152614a3081846144a6565b905095945050505050565b60006020820190508181036000830152614a558184614413565b905092915050565b6000602082019050614a726000830184614471565b92915050565b6000602082019050614a8d6000830184614480565b92915050565b60006020820190508181036000830152614aad81846144df565b905092915050565b60006020820190508181036000830152614ace81614549565b9050919050565b60006020820190508181036000830152614aee8161456c565b9050919050565b60006020820190508181036000830152614b0e8161458f565b9050919050565b60006020820190508181036000830152614b2e816145b2565b9050919050565b60006020820190508181036000830152614b4e816145d5565b9050919050565b60006020820190508181036000830152614b6e816145f8565b9050919050565b60006020820190508181036000830152614b8e8161461b565b9050919050565b60006020820190508181036000830152614bae8161463e565b9050919050565b60006020820190508181036000830152614bce81614661565b9050919050565b60006020820190508181036000830152614bee81614684565b9050919050565b60006020820190508181036000830152614c0e816146a7565b9050919050565b60006020820190508181036000830152614c2e816146ed565b9050919050565b60006020820190508181036000830152614c4e81614710565b9050919050565b60006020820190508181036000830152614c6e81614733565b9050919050565b60006020820190508181036000830152614c8e81614756565b9050919050565b60006020820190508181036000830152614cae81614779565b9050919050565b60006020820190508181036000830152614cce8161479c565b9050919050565b60006020820190508181036000830152614cee816147bf565b9050919050565b60006020820190508181036000830152614d0e816147e2565b9050919050565b60006020820190508181036000830152614d2e81614805565b9050919050565b60006020820190508181036000830152614d4e81614828565b9050919050565b60006020820190508181036000830152614d6e8161484b565b9050919050565b60006020820190508181036000830152614d8e8161486e565b9050919050565b60006020820190508181036000830152614dae81614891565b9050919050565b60006020820190508181036000830152614dce816148b4565b9050919050565b60006020820190508181036000830152614dee816148d7565b9050919050565b60006020820190508181036000830152614e0e816148fa565b9050919050565b60006020820190508181036000830152614e2e8161491d565b9050919050565b6000602082019050614e4a600083018461494f565b92915050565b6000614e5a614e6b565b9050614e668282615246565b919050565b6000604051905090565b600067ffffffffffffffff821115614e9057614e8f6153db565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614ebc57614ebb6153db565b5b614ec582615423565b9050602081019050919050565b600067ffffffffffffffff821115614eed57614eec6153db565b5b614ef682615423565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f8a82615162565b9150614f9583615162565b9250826fffffffffffffffffffffffffffffffff03821115614fba57614fb961531f565b5b828201905092915050565b6000614fd08261519e565b9150614fdb8361519e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150105761500f61531f565b5b828201905092915050565b60006150268261519e565b91506150318361519e565b9250826150415761504061534e565b5b828204905092915050565b60006150578261519e565b91506150628361519e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561509b5761509a61531f565b5b828202905092915050565b60006150b182615162565b91506150bc83615162565b9250828210156150cf576150ce61531f565b5b828203905092915050565b60006150e58261519e565b91506150f08361519e565b9250828210156151035761510261531f565b5b828203905092915050565b60006151198261517e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156151d55780820151818401526020810190506151ba565b838111156151e4576000848401525b50505050565b60006151f58261519e565b915060008214156152095761520861531f565b5b600182039050919050565b6000600282049050600182168061522c57607f821691505b602082108114156152405761523f61537d565b5b50919050565b61524f82615423565b810181811067ffffffffffffffff8211171561526e5761526d6153db565b5b80604052505050565b60006152828261519e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156152b5576152b461531f565b5b600182019050919050565b60006152cb826152dc565b9050919050565b6000819050919050565b60006152e782615434565b9050919050565b60006152f98261519e565b91506153048361519e565b9250826153145761531361534e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c20796f75206861766520726561636865642074686520574c206c60008201527f696d69742e000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f57686974656c6973742073616c65206d7573742062652061637469766520746f60008201527f206d696e742e0000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c20746f6f206d616e7920706572207472616e73616374696f6e00600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f536f7272792c206e6f7420656e6f756768206c65667421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f596f7520617265206e6f742077686974656c69737465642e0000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c206e6f7420656e6f75676820616d6f756e742073656e74210000600082015250565b7f4d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f536f7272792c20776520617265207374696c6c206f6e2077686974656c69737460008201527f206d6f6465210000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b615be78161510e565b8114615bf257600080fd5b50565b615bfe81615120565b8114615c0957600080fd5b50565b615c158161512c565b8114615c2057600080fd5b50565b615c2c81615136565b8114615c3757600080fd5b50565b615c438161519e565b8114615c4e57600080fd5b5056fea26469706673582212206f812d62783d44484e5c57d313829ca90b992878657336d5cf945cb7a9e5f9c464736f6c63430008070033

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.