ETH Price: $3,376.71 (-1.96%)
Gas: 2 Gwei

Token

Good Kidz (GDZ)
 

Overview

Max Total Supply

3,000 GDZ

Holders

973

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
inthearenatryingthings.eth
Balance
5 GDZ
0xb6d19afe6de6c1ab49b964e202ebbf6b8e590a33
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:
GoodKidz

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : GoodKidz.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

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

//   ___   ___    ___   ___         _  __ ___  ___   ____
//  / __| / _ \  / _ \ |   \       | |/ /|_ _||   \ |_  /
// | (_ || (_) || (_) || |) |      |   <  | | | |) | / / 
//  \___| \___/  \___/ |___/       |_|\_\|___||___/ /___|
//

// Contract by @txorigin

contract GoodKidz is Ownable, ERC721A {
    uint256 public maxSupply                    = 5555;
    uint256 public maxFreeSupply                = 2500;
    
    uint256 public maxPerTxDuringMint           = 5;
    uint256 public maxPerAddressDuringMint      = 10;
    uint256 public maxPerAddressDuringFreeMint  = 3;
    
    uint256 public price                        = 0.005 ether;
    bool    public saleIsActive                 = false;

    address constant internal DEV_ADDRESS  = 0xDEADd426B0EC914b636121C5F3973F095D3Fa666;
    address constant internal TEAM_ADDRESS = 0x5e11eaBE10594d941E3826f91dbeaBF53fAec092;

    string private _baseTokenURI;

    mapping(address => uint256) public freeMintedAmount;
    mapping(address => uint256) public mintedAmount;

    constructor() ERC721A("Good Kidz", "GDZ") {
        _safeMint(msg.sender, 1);
    }

    modifier mintCompliance() {
        require(saleIsActive, "Sale is not active yet.");
        require(tx.origin == msg.sender, "Caller cannot be a contract.");
        _;
    }

    function mint(uint256 _quantity) external payable mintCompliance() {
        require(
            maxSupply >= totalSupply() + _quantity,
            "GDZ: Exceeds max supply."
        );
        uint256 _mintedAmount = mintedAmount[msg.sender];
        require(
            _mintedAmount + _quantity <= maxPerAddressDuringMint,
            "GDZ: Exceeds max mints per address!"
        );
        require(
            _quantity > 0 && _quantity <= maxPerTxDuringMint,
            "Invalid mint amount."
        );
        mintedAmount[msg.sender] = _mintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
        refundIfOver(price * _quantity);
    }

    function freeMint(uint256 _quantity) external mintCompliance() {
        require(
            maxFreeSupply >= totalSupply() + _quantity, 
            "GDZ: Exceeds max free supply."
        );
        uint256 _freeMintedAmount = freeMintedAmount[msg.sender];
        require(
            _freeMintedAmount + _quantity <= maxPerAddressDuringFreeMint,
            "GDZ: Exceeds max free mints per address!"
        );
        freeMintedAmount[msg.sender] = _freeMintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function refundIfOver(uint256 _price) private {
        require(msg.value >= _price, "Not enough ETH sent.");
        if (msg.value > _price) {
            payable(msg.sender).transfer(msg.value - _price);
        }
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setMaxPerTx(uint256 _amount) external onlyOwner {
        maxPerTxDuringMint = _amount;
    }

    function setMaxPerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringMint = _amount;
    }

    function setMaxFreePerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringFreeMint = _amount;
    }

    function flipSale() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function cutMaxSupply(uint256 _amount) public onlyOwner {
        require(
            maxSupply - _amount >= totalSupply(), 
            "Supply cannot fall below minted tokens."
        );
        maxSupply -= _amount;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    function withdrawBalance() external payable onlyOwner {
        uint256 _balance = address(this).balance;

        (bool success, ) = payable(DEV_ADDRESS).call{
            value: (_balance * 1900) / 10000
        }("");
        require(success, "Dev transfer failed.");

        (success, ) = payable(TEAM_ADDRESS).call{
            value: address(this).balance
        }("");
        require(success, "Team transfer failed.");
    }
}

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 BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /// @dev Returns the tokenIds of the address. O(totalSupply) in complexity.
    function tokensOfOwner(address owner) external view returns (uint256[] memory) {
        unchecked {
            uint256[] memory a = new uint256[](balanceOf(owner)); 
            uint256 end = _currentIndex;
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            for (uint256 i; i < end; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    a[tokenIdsIdx++] = i;
                }
            }
            return a;    
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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 virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(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 _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    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 > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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
    ) internal {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal returns (bool) {
        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))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":[{"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":"_amount","type":"uint256"}],"name":"cutMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","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":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526115b36009556109c4600a556005600b55600a600c556003600d556611c37937e08000600e556000600f60006101000a81548160ff0219169083151502179055503480156200005257600080fd5b506040518060400160405280600981526020017f476f6f64204b69647a00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f47445a0000000000000000000000000000000000000000000000000000000000815250620000df620000d36200014260201b60201c565b6200014a60201b60201c565b8160039080519060200190620000f7929190620007e0565b50806004908051906020019062000110929190620007e0565b50620001216200020e60201b60201c565b60018190555050506200013c3360016200021760201b60201c565b62000ae0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b620002398282604051806020016040528060008152506200023d60201b60201c565b5050565b6200025283838360016200025760201b60201c565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603620002c5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840362000300576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200031560008683876200065060201b60201c565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015620004ed5750620004ec8773ffffffffffffffffffffffffffffffffffffffff166200065660201b62001f3a1760201c565b5b15620005bf575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200056b60008884806001019550886200067960201b60201c565b620005a2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203620004f4578260015414620005b957600080fd5b6200062b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203620005c0575b816001819055505050620006496000868387620007da60201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006a76200014260201b60201c565b8786866040518563ffffffff1660e01b8152600401620006cb949392919062000994565b6020604051808303816000875af19250505080156200070a57506040513d601f19601f8201168201806040525081019062000707919062000a4a565b60015b62000787573d80600081146200073d576040519150601f19603f3d011682016040523d82523d6000602084013e62000742565b606091505b5060008151036200077f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620007ee9062000aab565b90600052602060002090601f0160209004810192826200081257600085556200085e565b82601f106200082d57805160ff19168380011785556200085e565b828001600101855582156200085e579182015b828111156200085d57825182559160200191906001019062000840565b5b5090506200086d919062000871565b5090565b5b808211156200088c57600081600090555060010162000872565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008bd8262000890565b9050919050565b620008cf81620008b0565b82525050565b6000819050919050565b620008ea81620008d5565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200092c5780820151818401526020810190506200090f565b838111156200093c576000848401525b50505050565b6000601f19601f8301169050919050565b60006200096082620008f0565b6200096c8185620008fb565b93506200097e8185602086016200090c565b620009898162000942565b840191505092915050565b6000608082019050620009ab6000830187620008c4565b620009ba6020830186620008c4565b620009c96040830185620008df565b8181036060830152620009dd818462000953565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000a2481620009ed565b811462000a3057600080fd5b50565b60008151905062000a448162000a19565b92915050565b60006020828403121562000a635762000a62620009e8565b5b600062000a738482850162000a33565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ac457607f821691505b60208210810362000ada5762000ad962000a7c565b5b50919050565b6143888062000af06000396000f3fe60806040526004361061021a5760003560e01c80638462151c11610123578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb011461078d578063e985e9c5146107b8578063eb8d2444146107f5578063f2fde38b14610820578063fbbf8cc3146108495761021a565b8063b88d4fde146106aa578063bbb64319146106d3578063c6f6f216146106fc578063c87b56dd14610725578063d3464cbd146107625761021a565b806395d89b41116100f257806395d89b41146105d257806396b10201146105fd578063a035b1fe1461063a578063a0712d6814610665578063a22cb465146106815761021a565b80638462151c146105165780638bc35c2f146105535780638da5cb5b1461057e57806391b7f5ed146105a95761021a565b806347513334116101a657806370a082311161017557806370a0823114610459578063715018a6146104965780637ba5e621146104ad5780637bddd65b146104c45780637c928fe9146104ed5761021a565b806347513334146103be57806355f804b3146103e95780635fd8c710146104125780636352211e1461041c5761021a565b80631141df20116101ed5780631141df20146102ed57806318160ddd1461031657806323b872dd146103415780632e0fd6eb1461036a57806342842e0e146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613256565b610886565b604051610253919061329e565b60405180910390f35b34801561026857600080fd5b50610271610968565b60405161027e9190613352565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906133aa565b6109fa565b6040516102bb9190613418565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061345f565b610a76565b005b3480156102f957600080fd5b50610314600480360381019061030f91906133aa565b610b80565b005b34801561032257600080fd5b5061032b610c6f565b60405161033891906134ae565b60405180910390f35b34801561034d57600080fd5b50610368600480360381019061036391906134c9565b610c86565b005b34801561037657600080fd5b5061037f610c96565b60405161038c91906134ae565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906134c9565b610c9c565b005b3480156103ca57600080fd5b506103d3610cbc565b6040516103e091906134ae565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190613581565b610cc2565b005b61041a610d54565b005b34801561042857600080fd5b50610443600480360381019061043e91906133aa565b610f73565b6040516104509190613418565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b91906135ce565b610f89565b60405161048d91906134ae565b60405180910390f35b3480156104a257600080fd5b506104ab611058565b005b3480156104b957600080fd5b506104c26110e0565b005b3480156104d057600080fd5b506104eb60048036038101906104e691906133aa565b611188565b005b3480156104f957600080fd5b50610514600480360381019061050f91906133aa565b61120e565b005b34801561052257600080fd5b5061053d600480360381019061053891906135ce565b611413565b60405161054a91906136b9565b60405180910390f35b34801561055f57600080fd5b5061056861160a565b60405161057591906134ae565b60405180910390f35b34801561058a57600080fd5b50610593611610565b6040516105a09190613418565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb91906133aa565b611639565b005b3480156105de57600080fd5b506105e76116bf565b6040516105f49190613352565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f91906135ce565b611751565b60405161063191906134ae565b60405180910390f35b34801561064657600080fd5b5061064f611769565b60405161065c91906134ae565b60405180910390f35b61067f600480360381019061067a91906133aa565b61176f565b005b34801561068d57600080fd5b506106a860048036038101906106a39190613707565b6119db565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190613877565b611b52565b005b3480156106df57600080fd5b506106fa60048036038101906106f591906133aa565b611bce565b005b34801561070857600080fd5b50610723600480360381019061071e91906133aa565b611c54565b005b34801561073157600080fd5b5061074c600480360381019061074791906133aa565b611cda565b6040516107599190613352565b60405180910390f35b34801561076e57600080fd5b50610777611d78565b60405161078491906134ae565b60405180910390f35b34801561079957600080fd5b506107a2611d7e565b6040516107af91906134ae565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da91906138fa565b611d84565b6040516107ec919061329e565b60405180910390f35b34801561080157600080fd5b5061080a611e18565b604051610817919061329e565b60405180910390f35b34801561082c57600080fd5b50610847600480360381019061084291906135ce565b611e2b565b005b34801561085557600080fd5b50610870600480360381019061086b91906135ce565b611f22565b60405161087d91906134ae565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610961575061096082611f5d565b5b9050919050565b60606003805461097790613969565b80601f01602080910402602001604051908101604052809291908181526020018280546109a390613969565b80156109f05780601f106109c5576101008083540402835291602001916109f0565b820191906000526020600020905b8154815290600101906020018083116109d357829003601f168201915b5050505050905090565b6000610a0582611fc7565b610a3b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8182610f73565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ae8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b07612015565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b395750610b3781610b32612015565b611d84565b155b15610b70576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b7b83838361201d565b505050565b610b88612015565b73ffffffffffffffffffffffffffffffffffffffff16610ba6611610565b73ffffffffffffffffffffffffffffffffffffffff1614610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf3906139e6565b60405180910390fd5b610c04610c6f565b81600954610c129190613a35565b1015610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90613adb565b60405180910390fd5b8060096000828254610c659190613a35565b9250508190555050565b6000610c796120cf565b6002546001540303905090565b610c918383836120d8565b505050565b600d5481565b610cb783838360405180602001604052806000815250611b52565b505050565b600a5481565b610cca612015565b73ffffffffffffffffffffffffffffffffffffffff16610ce8611610565b73ffffffffffffffffffffffffffffffffffffffff1614610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d35906139e6565b60405180910390fd5b818160109190610d4f929190613104565b505050565b610d5c612015565b73ffffffffffffffffffffffffffffffffffffffff16610d7a611610565b73ffffffffffffffffffffffffffffffffffffffff1614610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc7906139e6565b60405180910390fd5b6000479050600073deadd426b0ec914b636121c5f3973f095d3fa66673ffffffffffffffffffffffffffffffffffffffff1661271061076c84610e139190613afb565b610e1d9190613b84565b604051610e2990613be6565b60006040518083038185875af1925050503d8060008114610e66576040519150601f19603f3d011682016040523d82523d6000602084013e610e6b565b606091505b5050905080610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613c47565b60405180910390fd5b735e11eabe10594d941e3826f91dbeabf53faec09273ffffffffffffffffffffffffffffffffffffffff1647604051610ee790613be6565b60006040518083038185875af1925050503d8060008114610f24576040519150601f19603f3d011682016040523d82523d6000602084013e610f29565b606091505b50508091505080610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6690613cb3565b60405180910390fd5b5050565b6000610f7e826125c7565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ff0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611060612015565b73ffffffffffffffffffffffffffffffffffffffff1661107e611610565b73ffffffffffffffffffffffffffffffffffffffff16146110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb906139e6565b60405180910390fd5b6110de6000612856565b565b6110e8612015565b73ffffffffffffffffffffffffffffffffffffffff16611106611610565b73ffffffffffffffffffffffffffffffffffffffff161461115c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611153906139e6565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611190612015565b73ffffffffffffffffffffffffffffffffffffffff166111ae611610565b73ffffffffffffffffffffffffffffffffffffffff1614611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb906139e6565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff1661125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613d1f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290613d8b565b60405180910390fd5b806112d4610c6f565b6112de9190613dab565b600a541015611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613e4d565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d5482826113759190613dab565b11156113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90613edf565b60405180910390fd5b81816113c29190613dab565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061140f338361291a565b5050565b6060600061142083610f89565b67ffffffffffffffff8111156114395761143861374c565b5b6040519080825280602002602001820160405280156114675781602001602082028036833780820191505090505b5090506000600154905060008060005b838110156115fd576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561155457506115f0565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461159457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115ee57818685806001019650815181106115e1576115e0613eff565b5b6020026020010181815250505b505b8080600101915050611477565b5083945050505050919050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611641612015565b73ffffffffffffffffffffffffffffffffffffffff1661165f611610565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac906139e6565b60405180910390fd5b80600e8190555050565b6060600480546116ce90613969565b80601f01602080910402602001604051908101604052809291908181526020018280546116fa90613969565b80156117475780601f1061171c57610100808354040283529160200191611747565b820191906000526020600020905b81548152906001019060200180831161172a57829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff166117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590613d1f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390613d8b565b60405180910390fd5b80611835610c6f565b61183f9190613dab565b6009541015611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a90613f7a565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c5482826118d69190613dab565b1115611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e9061400c565b60405180910390fd5b6000821180156119295750600b548211155b611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f90614078565b60405180910390fd5b81816119749190613dab565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119c1338361291a565b6119d782600e546119d29190613afb565b612938565b5050565b6119e3612015565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a47576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611a54612015565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b01612015565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b46919061329e565b60405180910390a35050565b611b5d8484846120d8565b611b7c8373ffffffffffffffffffffffffffffffffffffffff16611f3a565b8015611b915750611b8f848484846129d9565b155b15611bc8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611bd6612015565b73ffffffffffffffffffffffffffffffffffffffff16611bf4611610565b73ffffffffffffffffffffffffffffffffffffffff1614611c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c41906139e6565b60405180910390fd5b80600d8190555050565b611c5c612015565b73ffffffffffffffffffffffffffffffffffffffff16611c7a611610565b73ffffffffffffffffffffffffffffffffffffffff1614611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc7906139e6565b60405180910390fd5b80600b8190555050565b6060611ce582611fc7565b611d1b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611d25612b29565b90506000815103611d455760405180602001604052806000815250611d70565b80611d4f84612bbb565b604051602001611d609291906140d4565b6040516020818303038152906040525b915050919050565b600b5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611e33612015565b73ffffffffffffffffffffffffffffffffffffffff16611e51611610565b73ffffffffffffffffffffffffffffffffffffffff1614611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e906139e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d9061416a565b60405180910390fd5b611f1f81612856565b50565b60126020528060005260406000206000915090505481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611fd26120cf565b11158015611fe1575060015482105b801561200e575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006120e3826125c7565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661210a612015565b73ffffffffffffffffffffffffffffffffffffffff16148061213d575061213c8260000151612137612015565b611d84565b5b80612182575061214b612015565b73ffffffffffffffffffffffffffffffffffffffff1661216a846109fa565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806121bb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612224576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361228a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122978585856001612d1b565b6122a7600084846000015161201d565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612557576001548110156125565782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125c08585856001612d21565b5050505050565b6125cf61318a565b6000829050806125dd6120cf565b111580156125ec575060015481105b1561281f576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161281d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612701578092505050612851565b5b60011561281c57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612817578092505050612851565b612702565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612934828260405180602001604052806000815250612d27565b5050565b8034101561297b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612972906141d6565b60405180910390fd5b803411156129d6573373ffffffffffffffffffffffffffffffffffffffff166108fc82346129a99190613a35565b9081150290604051600060405180830381858888f193505050501580156129d4573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129ff612015565b8786866040518563ffffffff1660e01b8152600401612a21949392919061424b565b6020604051808303816000875af1925050508015612a5d57506040513d601f19601f82011682018060405250810190612a5a91906142ac565b60015b612ad6573d8060008114612a8d576040519150601f19603f3d011682016040523d82523d6000602084013e612a92565b606091505b506000815103612ace576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060108054612b3890613969565b80601f0160208091040260200160405190810160405280929190818152602001828054612b6490613969565b8015612bb15780601f10612b8657610100808354040283529160200191612bb1565b820191906000526020600020905b815481529060010190602001808311612b9457829003601f168201915b5050505050905090565b606060008203612c02576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d16565b600082905060005b60008214612c34578080612c1d906142d9565b915050600a82612c2d9190613b84565b9150612c0a565b60008167ffffffffffffffff811115612c5057612c4f61374c565b5b6040519080825280601f01601f191660200182016040528015612c825781602001600182028036833780820191505090505b5090505b60008514612d0f57600182612c9b9190613a35565b9150600a85612caa9190614321565b6030612cb69190613dab565b60f81b818381518110612ccc57612ccb613eff565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d089190613b84565b9450612c86565b8093505050505b919050565b50505050565b50505050565b612d348383836001612d39565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612da6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612de0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ded6000868387612d1b565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612fb75750612fb68773ffffffffffffffffffffffffffffffffffffffff16611f3a565b5b1561307c575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461302c60008884806001019550886129d9565b613062576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612fbd57826001541461307757600080fd5b6130e7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361307d575b8160018190555050506130fd6000868387612d21565b5050505050565b82805461311090613969565b90600052602060002090601f0160209004810192826131325760008555613179565b82601f1061314b57803560ff1916838001178555613179565b82800160010185558215613179579182015b8281111561317857823582559160200191906001019061315d565b5b50905061318691906131cd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156131e65760008160009055506001016131ce565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613233816131fe565b811461323e57600080fd5b50565b6000813590506132508161322a565b92915050565b60006020828403121561326c5761326b6131f4565b5b600061327a84828501613241565b91505092915050565b60008115159050919050565b61329881613283565b82525050565b60006020820190506132b3600083018461328f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132f35780820151818401526020810190506132d8565b83811115613302576000848401525b50505050565b6000601f19601f8301169050919050565b6000613324826132b9565b61332e81856132c4565b935061333e8185602086016132d5565b61334781613308565b840191505092915050565b6000602082019050818103600083015261336c8184613319565b905092915050565b6000819050919050565b61338781613374565b811461339257600080fd5b50565b6000813590506133a48161337e565b92915050565b6000602082840312156133c0576133bf6131f4565b5b60006133ce84828501613395565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613402826133d7565b9050919050565b613412816133f7565b82525050565b600060208201905061342d6000830184613409565b92915050565b61343c816133f7565b811461344757600080fd5b50565b60008135905061345981613433565b92915050565b60008060408385031215613476576134756131f4565b5b60006134848582860161344a565b925050602061349585828601613395565b9150509250929050565b6134a881613374565b82525050565b60006020820190506134c3600083018461349f565b92915050565b6000806000606084860312156134e2576134e16131f4565b5b60006134f08682870161344a565b93505060206135018682870161344a565b925050604061351286828701613395565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126135415761354061351c565b5b8235905067ffffffffffffffff81111561355e5761355d613521565b5b60208301915083600182028301111561357a57613579613526565b5b9250929050565b60008060208385031215613598576135976131f4565b5b600083013567ffffffffffffffff8111156135b6576135b56131f9565b5b6135c28582860161352b565b92509250509250929050565b6000602082840312156135e4576135e36131f4565b5b60006135f28482850161344a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61363081613374565b82525050565b60006136428383613627565b60208301905092915050565b6000602082019050919050565b6000613666826135fb565b6136708185613606565b935061367b83613617565b8060005b838110156136ac5781516136938882613636565b975061369e8361364e565b92505060018101905061367f565b5085935050505092915050565b600060208201905081810360008301526136d3818461365b565b905092915050565b6136e481613283565b81146136ef57600080fd5b50565b600081359050613701816136db565b92915050565b6000806040838503121561371e5761371d6131f4565b5b600061372c8582860161344a565b925050602061373d858286016136f2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61378482613308565b810181811067ffffffffffffffff821117156137a3576137a261374c565b5b80604052505050565b60006137b66131ea565b90506137c2828261377b565b919050565b600067ffffffffffffffff8211156137e2576137e161374c565b5b6137eb82613308565b9050602081019050919050565b82818337600083830152505050565b600061381a613815846137c7565b6137ac565b90508281526020810184848401111561383657613835613747565b5b6138418482856137f8565b509392505050565b600082601f83011261385e5761385d61351c565b5b813561386e848260208601613807565b91505092915050565b60008060008060808587031215613891576138906131f4565b5b600061389f8782880161344a565b94505060206138b08782880161344a565b93505060406138c187828801613395565b925050606085013567ffffffffffffffff8111156138e2576138e16131f9565b5b6138ee87828801613849565b91505092959194509250565b60008060408385031215613911576139106131f4565b5b600061391f8582860161344a565b92505060206139308582860161344a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061398157607f821691505b6020821081036139945761399361393a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139d06020836132c4565b91506139db8261399a565b602082019050919050565b600060208201905081810360008301526139ff816139c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a4082613374565b9150613a4b83613374565b925082821015613a5e57613a5d613a06565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b6000613ac56027836132c4565b9150613ad082613a69565b604082019050919050565b60006020820190508181036000830152613af481613ab8565b9050919050565b6000613b0682613374565b9150613b1183613374565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b4a57613b49613a06565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b8f82613374565b9150613b9a83613374565b925082613baa57613ba9613b55565b5b828204905092915050565b600081905092915050565b50565b6000613bd0600083613bb5565b9150613bdb82613bc0565b600082019050919050565b6000613bf182613bc3565b9150819050919050565b7f446576207472616e73666572206661696c65642e000000000000000000000000600082015250565b6000613c316014836132c4565b9150613c3c82613bfb565b602082019050919050565b60006020820190508181036000830152613c6081613c24565b9050919050565b7f5465616d207472616e73666572206661696c65642e0000000000000000000000600082015250565b6000613c9d6015836132c4565b9150613ca882613c67565b602082019050919050565b60006020820190508181036000830152613ccc81613c90565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b6000613d096017836132c4565b9150613d1482613cd3565b602082019050919050565b60006020820190508181036000830152613d3881613cfc565b9050919050565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b6000613d75601c836132c4565b9150613d8082613d3f565b602082019050919050565b60006020820190508181036000830152613da481613d68565b9050919050565b6000613db682613374565b9150613dc183613374565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613df657613df5613a06565b5b828201905092915050565b7f47445a3a2045786365656473206d6178206672656520737570706c792e000000600082015250565b6000613e37601d836132c4565b9150613e4282613e01565b602082019050919050565b60006020820190508181036000830152613e6681613e2a565b9050919050565b7f47445a3a2045786365656473206d61782066726565206d696e7473207065722060008201527f6164647265737321000000000000000000000000000000000000000000000000602082015250565b6000613ec96028836132c4565b9150613ed482613e6d565b604082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f47445a3a2045786365656473206d617820737570706c792e0000000000000000600082015250565b6000613f646018836132c4565b9150613f6f82613f2e565b602082019050919050565b60006020820190508181036000830152613f9381613f57565b9050919050565b7f47445a3a2045786365656473206d6178206d696e74732070657220616464726560008201527f7373210000000000000000000000000000000000000000000000000000000000602082015250565b6000613ff66023836132c4565b915061400182613f9a565b604082019050919050565b6000602082019050818103600083015261402581613fe9565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b60006140626014836132c4565b915061406d8261402c565b602082019050919050565b6000602082019050818103600083015261409181614055565b9050919050565b600081905092915050565b60006140ae826132b9565b6140b88185614098565b93506140c88185602086016132d5565b80840191505092915050565b60006140e082856140a3565b91506140ec82846140a3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006141546026836132c4565b915061415f826140f8565b604082019050919050565b6000602082019050818103600083015261418381614147565b9050919050565b7f4e6f7420656e6f756768204554482073656e742e000000000000000000000000600082015250565b60006141c06014836132c4565b91506141cb8261418a565b602082019050919050565b600060208201905081810360008301526141ef816141b3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061421d826141f6565b6142278185614201565b93506142378185602086016132d5565b61424081613308565b840191505092915050565b60006080820190506142606000830187613409565b61426d6020830186613409565b61427a604083018561349f565b818103606083015261428c8184614212565b905095945050505050565b6000815190506142a68161322a565b92915050565b6000602082840312156142c2576142c16131f4565b5b60006142d084828501614297565b91505092915050565b60006142e482613374565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361431657614315613a06565b5b600182019050919050565b600061432c82613374565b915061433783613374565b92508261434757614346613b55565b5b82820690509291505056fea26469706673582212205591915b0425e9ca7427e88def98cc6518ccf040cae5580fdb1347d823b3695464736f6c634300080d0033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80638462151c11610123578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb011461078d578063e985e9c5146107b8578063eb8d2444146107f5578063f2fde38b14610820578063fbbf8cc3146108495761021a565b8063b88d4fde146106aa578063bbb64319146106d3578063c6f6f216146106fc578063c87b56dd14610725578063d3464cbd146107625761021a565b806395d89b41116100f257806395d89b41146105d257806396b10201146105fd578063a035b1fe1461063a578063a0712d6814610665578063a22cb465146106815761021a565b80638462151c146105165780638bc35c2f146105535780638da5cb5b1461057e57806391b7f5ed146105a95761021a565b806347513334116101a657806370a082311161017557806370a0823114610459578063715018a6146104965780637ba5e621146104ad5780637bddd65b146104c45780637c928fe9146104ed5761021a565b806347513334146103be57806355f804b3146103e95780635fd8c710146104125780636352211e1461041c5761021a565b80631141df20116101ed5780631141df20146102ed57806318160ddd1461031657806323b872dd146103415780632e0fd6eb1461036a57806342842e0e146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613256565b610886565b604051610253919061329e565b60405180910390f35b34801561026857600080fd5b50610271610968565b60405161027e9190613352565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906133aa565b6109fa565b6040516102bb9190613418565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061345f565b610a76565b005b3480156102f957600080fd5b50610314600480360381019061030f91906133aa565b610b80565b005b34801561032257600080fd5b5061032b610c6f565b60405161033891906134ae565b60405180910390f35b34801561034d57600080fd5b50610368600480360381019061036391906134c9565b610c86565b005b34801561037657600080fd5b5061037f610c96565b60405161038c91906134ae565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906134c9565b610c9c565b005b3480156103ca57600080fd5b506103d3610cbc565b6040516103e091906134ae565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190613581565b610cc2565b005b61041a610d54565b005b34801561042857600080fd5b50610443600480360381019061043e91906133aa565b610f73565b6040516104509190613418565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b91906135ce565b610f89565b60405161048d91906134ae565b60405180910390f35b3480156104a257600080fd5b506104ab611058565b005b3480156104b957600080fd5b506104c26110e0565b005b3480156104d057600080fd5b506104eb60048036038101906104e691906133aa565b611188565b005b3480156104f957600080fd5b50610514600480360381019061050f91906133aa565b61120e565b005b34801561052257600080fd5b5061053d600480360381019061053891906135ce565b611413565b60405161054a91906136b9565b60405180910390f35b34801561055f57600080fd5b5061056861160a565b60405161057591906134ae565b60405180910390f35b34801561058a57600080fd5b50610593611610565b6040516105a09190613418565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb91906133aa565b611639565b005b3480156105de57600080fd5b506105e76116bf565b6040516105f49190613352565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f91906135ce565b611751565b60405161063191906134ae565b60405180910390f35b34801561064657600080fd5b5061064f611769565b60405161065c91906134ae565b60405180910390f35b61067f600480360381019061067a91906133aa565b61176f565b005b34801561068d57600080fd5b506106a860048036038101906106a39190613707565b6119db565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190613877565b611b52565b005b3480156106df57600080fd5b506106fa60048036038101906106f591906133aa565b611bce565b005b34801561070857600080fd5b50610723600480360381019061071e91906133aa565b611c54565b005b34801561073157600080fd5b5061074c600480360381019061074791906133aa565b611cda565b6040516107599190613352565b60405180910390f35b34801561076e57600080fd5b50610777611d78565b60405161078491906134ae565b60405180910390f35b34801561079957600080fd5b506107a2611d7e565b6040516107af91906134ae565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da91906138fa565b611d84565b6040516107ec919061329e565b60405180910390f35b34801561080157600080fd5b5061080a611e18565b604051610817919061329e565b60405180910390f35b34801561082c57600080fd5b50610847600480360381019061084291906135ce565b611e2b565b005b34801561085557600080fd5b50610870600480360381019061086b91906135ce565b611f22565b60405161087d91906134ae565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610961575061096082611f5d565b5b9050919050565b60606003805461097790613969565b80601f01602080910402602001604051908101604052809291908181526020018280546109a390613969565b80156109f05780601f106109c5576101008083540402835291602001916109f0565b820191906000526020600020905b8154815290600101906020018083116109d357829003601f168201915b5050505050905090565b6000610a0582611fc7565b610a3b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8182610f73565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ae8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b07612015565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b395750610b3781610b32612015565b611d84565b155b15610b70576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b7b83838361201d565b505050565b610b88612015565b73ffffffffffffffffffffffffffffffffffffffff16610ba6611610565b73ffffffffffffffffffffffffffffffffffffffff1614610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf3906139e6565b60405180910390fd5b610c04610c6f565b81600954610c129190613a35565b1015610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90613adb565b60405180910390fd5b8060096000828254610c659190613a35565b9250508190555050565b6000610c796120cf565b6002546001540303905090565b610c918383836120d8565b505050565b600d5481565b610cb783838360405180602001604052806000815250611b52565b505050565b600a5481565b610cca612015565b73ffffffffffffffffffffffffffffffffffffffff16610ce8611610565b73ffffffffffffffffffffffffffffffffffffffff1614610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d35906139e6565b60405180910390fd5b818160109190610d4f929190613104565b505050565b610d5c612015565b73ffffffffffffffffffffffffffffffffffffffff16610d7a611610565b73ffffffffffffffffffffffffffffffffffffffff1614610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc7906139e6565b60405180910390fd5b6000479050600073deadd426b0ec914b636121c5f3973f095d3fa66673ffffffffffffffffffffffffffffffffffffffff1661271061076c84610e139190613afb565b610e1d9190613b84565b604051610e2990613be6565b60006040518083038185875af1925050503d8060008114610e66576040519150601f19603f3d011682016040523d82523d6000602084013e610e6b565b606091505b5050905080610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613c47565b60405180910390fd5b735e11eabe10594d941e3826f91dbeabf53faec09273ffffffffffffffffffffffffffffffffffffffff1647604051610ee790613be6565b60006040518083038185875af1925050503d8060008114610f24576040519150601f19603f3d011682016040523d82523d6000602084013e610f29565b606091505b50508091505080610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6690613cb3565b60405180910390fd5b5050565b6000610f7e826125c7565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ff0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611060612015565b73ffffffffffffffffffffffffffffffffffffffff1661107e611610565b73ffffffffffffffffffffffffffffffffffffffff16146110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb906139e6565b60405180910390fd5b6110de6000612856565b565b6110e8612015565b73ffffffffffffffffffffffffffffffffffffffff16611106611610565b73ffffffffffffffffffffffffffffffffffffffff161461115c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611153906139e6565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611190612015565b73ffffffffffffffffffffffffffffffffffffffff166111ae611610565b73ffffffffffffffffffffffffffffffffffffffff1614611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb906139e6565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff1661125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613d1f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290613d8b565b60405180910390fd5b806112d4610c6f565b6112de9190613dab565b600a541015611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613e4d565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d5482826113759190613dab565b11156113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90613edf565b60405180910390fd5b81816113c29190613dab565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061140f338361291a565b5050565b6060600061142083610f89565b67ffffffffffffffff8111156114395761143861374c565b5b6040519080825280602002602001820160405280156114675781602001602082028036833780820191505090505b5090506000600154905060008060005b838110156115fd576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561155457506115f0565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461159457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115ee57818685806001019650815181106115e1576115e0613eff565b5b6020026020010181815250505b505b8080600101915050611477565b5083945050505050919050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611641612015565b73ffffffffffffffffffffffffffffffffffffffff1661165f611610565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac906139e6565b60405180910390fd5b80600e8190555050565b6060600480546116ce90613969565b80601f01602080910402602001604051908101604052809291908181526020018280546116fa90613969565b80156117475780601f1061171c57610100808354040283529160200191611747565b820191906000526020600020905b81548152906001019060200180831161172a57829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff166117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590613d1f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390613d8b565b60405180910390fd5b80611835610c6f565b61183f9190613dab565b6009541015611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a90613f7a565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c5482826118d69190613dab565b1115611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e9061400c565b60405180910390fd5b6000821180156119295750600b548211155b611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f90614078565b60405180910390fd5b81816119749190613dab565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119c1338361291a565b6119d782600e546119d29190613afb565b612938565b5050565b6119e3612015565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a47576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611a54612015565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b01612015565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b46919061329e565b60405180910390a35050565b611b5d8484846120d8565b611b7c8373ffffffffffffffffffffffffffffffffffffffff16611f3a565b8015611b915750611b8f848484846129d9565b155b15611bc8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611bd6612015565b73ffffffffffffffffffffffffffffffffffffffff16611bf4611610565b73ffffffffffffffffffffffffffffffffffffffff1614611c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c41906139e6565b60405180910390fd5b80600d8190555050565b611c5c612015565b73ffffffffffffffffffffffffffffffffffffffff16611c7a611610565b73ffffffffffffffffffffffffffffffffffffffff1614611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc7906139e6565b60405180910390fd5b80600b8190555050565b6060611ce582611fc7565b611d1b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611d25612b29565b90506000815103611d455760405180602001604052806000815250611d70565b80611d4f84612bbb565b604051602001611d609291906140d4565b6040516020818303038152906040525b915050919050565b600b5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611e33612015565b73ffffffffffffffffffffffffffffffffffffffff16611e51611610565b73ffffffffffffffffffffffffffffffffffffffff1614611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e906139e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d9061416a565b60405180910390fd5b611f1f81612856565b50565b60126020528060005260406000206000915090505481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611fd26120cf565b11158015611fe1575060015482105b801561200e575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006120e3826125c7565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661210a612015565b73ffffffffffffffffffffffffffffffffffffffff16148061213d575061213c8260000151612137612015565b611d84565b5b80612182575061214b612015565b73ffffffffffffffffffffffffffffffffffffffff1661216a846109fa565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806121bb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612224576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361228a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122978585856001612d1b565b6122a7600084846000015161201d565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612557576001548110156125565782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125c08585856001612d21565b5050505050565b6125cf61318a565b6000829050806125dd6120cf565b111580156125ec575060015481105b1561281f576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161281d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612701578092505050612851565b5b60011561281c57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612817578092505050612851565b612702565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612934828260405180602001604052806000815250612d27565b5050565b8034101561297b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612972906141d6565b60405180910390fd5b803411156129d6573373ffffffffffffffffffffffffffffffffffffffff166108fc82346129a99190613a35565b9081150290604051600060405180830381858888f193505050501580156129d4573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129ff612015565b8786866040518563ffffffff1660e01b8152600401612a21949392919061424b565b6020604051808303816000875af1925050508015612a5d57506040513d601f19601f82011682018060405250810190612a5a91906142ac565b60015b612ad6573d8060008114612a8d576040519150601f19603f3d011682016040523d82523d6000602084013e612a92565b606091505b506000815103612ace576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060108054612b3890613969565b80601f0160208091040260200160405190810160405280929190818152602001828054612b6490613969565b8015612bb15780601f10612b8657610100808354040283529160200191612bb1565b820191906000526020600020905b815481529060010190602001808311612b9457829003601f168201915b5050505050905090565b606060008203612c02576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d16565b600082905060005b60008214612c34578080612c1d906142d9565b915050600a82612c2d9190613b84565b9150612c0a565b60008167ffffffffffffffff811115612c5057612c4f61374c565b5b6040519080825280601f01601f191660200182016040528015612c825781602001600182028036833780820191505090505b5090505b60008514612d0f57600182612c9b9190613a35565b9150600a85612caa9190614321565b6030612cb69190613dab565b60f81b818381518110612ccc57612ccb613eff565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d089190613b84565b9450612c86565b8093505050505b919050565b50505050565b50505050565b612d348383836001612d39565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612da6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612de0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ded6000868387612d1b565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612fb75750612fb68773ffffffffffffffffffffffffffffffffffffffff16611f3a565b5b1561307c575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461302c60008884806001019550886129d9565b613062576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612fbd57826001541461307757600080fd5b6130e7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361307d575b8160018190555050506130fd6000868387612d21565b5050505050565b82805461311090613969565b90600052602060002090601f0160209004810192826131325760008555613179565b82601f1061314b57803560ff1916838001178555613179565b82800160010185558215613179579182015b8281111561317857823582559160200191906001019061315d565b5b50905061318691906131cd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156131e65760008160009055506001016131ce565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613233816131fe565b811461323e57600080fd5b50565b6000813590506132508161322a565b92915050565b60006020828403121561326c5761326b6131f4565b5b600061327a84828501613241565b91505092915050565b60008115159050919050565b61329881613283565b82525050565b60006020820190506132b3600083018461328f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132f35780820151818401526020810190506132d8565b83811115613302576000848401525b50505050565b6000601f19601f8301169050919050565b6000613324826132b9565b61332e81856132c4565b935061333e8185602086016132d5565b61334781613308565b840191505092915050565b6000602082019050818103600083015261336c8184613319565b905092915050565b6000819050919050565b61338781613374565b811461339257600080fd5b50565b6000813590506133a48161337e565b92915050565b6000602082840312156133c0576133bf6131f4565b5b60006133ce84828501613395565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613402826133d7565b9050919050565b613412816133f7565b82525050565b600060208201905061342d6000830184613409565b92915050565b61343c816133f7565b811461344757600080fd5b50565b60008135905061345981613433565b92915050565b60008060408385031215613476576134756131f4565b5b60006134848582860161344a565b925050602061349585828601613395565b9150509250929050565b6134a881613374565b82525050565b60006020820190506134c3600083018461349f565b92915050565b6000806000606084860312156134e2576134e16131f4565b5b60006134f08682870161344a565b93505060206135018682870161344a565b925050604061351286828701613395565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126135415761354061351c565b5b8235905067ffffffffffffffff81111561355e5761355d613521565b5b60208301915083600182028301111561357a57613579613526565b5b9250929050565b60008060208385031215613598576135976131f4565b5b600083013567ffffffffffffffff8111156135b6576135b56131f9565b5b6135c28582860161352b565b92509250509250929050565b6000602082840312156135e4576135e36131f4565b5b60006135f28482850161344a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61363081613374565b82525050565b60006136428383613627565b60208301905092915050565b6000602082019050919050565b6000613666826135fb565b6136708185613606565b935061367b83613617565b8060005b838110156136ac5781516136938882613636565b975061369e8361364e565b92505060018101905061367f565b5085935050505092915050565b600060208201905081810360008301526136d3818461365b565b905092915050565b6136e481613283565b81146136ef57600080fd5b50565b600081359050613701816136db565b92915050565b6000806040838503121561371e5761371d6131f4565b5b600061372c8582860161344a565b925050602061373d858286016136f2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61378482613308565b810181811067ffffffffffffffff821117156137a3576137a261374c565b5b80604052505050565b60006137b66131ea565b90506137c2828261377b565b919050565b600067ffffffffffffffff8211156137e2576137e161374c565b5b6137eb82613308565b9050602081019050919050565b82818337600083830152505050565b600061381a613815846137c7565b6137ac565b90508281526020810184848401111561383657613835613747565b5b6138418482856137f8565b509392505050565b600082601f83011261385e5761385d61351c565b5b813561386e848260208601613807565b91505092915050565b60008060008060808587031215613891576138906131f4565b5b600061389f8782880161344a565b94505060206138b08782880161344a565b93505060406138c187828801613395565b925050606085013567ffffffffffffffff8111156138e2576138e16131f9565b5b6138ee87828801613849565b91505092959194509250565b60008060408385031215613911576139106131f4565b5b600061391f8582860161344a565b92505060206139308582860161344a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061398157607f821691505b6020821081036139945761399361393a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139d06020836132c4565b91506139db8261399a565b602082019050919050565b600060208201905081810360008301526139ff816139c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a4082613374565b9150613a4b83613374565b925082821015613a5e57613a5d613a06565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b6000613ac56027836132c4565b9150613ad082613a69565b604082019050919050565b60006020820190508181036000830152613af481613ab8565b9050919050565b6000613b0682613374565b9150613b1183613374565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b4a57613b49613a06565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b8f82613374565b9150613b9a83613374565b925082613baa57613ba9613b55565b5b828204905092915050565b600081905092915050565b50565b6000613bd0600083613bb5565b9150613bdb82613bc0565b600082019050919050565b6000613bf182613bc3565b9150819050919050565b7f446576207472616e73666572206661696c65642e000000000000000000000000600082015250565b6000613c316014836132c4565b9150613c3c82613bfb565b602082019050919050565b60006020820190508181036000830152613c6081613c24565b9050919050565b7f5465616d207472616e73666572206661696c65642e0000000000000000000000600082015250565b6000613c9d6015836132c4565b9150613ca882613c67565b602082019050919050565b60006020820190508181036000830152613ccc81613c90565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b6000613d096017836132c4565b9150613d1482613cd3565b602082019050919050565b60006020820190508181036000830152613d3881613cfc565b9050919050565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b6000613d75601c836132c4565b9150613d8082613d3f565b602082019050919050565b60006020820190508181036000830152613da481613d68565b9050919050565b6000613db682613374565b9150613dc183613374565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613df657613df5613a06565b5b828201905092915050565b7f47445a3a2045786365656473206d6178206672656520737570706c792e000000600082015250565b6000613e37601d836132c4565b9150613e4282613e01565b602082019050919050565b60006020820190508181036000830152613e6681613e2a565b9050919050565b7f47445a3a2045786365656473206d61782066726565206d696e7473207065722060008201527f6164647265737321000000000000000000000000000000000000000000000000602082015250565b6000613ec96028836132c4565b9150613ed482613e6d565b604082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f47445a3a2045786365656473206d617820737570706c792e0000000000000000600082015250565b6000613f646018836132c4565b9150613f6f82613f2e565b602082019050919050565b60006020820190508181036000830152613f9381613f57565b9050919050565b7f47445a3a2045786365656473206d6178206d696e74732070657220616464726560008201527f7373210000000000000000000000000000000000000000000000000000000000602082015250565b6000613ff66023836132c4565b915061400182613f9a565b604082019050919050565b6000602082019050818103600083015261402581613fe9565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b60006140626014836132c4565b915061406d8261402c565b602082019050919050565b6000602082019050818103600083015261409181614055565b9050919050565b600081905092915050565b60006140ae826132b9565b6140b88185614098565b93506140c88185602086016132d5565b80840191505092915050565b60006140e082856140a3565b91506140ec82846140a3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006141546026836132c4565b915061415f826140f8565b604082019050919050565b6000602082019050818103600083015261418381614147565b9050919050565b7f4e6f7420656e6f756768204554482073656e742e000000000000000000000000600082015250565b60006141c06014836132c4565b91506141cb8261418a565b602082019050919050565b600060208201905081810360008301526141ef816141b3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061421d826141f6565b6142278185614201565b93506142378185602086016132d5565b61424081613308565b840191505092915050565b60006080820190506142606000830187613409565b61426d6020830186613409565b61427a604083018561349f565b818103606083015261428c8184614212565b905095945050505050565b6000815190506142a68161322a565b92915050565b6000602082840312156142c2576142c16131f4565b5b60006142d084828501614297565b91505092915050565b60006142e482613374565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361431657614315613a06565b5b600182019050919050565b600061432c82613374565b915061433783613374565b92508261434757614346613b55565b5b82820690509291505056fea26469706673582212205591915b0425e9ca7427e88def98cc6518ccf040cae5580fdb1347d823b3695464736f6c634300080d0033

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.