ETH Price: $3,436.54 (+7.66%)
Gas: 12 Gwei

Token

Teddy Bearz (TBZ)
 

Overview

Max Total Supply

6,249 TBZ

Holders

867

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 TBZ
0x261c4011db156eaa1ea7d0d8e32ab5a829ac7296
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:
TeddyBearz

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

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

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

    //Supply
    uint256 public constant MAX_SUPPLY = 6250;
    uint256 public constant MAX_FREE_SUPPLY = 775; //275 from dev team + 500 free for community = 775
    uint256 public constant MAX_FREE_MINT = 2;
    uint256 public MAX_PUBLIC_MINT = 10;
    uint256 public PUBLIC_SALE_PRICE = .03 ether;

    string private baseTokenUri;

    bool public publicSale;
    bool public teamMinted;

    mapping(address => uint256) public totalFreeMint;
    mapping(address => uint256) public totalPublicMint;

    constructor() ERC721A("Teddy Bearz", "TBZ") {

    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Teddy Bearz - Cannot be called by a contract");
        _;
    }

    function mint(uint256 _quantity) external payable callerIsUser {
        require(publicSale, "Teddy Bearz Public Sale Not Yet Active");

        uint256 newSupply = totalSupply() + _quantity;
        require(newSupply < MAX_SUPPLY, "Teddy Bearz Beyond Max Supply");

        bool freeSale = newSupply <= MAX_FREE_SUPPLY;
        if(freeSale) {
            //require(newSupply < MAX_FREE_SUPPLY + 1, "Teddy Bearz Free Mint is complete");
            require(totalFreeMint[msg.sender] < MAX_FREE_MINT + 1, "You have already minted 2 free Teddy Bearz"); //minted < 3
            require((totalFreeMint[msg.sender] + _quantity) < (MAX_FREE_MINT + 1), "You have selected too many Teddy Bearz to mint for free"); //minted + quantity < 3
            require(_quantity < (MAX_FREE_MINT + 1), "You have selected too many Teddy Bearz to mint for free"); //quantity less < 3

            totalFreeMint[msg.sender] += _quantity;
            _safeMint(msg.sender, _quantity);
        }

        if(!freeSale) {
            require(totalPublicMint[msg.sender] < (MAX_PUBLIC_MINT + 1), "You have already minted 10 Teddy Bearz"); //minted < 10
            require((totalPublicMint[msg.sender] + _quantity) < (MAX_PUBLIC_MINT + 1), "You have selected too many Teddy Bearz to mint"); //minted + quantity < 10
            require(_quantity < (MAX_PUBLIC_MINT + 1), "You have selected too many Teddy Bearz to mint"); //quantity < 10
            require(msg.value >= (PUBLIC_SALE_PRICE * _quantity), "Not enough Ethereum for quantity selected"); //not enough eth

            totalPublicMint[msg.sender] += _quantity;
            _safeMint(msg.sender, _quantity);
        }
    }

    function teamMint() external onlyOwner{
        require(!teamMinted, "Teddy Bearz Team already minted");
        teamMinted = true;
        _safeMint(msg.sender, 275);
    }

    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;

        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 setPublicSalePrice(uint256 _publicSalePrice) external onlyOwner {
        PUBLIC_SALE_PRICE = _publicSalePrice;
    }

    function setPublicMaxMint(uint256 _publicMaxMint) external onlyOwner {
        MAX_PUBLIC_MINT = _publicMaxMint;
    }

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

    function withdraw() external onlyOwner {
        //10% to SC dev
        uint256 withdraw10EthDev10 = address(this).balance * 10/100;
        //5% to web dev
        uint256 withdrawWebDev5 = address(this).balance * 5/100;
        //10% to artist
        uint256 withdrawArtist10 = address(this).balance * 10/100;
        //5% to marketing
        uint256 withdrawMarketing5 = address(this).balance * 5/100;
        //70% to creator
        uint256 withdrawOwner70 = (address(this).balance - withdraw10EthDev10 - withdrawWebDev5 - withdrawArtist10 - withdrawMarketing5);
        payable(0x436DBFDA9cE8d5403C05EE7f8fede7d39FDe6888).transfer(withdraw10EthDev10);
        payable(0xB46eCbAC66746B00A926d433EB59fFfdDC315580).transfer(withdrawWebDev5);
        payable(0x7a7bE3347Cc5a836c923827c2876E1b1479c7c1B).transfer(withdrawArtist10);
        payable(0xa6E562B7aC88b33CFc186d2146E826f43eE76BAc).transfer(withdrawMarketing5);
        payable(0x6e2F6105F844c77864E221f47044b227FF089da7).transfer(withdrawOwner70);
        payable(msg.sender).transfer(address(this).balance);
    }
}

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;

    // 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_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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);
    }

    /**
     * @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":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_SUPPLY","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":[{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMaxMint","type":"uint256"}],"name":"setPublicMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSalePrice","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":"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":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","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":"totalFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"nonpayable","type":"function"}]

6080604052600a600855666a94d74f4300006009553480156200002157600080fd5b506040518060400160405280600b81526020017f546564647920426561727a0000000000000000000000000000000000000000008152506040518060400160405280600381526020017f54425a00000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000a6929190620001b6565b508060029080519060200190620000bf929190620001b6565b505050620000e2620000d6620000e860201b60201c565b620000f060201b60201c565b620002cb565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c49062000266565b90600052602060002090601f016020900481019282620001e8576000855562000234565b82601f106200020357805160ff191683800117855562000234565b8280016001018555821562000234579182015b828111156200023357825182559160200191906001019062000216565b5b50905062000243919062000247565b5090565b5b808211156200026257600081600090555060010162000248565b5090565b600060028204905060018216806200027f57607f821691505b602082108114156200029657620002956200029c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61446780620002db6000396000f3fe60806040526004361061020f5760003560e01c806365f1309711610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461077e578063e222c7f9146107bb578063e8b5498d146107d2578063e985e9c5146107fd578063f2fde38b1461083a5761020f565b8063a22cb465146106ec578063a59585a814610715578063b88d4fde1461073e578063ba7a86b8146107675761020f565b806383a974a2116100e757806383a974a214610612578063891084a31461063d5780638da5cb5b1461067a57806395d89b41146106a5578063a0712d68146106d05761020f565b806365f130971461056a57806370a0823114610595578063715018a6146105d2578063791a2519146105e95761020f565b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b1461048557806341cda2031461049c57806342842e0e146104c75780634f6ccce7146104f05780636352211e1461052d5761020f565b806323b872dd146103c95780632f745c59146103f257806332cb6b0c1461042f57806333bc1c5c1461045a5761020f565b806307e89ec0116101e257806307e89ec0146102d0578063081812fc146102fb578063095ea7b31461033857806318160ddd146103615780631c16521c1461038c5761020f565b806301ffc9a71461021457806302ddb65b146102515780630675b7c61461027c57806306fdde03146102a5575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906134f6565b610863565b6040516102489190613a05565b60405180910390f35b34801561025d57600080fd5b506102666109ad565b6040516102739190613bc2565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613548565b6109b3565b005b3480156102b157600080fd5b506102ba610a49565b6040516102c79190613a20565b60405180910390f35b3480156102dc57600080fd5b506102e5610adb565b6040516102f29190613bc2565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613589565b610ae1565b60405161032f919061397c565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a91906134ba565b610b5d565b005b34801561036d57600080fd5b50610376610c68565b6040516103839190613bc2565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae919061334f565b610c71565b6040516103c09190613bc2565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb91906133b4565b610c89565b005b3480156103fe57600080fd5b50610419600480360381019061041491906134ba565b610c99565b6040516104269190613bc2565b60405180910390f35b34801561043b57600080fd5b50610444610e80565b6040516104519190613bc2565b60405180910390f35b34801561046657600080fd5b5061046f610e86565b60405161047c9190613a05565b60405180910390f35b34801561049157600080fd5b5061049a610e99565b005b3480156104a857600080fd5b506104b16111cf565b6040516104be9190613bc2565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e991906133b4565b6111d4565b005b3480156104fc57600080fd5b5061051760048036038101906105129190613589565b6111f4565b6040516105249190613bc2565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190613589565b61123e565b604051610561919061397c565b60405180910390f35b34801561057657600080fd5b5061057f611254565b60405161058c9190613bc2565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b7919061334f565b61125a565b6040516105c99190613bc2565b60405180910390f35b3480156105de57600080fd5b506105e761133a565b005b3480156105f557600080fd5b50610610600480360381019061060b9190613589565b6113c2565b005b34801561061e57600080fd5b50610627611448565b60405161063491906139e3565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f919061334f565b611546565b6040516106719190613bc2565b60405180910390f35b34801561068657600080fd5b5061068f61155e565b60405161069c919061397c565b60405180910390f35b3480156106b157600080fd5b506106ba611588565b6040516106c79190613a20565b60405180910390f35b6106ea60048036038101906106e59190613589565b61161a565b005b3480156106f857600080fd5b50610713600480360381019061070e919061347e565b611b4d565b005b34801561072157600080fd5b5061073c60048036038101906107379190613589565b611cc5565b005b34801561074a57600080fd5b5061076560048036038101906107609190613403565b611d4b565b005b34801561077357600080fd5b5061077c611d9e565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613589565b611e93565b6040516107b29190613a20565b60405180910390f35b3480156107c757600080fd5b506107d0611f4d565b005b3480156107de57600080fd5b506107e7611ff5565b6040516107f49190613a05565b60405180910390f35b34801561080957600080fd5b50610824600480360381019061081f9190613378565b612008565b6040516108319190613a05565b60405180910390f35b34801561084657600080fd5b50610861600480360381019061085c919061334f565b61209c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a657506109a582612194565b5b9050919050565b61030781565b6109bb6121fe565b73ffffffffffffffffffffffffffffffffffffffff166109d961155e565b73ffffffffffffffffffffffffffffffffffffffff1614610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690613b02565b60405180910390fd5b80600a9080519060200190610a45929190613139565b5050565b606060018054610a5890613ec0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8490613ec0565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b60095481565b6000610aec82612206565b610b22576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b688261123e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bef6121fe565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c215750610c1f81610c1a6121fe565b612008565b155b15610c58576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c63838383612213565b505050565b60008054905090565b600d6020528060005260406000206000915090505481565b610c948383836122c5565b505050565b6000610ca48361125a565b8210610cdc576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610ce6610c68565b905060008060005b83811015610e40576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610de057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e325786841415610e29578195505050505050610e7a565b83806001019450505b508080600101915050610cee565b506000610e76577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b5050505b92915050565b61186a81565b600b60009054906101000a900460ff1681565b610ea16121fe565b73ffffffffffffffffffffffffffffffffffffffff16610ebf61155e565b73ffffffffffffffffffffffffffffffffffffffff1614610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90613b02565b60405180910390fd5b60006064600a47610f269190613d7c565b610f309190613d4b565b905060006064600547610f439190613d7c565b610f4d9190613d4b565b905060006064600a47610f609190613d7c565b610f6a9190613d4b565b905060006064600547610f7d9190613d7c565b610f879190613d4b565b905060008183858747610f9a9190613dd6565b610fa49190613dd6565b610fae9190613dd6565b610fb89190613dd6565b905073436dbfda9ce8d5403c05ee7f8fede7d39fde688873ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f19350505050158015611014573d6000803e3d6000fd5b5073b46ecbac66746b00a926d433eb59fffddc31558073ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f1935050505015801561106f573d6000803e3d6000fd5b50737a7be3347cc5a836c923827c2876e1b1479c7c1b73ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156110ca573d6000803e3d6000fd5b5073a6e562b7ac88b33cfc186d2146e826f43ee76bac73ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611125573d6000803e3d6000fd5b50736e2f6105f844c77864e221f47044b227ff089da773ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611180573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156111c7573d6000803e3d6000fd5b505050505050565b600281565b6111ef83838360405180602001604052806000815250611d4b565b505050565b60006111fe610c68565b8210611236576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6000611249826127ea565b600001519050919050565b60085481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112c2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113426121fe565b73ffffffffffffffffffffffffffffffffffffffff1661136061155e565b73ffffffffffffffffffffffffffffffffffffffff16146113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90613b02565b60405180910390fd5b6113c06000612972565b565b6113ca6121fe565b73ffffffffffffffffffffffffffffffffffffffff166113e861155e565b73ffffffffffffffffffffffffffffffffffffffff161461143e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143590613b02565b60405180910390fd5b8060098190555050565b60606000339050600061145a8261125a565b905060008167ffffffffffffffff81111561149e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114cc5781602001602082028036833780820191505090505b50905060005b8281101561153c576114e48482610c99565b82828151811061151d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061153490613f23565b9150506114d2565b5080935050505090565b600c6020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461159790613ec0565b80601f01602080910402602001604051908101604052809291908181526020018280546115c390613ec0565b80156116105780601f106115e557610100808354040283529160200191611610565b820191906000526020600020905b8154815290600101906020018083116115f357829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90613b42565b60405180910390fd5b600b60009054906101000a900460ff166116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613aa2565b60405180910390fd5b6000816116e2610c68565b6116ec9190613cf5565b905061186a8110611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990613ae2565b60405180910390fd5b60006103078211159050801561191957600160026117509190613cf5565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106117d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c790613ac2565b60405180910390fd5b600160026117de9190613cf5565b83600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118299190613cf5565b10611869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186090613ba2565b60405180910390fd5b600160026118779190613cf5565b83106118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90613ba2565b60405180910390fd5b82600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119079190613cf5565b925050819055506119183384612a38565b5b80611b4857600160085461192d9190613cf5565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490613a82565b60405180910390fd5b60016008546119bc9190613cf5565b83600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a079190613cf5565b10611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90613a42565b60405180910390fd5b6001600854611a569190613cf5565b8310611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e90613a42565b60405180910390fd5b82600954611aa59190613d7c565b341015611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade90613b62565b60405180910390fd5b82600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b369190613cf5565b92505081905550611b473384612a38565b5b505050565b611b556121fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bba576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611bc76121fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c746121fe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cb99190613a05565b60405180910390a35050565b611ccd6121fe565b73ffffffffffffffffffffffffffffffffffffffff16611ceb61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3890613b02565b60405180910390fd5b8060088190555050565b611d568484846122c5565b611d6284848484612a56565b611d98576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611da66121fe565b73ffffffffffffffffffffffffffffffffffffffff16611dc461155e565b73ffffffffffffffffffffffffffffffffffffffff1614611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1190613b02565b60405180910390fd5b600b60019054906101000a900460ff1615611e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6190613b82565b60405180910390fd5b6001600b60016101000a81548160ff021916908315150217905550611e9133610113612a38565b565b6060611e9e82612206565b611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed490613b22565b60405180910390fd5b6000600183611eec9190613cf5565b90506000600a8054611efd90613ec0565b905011611f195760405180602001604052806000815250611f45565b600a611f2482612be4565b604051602001611f3592919061394d565b6040516020818303038152906040525b915050919050565b611f556121fe565b73ffffffffffffffffffffffffffffffffffffffff16611f7361155e565b73ffffffffffffffffffffffffffffffffffffffff1614611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc090613b02565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600b60019054906101000a900460ff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120a46121fe565b73ffffffffffffffffffffffffffffffffffffffff166120c261155e565b73ffffffffffffffffffffffffffffffffffffffff1614612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f90613b02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217f90613a62565b60405180910390fd5b61219181612972565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006122d0826127ea565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122f76121fe565b73ffffffffffffffffffffffffffffffffffffffff161480612353575061231c6121fe565b73ffffffffffffffffffffffffffffffffffffffff1661233b84610ae1565b73ffffffffffffffffffffffffffffffffffffffff16145b8061236f575061236e82600001516123696121fe565b612008565b5b9050806123a8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612411576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612478576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124858585856001612d91565b6124956000848460000151612213565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561277a576126d981612206565b156127795782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127e38585856001612d97565b5050505050565b6127f26131bf565b6127fb82612206565b612831576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b6000811061293a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461292b57809250505061296d565b50808060019003915050612837565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a52828260405180602001604052806000815250612d9d565b5050565b6000612a778473ffffffffffffffffffffffffffffffffffffffff16612daf565b15612bd7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa06121fe565b8786866040518563ffffffff1660e01b8152600401612ac29493929190613997565b602060405180830381600087803b158015612adc57600080fd5b505af1925050508015612b0d57506040513d601f19601f82011682018060405250810190612b0a919061351f565b60015b612b87573d8060008114612b3d576040519150601f19603f3d011682016040523d82523d6000602084013e612b42565b606091505b50600081511415612b7f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bdc565b600190505b949350505050565b60606000821415612c2c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d8c565b600082905060005b60008214612c5e578080612c4790613f23565b915050600a82612c579190613d4b565b9150612c34565b60008167ffffffffffffffff811115612ca0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612cd25781602001600182028036833780820191505090505b5090505b60008514612d8557600182612ceb9190613dd6565b9150600a85612cfa9190613f6c565b6030612d069190613cf5565b60f81b818381518110612d42577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d7e9190613d4b565b9450612cd6565b8093505050505b919050565b50505050565b50505050565b612daa8383836001612dd2565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e3f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612e7a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e876000868387612d91565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561311c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156130d057506130ce6000888488612a56565b155b15613107576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613055565b5080600081905550506131326000868387612d97565b5050505050565b82805461314590613ec0565b90600052602060002090601f01602090048101928261316757600085556131ae565b82601f1061318057805160ff19168380011785556131ae565b828001600101855582156131ae579182015b828111156131ad578251825591602001919060010190613192565b5b5090506131bb91906131f9565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156132125760008160009055506001016131fa565b5090565b600061322961322484613c02565b613bdd565b90508281526020810184848401111561324157600080fd5b61324c848285613e7e565b509392505050565b600061326761326284613c33565b613bdd565b90508281526020810184848401111561327f57600080fd5b61328a848285613e7e565b509392505050565b6000813590506132a1816143d5565b92915050565b6000813590506132b6816143ec565b92915050565b6000813590506132cb81614403565b92915050565b6000815190506132e081614403565b92915050565b600082601f8301126132f757600080fd5b8135613307848260208601613216565b91505092915050565b600082601f83011261332157600080fd5b8135613331848260208601613254565b91505092915050565b6000813590506133498161441a565b92915050565b60006020828403121561336157600080fd5b600061336f84828501613292565b91505092915050565b6000806040838503121561338b57600080fd5b600061339985828601613292565b92505060206133aa85828601613292565b9150509250929050565b6000806000606084860312156133c957600080fd5b60006133d786828701613292565b93505060206133e886828701613292565b92505060406133f98682870161333a565b9150509250925092565b6000806000806080858703121561341957600080fd5b600061342787828801613292565b945050602061343887828801613292565b93505060406134498782880161333a565b925050606085013567ffffffffffffffff81111561346657600080fd5b613472878288016132e6565b91505092959194509250565b6000806040838503121561349157600080fd5b600061349f85828601613292565b92505060206134b0858286016132a7565b9150509250929050565b600080604083850312156134cd57600080fd5b60006134db85828601613292565b92505060206134ec8582860161333a565b9150509250929050565b60006020828403121561350857600080fd5b6000613516848285016132bc565b91505092915050565b60006020828403121561353157600080fd5b600061353f848285016132d1565b91505092915050565b60006020828403121561355a57600080fd5b600082013567ffffffffffffffff81111561357457600080fd5b61358084828501613310565b91505092915050565b60006020828403121561359b57600080fd5b60006135a98482850161333a565b91505092915050565b60006135be838361392f565b60208301905092915050565b6135d381613e0a565b82525050565b60006135e482613c89565b6135ee8185613cb7565b93506135f983613c64565b8060005b8381101561362a57815161361188826135b2565b975061361c83613caa565b9250506001810190506135fd565b5085935050505092915050565b61364081613e1c565b82525050565b600061365182613c94565b61365b8185613cc8565b935061366b818560208601613e8d565b61367481614059565b840191505092915050565b600061368a82613c9f565b6136948185613cd9565b93506136a4818560208601613e8d565b6136ad81614059565b840191505092915050565b60006136c382613c9f565b6136cd8185613cea565b93506136dd818560208601613e8d565b80840191505092915050565b600081546136f681613ec0565b6137008186613cea565b9450600182166000811461371b576001811461372c5761375f565b60ff1983168652818601935061375f565b61373585613c74565b60005b8381101561375757815481890152600182019150602081019050613738565b838801955050505b50505092915050565b6000613775602e83613cd9565b91506137808261406a565b604082019050919050565b6000613798602683613cd9565b91506137a3826140b9565b604082019050919050565b60006137bb602683613cd9565b91506137c682614108565b604082019050919050565b60006137de602683613cd9565b91506137e982614157565b604082019050919050565b6000613801602a83613cd9565b915061380c826141a6565b604082019050919050565b6000613824601d83613cd9565b915061382f826141f5565b602082019050919050565b6000613847600583613cea565b91506138528261421e565b600582019050919050565b600061386a602083613cd9565b915061387582614247565b602082019050919050565b600061388d602f83613cd9565b915061389882614270565b604082019050919050565b60006138b0602c83613cd9565b91506138bb826142bf565b604082019050919050565b60006138d3602983613cd9565b91506138de8261430e565b604082019050919050565b60006138f6601f83613cd9565b91506139018261435d565b602082019050919050565b6000613919603783613cd9565b915061392482614386565b604082019050919050565b61393881613e74565b82525050565b61394781613e74565b82525050565b600061395982856136e9565b915061396582846136b8565b91506139708261383a565b91508190509392505050565b600060208201905061399160008301846135ca565b92915050565b60006080820190506139ac60008301876135ca565b6139b960208301866135ca565b6139c6604083018561393e565b81810360608301526139d88184613646565b905095945050505050565b600060208201905081810360008301526139fd81846135d9565b905092915050565b6000602082019050613a1a6000830184613637565b92915050565b60006020820190508181036000830152613a3a818461367f565b905092915050565b60006020820190508181036000830152613a5b81613768565b9050919050565b60006020820190508181036000830152613a7b8161378b565b9050919050565b60006020820190508181036000830152613a9b816137ae565b9050919050565b60006020820190508181036000830152613abb816137d1565b9050919050565b60006020820190508181036000830152613adb816137f4565b9050919050565b60006020820190508181036000830152613afb81613817565b9050919050565b60006020820190508181036000830152613b1b8161385d565b9050919050565b60006020820190508181036000830152613b3b81613880565b9050919050565b60006020820190508181036000830152613b5b816138a3565b9050919050565b60006020820190508181036000830152613b7b816138c6565b9050919050565b60006020820190508181036000830152613b9b816138e9565b9050919050565b60006020820190508181036000830152613bbb8161390c565b9050919050565b6000602082019050613bd7600083018461393e565b92915050565b6000613be7613bf8565b9050613bf38282613ef2565b919050565b6000604051905090565b600067ffffffffffffffff821115613c1d57613c1c61402a565b5b613c2682614059565b9050602081019050919050565b600067ffffffffffffffff821115613c4e57613c4d61402a565b5b613c5782614059565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d0082613e74565b9150613d0b83613e74565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d4057613d3f613f9d565b5b828201905092915050565b6000613d5682613e74565b9150613d6183613e74565b925082613d7157613d70613fcc565b5b828204905092915050565b6000613d8782613e74565b9150613d9283613e74565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dcb57613dca613f9d565b5b828202905092915050565b6000613de182613e74565b9150613dec83613e74565b925082821015613dff57613dfe613f9d565b5b828203905092915050565b6000613e1582613e54565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613eab578082015181840152602081019050613e90565b83811115613eba576000848401525b50505050565b60006002820490506001821680613ed857607f821691505b60208210811415613eec57613eeb613ffb565b5b50919050565b613efb82614059565b810181811067ffffffffffffffff82111715613f1a57613f1961402a565b5b80604052505050565b6000613f2e82613e74565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f6157613f60613f9d565b5b600182019050919050565b6000613f7782613e74565b9150613f8283613e74565b925082613f9257613f91613fcc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f7520686176652073656c656374656420746f6f206d616e7920546564647960008201527f20426561727a20746f206d696e74000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f75206861766520616c7265616479206d696e74656420313020546564647960008201527f20426561727a0000000000000000000000000000000000000000000000000000602082015250565b7f546564647920426561727a205075626c69632053616c65204e6f74205965742060008201527f4163746976650000000000000000000000000000000000000000000000000000602082015250565b7f596f75206861766520616c7265616479206d696e74656420322066726565205460008201527f6564647920426561727a00000000000000000000000000000000000000000000602082015250565b7f546564647920426561727a204265796f6e64204d617820537570706c79000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f546564647920426561727a202d2043616e6e6f742062652063616c6c6564206260008201527f79206120636f6e74726163740000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820457468657265756d20666f72207175616e7469747960008201527f2073656c65637465640000000000000000000000000000000000000000000000602082015250565b7f546564647920426561727a205465616d20616c7265616479206d696e74656400600082015250565b7f596f7520686176652073656c656374656420746f6f206d616e7920546564647960008201527f20426561727a20746f206d696e7420666f722066726565000000000000000000602082015250565b6143de81613e0a565b81146143e957600080fd5b50565b6143f581613e1c565b811461440057600080fd5b50565b61440c81613e28565b811461441757600080fd5b50565b61442381613e74565b811461442e57600080fd5b5056fea264697066735822122024117f7277f28ec2586adc41c8b02ff614a676fcccafe01da3539f0e64d5327f64736f6c63430008040033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806365f1309711610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461077e578063e222c7f9146107bb578063e8b5498d146107d2578063e985e9c5146107fd578063f2fde38b1461083a5761020f565b8063a22cb465146106ec578063a59585a814610715578063b88d4fde1461073e578063ba7a86b8146107675761020f565b806383a974a2116100e757806383a974a214610612578063891084a31461063d5780638da5cb5b1461067a57806395d89b41146106a5578063a0712d68146106d05761020f565b806365f130971461056a57806370a0823114610595578063715018a6146105d2578063791a2519146105e95761020f565b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b1461048557806341cda2031461049c57806342842e0e146104c75780634f6ccce7146104f05780636352211e1461052d5761020f565b806323b872dd146103c95780632f745c59146103f257806332cb6b0c1461042f57806333bc1c5c1461045a5761020f565b806307e89ec0116101e257806307e89ec0146102d0578063081812fc146102fb578063095ea7b31461033857806318160ddd146103615780631c16521c1461038c5761020f565b806301ffc9a71461021457806302ddb65b146102515780630675b7c61461027c57806306fdde03146102a5575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906134f6565b610863565b6040516102489190613a05565b60405180910390f35b34801561025d57600080fd5b506102666109ad565b6040516102739190613bc2565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613548565b6109b3565b005b3480156102b157600080fd5b506102ba610a49565b6040516102c79190613a20565b60405180910390f35b3480156102dc57600080fd5b506102e5610adb565b6040516102f29190613bc2565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613589565b610ae1565b60405161032f919061397c565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a91906134ba565b610b5d565b005b34801561036d57600080fd5b50610376610c68565b6040516103839190613bc2565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae919061334f565b610c71565b6040516103c09190613bc2565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb91906133b4565b610c89565b005b3480156103fe57600080fd5b50610419600480360381019061041491906134ba565b610c99565b6040516104269190613bc2565b60405180910390f35b34801561043b57600080fd5b50610444610e80565b6040516104519190613bc2565b60405180910390f35b34801561046657600080fd5b5061046f610e86565b60405161047c9190613a05565b60405180910390f35b34801561049157600080fd5b5061049a610e99565b005b3480156104a857600080fd5b506104b16111cf565b6040516104be9190613bc2565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e991906133b4565b6111d4565b005b3480156104fc57600080fd5b5061051760048036038101906105129190613589565b6111f4565b6040516105249190613bc2565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190613589565b61123e565b604051610561919061397c565b60405180910390f35b34801561057657600080fd5b5061057f611254565b60405161058c9190613bc2565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b7919061334f565b61125a565b6040516105c99190613bc2565b60405180910390f35b3480156105de57600080fd5b506105e761133a565b005b3480156105f557600080fd5b50610610600480360381019061060b9190613589565b6113c2565b005b34801561061e57600080fd5b50610627611448565b60405161063491906139e3565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f919061334f565b611546565b6040516106719190613bc2565b60405180910390f35b34801561068657600080fd5b5061068f61155e565b60405161069c919061397c565b60405180910390f35b3480156106b157600080fd5b506106ba611588565b6040516106c79190613a20565b60405180910390f35b6106ea60048036038101906106e59190613589565b61161a565b005b3480156106f857600080fd5b50610713600480360381019061070e919061347e565b611b4d565b005b34801561072157600080fd5b5061073c60048036038101906107379190613589565b611cc5565b005b34801561074a57600080fd5b5061076560048036038101906107609190613403565b611d4b565b005b34801561077357600080fd5b5061077c611d9e565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613589565b611e93565b6040516107b29190613a20565b60405180910390f35b3480156107c757600080fd5b506107d0611f4d565b005b3480156107de57600080fd5b506107e7611ff5565b6040516107f49190613a05565b60405180910390f35b34801561080957600080fd5b50610824600480360381019061081f9190613378565b612008565b6040516108319190613a05565b60405180910390f35b34801561084657600080fd5b50610861600480360381019061085c919061334f565b61209c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a657506109a582612194565b5b9050919050565b61030781565b6109bb6121fe565b73ffffffffffffffffffffffffffffffffffffffff166109d961155e565b73ffffffffffffffffffffffffffffffffffffffff1614610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690613b02565b60405180910390fd5b80600a9080519060200190610a45929190613139565b5050565b606060018054610a5890613ec0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8490613ec0565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b60095481565b6000610aec82612206565b610b22576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b688261123e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bef6121fe565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c215750610c1f81610c1a6121fe565b612008565b155b15610c58576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c63838383612213565b505050565b60008054905090565b600d6020528060005260406000206000915090505481565b610c948383836122c5565b505050565b6000610ca48361125a565b8210610cdc576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610ce6610c68565b905060008060005b83811015610e40576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610de057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e325786841415610e29578195505050505050610e7a565b83806001019450505b508080600101915050610cee565b506000610e76577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b5050505b92915050565b61186a81565b600b60009054906101000a900460ff1681565b610ea16121fe565b73ffffffffffffffffffffffffffffffffffffffff16610ebf61155e565b73ffffffffffffffffffffffffffffffffffffffff1614610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90613b02565b60405180910390fd5b60006064600a47610f269190613d7c565b610f309190613d4b565b905060006064600547610f439190613d7c565b610f4d9190613d4b565b905060006064600a47610f609190613d7c565b610f6a9190613d4b565b905060006064600547610f7d9190613d7c565b610f879190613d4b565b905060008183858747610f9a9190613dd6565b610fa49190613dd6565b610fae9190613dd6565b610fb89190613dd6565b905073436dbfda9ce8d5403c05ee7f8fede7d39fde688873ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f19350505050158015611014573d6000803e3d6000fd5b5073b46ecbac66746b00a926d433eb59fffddc31558073ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f1935050505015801561106f573d6000803e3d6000fd5b50737a7be3347cc5a836c923827c2876e1b1479c7c1b73ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156110ca573d6000803e3d6000fd5b5073a6e562b7ac88b33cfc186d2146e826f43ee76bac73ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611125573d6000803e3d6000fd5b50736e2f6105f844c77864e221f47044b227ff089da773ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611180573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156111c7573d6000803e3d6000fd5b505050505050565b600281565b6111ef83838360405180602001604052806000815250611d4b565b505050565b60006111fe610c68565b8210611236576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6000611249826127ea565b600001519050919050565b60085481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112c2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113426121fe565b73ffffffffffffffffffffffffffffffffffffffff1661136061155e565b73ffffffffffffffffffffffffffffffffffffffff16146113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90613b02565b60405180910390fd5b6113c06000612972565b565b6113ca6121fe565b73ffffffffffffffffffffffffffffffffffffffff166113e861155e565b73ffffffffffffffffffffffffffffffffffffffff161461143e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143590613b02565b60405180910390fd5b8060098190555050565b60606000339050600061145a8261125a565b905060008167ffffffffffffffff81111561149e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114cc5781602001602082028036833780820191505090505b50905060005b8281101561153c576114e48482610c99565b82828151811061151d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061153490613f23565b9150506114d2565b5080935050505090565b600c6020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461159790613ec0565b80601f01602080910402602001604051908101604052809291908181526020018280546115c390613ec0565b80156116105780601f106115e557610100808354040283529160200191611610565b820191906000526020600020905b8154815290600101906020018083116115f357829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90613b42565b60405180910390fd5b600b60009054906101000a900460ff166116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613aa2565b60405180910390fd5b6000816116e2610c68565b6116ec9190613cf5565b905061186a8110611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990613ae2565b60405180910390fd5b60006103078211159050801561191957600160026117509190613cf5565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106117d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c790613ac2565b60405180910390fd5b600160026117de9190613cf5565b83600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118299190613cf5565b10611869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186090613ba2565b60405180910390fd5b600160026118779190613cf5565b83106118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90613ba2565b60405180910390fd5b82600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119079190613cf5565b925050819055506119183384612a38565b5b80611b4857600160085461192d9190613cf5565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490613a82565b60405180910390fd5b60016008546119bc9190613cf5565b83600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a079190613cf5565b10611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90613a42565b60405180910390fd5b6001600854611a569190613cf5565b8310611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e90613a42565b60405180910390fd5b82600954611aa59190613d7c565b341015611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade90613b62565b60405180910390fd5b82600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b369190613cf5565b92505081905550611b473384612a38565b5b505050565b611b556121fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bba576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611bc76121fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c746121fe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cb99190613a05565b60405180910390a35050565b611ccd6121fe565b73ffffffffffffffffffffffffffffffffffffffff16611ceb61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3890613b02565b60405180910390fd5b8060088190555050565b611d568484846122c5565b611d6284848484612a56565b611d98576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611da66121fe565b73ffffffffffffffffffffffffffffffffffffffff16611dc461155e565b73ffffffffffffffffffffffffffffffffffffffff1614611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1190613b02565b60405180910390fd5b600b60019054906101000a900460ff1615611e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6190613b82565b60405180910390fd5b6001600b60016101000a81548160ff021916908315150217905550611e9133610113612a38565b565b6060611e9e82612206565b611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed490613b22565b60405180910390fd5b6000600183611eec9190613cf5565b90506000600a8054611efd90613ec0565b905011611f195760405180602001604052806000815250611f45565b600a611f2482612be4565b604051602001611f3592919061394d565b6040516020818303038152906040525b915050919050565b611f556121fe565b73ffffffffffffffffffffffffffffffffffffffff16611f7361155e565b73ffffffffffffffffffffffffffffffffffffffff1614611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc090613b02565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600b60019054906101000a900460ff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120a46121fe565b73ffffffffffffffffffffffffffffffffffffffff166120c261155e565b73ffffffffffffffffffffffffffffffffffffffff1614612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f90613b02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217f90613a62565b60405180910390fd5b61219181612972565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006122d0826127ea565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122f76121fe565b73ffffffffffffffffffffffffffffffffffffffff161480612353575061231c6121fe565b73ffffffffffffffffffffffffffffffffffffffff1661233b84610ae1565b73ffffffffffffffffffffffffffffffffffffffff16145b8061236f575061236e82600001516123696121fe565b612008565b5b9050806123a8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612411576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612478576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124858585856001612d91565b6124956000848460000151612213565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561277a576126d981612206565b156127795782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127e38585856001612d97565b5050505050565b6127f26131bf565b6127fb82612206565b612831576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b6000811061293a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461292b57809250505061296d565b50808060019003915050612837565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a52828260405180602001604052806000815250612d9d565b5050565b6000612a778473ffffffffffffffffffffffffffffffffffffffff16612daf565b15612bd7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa06121fe565b8786866040518563ffffffff1660e01b8152600401612ac29493929190613997565b602060405180830381600087803b158015612adc57600080fd5b505af1925050508015612b0d57506040513d601f19601f82011682018060405250810190612b0a919061351f565b60015b612b87573d8060008114612b3d576040519150601f19603f3d011682016040523d82523d6000602084013e612b42565b606091505b50600081511415612b7f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bdc565b600190505b949350505050565b60606000821415612c2c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d8c565b600082905060005b60008214612c5e578080612c4790613f23565b915050600a82612c579190613d4b565b9150612c34565b60008167ffffffffffffffff811115612ca0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612cd25781602001600182028036833780820191505090505b5090505b60008514612d8557600182612ceb9190613dd6565b9150600a85612cfa9190613f6c565b6030612d069190613cf5565b60f81b818381518110612d42577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d7e9190613d4b565b9450612cd6565b8093505050505b919050565b50505050565b50505050565b612daa8383836001612dd2565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e3f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612e7a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e876000868387612d91565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561311c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156130d057506130ce6000888488612a56565b155b15613107576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613055565b5080600081905550506131326000868387612d97565b5050505050565b82805461314590613ec0565b90600052602060002090601f01602090048101928261316757600085556131ae565b82601f1061318057805160ff19168380011785556131ae565b828001600101855582156131ae579182015b828111156131ad578251825591602001919060010190613192565b5b5090506131bb91906131f9565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156132125760008160009055506001016131fa565b5090565b600061322961322484613c02565b613bdd565b90508281526020810184848401111561324157600080fd5b61324c848285613e7e565b509392505050565b600061326761326284613c33565b613bdd565b90508281526020810184848401111561327f57600080fd5b61328a848285613e7e565b509392505050565b6000813590506132a1816143d5565b92915050565b6000813590506132b6816143ec565b92915050565b6000813590506132cb81614403565b92915050565b6000815190506132e081614403565b92915050565b600082601f8301126132f757600080fd5b8135613307848260208601613216565b91505092915050565b600082601f83011261332157600080fd5b8135613331848260208601613254565b91505092915050565b6000813590506133498161441a565b92915050565b60006020828403121561336157600080fd5b600061336f84828501613292565b91505092915050565b6000806040838503121561338b57600080fd5b600061339985828601613292565b92505060206133aa85828601613292565b9150509250929050565b6000806000606084860312156133c957600080fd5b60006133d786828701613292565b93505060206133e886828701613292565b92505060406133f98682870161333a565b9150509250925092565b6000806000806080858703121561341957600080fd5b600061342787828801613292565b945050602061343887828801613292565b93505060406134498782880161333a565b925050606085013567ffffffffffffffff81111561346657600080fd5b613472878288016132e6565b91505092959194509250565b6000806040838503121561349157600080fd5b600061349f85828601613292565b92505060206134b0858286016132a7565b9150509250929050565b600080604083850312156134cd57600080fd5b60006134db85828601613292565b92505060206134ec8582860161333a565b9150509250929050565b60006020828403121561350857600080fd5b6000613516848285016132bc565b91505092915050565b60006020828403121561353157600080fd5b600061353f848285016132d1565b91505092915050565b60006020828403121561355a57600080fd5b600082013567ffffffffffffffff81111561357457600080fd5b61358084828501613310565b91505092915050565b60006020828403121561359b57600080fd5b60006135a98482850161333a565b91505092915050565b60006135be838361392f565b60208301905092915050565b6135d381613e0a565b82525050565b60006135e482613c89565b6135ee8185613cb7565b93506135f983613c64565b8060005b8381101561362a57815161361188826135b2565b975061361c83613caa565b9250506001810190506135fd565b5085935050505092915050565b61364081613e1c565b82525050565b600061365182613c94565b61365b8185613cc8565b935061366b818560208601613e8d565b61367481614059565b840191505092915050565b600061368a82613c9f565b6136948185613cd9565b93506136a4818560208601613e8d565b6136ad81614059565b840191505092915050565b60006136c382613c9f565b6136cd8185613cea565b93506136dd818560208601613e8d565b80840191505092915050565b600081546136f681613ec0565b6137008186613cea565b9450600182166000811461371b576001811461372c5761375f565b60ff1983168652818601935061375f565b61373585613c74565b60005b8381101561375757815481890152600182019150602081019050613738565b838801955050505b50505092915050565b6000613775602e83613cd9565b91506137808261406a565b604082019050919050565b6000613798602683613cd9565b91506137a3826140b9565b604082019050919050565b60006137bb602683613cd9565b91506137c682614108565b604082019050919050565b60006137de602683613cd9565b91506137e982614157565b604082019050919050565b6000613801602a83613cd9565b915061380c826141a6565b604082019050919050565b6000613824601d83613cd9565b915061382f826141f5565b602082019050919050565b6000613847600583613cea565b91506138528261421e565b600582019050919050565b600061386a602083613cd9565b915061387582614247565b602082019050919050565b600061388d602f83613cd9565b915061389882614270565b604082019050919050565b60006138b0602c83613cd9565b91506138bb826142bf565b604082019050919050565b60006138d3602983613cd9565b91506138de8261430e565b604082019050919050565b60006138f6601f83613cd9565b91506139018261435d565b602082019050919050565b6000613919603783613cd9565b915061392482614386565b604082019050919050565b61393881613e74565b82525050565b61394781613e74565b82525050565b600061395982856136e9565b915061396582846136b8565b91506139708261383a565b91508190509392505050565b600060208201905061399160008301846135ca565b92915050565b60006080820190506139ac60008301876135ca565b6139b960208301866135ca565b6139c6604083018561393e565b81810360608301526139d88184613646565b905095945050505050565b600060208201905081810360008301526139fd81846135d9565b905092915050565b6000602082019050613a1a6000830184613637565b92915050565b60006020820190508181036000830152613a3a818461367f565b905092915050565b60006020820190508181036000830152613a5b81613768565b9050919050565b60006020820190508181036000830152613a7b8161378b565b9050919050565b60006020820190508181036000830152613a9b816137ae565b9050919050565b60006020820190508181036000830152613abb816137d1565b9050919050565b60006020820190508181036000830152613adb816137f4565b9050919050565b60006020820190508181036000830152613afb81613817565b9050919050565b60006020820190508181036000830152613b1b8161385d565b9050919050565b60006020820190508181036000830152613b3b81613880565b9050919050565b60006020820190508181036000830152613b5b816138a3565b9050919050565b60006020820190508181036000830152613b7b816138c6565b9050919050565b60006020820190508181036000830152613b9b816138e9565b9050919050565b60006020820190508181036000830152613bbb8161390c565b9050919050565b6000602082019050613bd7600083018461393e565b92915050565b6000613be7613bf8565b9050613bf38282613ef2565b919050565b6000604051905090565b600067ffffffffffffffff821115613c1d57613c1c61402a565b5b613c2682614059565b9050602081019050919050565b600067ffffffffffffffff821115613c4e57613c4d61402a565b5b613c5782614059565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d0082613e74565b9150613d0b83613e74565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d4057613d3f613f9d565b5b828201905092915050565b6000613d5682613e74565b9150613d6183613e74565b925082613d7157613d70613fcc565b5b828204905092915050565b6000613d8782613e74565b9150613d9283613e74565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dcb57613dca613f9d565b5b828202905092915050565b6000613de182613e74565b9150613dec83613e74565b925082821015613dff57613dfe613f9d565b5b828203905092915050565b6000613e1582613e54565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613eab578082015181840152602081019050613e90565b83811115613eba576000848401525b50505050565b60006002820490506001821680613ed857607f821691505b60208210811415613eec57613eeb613ffb565b5b50919050565b613efb82614059565b810181811067ffffffffffffffff82111715613f1a57613f1961402a565b5b80604052505050565b6000613f2e82613e74565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f6157613f60613f9d565b5b600182019050919050565b6000613f7782613e74565b9150613f8283613e74565b925082613f9257613f91613fcc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f7520686176652073656c656374656420746f6f206d616e7920546564647960008201527f20426561727a20746f206d696e74000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f75206861766520616c7265616479206d696e74656420313020546564647960008201527f20426561727a0000000000000000000000000000000000000000000000000000602082015250565b7f546564647920426561727a205075626c69632053616c65204e6f74205965742060008201527f4163746976650000000000000000000000000000000000000000000000000000602082015250565b7f596f75206861766520616c7265616479206d696e74656420322066726565205460008201527f6564647920426561727a00000000000000000000000000000000000000000000602082015250565b7f546564647920426561727a204265796f6e64204d617820537570706c79000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f546564647920426561727a202d2043616e6e6f742062652063616c6c6564206260008201527f79206120636f6e74726163740000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820457468657265756d20666f72207175616e7469747960008201527f2073656c65637465640000000000000000000000000000000000000000000000602082015250565b7f546564647920426561727a205465616d20616c7265616479206d696e74656400600082015250565b7f596f7520686176652073656c656374656420746f6f206d616e7920546564647960008201527f20426561727a20746f206d696e7420666f722066726565000000000000000000602082015250565b6143de81613e0a565b81146143e957600080fd5b50565b6143f581613e1c565b811461440057600080fd5b50565b61440c81613e28565b811461441757600080fd5b50565b61442381613e74565b811461442e57600080fd5b5056fea264697066735822122024117f7277f28ec2586adc41c8b02ff614a676fcccafe01da3539f0e64d5327f64736f6c63430008040033

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.