ETH Price: $2,522.81 (+0.30%)

Token

Kuto's Many Lives (KUTO)
 

Overview

Max Total Supply

29 KUTO

Holders

9

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 KUTO
0x934146ab8a5fda337076bd6b18645e166fc1f4dd
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:
Kuto

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract Kuto is ERC721, Ownable, ERC721Enumerable, ReentrancyGuard {

    using Strings for uint256;
    
    string public baseURI;
    uint256 public maxMint = 7777;
    uint256 public currMint = 1000;
    uint256 public cost = 0.1 ether;
    bool public paused = false;

    mapping(uint256 => string) private _tokenURIs;
      
    address private creatorAddress;

    constructor() ERC721("Kuto's Many Lives", "KUTO") {
        setBaseURI("https://ipfs.moralis.io:2053/ipfs/QmQh9xQm9w4atfb3LCLgJjabgY8TTz9oQNzzMKeDanoQqR/metadata/");
        creatorAddress = msg.sender;
        paused = false;
        uint16[22] memory reserveToken = [366, 79, 73, 749, 600, 135, 210, 460, 667, 756, 834, 913, 432, 616, 518, 23, 473, 505, 914, 901, 345, 137];
        for(uint256 i=0;i<reserveToken.length;i++){
            _safeMint(msg.sender, uint256(reserveToken[i]));
            _tokenURIs[reserveToken[i]] = string(abi.encodePacked(_baseURI(), Strings.toString(reserveToken[i]), ".json"));
        }
    }

     // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
  
    function mint(uint256 _tokenId) public payable {
        require(!_exists(_tokenId),"token already minted");
        require(paused==false, "sale closed");
        require(_tokenId<=maxMint, "maximum token passed");
        require(_tokenId<=currMint && _tokenId>0, "invalid _tokenId");
        require(msg.value >= cost, "minimum price required");
        require(payable(creatorAddress).send(msg.value));
        _safeMint(msg.sender, _tokenId);
        _tokenURIs[_tokenId] = string(abi.encodePacked(_baseURI(), Strings.toString(_tokenId), ".json"));
    }

    function mintByOwner(address[] memory _tos, uint256[] memory _tokenIds)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < _tos.length; i++) {
            require(_tokenIds[i]<=maxMint, "maximum token passed");
            require(!_exists(_tokenIds[i]),"token already minted");
            _safeMint(_tos[i], _tokenIds[i]);
            _tokenURIs[_tokenIds[i]] = string(abi.encodePacked(_baseURI(), Strings.toString(_tokenIds[i]), ".json"));
        }
    }

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

        if(bytes(_tokenURIs[_tokenId]).length>0){
            return _tokenURIs[_tokenId];
        }

        return string(abi.encodePacked(_baseURI(), Strings.toString(_tokenId), ".json"));
    }

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    //only owner
    function setTokenURI(uint256 _tokenId, string memory _tokenURI) public onlyOwner {
        _tokenURIs[_tokenId] = _tokenURI;
    }

    function setcurrMint(uint256 _currMint) public onlyOwner {
        require(_currMint<=maxMint, "maximum token passed");
        require(_currMint>currMint,"new mint size must be greater");
        currMint = _currMint;
    }

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

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 3 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @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) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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 virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 6 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 7 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 13 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currMint","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":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tos","type":"address[]"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_currMint","type":"uint256"}],"name":"setcurrMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052611e61600d556103e8600e5567016345785d8a0000600f556000601060006101000a81548160ff0219169083151502179055503480156200004457600080fd5b506040518060400160405280601181526020017f4b75746f2773204d616e79204c697665730000000000000000000000000000008152506040518060400160405280600481526020017f4b55544f000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c9929190620011a2565b508060019080519060200190620000e2929190620011a2565b50505062000105620000f9620003ab60201b60201c565b620003b360201b60201c565b6001600b81905550620001376040518060800160405280605a815260200162005c9b605a91396200047960201b60201c565b33601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601060006101000a81548160ff0219169083151502179055506000604051806102c0016040528061016e61ffff168152602001604f61ffff168152602001604961ffff1681526020016102ed61ffff16815260200161025861ffff168152602001608761ffff16815260200160d261ffff1681526020016101cc61ffff16815260200161029b61ffff1681526020016102f461ffff16815260200161034261ffff16815260200161039161ffff1681526020016101b061ffff16815260200161026861ffff16815260200161020661ffff168152602001601761ffff1681526020016101d961ffff1681526020016101f961ffff16815260200161039261ffff16815260200161038561ffff16815260200161015961ffff168152602001608961ffff16815250905060005b6016811015620003a357620002e033838360168110620002cb57620002ca6200187d565b5b602002015161ffff16620004a560201b60201c565b620002f0620004cb60201b60201c565b620003248383601681106200030a57620003096200187d565b5b602002015161ffff166200056560201b620015fa1760201c565b604051602001620003379291906200141f565b6040516020818303038152906040526011600084846016811062000360576200035f6200187d565b5b602002015161ffff16815260200190815260200160002090805190602001906200038c929190620011a2565b5080806200039a906200173b565b915050620002a6565b505062001a4d565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000489620006df60201b60201c565b80600c9080519060200190620004a1929190620011a2565b5050565b620004c78282604051806020016040528060008152506200077060201b60201c565b5050565b6060600c8054620004dc9062001705565b80601f01602080910402602001604051908101604052809291908181526020018280546200050a9062001705565b80156200055b5780601f106200052f576101008083540402835291602001916200055b565b820191906000526020600020905b8154815290600101906020018083116200053d57829003601f168201915b5050505050905090565b60606000821415620005af576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050620006da565b600082905060005b60008214620005e7578080620005cd906200173b565b915050600a82620005df9190620015f2565b9150620005b7565b60008167ffffffffffffffff811115620006065762000605620018ac565b5b6040519080825280601f01601f191660200182016040528015620006395781602001600182028036833780820191505090505b5090505b60008514620006d3576001826200065591906200162a565b9150600a8562000666919062001789565b603062000674919062001595565b60f81b8183815181106200068d576200068c6200187d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85620006cb9190620015f2565b94506200063d565b8093505050505b919050565b620006ef620003ab60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000715620007de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200076e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007659062001530565b60405180910390fd5b565b6200078283836200080860201b60201c565b62000797600084848462000a0260201b60201c565b620007d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007d090620014a8565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200087b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000872906200150e565b60405180910390fd5b6200088c8162000bbc60201b60201c565b15620008cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008c690620014ca565b60405180910390fd5b620008e36000838362000c2860201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000935919062001595565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620009fe6000838362000c4560201b60201c565b5050565b600062000a308473ffffffffffffffffffffffffffffffffffffffff1662000c4a60201b6200175b1760201c565b1562000baf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000a62620003ab60201b60201c565b8786866040518563ffffffff1660e01b815260040162000a86949392919062001454565b602060405180830381600087803b15801562000aa157600080fd5b505af192505050801562000ad557506040513d601f19601f8201168201806040525081019062000ad2919062001269565b60015b62000b5e573d806000811462000b08576040519150601f19603f3d011682016040523d82523d6000602084013e62000b0d565b606091505b5060008151141562000b56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b4d90620014a8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000bb4565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000c4083838362000c6d60201b6200177e1760201c565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b62000c8583838362000db460201b620018921760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000cd25762000ccc8162000db960201b60201c565b62000d1a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000d195762000d18838262000e0260201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000d675762000d618162000f7f60201b60201c565b62000daf565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000dae5762000dad82826200105b60201b60201c565b5b5b505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000e1c84620010e760201b62000f4f1760201c565b62000e2891906200162a565b905060006008600084815260200190815260200160002054905081811462000f0e576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905062000f9591906200162a565b90506000600a600084815260200190815260200160002054905060006009838154811062000fc85762000fc76200187d565b5b90600052602060002001549050806009838154811062000fed5762000fec6200187d565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806200103f576200103e6200184e565b5b6001900381819060005260206000200160009055905550505050565b60006200107383620010e760201b62000f4f1760201c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200115b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200115290620014ec565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620011b09062001705565b90600052602060002090601f016020900481019282620011d4576000855562001220565b82601f10620011ef57805160ff191683800117855562001220565b8280016001018555821562001220579182015b828111156200121f57825182559160200191906001019062001202565b5b5090506200122f919062001233565b5090565b5b808211156200124e57600081600090555060010162001234565b5090565b600081519050620012638162001a33565b92915050565b600060208284031215620012825762001281620018db565b5b6000620012928482850162001252565b91505092915050565b620012a68162001665565b82525050565b6000620012b98262001552565b620012c5818562001568565b9350620012d7818560208601620016cf565b620012e281620018e0565b840191505092915050565b6000620012fa826200155d565b6200130681856200158a565b935062001318818560208601620016cf565b80840191505092915050565b60006200133360328362001579565b91506200134082620018f1565b604082019050919050565b60006200135a601c8362001579565b9150620013678262001940565b602082019050919050565b60006200138160298362001579565b91506200138e8262001969565b604082019050919050565b6000620013a860208362001579565b9150620013b582620019b8565b602082019050919050565b6000620013cf6005836200158a565b9150620013dc82620019e1565b600582019050919050565b6000620013f660208362001579565b9150620014038262001a0a565b602082019050919050565b6200141981620016c5565b82525050565b60006200142d8285620012ed565b91506200143b8284620012ed565b91506200144882620013c0565b91508190509392505050565b60006080820190506200146b60008301876200129b565b6200147a60208301866200129b565b6200148960408301856200140e565b81810360608301526200149d8184620012ac565b905095945050505050565b60006020820190508181036000830152620014c38162001324565b9050919050565b60006020820190508181036000830152620014e5816200134b565b9050919050565b60006020820190508181036000830152620015078162001372565b9050919050565b60006020820190508181036000830152620015298162001399565b9050919050565b600060208201905081810360008301526200154b81620013e7565b9050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000620015a282620016c5565b9150620015af83620016c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620015e757620015e6620017c1565b5b828201905092915050565b6000620015ff82620016c5565b91506200160c83620016c5565b9250826200161f576200161e620017f0565b5b828204905092915050565b60006200163782620016c5565b91506200164483620016c5565b9250828210156200165a5762001659620017c1565b5b828203905092915050565b60006200167282620016a5565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620016ef578082015181840152602081019050620016d2565b83811115620016ff576000848401525b50505050565b600060028204905060018216806200171e57607f821691505b602082108114156200173557620017346200181f565b5b50919050565b60006200174882620016c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200177e576200177d620017c1565b5b600182019050919050565b60006200179682620016c5565b9150620017a383620016c5565b925082620017b657620017b5620017f0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62001a3e8162001679565b811462001a4a57600080fd5b50565b61423e8062001a5d6000396000f3fe6080604052600436106101d85760003560e01c806355f804b3116101025780638da5cb5b11610095578063b88d4fde11610064578063b88d4fde1461067c578063c87b56dd146106a5578063e985e9c5146106e2578063f2fde38b1461071f576101d8565b80638da5cb5b146105e157806395d89b411461060c578063a0712d6814610637578063a22cb46514610653576101d8565b80636c0360eb116100d15780636c0360eb1461053757806370a0823114610562578063715018a61461059f5780637501f741146105b6576101d8565b806355f804b31461047b5780635b95a225146104a45780635c975abb146104cf5780636352211e146104fa576101d8565b80632036937f1161017a5780633ccfd60b116101495780633ccfd60b146103e257806342842e0e146103ec57806344a0d68a146104155780634f6ccce71461043e576101d8565b80632036937f1461032a57806323b872dd146103535780632c3d8acb1461037c5780632f745c59146103a5576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806313faede6146102ab578063162094c4146102d657806318160ddd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612ed8565b610748565b604051610211919061348f565b60405180910390f35b34801561022657600080fd5b5061022f61075a565b60405161023c91906134aa565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612f7b565b6107ec565b6040516102799190613428565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612e20565b610832565b005b3480156102b757600080fd5b506102c061094a565b6040516102cd919061378c565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612fa8565b610950565b005b34801561030b57600080fd5b50610314610984565b604051610321919061378c565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612f7b565b610991565b005b34801561035f57600080fd5b5061037a60048036038101906103759190612d0a565b610a2c565b005b34801561038857600080fd5b506103a3600480360381019061039e9190612e60565b610a8c565b005b3480156103b157600080fd5b506103cc60048036038101906103c79190612e20565b610c44565b6040516103d9919061378c565b60405180910390f35b6103ea610ce9565b005b3480156103f857600080fd5b50610413600480360381019061040e9190612d0a565b610d31565b005b34801561042157600080fd5b5061043c60048036038101906104379190612f7b565b610d51565b005b34801561044a57600080fd5b5061046560048036038101906104609190612f7b565b610d63565b604051610472919061378c565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d9190612f32565b610dd4565b005b3480156104b057600080fd5b506104b9610df6565b6040516104c6919061378c565b60405180910390f35b3480156104db57600080fd5b506104e4610dfc565b6040516104f1919061348f565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190612f7b565b610e0f565b60405161052e9190613428565b60405180910390f35b34801561054357600080fd5b5061054c610ec1565b60405161055991906134aa565b60405180910390f35b34801561056e57600080fd5b5061058960048036038101906105849190612c9d565b610f4f565b604051610596919061378c565b60405180910390f35b3480156105ab57600080fd5b506105b4611007565b005b3480156105c257600080fd5b506105cb61101b565b6040516105d8919061378c565b60405180910390f35b3480156105ed57600080fd5b506105f6611021565b6040516106039190613428565b60405180910390f35b34801561061857600080fd5b5061062161104b565b60405161062e91906134aa565b60405180910390f35b610651600480360381019061064c9190612f7b565b6110dd565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612de0565b61131c565b005b34801561068857600080fd5b506106a3600480360381019061069e9190612d5d565b611332565b005b3480156106b157600080fd5b506106cc60048036038101906106c79190612f7b565b611394565b6040516106d991906134aa565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190612cca565b6114e2565b604051610716919061348f565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190612c9d565b611576565b005b600061075382611897565b9050919050565b60606000805461076990613a3a565b80601f016020809104026020016040519081016040528092919081815260200182805461079590613a3a565b80156107e25780601f106107b7576101008083540402835291602001916107e2565b820191906000526020600020905b8154815290600101906020018083116107c557829003601f168201915b5050505050905090565b60006107f782611911565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083d82610e0f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a59061372c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108cd61195c565b73ffffffffffffffffffffffffffffffffffffffff1614806108fc57506108fb816108f661195c565b6114e2565b5b61093b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109329061362c565b60405180910390fd5b6109458383611964565b505050565b600f5481565b610958611a1d565b8060116000848152602001908152602001600020908051906020019061097f929190612975565b505050565b6000600980549050905090565b610999611a1d565b600d548111156109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d59061366c565b60405180910390fd5b600e548111610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a19906136cc565b60405180910390fd5b80600e8190555050565b610a3d610a3761195c565b82611a9b565b610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a739061376c565b60405180910390fd5b610a87838383611b30565b505050565b610a94611a1d565b60005b8251811015610c3f57600d54828281518110610ab657610ab5613bd3565b5b60200260200101511115610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af69061366c565b60405180910390fd5b610b22828281518110610b1557610b14613bd3565b5b6020026020010151611d97565b15610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b599061370c565b60405180910390fd5b610ba0838281518110610b7857610b77613bd3565b5b6020026020010151838381518110610b9357610b92613bd3565b5b6020026020010151611e03565b610ba8611e21565b610bcb838381518110610bbe57610bbd613bd3565b5b60200260200101516115fa565b604051602001610bdc9291906133f9565b60405160208183030381529060405260116000848481518110610c0257610c01613bd3565b5b602002602001015181526020019081526020016000209080519060200190610c2b929190612975565b508080610c3790613a9d565b915050610a97565b505050565b6000610c4f83610f4f565b8210610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c87906134cc565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cf1611a1d565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d2f57600080fd5b565b610d4c83838360405180602001604052806000815250611332565b505050565b610d59611a1d565b80600f8190555050565b6000610d6d610984565b8210610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da59061374c565b60405180910390fd5b60098281548110610dc257610dc1613bd3565b5b90600052602060002001549050919050565b610ddc611a1d565b80600c9080519060200190610df2929190612975565b5050565b600e5481565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf906136ec565b60405180910390fd5b80915050919050565b600c8054610ece90613a3a565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90613a3a565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb79061360c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61100f611a1d565b6110196000611eb3565b565b600d5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461105a90613a3a565b80601f016020809104026020016040519081016040528092919081815260200182805461108690613a3a565b80156110d35780601f106110a8576101008083540402835291602001916110d3565b820191906000526020600020905b8154815290600101906020018083116110b657829003601f168201915b5050505050905090565b6110e681611d97565b15611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d9061370c565b60405180910390fd5b60001515601060009054906101000a900460ff1615151461117c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111739061356c565b60405180910390fd5b600d548111156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b89061366c565b60405180910390fd5b600e5481111580156111d35750600081115b611212576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611209906135ec565b60405180910390fd5b600f54341015611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e906135cc565b60405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050506112b757600080fd5b6112c13382611e03565b6112c9611e21565b6112d2826115fa565b6040516020016112e39291906133f9565b604051602081830303815290604052601160008381526020019081526020016000209080519060200190611318929190612975565b5050565b61132e61132761195c565b8383611f79565b5050565b61134361133d61195c565b83611a9b565b611382576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113799061376c565b60405180910390fd5b61138e848484846120e6565b50505050565b606061139f82611d97565b6113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d5906136ac565b60405180910390fd5b60006011600084815260200190815260200160002080546113fe90613a3a565b905011156114a95760116000838152602001908152602001600020805461142490613a3a565b80601f016020809104026020016040519081016040528092919081815260200182805461145090613a3a565b801561149d5780601f106114725761010080835404028352916020019161149d565b820191906000526020600020905b81548152906001019060200180831161148057829003601f168201915b505050505090506114dd565b6114b1611e21565b6114ba836115fa565b6040516020016114cb9291906133f9565b60405160208183030381529060405290505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61157e611a1d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e59061350c565b60405180910390fd5b6115f781611eb3565b50565b60606000821415611642576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611756565b600082905060005b6000821461167457808061165d90613a9d565b915050600a8261166d919061391f565b915061164a565b60008167ffffffffffffffff8111156116905761168f613c02565b5b6040519080825280601f01601f1916602001820160405280156116c25781602001600182028036833780820191505090505b5090505b6000851461174f576001826116db9190613950565b9150600a856116ea9190613ae6565b60306116f691906138c9565b60f81b81838151811061170c5761170b613bd3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611748919061391f565b94506116c6565b8093505050505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b611789838383611892565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117cc576117c781612142565b61180b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461180a57611809838261218b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561184e57611849816122f8565b61188d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461188c5761188b82826123c9565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061190a575061190982612448565b5b9050919050565b61191a81611d97565b611959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611950906136ec565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119d783610e0f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611a2561195c565b73ffffffffffffffffffffffffffffffffffffffff16611a43611021565b73ffffffffffffffffffffffffffffffffffffffff1614611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a909061368c565b60405180910390fd5b565b600080611aa783610e0f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ae95750611ae881856114e2565b5b80611b2757508373ffffffffffffffffffffffffffffffffffffffff16611b0f846107ec565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b5082610e0f565b73ffffffffffffffffffffffffffffffffffffffff1614611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d9061352c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d9061358c565b60405180910390fd5b611c2183838361252a565b611c2c600082611964565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c7c9190613950565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd391906138c9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d9283838361253a565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611e1d82826040518060200160405280600081525061253f565b5050565b6060600c8054611e3090613a3a565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5c90613a3a565b8015611ea95780601f10611e7e57610100808354040283529160200191611ea9565b820191906000526020600020905b815481529060010190602001808311611e8c57829003601f168201915b5050505050905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf906135ac565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120d9919061348f565b60405180910390a3505050565b6120f1848484611b30565b6120fd8484848461259a565b61213c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612133906134ec565b60405180910390fd5b50505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161219884610f4f565b6121a29190613950565b9050600060086000848152602001908152602001600020549050818114612287576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061230c9190613950565b90506000600a600084815260200190815260200160002054905060006009838154811061233c5761233b613bd3565b5b90600052602060002001549050806009838154811061235e5761235d613bd3565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806123ad576123ac613ba4565b5b6001900381819060005260206000200160009055905550505050565b60006123d483610f4f565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061251357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612523575061252282612731565b5b9050919050565b61253583838361177e565b505050565b505050565b612549838361279b565b612556600084848461259a565b612595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258c906134ec565b60405180910390fd5b505050565b60006125bb8473ffffffffffffffffffffffffffffffffffffffff1661175b565b15612724578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125e461195c565b8786866040518563ffffffff1660e01b81526004016126069493929190613443565b602060405180830381600087803b15801561262057600080fd5b505af192505050801561265157506040513d601f19601f8201168201806040525081019061264e9190612f05565b60015b6126d4573d8060008114612681576040519150601f19603f3d011682016040523d82523d6000602084013e612686565b606091505b506000815114156126cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c3906134ec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612729565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561280b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128029061364c565b60405180910390fd5b61281481611d97565b15612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284b9061354c565b60405180910390fd5b6128606000838361252a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b091906138c9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129716000838361253a565b5050565b82805461298190613a3a565b90600052602060002090601f0160209004810192826129a357600085556129ea565b82601f106129bc57805160ff19168380011785556129ea565b828001600101855582156129ea579182015b828111156129e95782518255916020019190600101906129ce565b5b5090506129f791906129fb565b5090565b5b80821115612a145760008160009055506001016129fc565b5090565b6000612a2b612a26846137cc565b6137a7565b90508083825260208201905082856020860282011115612a4e57612a4d613c36565b5b60005b85811015612a7e5781612a648882612b7c565b845260208401935060208301925050600181019050612a51565b5050509392505050565b6000612a9b612a96846137f8565b6137a7565b90508083825260208201905082856020860282011115612abe57612abd613c36565b5b60005b85811015612aee5781612ad48882612c88565b845260208401935060208301925050600181019050612ac1565b5050509392505050565b6000612b0b612b0684613824565b6137a7565b905082815260208101848484011115612b2757612b26613c3b565b5b612b328482856139f8565b509392505050565b6000612b4d612b4884613855565b6137a7565b905082815260208101848484011115612b6957612b68613c3b565b5b612b748482856139f8565b509392505050565b600081359050612b8b816141ac565b92915050565b600082601f830112612ba657612ba5613c31565b5b8135612bb6848260208601612a18565b91505092915050565b600082601f830112612bd457612bd3613c31565b5b8135612be4848260208601612a88565b91505092915050565b600081359050612bfc816141c3565b92915050565b600081359050612c11816141da565b92915050565b600081519050612c26816141da565b92915050565b600082601f830112612c4157612c40613c31565b5b8135612c51848260208601612af8565b91505092915050565b600082601f830112612c6f57612c6e613c31565b5b8135612c7f848260208601612b3a565b91505092915050565b600081359050612c97816141f1565b92915050565b600060208284031215612cb357612cb2613c45565b5b6000612cc184828501612b7c565b91505092915050565b60008060408385031215612ce157612ce0613c45565b5b6000612cef85828601612b7c565b9250506020612d0085828601612b7c565b9150509250929050565b600080600060608486031215612d2357612d22613c45565b5b6000612d3186828701612b7c565b9350506020612d4286828701612b7c565b9250506040612d5386828701612c88565b9150509250925092565b60008060008060808587031215612d7757612d76613c45565b5b6000612d8587828801612b7c565b9450506020612d9687828801612b7c565b9350506040612da787828801612c88565b925050606085013567ffffffffffffffff811115612dc857612dc7613c40565b5b612dd487828801612c2c565b91505092959194509250565b60008060408385031215612df757612df6613c45565b5b6000612e0585828601612b7c565b9250506020612e1685828601612bed565b9150509250929050565b60008060408385031215612e3757612e36613c45565b5b6000612e4585828601612b7c565b9250506020612e5685828601612c88565b9150509250929050565b60008060408385031215612e7757612e76613c45565b5b600083013567ffffffffffffffff811115612e9557612e94613c40565b5b612ea185828601612b91565b925050602083013567ffffffffffffffff811115612ec257612ec1613c40565b5b612ece85828601612bbf565b9150509250929050565b600060208284031215612eee57612eed613c45565b5b6000612efc84828501612c02565b91505092915050565b600060208284031215612f1b57612f1a613c45565b5b6000612f2984828501612c17565b91505092915050565b600060208284031215612f4857612f47613c45565b5b600082013567ffffffffffffffff811115612f6657612f65613c40565b5b612f7284828501612c5a565b91505092915050565b600060208284031215612f9157612f90613c45565b5b6000612f9f84828501612c88565b91505092915050565b60008060408385031215612fbf57612fbe613c45565b5b6000612fcd85828601612c88565b925050602083013567ffffffffffffffff811115612fee57612fed613c40565b5b612ffa85828601612c5a565b9150509250929050565b61300d81613984565b82525050565b61301c81613996565b82525050565b600061302d82613886565b613037818561389c565b9350613047818560208601613a07565b61305081613c4a565b840191505092915050565b600061306682613891565b61307081856138ad565b9350613080818560208601613a07565b61308981613c4a565b840191505092915050565b600061309f82613891565b6130a981856138be565b93506130b9818560208601613a07565b80840191505092915050565b60006130d2602b836138ad565b91506130dd82613c5b565b604082019050919050565b60006130f56032836138ad565b915061310082613caa565b604082019050919050565b60006131186026836138ad565b915061312382613cf9565b604082019050919050565b600061313b6025836138ad565b915061314682613d48565b604082019050919050565b600061315e601c836138ad565b915061316982613d97565b602082019050919050565b6000613181600b836138ad565b915061318c82613dc0565b602082019050919050565b60006131a46024836138ad565b91506131af82613de9565b604082019050919050565b60006131c76019836138ad565b91506131d282613e38565b602082019050919050565b60006131ea6016836138ad565b91506131f582613e61565b602082019050919050565b600061320d6010836138ad565b915061321882613e8a565b602082019050919050565b60006132306029836138ad565b915061323b82613eb3565b604082019050919050565b6000613253603e836138ad565b915061325e82613f02565b604082019050919050565b60006132766020836138ad565b915061328182613f51565b602082019050919050565b60006132996005836138be565b91506132a482613f7a565b600582019050919050565b60006132bc6014836138ad565b91506132c782613fa3565b602082019050919050565b60006132df6020836138ad565b91506132ea82613fcc565b602082019050919050565b6000613302602f836138ad565b915061330d82613ff5565b604082019050919050565b6000613325601d836138ad565b915061333082614044565b602082019050919050565b60006133486018836138ad565b91506133538261406d565b602082019050919050565b600061336b6014836138ad565b915061337682614096565b602082019050919050565b600061338e6021836138ad565b9150613399826140bf565b604082019050919050565b60006133b1602c836138ad565b91506133bc8261410e565b604082019050919050565b60006133d4602e836138ad565b91506133df8261415d565b604082019050919050565b6133f3816139ee565b82525050565b60006134058285613094565b91506134118284613094565b915061341c8261328c565b91508190509392505050565b600060208201905061343d6000830184613004565b92915050565b60006080820190506134586000830187613004565b6134656020830186613004565b61347260408301856133ea565b81810360608301526134848184613022565b905095945050505050565b60006020820190506134a46000830184613013565b92915050565b600060208201905081810360008301526134c4818461305b565b905092915050565b600060208201905081810360008301526134e5816130c5565b9050919050565b60006020820190508181036000830152613505816130e8565b9050919050565b600060208201905081810360008301526135258161310b565b9050919050565b600060208201905081810360008301526135458161312e565b9050919050565b6000602082019050818103600083015261356581613151565b9050919050565b6000602082019050818103600083015261358581613174565b9050919050565b600060208201905081810360008301526135a581613197565b9050919050565b600060208201905081810360008301526135c5816131ba565b9050919050565b600060208201905081810360008301526135e5816131dd565b9050919050565b6000602082019050818103600083015261360581613200565b9050919050565b6000602082019050818103600083015261362581613223565b9050919050565b6000602082019050818103600083015261364581613246565b9050919050565b6000602082019050818103600083015261366581613269565b9050919050565b60006020820190508181036000830152613685816132af565b9050919050565b600060208201905081810360008301526136a5816132d2565b9050919050565b600060208201905081810360008301526136c5816132f5565b9050919050565b600060208201905081810360008301526136e581613318565b9050919050565b600060208201905081810360008301526137058161333b565b9050919050565b600060208201905081810360008301526137258161335e565b9050919050565b6000602082019050818103600083015261374581613381565b9050919050565b60006020820190508181036000830152613765816133a4565b9050919050565b60006020820190508181036000830152613785816133c7565b9050919050565b60006020820190506137a160008301846133ea565b92915050565b60006137b16137c2565b90506137bd8282613a6c565b919050565b6000604051905090565b600067ffffffffffffffff8211156137e7576137e6613c02565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561381357613812613c02565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561383f5761383e613c02565b5b61384882613c4a565b9050602081019050919050565b600067ffffffffffffffff8211156138705761386f613c02565b5b61387982613c4a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138d4826139ee565b91506138df836139ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561391457613913613b17565b5b828201905092915050565b600061392a826139ee565b9150613935836139ee565b92508261394557613944613b46565b5b828204905092915050565b600061395b826139ee565b9150613966836139ee565b92508282101561397957613978613b17565b5b828203905092915050565b600061398f826139ce565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a25578082015181840152602081019050613a0a565b83811115613a34576000848401525b50505050565b60006002820490506001821680613a5257607f821691505b60208210811415613a6657613a65613b75565b5b50919050565b613a7582613c4a565b810181811067ffffffffffffffff82111715613a9457613a93613c02565b5b80604052505050565b6000613aa8826139ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613adb57613ada613b17565b5b600182019050919050565b6000613af1826139ee565b9150613afc836139ee565b925082613b0c57613b0b613b46565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f73616c6520636c6f736564000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6d696e696d756d20707269636520726571756972656400000000000000000000600082015250565b7f696e76616c6964205f746f6b656e496400000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f6d6178696d756d20746f6b656e20706173736564000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6577206d696e742073697a65206d7573742062652067726561746572000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f746f6b656e20616c7265616479206d696e746564000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6141b581613984565b81146141c057600080fd5b50565b6141cc81613996565b81146141d757600080fd5b50565b6141e3816139a2565b81146141ee57600080fd5b50565b6141fa816139ee565b811461420557600080fd5b5056fea264697066735822122059ed66cbd0e8fc571fd0a0e2049242dea3fdc0c853848984041f14e853e93a7d64736f6c6343000807003368747470733a2f2f697066732e6d6f72616c69732e696f3a323035332f697066732f516d51683978516d39773461746662334c434c674a6a616267593854547a396f514e7a7a4d4b6544616e6f5171522f6d657461646174612f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806355f804b3116101025780638da5cb5b11610095578063b88d4fde11610064578063b88d4fde1461067c578063c87b56dd146106a5578063e985e9c5146106e2578063f2fde38b1461071f576101d8565b80638da5cb5b146105e157806395d89b411461060c578063a0712d6814610637578063a22cb46514610653576101d8565b80636c0360eb116100d15780636c0360eb1461053757806370a0823114610562578063715018a61461059f5780637501f741146105b6576101d8565b806355f804b31461047b5780635b95a225146104a45780635c975abb146104cf5780636352211e146104fa576101d8565b80632036937f1161017a5780633ccfd60b116101495780633ccfd60b146103e257806342842e0e146103ec57806344a0d68a146104155780634f6ccce71461043e576101d8565b80632036937f1461032a57806323b872dd146103535780632c3d8acb1461037c5780632f745c59146103a5576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806313faede6146102ab578063162094c4146102d657806318160ddd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612ed8565b610748565b604051610211919061348f565b60405180910390f35b34801561022657600080fd5b5061022f61075a565b60405161023c91906134aa565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612f7b565b6107ec565b6040516102799190613428565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612e20565b610832565b005b3480156102b757600080fd5b506102c061094a565b6040516102cd919061378c565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612fa8565b610950565b005b34801561030b57600080fd5b50610314610984565b604051610321919061378c565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612f7b565b610991565b005b34801561035f57600080fd5b5061037a60048036038101906103759190612d0a565b610a2c565b005b34801561038857600080fd5b506103a3600480360381019061039e9190612e60565b610a8c565b005b3480156103b157600080fd5b506103cc60048036038101906103c79190612e20565b610c44565b6040516103d9919061378c565b60405180910390f35b6103ea610ce9565b005b3480156103f857600080fd5b50610413600480360381019061040e9190612d0a565b610d31565b005b34801561042157600080fd5b5061043c60048036038101906104379190612f7b565b610d51565b005b34801561044a57600080fd5b5061046560048036038101906104609190612f7b565b610d63565b604051610472919061378c565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d9190612f32565b610dd4565b005b3480156104b057600080fd5b506104b9610df6565b6040516104c6919061378c565b60405180910390f35b3480156104db57600080fd5b506104e4610dfc565b6040516104f1919061348f565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190612f7b565b610e0f565b60405161052e9190613428565b60405180910390f35b34801561054357600080fd5b5061054c610ec1565b60405161055991906134aa565b60405180910390f35b34801561056e57600080fd5b5061058960048036038101906105849190612c9d565b610f4f565b604051610596919061378c565b60405180910390f35b3480156105ab57600080fd5b506105b4611007565b005b3480156105c257600080fd5b506105cb61101b565b6040516105d8919061378c565b60405180910390f35b3480156105ed57600080fd5b506105f6611021565b6040516106039190613428565b60405180910390f35b34801561061857600080fd5b5061062161104b565b60405161062e91906134aa565b60405180910390f35b610651600480360381019061064c9190612f7b565b6110dd565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612de0565b61131c565b005b34801561068857600080fd5b506106a3600480360381019061069e9190612d5d565b611332565b005b3480156106b157600080fd5b506106cc60048036038101906106c79190612f7b565b611394565b6040516106d991906134aa565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190612cca565b6114e2565b604051610716919061348f565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190612c9d565b611576565b005b600061075382611897565b9050919050565b60606000805461076990613a3a565b80601f016020809104026020016040519081016040528092919081815260200182805461079590613a3a565b80156107e25780601f106107b7576101008083540402835291602001916107e2565b820191906000526020600020905b8154815290600101906020018083116107c557829003601f168201915b5050505050905090565b60006107f782611911565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083d82610e0f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a59061372c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108cd61195c565b73ffffffffffffffffffffffffffffffffffffffff1614806108fc57506108fb816108f661195c565b6114e2565b5b61093b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109329061362c565b60405180910390fd5b6109458383611964565b505050565b600f5481565b610958611a1d565b8060116000848152602001908152602001600020908051906020019061097f929190612975565b505050565b6000600980549050905090565b610999611a1d565b600d548111156109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d59061366c565b60405180910390fd5b600e548111610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a19906136cc565b60405180910390fd5b80600e8190555050565b610a3d610a3761195c565b82611a9b565b610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a739061376c565b60405180910390fd5b610a87838383611b30565b505050565b610a94611a1d565b60005b8251811015610c3f57600d54828281518110610ab657610ab5613bd3565b5b60200260200101511115610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af69061366c565b60405180910390fd5b610b22828281518110610b1557610b14613bd3565b5b6020026020010151611d97565b15610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b599061370c565b60405180910390fd5b610ba0838281518110610b7857610b77613bd3565b5b6020026020010151838381518110610b9357610b92613bd3565b5b6020026020010151611e03565b610ba8611e21565b610bcb838381518110610bbe57610bbd613bd3565b5b60200260200101516115fa565b604051602001610bdc9291906133f9565b60405160208183030381529060405260116000848481518110610c0257610c01613bd3565b5b602002602001015181526020019081526020016000209080519060200190610c2b929190612975565b508080610c3790613a9d565b915050610a97565b505050565b6000610c4f83610f4f565b8210610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c87906134cc565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cf1611a1d565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d2f57600080fd5b565b610d4c83838360405180602001604052806000815250611332565b505050565b610d59611a1d565b80600f8190555050565b6000610d6d610984565b8210610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da59061374c565b60405180910390fd5b60098281548110610dc257610dc1613bd3565b5b90600052602060002001549050919050565b610ddc611a1d565b80600c9080519060200190610df2929190612975565b5050565b600e5481565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf906136ec565b60405180910390fd5b80915050919050565b600c8054610ece90613a3a565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90613a3a565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb79061360c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61100f611a1d565b6110196000611eb3565b565b600d5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461105a90613a3a565b80601f016020809104026020016040519081016040528092919081815260200182805461108690613a3a565b80156110d35780601f106110a8576101008083540402835291602001916110d3565b820191906000526020600020905b8154815290600101906020018083116110b657829003601f168201915b5050505050905090565b6110e681611d97565b15611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d9061370c565b60405180910390fd5b60001515601060009054906101000a900460ff1615151461117c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111739061356c565b60405180910390fd5b600d548111156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b89061366c565b60405180910390fd5b600e5481111580156111d35750600081115b611212576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611209906135ec565b60405180910390fd5b600f54341015611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e906135cc565b60405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050506112b757600080fd5b6112c13382611e03565b6112c9611e21565b6112d2826115fa565b6040516020016112e39291906133f9565b604051602081830303815290604052601160008381526020019081526020016000209080519060200190611318929190612975565b5050565b61132e61132761195c565b8383611f79565b5050565b61134361133d61195c565b83611a9b565b611382576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113799061376c565b60405180910390fd5b61138e848484846120e6565b50505050565b606061139f82611d97565b6113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d5906136ac565b60405180910390fd5b60006011600084815260200190815260200160002080546113fe90613a3a565b905011156114a95760116000838152602001908152602001600020805461142490613a3a565b80601f016020809104026020016040519081016040528092919081815260200182805461145090613a3a565b801561149d5780601f106114725761010080835404028352916020019161149d565b820191906000526020600020905b81548152906001019060200180831161148057829003601f168201915b505050505090506114dd565b6114b1611e21565b6114ba836115fa565b6040516020016114cb9291906133f9565b60405160208183030381529060405290505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61157e611a1d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e59061350c565b60405180910390fd5b6115f781611eb3565b50565b60606000821415611642576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611756565b600082905060005b6000821461167457808061165d90613a9d565b915050600a8261166d919061391f565b915061164a565b60008167ffffffffffffffff8111156116905761168f613c02565b5b6040519080825280601f01601f1916602001820160405280156116c25781602001600182028036833780820191505090505b5090505b6000851461174f576001826116db9190613950565b9150600a856116ea9190613ae6565b60306116f691906138c9565b60f81b81838151811061170c5761170b613bd3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611748919061391f565b94506116c6565b8093505050505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b611789838383611892565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117cc576117c781612142565b61180b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461180a57611809838261218b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561184e57611849816122f8565b61188d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461188c5761188b82826123c9565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061190a575061190982612448565b5b9050919050565b61191a81611d97565b611959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611950906136ec565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119d783610e0f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611a2561195c565b73ffffffffffffffffffffffffffffffffffffffff16611a43611021565b73ffffffffffffffffffffffffffffffffffffffff1614611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a909061368c565b60405180910390fd5b565b600080611aa783610e0f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ae95750611ae881856114e2565b5b80611b2757508373ffffffffffffffffffffffffffffffffffffffff16611b0f846107ec565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b5082610e0f565b73ffffffffffffffffffffffffffffffffffffffff1614611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d9061352c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d9061358c565b60405180910390fd5b611c2183838361252a565b611c2c600082611964565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c7c9190613950565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd391906138c9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d9283838361253a565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611e1d82826040518060200160405280600081525061253f565b5050565b6060600c8054611e3090613a3a565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5c90613a3a565b8015611ea95780601f10611e7e57610100808354040283529160200191611ea9565b820191906000526020600020905b815481529060010190602001808311611e8c57829003601f168201915b5050505050905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf906135ac565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120d9919061348f565b60405180910390a3505050565b6120f1848484611b30565b6120fd8484848461259a565b61213c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612133906134ec565b60405180910390fd5b50505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161219884610f4f565b6121a29190613950565b9050600060086000848152602001908152602001600020549050818114612287576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061230c9190613950565b90506000600a600084815260200190815260200160002054905060006009838154811061233c5761233b613bd3565b5b90600052602060002001549050806009838154811061235e5761235d613bd3565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806123ad576123ac613ba4565b5b6001900381819060005260206000200160009055905550505050565b60006123d483610f4f565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061251357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612523575061252282612731565b5b9050919050565b61253583838361177e565b505050565b505050565b612549838361279b565b612556600084848461259a565b612595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258c906134ec565b60405180910390fd5b505050565b60006125bb8473ffffffffffffffffffffffffffffffffffffffff1661175b565b15612724578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125e461195c565b8786866040518563ffffffff1660e01b81526004016126069493929190613443565b602060405180830381600087803b15801561262057600080fd5b505af192505050801561265157506040513d601f19601f8201168201806040525081019061264e9190612f05565b60015b6126d4573d8060008114612681576040519150601f19603f3d011682016040523d82523d6000602084013e612686565b606091505b506000815114156126cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c3906134ec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612729565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561280b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128029061364c565b60405180910390fd5b61281481611d97565b15612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284b9061354c565b60405180910390fd5b6128606000838361252a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b091906138c9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129716000838361253a565b5050565b82805461298190613a3a565b90600052602060002090601f0160209004810192826129a357600085556129ea565b82601f106129bc57805160ff19168380011785556129ea565b828001600101855582156129ea579182015b828111156129e95782518255916020019190600101906129ce565b5b5090506129f791906129fb565b5090565b5b80821115612a145760008160009055506001016129fc565b5090565b6000612a2b612a26846137cc565b6137a7565b90508083825260208201905082856020860282011115612a4e57612a4d613c36565b5b60005b85811015612a7e5781612a648882612b7c565b845260208401935060208301925050600181019050612a51565b5050509392505050565b6000612a9b612a96846137f8565b6137a7565b90508083825260208201905082856020860282011115612abe57612abd613c36565b5b60005b85811015612aee5781612ad48882612c88565b845260208401935060208301925050600181019050612ac1565b5050509392505050565b6000612b0b612b0684613824565b6137a7565b905082815260208101848484011115612b2757612b26613c3b565b5b612b328482856139f8565b509392505050565b6000612b4d612b4884613855565b6137a7565b905082815260208101848484011115612b6957612b68613c3b565b5b612b748482856139f8565b509392505050565b600081359050612b8b816141ac565b92915050565b600082601f830112612ba657612ba5613c31565b5b8135612bb6848260208601612a18565b91505092915050565b600082601f830112612bd457612bd3613c31565b5b8135612be4848260208601612a88565b91505092915050565b600081359050612bfc816141c3565b92915050565b600081359050612c11816141da565b92915050565b600081519050612c26816141da565b92915050565b600082601f830112612c4157612c40613c31565b5b8135612c51848260208601612af8565b91505092915050565b600082601f830112612c6f57612c6e613c31565b5b8135612c7f848260208601612b3a565b91505092915050565b600081359050612c97816141f1565b92915050565b600060208284031215612cb357612cb2613c45565b5b6000612cc184828501612b7c565b91505092915050565b60008060408385031215612ce157612ce0613c45565b5b6000612cef85828601612b7c565b9250506020612d0085828601612b7c565b9150509250929050565b600080600060608486031215612d2357612d22613c45565b5b6000612d3186828701612b7c565b9350506020612d4286828701612b7c565b9250506040612d5386828701612c88565b9150509250925092565b60008060008060808587031215612d7757612d76613c45565b5b6000612d8587828801612b7c565b9450506020612d9687828801612b7c565b9350506040612da787828801612c88565b925050606085013567ffffffffffffffff811115612dc857612dc7613c40565b5b612dd487828801612c2c565b91505092959194509250565b60008060408385031215612df757612df6613c45565b5b6000612e0585828601612b7c565b9250506020612e1685828601612bed565b9150509250929050565b60008060408385031215612e3757612e36613c45565b5b6000612e4585828601612b7c565b9250506020612e5685828601612c88565b9150509250929050565b60008060408385031215612e7757612e76613c45565b5b600083013567ffffffffffffffff811115612e9557612e94613c40565b5b612ea185828601612b91565b925050602083013567ffffffffffffffff811115612ec257612ec1613c40565b5b612ece85828601612bbf565b9150509250929050565b600060208284031215612eee57612eed613c45565b5b6000612efc84828501612c02565b91505092915050565b600060208284031215612f1b57612f1a613c45565b5b6000612f2984828501612c17565b91505092915050565b600060208284031215612f4857612f47613c45565b5b600082013567ffffffffffffffff811115612f6657612f65613c40565b5b612f7284828501612c5a565b91505092915050565b600060208284031215612f9157612f90613c45565b5b6000612f9f84828501612c88565b91505092915050565b60008060408385031215612fbf57612fbe613c45565b5b6000612fcd85828601612c88565b925050602083013567ffffffffffffffff811115612fee57612fed613c40565b5b612ffa85828601612c5a565b9150509250929050565b61300d81613984565b82525050565b61301c81613996565b82525050565b600061302d82613886565b613037818561389c565b9350613047818560208601613a07565b61305081613c4a565b840191505092915050565b600061306682613891565b61307081856138ad565b9350613080818560208601613a07565b61308981613c4a565b840191505092915050565b600061309f82613891565b6130a981856138be565b93506130b9818560208601613a07565b80840191505092915050565b60006130d2602b836138ad565b91506130dd82613c5b565b604082019050919050565b60006130f56032836138ad565b915061310082613caa565b604082019050919050565b60006131186026836138ad565b915061312382613cf9565b604082019050919050565b600061313b6025836138ad565b915061314682613d48565b604082019050919050565b600061315e601c836138ad565b915061316982613d97565b602082019050919050565b6000613181600b836138ad565b915061318c82613dc0565b602082019050919050565b60006131a46024836138ad565b91506131af82613de9565b604082019050919050565b60006131c76019836138ad565b91506131d282613e38565b602082019050919050565b60006131ea6016836138ad565b91506131f582613e61565b602082019050919050565b600061320d6010836138ad565b915061321882613e8a565b602082019050919050565b60006132306029836138ad565b915061323b82613eb3565b604082019050919050565b6000613253603e836138ad565b915061325e82613f02565b604082019050919050565b60006132766020836138ad565b915061328182613f51565b602082019050919050565b60006132996005836138be565b91506132a482613f7a565b600582019050919050565b60006132bc6014836138ad565b91506132c782613fa3565b602082019050919050565b60006132df6020836138ad565b91506132ea82613fcc565b602082019050919050565b6000613302602f836138ad565b915061330d82613ff5565b604082019050919050565b6000613325601d836138ad565b915061333082614044565b602082019050919050565b60006133486018836138ad565b91506133538261406d565b602082019050919050565b600061336b6014836138ad565b915061337682614096565b602082019050919050565b600061338e6021836138ad565b9150613399826140bf565b604082019050919050565b60006133b1602c836138ad565b91506133bc8261410e565b604082019050919050565b60006133d4602e836138ad565b91506133df8261415d565b604082019050919050565b6133f3816139ee565b82525050565b60006134058285613094565b91506134118284613094565b915061341c8261328c565b91508190509392505050565b600060208201905061343d6000830184613004565b92915050565b60006080820190506134586000830187613004565b6134656020830186613004565b61347260408301856133ea565b81810360608301526134848184613022565b905095945050505050565b60006020820190506134a46000830184613013565b92915050565b600060208201905081810360008301526134c4818461305b565b905092915050565b600060208201905081810360008301526134e5816130c5565b9050919050565b60006020820190508181036000830152613505816130e8565b9050919050565b600060208201905081810360008301526135258161310b565b9050919050565b600060208201905081810360008301526135458161312e565b9050919050565b6000602082019050818103600083015261356581613151565b9050919050565b6000602082019050818103600083015261358581613174565b9050919050565b600060208201905081810360008301526135a581613197565b9050919050565b600060208201905081810360008301526135c5816131ba565b9050919050565b600060208201905081810360008301526135e5816131dd565b9050919050565b6000602082019050818103600083015261360581613200565b9050919050565b6000602082019050818103600083015261362581613223565b9050919050565b6000602082019050818103600083015261364581613246565b9050919050565b6000602082019050818103600083015261366581613269565b9050919050565b60006020820190508181036000830152613685816132af565b9050919050565b600060208201905081810360008301526136a5816132d2565b9050919050565b600060208201905081810360008301526136c5816132f5565b9050919050565b600060208201905081810360008301526136e581613318565b9050919050565b600060208201905081810360008301526137058161333b565b9050919050565b600060208201905081810360008301526137258161335e565b9050919050565b6000602082019050818103600083015261374581613381565b9050919050565b60006020820190508181036000830152613765816133a4565b9050919050565b60006020820190508181036000830152613785816133c7565b9050919050565b60006020820190506137a160008301846133ea565b92915050565b60006137b16137c2565b90506137bd8282613a6c565b919050565b6000604051905090565b600067ffffffffffffffff8211156137e7576137e6613c02565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561381357613812613c02565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561383f5761383e613c02565b5b61384882613c4a565b9050602081019050919050565b600067ffffffffffffffff8211156138705761386f613c02565b5b61387982613c4a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138d4826139ee565b91506138df836139ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561391457613913613b17565b5b828201905092915050565b600061392a826139ee565b9150613935836139ee565b92508261394557613944613b46565b5b828204905092915050565b600061395b826139ee565b9150613966836139ee565b92508282101561397957613978613b17565b5b828203905092915050565b600061398f826139ce565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a25578082015181840152602081019050613a0a565b83811115613a34576000848401525b50505050565b60006002820490506001821680613a5257607f821691505b60208210811415613a6657613a65613b75565b5b50919050565b613a7582613c4a565b810181811067ffffffffffffffff82111715613a9457613a93613c02565b5b80604052505050565b6000613aa8826139ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613adb57613ada613b17565b5b600182019050919050565b6000613af1826139ee565b9150613afc836139ee565b925082613b0c57613b0b613b46565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f73616c6520636c6f736564000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6d696e696d756d20707269636520726571756972656400000000000000000000600082015250565b7f696e76616c6964205f746f6b656e496400000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f6d6178696d756d20746f6b656e20706173736564000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6577206d696e742073697a65206d7573742062652067726561746572000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f746f6b656e20616c7265616479206d696e746564000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6141b581613984565b81146141c057600080fd5b50565b6141cc81613996565b81146141d757600080fd5b50565b6141e3816139a2565b81146141ee57600080fd5b50565b6141fa816139ee565b811461420557600080fd5b5056fea264697066735822122059ed66cbd0e8fc571fd0a0e2049242dea3fdc0c853848984041f14e853e93a7d64736f6c63430008070033

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.