ETH Price: $2,987.29 (+3.62%)
Gas: 3 Gwei

Token

GunkedGoblintown.wtf (GUNKGOB)
 

Overview

Max Total Supply

8,888 GUNKGOB

Holders

625

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
100 GUNKGOB
0xdfff6c439b1d87f1dfbfc7a127a8dc0e82289933
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:
GunkedGoblinTown

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

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

contract GunkedGoblinTown is ERC721A, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 8888;
    uint256 public MAX_PUBLIC_MINT = 20;
    uint256 public MAX_FREE_MINT = 1;
    uint256 public PUBLIC_SALE_PRICE = 0.01 ether;
    uint256 public constant FREE_MINT_PRICE = 0 ether;
    uint256 public TOTAL_FREE_MINTS = 1000;

    string private  baseTokenUri;
    string public   placeholderTokenUri;

    //deploy smart contract, toggle pause, reveal in 2 days.
    bool public isRevealed;
    bool public publicSale;
    bool public freeMintSale;
    bool public pause = true;



    mapping(address => uint256) public totalPublicMint;


    constructor() ERC721A("GunkedGoblintown.wtf", "GUNKGOB", "https://gunkedgoblintown.wtf/nftdata/unrevealed.json", "https://gunkedgoblintown.wtf/nftdata/"){
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Gunkedgoblintown.wtf :: Cannot be called by a contract");
        _;
    }

    function mint(uint256 _quantity) external payable callerIsUser{
        if(TOTAL_FREE_MINTS != 0) {
            require(!pause, "Gunkedgoblintown.wtf :: Minting is on Pause");
            require(_quantity <= MAX_FREE_MINT, "Gunkedgoblintown.wtf :: Cannot mint more than 1 free token ");
            require((totalPublicMint[msg.sender] + _quantity) <= MAX_FREE_MINT, "Gunkedgoblintown.wtf :: 1 FrEe ToKeen AlLReeDy MiNteEd tO thIIs ADdResSSss");
            totalPublicMint[msg.sender] += _quantity;
            _safeMint(msg.sender, _quantity);
            TOTAL_FREE_MINTS - _quantity;
        } else {
            require(!pause, "Gunkedgoblintown.wtf :: Minting is on Pause");
            require((totalSupply() + _quantity) <= MAX_SUPPLY, "Gunkedgoblintown.wtf :: Beyond Max Supply");
            require(_quantity <= MAX_PUBLIC_MINT, "Gunkedgoblintown.wtf :: Cannot mint more than 20 tokens at a time..");
            require(msg.value >= (PUBLIC_SALE_PRICE * _quantity), "Gunkedgoblintown.wtf :: Payment is below the price");
            _safeMint(msg.sender, _quantity);
        }

    }

    function airdropTokens(address _to, uint256 _tokenAmount) public payable onlyOwner {
        uint256 supply = totalSupply();

        require(!pause, "Gunkedgoblintown.wtf :: Minting is on Pause");
        require(_tokenAmount > 0, "Gunkedgoblintown.wtf :: No Tokens To Airdrop..");
        require(supply + _tokenAmount <= MAX_SUPPLY, "Gunkedgoblintown.wtf :: Trying to mint Beyond Max Supply..");

        for (uint256 i = 1; i <= _tokenAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

    function initialMint() external onlyOwner {
        _safeMint(msg.sender, 1);
    }

    function reserveMint() external onlyOwner {
        require((totalSupply() <= 7887), "Gunkedgoblintown.wtf :: TotalSupply Not less than 7888 tokens.. Be patient young padwhan..");
        _safeMint(msg.sender, 888);
    }


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

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

        uint256 trueId = tokenId + 1;

        if(!isRevealed){
            return placeholderTokenUri;
        }
        //string memory baseURI = _baseURI();
        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : "";
    }

    /// @dev walletOf() function shouldn't be called on-chain due to gas consumption
    function walletOf() external view returns(uint256[] memory){
        address _owner = msg.sender;
        uint256 numberOfOwnedNFT = balanceOf(_owner);
        uint256[] memory ownerIds = new uint256[](numberOfOwnedNFT);

        for(uint256 index = 0; index < numberOfOwnedNFT; index++){
            ownerIds[index] = tokenOfOwnerByIndex(_owner, index);
        }

        return ownerIds;
    }
	
    function setTokenUri(string memory _baseTokenUri) external onlyOwner{
        baseTokenUri = _baseTokenUri;
    }
    function setPlaceHolderUri(string memory _placeholderTokenUri) external onlyOwner{
        placeholderTokenUri = _placeholderTokenUri;
    }

    function setTotalFreeMints(uint256 _TOTAL_FREE_MINTS) external onlyOwner{
        TOTAL_FREE_MINTS = _TOTAL_FREE_MINTS;
    }

    function setPublicSalePrice(uint256 _PUBLIC_SALE_PRICE) external onlyOwner{
        PUBLIC_SALE_PRICE = _PUBLIC_SALE_PRICE;
    }

    function setMaxFreeMintAmount(uint256 _MAX_FREE_MINT) external onlyOwner{
        MAX_FREE_MINT = _MAX_FREE_MINT;
    }
    
    function setMaxPublicMintAmount(uint256 _MAX_PUBLIC_MINT) external onlyOwner{
        MAX_PUBLIC_MINT = _MAX_PUBLIC_MINT;
    }

    function togglePause() external onlyOwner{
        pause = !pause;
    }

    function togglePublicSale() external onlyOwner{
        publicSale = !publicSale;
    }

    function toggleFreeMintSale() external onlyOwner{
        freeMintSale = !freeMintSale;
    }

    function toggleReveal() external onlyOwner{
        isRevealed = !isRevealed; 
    }

    function withdraw() public payable onlyOwner {
    // This will payout the owner 100% of the contract balance.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }
}

File 2 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error UnableDetermineTokenOwner();
error URIQueryForNonexistentToken();

/**
 * @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).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
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 internal _currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    string private _baseTokenUri;

    string private _placeholderTokenUri;

    // 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) internal _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;

    constructor(string memory name_, string memory symbol_, string memory placeholderTokenUri_, string memory baseTokenUri_) {
        _name = name_;
        _symbol = symbol_;
        _placeholderTokenUri = placeholderTokenUri_;
        _baseTokenUri = baseTokenUri_;
    }

    /**
     * @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) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        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) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; 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++;
                }
            }
        }

        
    // Execution should never reach this point.
    assert(false);

    return tokenIdsIdx; // or simply return 0;

    }

    /**
     * @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) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

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

        revert UnableDetermineTokenOwner();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved();

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer();
    }

    /**
     * @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 Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                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()));

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = 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].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = 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);
    }

    /**
     * @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 TransferToNonERC721ReceiverImplementer();
                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 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 12 : 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 10 of 12 : 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 11 of 12 : 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 12 of 12 : 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"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"airdropTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveMint","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":"uint256","name":"_MAX_FREE_MINT","type":"uint256"}],"name":"setMaxFreeMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_PUBLIC_MINT","type":"uint256"}],"name":"setMaxPublicMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderTokenUri","type":"string"}],"name":"setPlaceHolderUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PUBLIC_SALE_PRICE","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_TOTAL_FREE_MINTS","type":"uint256"}],"name":"setTotalFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleFreeMintSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","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":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526014600a556001600b55662386f26fc10000600c556103e8600d556001601060036101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280601481526020017f47756e6b6564476f626c696e746f776e2e7774660000000000000000000000008152506040518060400160405280600781526020017f47554e4b474f420000000000000000000000000000000000000000000000000081525060405180606001604052806034815260200162004e196034913960405180606001604052806025815260200162004e4d6025913983600190805190602001906200010092919062000244565b5082600290805190602001906200011992919062000244565b5081600490805190602001906200013292919062000244565b5080600390805190602001906200014b92919062000244565b505050505062000170620001646200017660201b60201c565b6200017e60201b60201c565b62000359565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025290620002f4565b90600052602060002090601f016020900481019282620002765760008555620002c2565b82601f106200029157805160ff1916838001178555620002c2565b82800160010185558215620002c2579182015b82811115620002c1578251825591602001919060010190620002a4565b5b509050620002d19190620002d5565b5090565b5b80821115620002f0576000816000905550600101620002d6565b5090565b600060028204905060018216806200030d57607f821691505b602082108114156200032457620003236200032a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614ab080620003696000396000f3fe6080604052600436106102885760003560e01c806354214f691161015a57806395d89b41116100c1578063c4ae31681161007a578063c4ae316814610944578063c87b56dd1461095b578063e222c7f914610998578063e985e9c5146109af578063f2fde38b146109ec578063f659a45f14610a1557610288565b806395d89b411461086b5780639fc5ce2a14610896578063a0712d68146108ad578063a22cb465146108c9578063b0962c53146108f2578063b88d4fde1461091b57610288565b80637471e0d5116101135780637471e0d51461076d578063791a25191461079857806379fcb984146107c157806383a974a2146107ea5780638456cb59146108155780638da5cb5b1461084057610288565b806354214f691461066f5780635b8ad4291461069a5780636352211e146106b157806365f13097146106ee57806370a0823114610719578063715018a61461075657610288565b806323b872dd116101fe5780633ccfd60b116101b75780633ccfd60b1461058057806341cda2031461058a57806342842e0e146105b5578063449783e1146105de5780634cf5f7a4146106075780634f6ccce71461063257610288565b806323b872dd146104705780632aba3832146104995780632f745c59146104c257806332cb6b0c146104ff57806333bc1c5c1461052a57806335cf36751461055557610288565b8063089d466511610250578063089d466514610386578063095ea7b3146103b157806318160ddd146103da5780631895e40c146104055780631c16521c1461041c57806321c8d6761461045957610288565b806301ffc9a71461028d5780630675b7c6146102ca57806306fdde03146102f357806307e89ec01461031e578063081812fc14610349575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af91906139a9565b610a31565b6040516102c19190613f13565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec91906139fb565b610b7b565b005b3480156102ff57600080fd5b50610308610c11565b6040516103159190613f2e565b60405180910390f35b34801561032a57600080fd5b50610333610ca3565b60405161034091906140f0565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190613a3c565b610ca9565b60405161037d9190613e8a565b60405180910390f35b34801561039257600080fd5b5061039b610d25565b6040516103a891906140f0565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d3919061396d565b610d2b565b005b3480156103e657600080fd5b506103ef610e36565b6040516103fc91906140f0565b60405180910390f35b34801561041157600080fd5b5061041a610e3f565b005b34801561042857600080fd5b50610443600480360381019061043e9190613802565b610ee7565b60405161045091906140f0565b60405180910390f35b34801561046557600080fd5b5061046e610eff565b005b34801561047c57600080fd5b5061049760048036038101906104929190613867565b610fd5565b005b3480156104a557600080fd5b506104c060048036038101906104bb9190613a3c565b610fe5565b005b3480156104ce57600080fd5b506104e960048036038101906104e4919061396d565b61106b565b6040516104f691906140f0565b60405180910390f35b34801561050b57600080fd5b50610514611255565b60405161052191906140f0565b60405180910390f35b34801561053657600080fd5b5061053f61125b565b60405161054c9190613f13565b60405180910390f35b34801561056157600080fd5b5061056a61126e565b6040516105779190613f13565b60405180910390f35b610588611281565b005b34801561059657600080fd5b5061059f61137d565b6040516105ac91906140f0565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190613867565b611383565b005b3480156105ea57600080fd5b5061060560048036038101906106009190613a3c565b6113a3565b005b34801561061357600080fd5b5061061c611429565b6040516106299190613f2e565b60405180910390f35b34801561063e57600080fd5b5061065960048036038101906106549190613a3c565b6114b7565b60405161066691906140f0565b60405180910390f35b34801561067b57600080fd5b50610684611501565b6040516106919190613f13565b60405180910390f35b3480156106a657600080fd5b506106af611514565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190613a3c565b6115bc565b6040516106e59190613e8a565b60405180910390f35b3480156106fa57600080fd5b506107036115d2565b60405161071091906140f0565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b9190613802565b6115d8565b60405161074d91906140f0565b60405180910390f35b34801561076257600080fd5b5061076b6116b8565b005b34801561077957600080fd5b50610782611740565b60405161078f91906140f0565b60405180910390f35b3480156107a457600080fd5b506107bf60048036038101906107ba9190613a3c565b611745565b005b3480156107cd57600080fd5b506107e860048036038101906107e39190613a3c565b6117cb565b005b3480156107f657600080fd5b506107ff611851565b60405161080c9190613ef1565b60405180910390f35b34801561082157600080fd5b5061082a61194f565b6040516108379190613f13565b60405180910390f35b34801561084c57600080fd5b50610855611962565b6040516108629190613e8a565b60405180910390f35b34801561087757600080fd5b5061088061198c565b60405161088d9190613f2e565b60405180910390f35b3480156108a257600080fd5b506108ab611a1e565b005b6108c760048036038101906108c29190613a3c565b611aa7565b005b3480156108d557600080fd5b506108f060048036038101906108eb9190613931565b611e01565b005b3480156108fe57600080fd5b50610919600480360381019061091491906139fb565b611f79565b005b34801561092757600080fd5b50610942600480360381019061093d91906138b6565b61200f565b005b34801561095057600080fd5b50610959612062565b005b34801561096757600080fd5b50610982600480360381019061097d9190613a3c565b61210a565b60405161098f9190613f2e565b60405180910390f35b3480156109a457600080fd5b506109ad61226c565b005b3480156109bb57600080fd5b506109d660048036038101906109d1919061382b565b612314565b6040516109e39190613f13565b60405180910390f35b3480156109f857600080fd5b50610a136004803603810190610a0e9190613802565b6123a8565b005b610a2f6004803603810190610a2a919061396d565b6124a0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610afc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b6457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b745750610b7382612647565b5b9050919050565b610b836126b1565b73ffffffffffffffffffffffffffffffffffffffff16610ba1611962565b73ffffffffffffffffffffffffffffffffffffffff1614610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee90614010565b60405180910390fd5b80600e9080519060200190610c0d9291906135ec565b5050565b606060018054610c20906143f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4c906143f9565b8015610c995780601f10610c6e57610100808354040283529160200191610c99565b820191906000526020600020905b815481529060010190602001808311610c7c57829003601f168201915b5050505050905090565b600c5481565b6000610cb4826126b9565b610cea576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d5481565b6000610d36826115bc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dbd6126b1565b73ffffffffffffffffffffffffffffffffffffffff1614158015610def5750610ded81610de86126b1565b612314565b155b15610e26576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e318383836126c6565b505050565b60008054905090565b610e476126b1565b73ffffffffffffffffffffffffffffffffffffffff16610e65611962565b73ffffffffffffffffffffffffffffffffffffffff1614610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290614010565b60405180910390fd5b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b60116020528060005260406000206000915090505481565b610f076126b1565b73ffffffffffffffffffffffffffffffffffffffff16610f25611962565b73ffffffffffffffffffffffffffffffffffffffff1614610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290614010565b60405180910390fd5b611ecf610f86610e36565b1115610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe906140d0565b60405180910390fd5b610fd333610378612778565b565b610fe0838383612796565b505050565b610fed6126b1565b73ffffffffffffffffffffffffffffffffffffffff1661100b611962565b73ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890614010565b60405180910390fd5b80600b8190555050565b6000611076836115d8565b82106110ae576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110b8610e36565b905060008060005b83811015611212576000600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111b257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561120457868414156111fb57819550505050505061124f565b83806001019450505b5080806001019150506110c0565b506000611248577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b8193505050505b92915050565b6122b881565b601060019054906101000a900460ff1681565b601060029054906101000a900460ff1681565b6112896126b1565b73ffffffffffffffffffffffffffffffffffffffff166112a7611962565b73ffffffffffffffffffffffffffffffffffffffff16146112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f490614010565b60405180910390fd5b6000611307611962565b73ffffffffffffffffffffffffffffffffffffffff164760405161132a90613e75565b60006040518083038185875af1925050503d8060008114611367576040519150601f19603f3d011682016040523d82523d6000602084013e61136c565b606091505b505090508061137a57600080fd5b50565b600b5481565b61139e8383836040518060200160405280600081525061200f565b505050565b6113ab6126b1565b73ffffffffffffffffffffffffffffffffffffffff166113c9611962565b73ffffffffffffffffffffffffffffffffffffffff161461141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690614010565b60405180910390fd5b80600d8190555050565b600f8054611436906143f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611462906143f9565b80156114af5780601f10611484576101008083540402835291602001916114af565b820191906000526020600020905b81548152906001019060200180831161149257829003601f168201915b505050505081565b60006114c1610e36565b82106114f9576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b601060009054906101000a900460ff1681565b61151c6126b1565b73ffffffffffffffffffffffffffffffffffffffff1661153a611962565b73ffffffffffffffffffffffffffffffffffffffff1614611590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158790614010565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b60006115c782612cbb565b600001519050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611640576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116c06126b1565b73ffffffffffffffffffffffffffffffffffffffff166116de611962565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90614010565b60405180910390fd5b61173e6000612e43565b565b600081565b61174d6126b1565b73ffffffffffffffffffffffffffffffffffffffff1661176b611962565b73ffffffffffffffffffffffffffffffffffffffff16146117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890614010565b60405180910390fd5b80600c8190555050565b6117d36126b1565b73ffffffffffffffffffffffffffffffffffffffff166117f1611962565b73ffffffffffffffffffffffffffffffffffffffff1614611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e90614010565b60405180910390fd5b80600a8190555050565b606060003390506000611863826115d8565b905060008167ffffffffffffffff8111156118a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156118d55781602001602082028036833780820191505090505b50905060005b82811015611945576118ed848261106b565b828281518110611926577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061193d9061445c565b9150506118db565b5080935050505090565b601060039054906101000a900460ff1681565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461199b906143f9565b80601f01602080910402602001604051908101604052809291908181526020018280546119c7906143f9565b8015611a145780601f106119e957610100808354040283529160200191611a14565b820191906000526020600020905b8154815290600101906020018083116119f757829003601f168201915b5050505050905090565b611a266126b1565b73ffffffffffffffffffffffffffffffffffffffff16611a44611962565b73ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190614010565b60405180910390fd5b611aa5336001612778565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0c90613ff0565b60405180910390fd5b6000600d5414611cb757601060039054906101000a900460ff1615611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613f50565b60405180910390fd5b600b54811115611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90613f70565b60405180910390fd5b600b5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c02919061422e565b1115611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90613fb0565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c92919061422e565b92505081905550611ca33382612778565b80600d54611cb1919061430f565b50611dfe565b601060039054906101000a900460ff1615611d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfe90613f50565b60405180910390fd5b6122b881611d13610e36565b611d1d919061422e565b1115611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d55906140b0565b60405180910390fd5b600a54811115611da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9a90614070565b60405180910390fd5b80600c54611db191906142b5565b341015611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90614090565b60405180910390fd5b611dfd3382612778565b5b50565b611e096126b1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e6e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611e7b6126b1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f286126b1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f6d9190613f13565b60405180910390a35050565b611f816126b1565b73ffffffffffffffffffffffffffffffffffffffff16611f9f611962565b73ffffffffffffffffffffffffffffffffffffffff1614611ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fec90614010565b60405180910390fd5b80600f908051906020019061200b9291906135ec565b5050565b61201a848484612796565b61202684848484612f09565b61205c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61206a6126b1565b73ffffffffffffffffffffffffffffffffffffffff16612088611962565b73ffffffffffffffffffffffffffffffffffffffff16146120de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d590614010565b60405180910390fd5b601060039054906101000a900460ff1615601060036101000a81548160ff021916908315150217905550565b6060612115826126b9565b612154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214b90614030565b60405180910390fd5b6000600183612163919061422e565b9050601060009054906101000a900460ff1661220c57600f8054612186906143f9565b80601f01602080910402602001604051908101604052809291908181526020018280546121b2906143f9565b80156121ff5780601f106121d4576101008083540402835291602001916121ff565b820191906000526020600020905b8154815290600101906020018083116121e257829003601f168201915b5050505050915050612267565b6000600e805461221b906143f9565b9050116122375760405180602001604052806000815250612263565b600e61224282613097565b604051602001612253929190613e46565b6040516020818303038152906040525b9150505b919050565b6122746126b1565b73ffffffffffffffffffffffffffffffffffffffff16612292611962565b73ffffffffffffffffffffffffffffffffffffffff16146122e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122df90614010565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123b06126b1565b73ffffffffffffffffffffffffffffffffffffffff166123ce611962565b73ffffffffffffffffffffffffffffffffffffffff1614612424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241b90614010565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248b90613f90565b60405180910390fd5b61249d81612e43565b50565b6124a86126b1565b73ffffffffffffffffffffffffffffffffffffffff166124c6611962565b73ffffffffffffffffffffffffffffffffffffffff161461251c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251390614010565b60405180910390fd5b6000612526610e36565b9050601060039054906101000a900460ff1615612578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256f90613f50565b60405180910390fd5b600082116125bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b290613fd0565b60405180910390fd5b6122b882826125ca919061422e565b111561260b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260290614050565b60405180910390fd5b6000600190505b8281116126415761262e848284612629919061422e565b612778565b80806126399061445c565b915050612612565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612792828260405180602001604052806000815250613244565b5050565b60006127a182612cbb565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166127c86126b1565b73ffffffffffffffffffffffffffffffffffffffff16148061282457506127ed6126b1565b73ffffffffffffffffffffffffffffffffffffffff1661280c84610ca9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612840575061283f826000015161283a6126b1565b612314565b5b905080612879576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146128e2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612949576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129568585856001613256565b61296660008484600001516126c6565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c4b57612baa816126b9565b15612c4a5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cb4858585600161325c565b5050505050565b612cc3613672565b612ccc826126b9565b612d02576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b60008110612e0b576000600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dfc578092505050612e3e565b50808060019003915050612d08565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612f2a8473ffffffffffffffffffffffffffffffffffffffff16613262565b1561308a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f536126b1565b8786866040518563ffffffff1660e01b8152600401612f759493929190613ea5565b602060405180830381600087803b158015612f8f57600080fd5b505af1925050508015612fc057506040513d601f19601f82011682018060405250810190612fbd91906139d2565b60015b61303a573d8060008114612ff0576040519150601f19603f3d011682016040523d82523d6000602084013e612ff5565b606091505b50600081511415613032576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061308f565b600190505b949350505050565b606060008214156130df576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061323f565b600082905060005b600082146131115780806130fa9061445c565b915050600a8261310a9190614284565b91506130e7565b60008167ffffffffffffffff811115613153577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131855781602001600182028036833780820191505090505b5090505b600085146132385760018261319e919061430f565b9150600a856131ad91906144a5565b60306131b9919061422e565b60f81b8183815181106131f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132319190614284565b9450613189565b8093505050505b919050565b6132518383836001613285565b505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156132f2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561332d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61333a6000868387613256565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156135cf57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561358357506135816000888488612f09565b155b156135ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613508565b5080600081905550506135e5600086838761325c565b5050505050565b8280546135f8906143f9565b90600052602060002090601f01602090048101928261361a5760008555613661565b82601f1061363357805160ff1916838001178555613661565b82800160010185558215613661579182015b82811115613660578251825591602001919060010190613645565b5b50905061366e91906136ac565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156136c55760008160009055506001016136ad565b5090565b60006136dc6136d784614130565b61410b565b9050828152602081018484840111156136f457600080fd5b6136ff8482856143b7565b509392505050565b600061371a61371584614161565b61410b565b90508281526020810184848401111561373257600080fd5b61373d8482856143b7565b509392505050565b60008135905061375481614a1e565b92915050565b60008135905061376981614a35565b92915050565b60008135905061377e81614a4c565b92915050565b60008151905061379381614a4c565b92915050565b600082601f8301126137aa57600080fd5b81356137ba8482602086016136c9565b91505092915050565b600082601f8301126137d457600080fd5b81356137e4848260208601613707565b91505092915050565b6000813590506137fc81614a63565b92915050565b60006020828403121561381457600080fd5b600061382284828501613745565b91505092915050565b6000806040838503121561383e57600080fd5b600061384c85828601613745565b925050602061385d85828601613745565b9150509250929050565b60008060006060848603121561387c57600080fd5b600061388a86828701613745565b935050602061389b86828701613745565b92505060406138ac868287016137ed565b9150509250925092565b600080600080608085870312156138cc57600080fd5b60006138da87828801613745565b94505060206138eb87828801613745565b93505060406138fc878288016137ed565b925050606085013567ffffffffffffffff81111561391957600080fd5b61392587828801613799565b91505092959194509250565b6000806040838503121561394457600080fd5b600061395285828601613745565b92505060206139638582860161375a565b9150509250929050565b6000806040838503121561398057600080fd5b600061398e85828601613745565b925050602061399f858286016137ed565b9150509250929050565b6000602082840312156139bb57600080fd5b60006139c98482850161376f565b91505092915050565b6000602082840312156139e457600080fd5b60006139f284828501613784565b91505092915050565b600060208284031215613a0d57600080fd5b600082013567ffffffffffffffff811115613a2757600080fd5b613a33848285016137c3565b91505092915050565b600060208284031215613a4e57600080fd5b6000613a5c848285016137ed565b91505092915050565b6000613a718383613e28565b60208301905092915050565b613a8681614343565b82525050565b6000613a97826141b7565b613aa181856141e5565b9350613aac83614192565b8060005b83811015613add578151613ac48882613a65565b9750613acf836141d8565b925050600181019050613ab0565b5085935050505092915050565b613af381614355565b82525050565b6000613b04826141c2565b613b0e81856141f6565b9350613b1e8185602086016143c6565b613b2781614592565b840191505092915050565b6000613b3d826141cd565b613b478185614212565b9350613b578185602086016143c6565b613b6081614592565b840191505092915050565b6000613b76826141cd565b613b808185614223565b9350613b908185602086016143c6565b80840191505092915050565b60008154613ba9816143f9565b613bb38186614223565b94506001821660008114613bce5760018114613bdf57613c12565b60ff19831686528186019350613c12565b613be8856141a2565b60005b83811015613c0a57815481890152600182019150602081019050613beb565b838801955050505b50505092915050565b6000613c28602b83614212565b9150613c33826145a3565b604082019050919050565b6000613c4b603b83614212565b9150613c56826145f2565b604082019050919050565b6000613c6e602683614212565b9150613c7982614641565b604082019050919050565b6000613c91604a83614212565b9150613c9c82614690565b606082019050919050565b6000613cb4602e83614212565b9150613cbf82614705565b604082019050919050565b6000613cd7603683614212565b9150613ce282614754565b604082019050919050565b6000613cfa600583614223565b9150613d05826147a3565b600582019050919050565b6000613d1d602083614212565b9150613d28826147cc565b602082019050919050565b6000613d40602f83614212565b9150613d4b826147f5565b604082019050919050565b6000613d63603a83614212565b9150613d6e82614844565b604082019050919050565b6000613d86604383614212565b9150613d9182614893565b606082019050919050565b6000613da9603283614212565b9150613db482614908565b604082019050919050565b6000613dcc602983614212565b9150613dd782614957565b604082019050919050565b6000613def600083614207565b9150613dfa826149a6565b600082019050919050565b6000613e12605a83614212565b9150613e1d826149a9565b606082019050919050565b613e31816143ad565b82525050565b613e40816143ad565b82525050565b6000613e528285613b9c565b9150613e5e8284613b6b565b9150613e6982613ced565b91508190509392505050565b6000613e8082613de2565b9150819050919050565b6000602082019050613e9f6000830184613a7d565b92915050565b6000608082019050613eba6000830187613a7d565b613ec76020830186613a7d565b613ed46040830185613e37565b8181036060830152613ee68184613af9565b905095945050505050565b60006020820190508181036000830152613f0b8184613a8c565b905092915050565b6000602082019050613f286000830184613aea565b92915050565b60006020820190508181036000830152613f488184613b32565b905092915050565b60006020820190508181036000830152613f6981613c1b565b9050919050565b60006020820190508181036000830152613f8981613c3e565b9050919050565b60006020820190508181036000830152613fa981613c61565b9050919050565b60006020820190508181036000830152613fc981613c84565b9050919050565b60006020820190508181036000830152613fe981613ca7565b9050919050565b6000602082019050818103600083015261400981613cca565b9050919050565b6000602082019050818103600083015261402981613d10565b9050919050565b6000602082019050818103600083015261404981613d33565b9050919050565b6000602082019050818103600083015261406981613d56565b9050919050565b6000602082019050818103600083015261408981613d79565b9050919050565b600060208201905081810360008301526140a981613d9c565b9050919050565b600060208201905081810360008301526140c981613dbf565b9050919050565b600060208201905081810360008301526140e981613e05565b9050919050565b60006020820190506141056000830184613e37565b92915050565b6000614115614126565b9050614121828261442b565b919050565b6000604051905090565b600067ffffffffffffffff82111561414b5761414a614563565b5b61415482614592565b9050602081019050919050565b600067ffffffffffffffff82111561417c5761417b614563565b5b61418582614592565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614239826143ad565b9150614244836143ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614279576142786144d6565b5b828201905092915050565b600061428f826143ad565b915061429a836143ad565b9250826142aa576142a9614505565b5b828204905092915050565b60006142c0826143ad565b91506142cb836143ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614304576143036144d6565b5b828202905092915050565b600061431a826143ad565b9150614325836143ad565b925082821015614338576143376144d6565b5b828203905092915050565b600061434e8261438d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143e45780820151818401526020810190506143c9565b838111156143f3576000848401525b50505050565b6000600282049050600182168061441157607f821691505b6020821081141561442557614424614534565b5b50919050565b61443482614592565b810181811067ffffffffffffffff8211171561445357614452614563565b5b80604052505050565b6000614467826143ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561449a576144996144d6565b5b600182019050919050565b60006144b0826143ad565b91506144bb836143ad565b9250826144cb576144ca614505565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f47756e6b6564676f626c696e746f776e2e777466203a3a204d696e74696e672060008201527f6973206f6e205061757365000000000000000000000000000000000000000000602082015250565b7f47756e6b6564676f626c696e746f776e2e777466203a3a2043616e6e6f74206d60008201527f696e74206d6f7265207468616e2031206672656520746f6b656e200000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f47756e6b6564676f626c696e746f776e2e777466203a3a20312046724565205460008201527f6f4b65656e20416c4c5265654479204d694e7465456420744f2074684949732060208201527f4144645265735353737300000000000000000000000000000000000000000000604082015250565b7f47756e6b6564676f626c696e746f776e2e777466203a3a204e6f20546f6b656e60008201527f7320546f2041697264726f702e2e000000000000000000000000000000000000602082015250565b7f47756e6b6564676f626c696e746f776e2e777466203a3a2043616e6e6f74206260008201527f652063616c6c6564206279206120636f6e747261637400000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f47756e6b6564676f626c696e746f776e2e777466203a3a20547279696e67207460008201527f6f206d696e74204265796f6e64204d617820537570706c792e2e000000000000602082015250565b7f47756e6b6564676f626c696e746f776e2e777466203a3a2043616e6e6f74206d60008201527f696e74206d6f7265207468616e20323020746f6b656e7320617420612074696d60208201527f652e2e0000000000000000000000000000000000000000000000000000000000604082015250565b7f47756e6b6564676f626c696e746f776e2e777466203a3a205061796d656e742060008201527f69732062656c6f77207468652070726963650000000000000000000000000000602082015250565b7f47756e6b6564676f626c696e746f776e2e777466203a3a204265796f6e64204d60008201527f617820537570706c790000000000000000000000000000000000000000000000602082015250565b50565b7f47756e6b6564676f626c696e746f776e2e777466203a3a20546f74616c53757060008201527f706c79204e6f74206c657373207468616e203738383820746f6b656e732e2e2060208201527f42652070617469656e7420796f756e67207061647768616e2e2e000000000000604082015250565b614a2781614343565b8114614a3257600080fd5b50565b614a3e81614355565b8114614a4957600080fd5b50565b614a5581614361565b8114614a6057600080fd5b50565b614a6c816143ad565b8114614a7757600080fd5b5056fea264697066735822122043e70e73c8eca777840d6e9df10fbf12bd2c7dccdd6086e3a11f3ca319ceaaa164736f6c6343000804003368747470733a2f2f67756e6b6564676f626c696e746f776e2e7774662f6e6674646174612f756e72657665616c65642e6a736f6e68747470733a2f2f67756e6b6564676f626c696e746f776e2e7774662f6e6674646174612f

Deployed Bytecode

0x6080604052600436106102885760003560e01c806354214f691161015a57806395d89b41116100c1578063c4ae31681161007a578063c4ae316814610944578063c87b56dd1461095b578063e222c7f914610998578063e985e9c5146109af578063f2fde38b146109ec578063f659a45f14610a1557610288565b806395d89b411461086b5780639fc5ce2a14610896578063a0712d68146108ad578063a22cb465146108c9578063b0962c53146108f2578063b88d4fde1461091b57610288565b80637471e0d5116101135780637471e0d51461076d578063791a25191461079857806379fcb984146107c157806383a974a2146107ea5780638456cb59146108155780638da5cb5b1461084057610288565b806354214f691461066f5780635b8ad4291461069a5780636352211e146106b157806365f13097146106ee57806370a0823114610719578063715018a61461075657610288565b806323b872dd116101fe5780633ccfd60b116101b75780633ccfd60b1461058057806341cda2031461058a57806342842e0e146105b5578063449783e1146105de5780634cf5f7a4146106075780634f6ccce71461063257610288565b806323b872dd146104705780632aba3832146104995780632f745c59146104c257806332cb6b0c146104ff57806333bc1c5c1461052a57806335cf36751461055557610288565b8063089d466511610250578063089d466514610386578063095ea7b3146103b157806318160ddd146103da5780631895e40c146104055780631c16521c1461041c57806321c8d6761461045957610288565b806301ffc9a71461028d5780630675b7c6146102ca57806306fdde03146102f357806307e89ec01461031e578063081812fc14610349575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af91906139a9565b610a31565b6040516102c19190613f13565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec91906139fb565b610b7b565b005b3480156102ff57600080fd5b50610308610c11565b6040516103159190613f2e565b60405180910390f35b34801561032a57600080fd5b50610333610ca3565b60405161034091906140f0565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190613a3c565b610ca9565b60405161037d9190613e8a565b60405180910390f35b34801561039257600080fd5b5061039b610d25565b6040516103a891906140f0565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d3919061396d565b610d2b565b005b3480156103e657600080fd5b506103ef610e36565b6040516103fc91906140f0565b60405180910390f35b34801561041157600080fd5b5061041a610e3f565b005b34801561042857600080fd5b50610443600480360381019061043e9190613802565b610ee7565b60405161045091906140f0565b60405180910390f35b34801561046557600080fd5b5061046e610eff565b005b34801561047c57600080fd5b5061049760048036038101906104929190613867565b610fd5565b005b3480156104a557600080fd5b506104c060048036038101906104bb9190613a3c565b610fe5565b005b3480156104ce57600080fd5b506104e960048036038101906104e4919061396d565b61106b565b6040516104f691906140f0565b60405180910390f35b34801561050b57600080fd5b50610514611255565b60405161052191906140f0565b60405180910390f35b34801561053657600080fd5b5061053f61125b565b60405161054c9190613f13565b60405180910390f35b34801561056157600080fd5b5061056a61126e565b6040516105779190613f13565b60405180910390f35b610588611281565b005b34801561059657600080fd5b5061059f61137d565b6040516105ac91906140f0565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190613867565b611383565b005b3480156105ea57600080fd5b5061060560048036038101906106009190613a3c565b6113a3565b005b34801561061357600080fd5b5061061c611429565b6040516106299190613f2e565b60405180910390f35b34801561063e57600080fd5b5061065960048036038101906106549190613a3c565b6114b7565b60405161066691906140f0565b60405180910390f35b34801561067b57600080fd5b50610684611501565b6040516106919190613f13565b60405180910390f35b3480156106a657600080fd5b506106af611514565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190613a3c565b6115bc565b6040516106e59190613e8a565b60405180910390f35b3480156106fa57600080fd5b506107036115d2565b60405161071091906140f0565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b9190613802565b6115d8565b60405161074d91906140f0565b60405180910390f35b34801561076257600080fd5b5061076b6116b8565b005b34801561077957600080fd5b50610782611740565b60405161078f91906140f0565b60405180910390f35b3480156107a457600080fd5b506107bf60048036038101906107ba9190613a3c565b611745565b005b3480156107cd57600080fd5b506107e860048036038101906107e39190613a3c565b6117cb565b005b3480156107f657600080fd5b506107ff611851565b60405161080c9190613ef1565b60405180910390f35b34801561082157600080fd5b5061082a61194f565b6040516108379190613f13565b60405180910390f35b34801561084c57600080fd5b50610855611962565b6040516108629190613e8a565b60405180910390f35b34801561087757600080fd5b5061088061198c565b60405161088d9190613f2e565b60405180910390f35b3480156108a257600080fd5b506108ab611a1e565b005b6108c760048036038101906108c29190613a3c565b611aa7565b005b3480156108d557600080fd5b506108f060048036038101906108eb9190613931565b611e01565b005b3480156108fe57600080fd5b50610919600480360381019061091491906139fb565b611f79565b005b34801561092757600080fd5b50610942600480360381019061093d91906138b6565b61200f565b005b34801561095057600080fd5b50610959612062565b005b34801561096757600080fd5b50610982600480360381019061097d9190613a3c565b61210a565b60405161098f9190613f2e565b60405180910390f35b3480156109a457600080fd5b506109ad61226c565b005b3480156109bb57600080fd5b506109d660048036038101906109d1919061382b565b612314565b6040516109e39190613f13565b60405180910390f35b3480156109f857600080fd5b50610a136004803603810190610a0e9190613802565b6123a8565b005b610a2f6004803603810190610a2a919061396d565b6124a0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610afc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b6457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b745750610b7382612647565b5b9050919050565b610b836126b1565b73ffffffffffffffffffffffffffffffffffffffff16610ba1611962565b73ffffffffffffffffffffffffffffffffffffffff1614610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee90614010565b60405180910390fd5b80600e9080519060200190610c0d9291906135ec565b5050565b606060018054610c20906143f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4c906143f9565b8015610c995780601f10610c6e57610100808354040283529160200191610c99565b820191906000526020600020905b815481529060010190602001808311610c7c57829003601f168201915b5050505050905090565b600c5481565b6000610cb4826126b9565b610cea576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d5481565b6000610d36826115bc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dbd6126b1565b73ffffffffffffffffffffffffffffffffffffffff1614158015610def5750610ded81610de86126b1565b612314565b155b15610e26576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e318383836126c6565b505050565b60008054905090565b610e476126b1565b73ffffffffffffffffffffffffffffffffffffffff16610e65611962565b73ffffffffffffffffffffffffffffffffffffffff1614610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290614010565b60405180910390fd5b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b60116020528060005260406000206000915090505481565b610f076126b1565b73ffffffffffffffffffffffffffffffffffffffff16610f25611962565b73ffffffffffffffffffffffffffffffffffffffff1614610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290614010565b60405180910390fd5b611ecf610f86610e36565b1115610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe906140d0565b60405180910390fd5b610fd333610378612778565b565b610fe0838383612796565b505050565b610fed6126b1565b73ffffffffffffffffffffffffffffffffffffffff1661100b611962565b73ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890614010565b60405180910390fd5b80600b8190555050565b6000611076836115d8565b82106110ae576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110b8610e36565b905060008060005b83811015611212576000600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111b257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561120457868414156111fb57819550505050505061124f565b83806001019450505b5080806001019150506110c0565b506000611248577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b8193505050505b92915050565b6122b881565b601060019054906101000a900460ff1681565b601060029054906101000a900460ff1681565b6112896126b1565b73ffffffffffffffffffffffffffffffffffffffff166112a7611962565b73ffffffffffffffffffffffffffffffffffffffff16146112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f490614010565b60405180910390fd5b6000611307611962565b73ffffffffffffffffffffffffffffffffffffffff164760405161132a90613e75565b60006040518083038185875af1925050503d8060008114611367576040519150601f19603f3d011682016040523d82523d6000602084013e61136c565b606091505b505090508061137a57600080fd5b50565b600b5481565b61139e8383836040518060200160405280600081525061200f565b505050565b6113ab6126b1565b73ffffffffffffffffffffffffffffffffffffffff166113c9611962565b73ffffffffffffffffffffffffffffffffffffffff161461141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690614010565b60405180910390fd5b80600d8190555050565b600f8054611436906143f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611462906143f9565b80156114af5780601f10611484576101008083540402835291602001916114af565b820191906000526020600020905b81548152906001019060200180831161149257829003601f168201915b505050505081565b60006114c1610e36565b82106114f9576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b601060009054906101000a900460ff1681565b61151c6126b1565b73ffffffffffffffffffffffffffffffffffffffff1661153a611962565b73ffffffffffffffffffffffffffffffffffffffff1614611590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158790614010565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b60006115c782612cbb565b600001519050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611640576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116c06126b1565b73ffffffffffffffffffffffffffffffffffffffff166116de611962565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90614010565b60405180910390fd5b61173e6000612e43565b565b600081565b61174d6126b1565b73ffffffffffffffffffffffffffffffffffffffff1661176b611962565b73ffffffffffffffffffffffffffffffffffffffff16146117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890614010565b60405180910390fd5b80600c8190555050565b6117d36126b1565b73ffffffffffffffffffffffffffffffffffffffff166117f1611962565b73ffffffffffffffffffffffffffffffffffffffff1614611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e90614010565b60405180910390fd5b80600a8190555050565b606060003390506000611863826115d8565b905060008167ffffffffffffffff8111156118a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156118d55781602001602082028036833780820191505090505b50905060005b82811015611945576118ed848261106b565b828281518110611926577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061193d9061445c565b9150506118db565b5080935050505090565b601060039054906101000a900460ff1681565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461199b906143f9565b80601f01602080910402602001604051908101604052809291908181526020018280546119c7906143f9565b8015611a145780601f106119e957610100808354040283529160200191611a14565b820191906000526020600020905b8154815290600101906020018083116119f757829003601f168201915b5050505050905090565b611a266126b1565b73ffffffffffffffffffffffffffffffffffffffff16611a44611962565b73ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190614010565b60405180910390fd5b611aa5336001612778565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0c90613ff0565b60405180910390fd5b6000600d5414611cb757601060039054906101000a900460ff1615611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613f50565b60405180910390fd5b600b54811115611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90613f70565b60405180910390fd5b600b5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c02919061422e565b1115611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90613fb0565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c92919061422e565b92505081905550611ca33382612778565b80600d54611cb1919061430f565b50611dfe565b601060039054906101000a900460ff1615611d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfe90613f50565b60405180910390fd5b6122b881611d13610e36565b611d1d919061422e565b1115611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d55906140b0565b60405180910390fd5b600a54811115611da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9a90614070565b60405180910390fd5b80600c54611db191906142b5565b341015611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90614090565b60405180910390fd5b611dfd3382612778565b5b50565b611e096126b1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e6e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611e7b6126b1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f286126b1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f6d9190613f13565b60405180910390a35050565b611f816126b1565b73ffffffffffffffffffffffffffffffffffffffff16611f9f611962565b73ffffffffffffffffffffffffffffffffffffffff1614611ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fec90614010565b60405180910390fd5b80600f908051906020019061200b9291906135ec565b5050565b61201a848484612796565b61202684848484612f09565b61205c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61206a6126b1565b73ffffffffffffffffffffffffffffffffffffffff16612088611962565b73ffffffffffffffffffffffffffffffffffffffff16146120de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d590614010565b60405180910390fd5b601060039054906101000a900460ff1615601060036101000a81548160ff021916908315150217905550565b6060612115826126b9565b612154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214b90614030565b60405180910390fd5b6000600183612163919061422e565b9050601060009054906101000a900460ff1661220c57600f8054612186906143f9565b80601f01602080910402602001604051908101604052809291908181526020018280546121b2906143f9565b80156121ff5780601f106121d4576101008083540402835291602001916121ff565b820191906000526020600020905b8154815290600101906020018083116121e257829003601f168201915b5050505050915050612267565b6000600e805461221b906143f9565b9050116122375760405180602001604052806000815250612263565b600e61224282613097565b604051602001612253929190613e46565b6040516020818303038152906040525b9150505b919050565b6122746126b1565b73ffffffffffffffffffffffffffffffffffffffff16612292611962565b73ffffffffffffffffffffffffffffffffffffffff16146122e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122df90614010565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123b06126b1565b73ffffffffffffffffffffffffffffffffffffffff166123ce611962565b73ffffffffffffffffffffffffffffffffffffffff1614612424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241b90614010565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248b90613f90565b60405180910390fd5b61249d81612e43565b50565b6124a86126b1565b73ffffffffffffffffffffffffffffffffffffffff166124c6611962565b73ffffffffffffffffffffffffffffffffffffffff161461251c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251390614010565b60405180910390fd5b6000612526610e36565b9050601060039054906101000a900460ff1615612578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256f90613f50565b60405180910390fd5b600082116125bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b290613fd0565b60405180910390fd5b6122b882826125ca919061422e565b111561260b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260290614050565b60405180910390fd5b6000600190505b8281116126415761262e848284612629919061422e565b612778565b80806126399061445c565b915050612612565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612792828260405180602001604052806000815250613244565b5050565b60006127a182612cbb565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166127c86126b1565b73ffffffffffffffffffffffffffffffffffffffff16148061282457506127ed6126b1565b73ffffffffffffffffffffffffffffffffffffffff1661280c84610ca9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612840575061283f826000015161283a6126b1565b612314565b5b905080612879576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146128e2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612949576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129568585856001613256565b61296660008484600001516126c6565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c4b57612baa816126b9565b15612c4a5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cb4858585600161325c565b5050505050565b612cc3613672565b612ccc826126b9565b612d02576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b60008110612e0b576000600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dfc578092505050612e3e565b50808060019003915050612d08565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612f2a8473ffffffffffffffffffffffffffffffffffffffff16613262565b1561308a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f536126b1565b8786866040518563ffffffff1660e01b8152600401612f759493929190613ea5565b602060405180830381600087803b158015612f8f57600080fd5b505af1925050508015612fc057506040513d601f19601f82011682018060405250810190612fbd91906139d2565b60015b61303a573d8060008114612ff0576040519150601f19603f3d011682016040523d82523d6000602084013e612ff5565b606091505b50600081511415613032576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061308f565b600190505b949350505050565b606060008214156130df576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061323f565b600082905060005b600082146131115780806130fa9061445c565b915050600a8261310a9190614284565b91506130e7565b60008167ffffffffffffffff811115613153577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131855781602001600182028036833780820191505090505b5090505b600085146132385760018261319e919061430f565b9150600a856131ad91906144a5565b60306131b9919061422e565b60f81b8183815181106131f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132319190614284565b9450613189565b8093505050505b919050565b6132518383836001613285565b505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156132f2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561332d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61333a6000868387613256565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156135cf57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561358357506135816000888488612f09565b155b156135ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613508565b5080600081905550506135e5600086838761325c565b5050505050565b8280546135f8906143f9565b90600052602060002090601f01602090048101928261361a5760008555613661565b82601f1061363357805160ff1916838001178555613661565b82800160010185558215613661579182015b82811115613660578251825591602001919060010190613645565b5b50905061366e91906136ac565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156136c55760008160009055506001016136ad565b5090565b60006136dc6136d784614130565b61410b565b9050828152602081018484840111156136f457600080fd5b6136ff8482856143b7565b509392505050565b600061371a61371584614161565b61410b565b90508281526020810184848401111561373257600080fd5b61373d8482856143b7565b509392505050565b60008135905061375481614a1e565b92915050565b60008135905061376981614a35565b92915050565b60008135905061377e81614a4c565b92915050565b60008151905061379381614a4c565b92915050565b600082601f8301126137aa57600080fd5b81356137ba8482602086016136c9565b91505092915050565b600082601f8301126137d457600080fd5b81356137e4848260208601613707565b91505092915050565b6000813590506137fc81614a63565b92915050565b60006020828403121561381457600080fd5b600061382284828501613745565b91505092915050565b6000806040838503121561383e57600080fd5b600061384c85828601613745565b925050602061385d85828601613745565b9150509250929050565b60008060006060848603121561387c57600080fd5b600061388a86828701613745565b935050602061389b86828701613745565b92505060406138ac868287016137ed565b9150509250925092565b600080600080608085870312156138cc57600080fd5b60006138da87828801613745565b94505060206138eb87828801613745565b93505060406138fc878288016137ed565b925050606085013567ffffffffffffffff81111561391957600080fd5b61392587828801613799565b91505092959194509250565b6000806040838503121561394457600080fd5b600061395285828601613745565b92505060206139638582860161375a565b9150509250929050565b6000806040838503121561398057600080fd5b600061398e85828601613745565b925050602061399f858286016137ed565b9150509250929050565b6000602082840312156139bb57600080fd5b60006139c98482850161376f565b91505092915050565b6000602082840312156139e457600080fd5b60006139f284828501613784565b91505092915050565b600060208284031215613a0d57600080fd5b600082013567ffffffffffffffff811115613a2757600080fd5b613a33848285016137c3565b91505092915050565b600060208284031215613a4e57600080fd5b6000613a5c848285016137ed565b91505092915050565b6000613a718383613e28565b60208301905092915050565b613a8681614343565b82525050565b6000613a97826141b7565b613aa181856141e5565b9350613aac83614192565b8060005b83811015613add578151613ac48882613a65565b9750613acf836141d8565b925050600181019050613ab0565b5085935050505092915050565b613af381614355565b82525050565b6000613b04826141c2565b613b0e81856141f6565b9350613b1e8185602086016143c6565b613b2781614592565b840191505092915050565b6000613b3d826141cd565b613b478185614212565b9350613b578185602086016143c6565b613b6081614592565b840191505092915050565b6000613b76826141cd565b613b808185614223565b9350613b908185602086016143c6565b80840191505092915050565b60008154613ba9816143f9565b613bb38186614223565b94506001821660008114613bce5760018114613bdf57613c12565b60ff19831686528186019350613c12565b613be8856141a2565b60005b83811015613c0a57815481890152600182019150602081019050613beb565b838801955050505b50505092915050565b6000613c28602b83614212565b9150613c33826145a3565b604082019050919050565b6000613c4b603b83614212565b9150613c56826145f2565b604082019050919050565b6000613c6e602683614212565b9150613c7982614641565b604082019050919050565b6000613c91604a83614212565b9150613c9c82614690565b606082019050919050565b6000613cb4602e83614212565b9150613cbf82614705565b604082019050919050565b6000613cd7603683614212565b9150613ce282614754565b604082019050919050565b6000613cfa600583614223565b9150613d05826147a3565b600582019050919050565b6000613d1d602083614212565b9150613d28826147cc565b602082019050919050565b6000613d40602f83614212565b9150613d4b826147f5565b604082019050919050565b6000613d63603a83614212565b9150613d6e82614844565b604082019050919050565b6000613d86604383614212565b9150613d9182614893565b606082019050919050565b6000613da9603283614212565b9150613db482614908565b604082019050919050565b6000613dcc602983614212565b9150613dd782614957565b604082019050919050565b6000613def600083614207565b9150613dfa826149a6565b600082019050919050565b6000613e12605a83614212565b9150613e1d826149a9565b606082019050919050565b613e31816143ad565b82525050565b613e40816143ad565b82525050565b6000613e528285613b9c565b9150613e5e8284613b6b565b9150613e6982613ced565b91508190509392505050565b6000613e8082613de2565b9150819050919050565b6000602082019050613e9f6000830184613a7d565b92915050565b6000608082019050613eba6000830187613a7d565b613ec76020830186613a7d565b613ed46040830185613e37565b8181036060830152613ee68184613af9565b905095945050505050565b60006020820190508181036000830152613f0b8184613a8c565b905092915050565b6000602082019050613f286000830184613aea565b92915050565b60006020820190508181036000830152613f488184613b32565b905092915050565b60006020820190508181036000830152613f6981613c1b565b9050919050565b60006020820190508181036000830152613f8981613c3e565b9050919050565b60006020820190508181036000830152613fa981613c61565b9050919050565b60006020820190508181036000830152613fc981613c84565b9050919050565b60006020820190508181036000830152613fe981613ca7565b9050919050565b6000602082019050818103600083015261400981613cca565b9050919050565b6000602082019050818103600083015261402981613d10565b9050919050565b6000602082019050818103600083015261404981613d33565b9050919050565b6000602082019050818103600083015261406981613d56565b9050919050565b6000602082019050818103600083015261408981613d79565b9050919050565b600060208201905081810360008301526140a981613d9c565b9050919050565b600060208201905081810360008301526140c981613dbf565b9050919050565b600060208201905081810360008301526140e981613e05565b9050919050565b60006020820190506141056000830184613e37565b92915050565b6000614115614126565b9050614121828261442b565b919050565b6000604051905090565b600067ffffffffffffffff82111561414b5761414a614563565b5b61415482614592565b9050602081019050919050565b600067ffffffffffffffff82111561417c5761417b614563565b5b61418582614592565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614239826143ad565b9150614244836143ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614279576142786144d6565b5b828201905092915050565b600061428f826143ad565b915061429a836143ad565b9250826142aa576142a9614505565b5b828204905092915050565b60006142c0826143ad565b91506142cb836143ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614304576143036144d6565b5b828202905092915050565b600061431a826143ad565b9150614325836143ad565b925082821015614338576143376144d6565b5b828203905092915050565b600061434e8261438d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143e45780820151818401526020810190506143c9565b838111156143f3576000848401525b50505050565b6000600282049050600182168061441157607f821691505b6020821081141561442557614424614534565b5b50919050565b61443482614592565b810181811067ffffffffffffffff8211171561445357614452614563565b5b80604052505050565b6000614467826143ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561449a576144996144d6565b5b600182019050919050565b60006144b0826143ad565b91506144bb836143ad565b9250826144cb576144ca614505565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f47756e6b6564676f626c696e746f776e2e777466203a3a204d696e74696e672060008201527f6973206f6e205061757365000000000000000000000000000000000000000000602082015250565b7f47756e6b6564676f626c696e746f776e2e777466203a3a2043616e6e6f74206d60008201527f696e74206d6f7265207468616e2031206672656520746f6b656e200000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f47756e6b6564676f626c696e746f776e2e777466203a3a20312046724565205460008201527f6f4b65656e20416c4c5265654479204d694e7465456420744f2074684949732060208201527f4144645265735353737300000000000000000000000000000000000000000000604082015250565b7f47756e6b6564676f626c696e746f776e2e777466203a3a204e6f20546f6b656e60008201527f7320546f2041697264726f702e2e000000000000000000000000000000000000602082015250565b7f47756e6b6564676f626c696e746f776e2e777466203a3a2043616e6e6f74206260008201527f652063616c6c6564206279206120636f6e747261637400000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f47756e6b6564676f626c696e746f776e2e777466203a3a20547279696e67207460008201527f6f206d696e74204265796f6e64204d617820537570706c792e2e000000000000602082015250565b7f47756e6b6564676f626c696e746f776e2e777466203a3a2043616e6e6f74206d60008201527f696e74206d6f7265207468616e20323020746f6b656e7320617420612074696d60208201527f652e2e0000000000000000000000000000000000000000000000000000000000604082015250565b7f47756e6b6564676f626c696e746f776e2e777466203a3a205061796d656e742060008201527f69732062656c6f77207468652070726963650000000000000000000000000000602082015250565b7f47756e6b6564676f626c696e746f776e2e777466203a3a204265796f6e64204d60008201527f617820537570706c790000000000000000000000000000000000000000000000602082015250565b50565b7f47756e6b6564676f626c696e746f776e2e777466203a3a20546f74616c53757060008201527f706c79204e6f74206c657373207468616e203738383820746f6b656e732e2e2060208201527f42652070617469656e7420796f756e67207061647768616e2e2e000000000000604082015250565b614a2781614343565b8114614a3257600080fd5b50565b614a3e81614355565b8114614a4957600080fd5b50565b614a5581614361565b8114614a6057600080fd5b50565b614a6c816143ad565b8114614a7757600080fd5b5056fea264697066735822122043e70e73c8eca777840d6e9df10fbf12bd2c7dccdd6086e3a11f3ca319ceaaa164736f6c63430008040033

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.