ETH Price: $2,266.57 (+2.24%)

Token

Skeleton Steph Fanboy Pass (SSFP)
 

Overview

Max Total Supply

251 SSFP

Holders

219

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SSFP
0xc5aa4294048bcffa965e6b135573632bdabfe4df
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:
FanboyPass

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license
File 1 of 14 : FanboyPass.sol
// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity ^0.8.6;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "base64-sol/base64.sol";

contract FanboyPass is ERC721URIStorage, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    uint256 public totalMint = 250;

    string IMGURL = "https://sekerfactory.mypinata.cloud/ipfs/QmXUt2ik3Ph59r8r7Tx4L745UB3T1EX7g9BFUYEqqSCPwH";


    constructor() ERC721("Skeleton Steph Fanboy Pass", "SSFP") {}

    function mint() public {
        require(
            Counters.current(_tokenIds) <= totalMint,
            "minting has reached its max"
        );
        uint256 newNFT = _tokenIds.current();
        _safeMint(msg.sender, newNFT);
        _tokenIds.increment();
    }

    function updateTotalMint(uint256 _newSupply) public onlyOwner {
        require(_newSupply > _tokenIds.current(), "new supply less than already minted");
        totalMint = _newSupply;
    }

    function updateTokenURI(string memory _newURI) public onlyOwner {
        IMGURL = _newURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721URIStorage)
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "SS Fanboy Pass: URI query for nonexistent token"
        );
        return generateCardURI(tokenId);
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIds.current();
    }

    function generateCardURI(uint256 _id) public view returns (string memory) {
        return
            string(
                abi.encodePacked(
                    "data:application/json;base64,",
                    Base64.encode(
                        bytes(
                            abi.encodePacked(
                                '{"name":"Skeleton Steph - Fanboy Pass",',
                                '"description":"Locks in your minting spot for the exclusive Skeleton Steph Genesis Mini-Series, which goes live Oct. 15th",',
                                '"attributes": ',
                                "[",
                                '{"trait_type":"Fanboy Number","value":"',
                                Strings.toString(_id),
                                "/",
                                Strings.toString(totalMint),
                                '"}',
                                "],",
                                '"image":"',
                                IMGURL,
                                '"}'
                            )
                        )
                    )
                )
            );
    }
}

File 2 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 3 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 4 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 5 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 6 of 14 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 7 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 8 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 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 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 11 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 12 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 13 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);
}

File 14 of 14 : base64.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
                                            hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
                                            hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
                                            hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
                // read 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
               // read 4 characters
               dataPtr := add(dataPtr, 4)
               let input := mload(dataPtr)

               // write 3 bytes
               let output := add(
                   add(
                       shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                       shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                   add(
                       shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                               and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}

Settings
{
  "evmVersion": "berlin",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "remappings": [],
  "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":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"generateCardURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"mint","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":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"updateTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"updateTotalMint","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260fa600955604051806080016040528060578152602001620037b260579139600a90805190602001906200003a929190620001dd565b503480156200004857600080fd5b506040518060400160405280601a81526020017f536b656c65746f6e2053746570682046616e626f7920506173730000000000008152506040518060400160405280600481526020017f53534650000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000cd929190620001dd565b508060019080519060200190620000e6929190620001dd565b50505062000109620000fd6200010f60201b60201c565b6200011760201b60201c565b620002f2565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001eb906200028d565b90600052602060002090601f0160209004810192826200020f57600085556200025b565b82601f106200022a57805160ff19168380011785556200025b565b828001600101855582156200025b579182015b828111156200025a5782518255916020019190600101906200023d565b5b5090506200026a91906200026e565b5090565b5b80821115620002895760008160009055506001016200026f565b5090565b60006002820490506001821680620002a657607f821691505b60208210811415620002bd57620002bc620002c3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6134b080620003026000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b857806398cd61531161007c57806398cd615314610351578063a22cb4651461036d578063b88d4fde14610389578063c87b56dd146103a5578063e985e9c5146103d5578063f2fde38b1461040557610142565b806370a08231146102ab578063715018a6146102db5780637cb6e9d7146102e55780638da5cb5b1461031557806395d89b411461033357610142565b806318160ddd1161010a57806318160ddd146101eb57806323b872dd146102095780633d6969a71461022557806342842e0e1461024157806359a7715a1461025d5780636352211e1461027b57610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c55780631249c58b146101e1575b600080fd5b610161600480360381019061015c9190611fb6565b610421565b60405161016e919061268b565b60405180910390f35b61017f610503565b60405161018c91906126a6565b60405180910390f35b6101af60048036038101906101aa9190612059565b610595565b6040516101bc9190612624565b60405180910390f35b6101df60048036038101906101da9190611f76565b6105db565b005b6101e96106f3565b005b6101f3610766565b60405161020091906128c8565b60405180910390f35b610223600480360381019061021e9190611e60565b610777565b005b61023f600480360381019061023a9190612059565b6107d7565b005b61025b60048036038101906102569190611e60565b610834565b005b610265610854565b60405161027291906128c8565b60405180910390f35b61029560048036038101906102909190612059565b61085a565b6040516102a29190612624565b60405180910390f35b6102c560048036038101906102c09190611df3565b61090c565b6040516102d291906128c8565b60405180910390f35b6102e36109c4565b005b6102ff60048036038101906102fa9190612059565b6109d8565b60405161030c91906126a6565b60405180910390f35b61031d610a3f565b60405161032a9190612624565b60405180910390f35b61033b610a69565b60405161034891906126a6565b60405180910390f35b61036b60048036038101906103669190612010565b610afb565b005b61038760048036038101906103829190611f36565b610b1d565b005b6103a3600480360381019061039e9190611eb3565b610b33565b005b6103bf60048036038101906103ba9190612059565b610b95565b6040516103cc91906126a6565b60405180910390f35b6103ef60048036038101906103ea9190611e20565b610bef565b6040516103fc919061268b565b60405180910390f35b61041f600480360381019061041a9190611df3565b610c83565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104fc57506104fb82610d07565b5b9050919050565b60606000805461051290612b8d565b80601f016020809104026020016040519081016040528092919081815260200182805461053e90612b8d565b801561058b5780601f106105605761010080835404028352916020019161058b565b820191906000526020600020905b81548152906001019060200180831161056e57829003601f168201915b5050505050905090565b60006105a082610d71565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105e68261085a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064e90612848565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610676610dbc565b73ffffffffffffffffffffffffffffffffffffffff1614806106a557506106a48161069f610dbc565b610bef565b5b6106e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106db906127a8565b60405180910390fd5b6106ee8383610dc4565b505050565b6009546107006008610e7d565b1115610741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073890612868565b60405180910390fd5b600061074d6008610e7d565b90506107593382610e8b565b6107636008610ea9565b50565b60006107726008610e7d565b905090565b610788610782610dbc565b82610ebf565b6107c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107be90612888565b60405180910390fd5b6107d2838383610f54565b505050565b6107df6111bb565b6107e96008610e7d565b811161082a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082190612808565b60405180910390fd5b8060098190555050565b61084f83838360405180602001604052806000815250610b33565b505050565b60095481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fa90612828565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561097d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097490612788565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109cc6111bb565b6109d66000611239565b565b6060610a196109e6836112ff565b6109f16009546112ff565b600a604051602001610a0593929190612563565b604051602081830303815290604052611460565b604051602001610a299190612602565b6040516020818303038152906040529050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610a7890612b8d565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa490612b8d565b8015610af15780601f10610ac657610100808354040283529160200191610af1565b820191906000526020600020905b815481529060010190602001808311610ad457829003601f168201915b5050505050905090565b610b036111bb565b80600a9080519060200190610b19929190611c07565b5050565b610b2f610b28610dbc565b83836115d9565b5050565b610b44610b3e610dbc565b83610ebf565b610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90612888565b60405180910390fd5b610b8f84848484611746565b50505050565b6060610ba0826117a2565b610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd6906128a8565b60405180910390fd5b610be8826109d8565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c8b6111bb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf2906126e8565b60405180910390fd5b610d0481611239565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610d7a816117a2565b610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090612828565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610e378361085a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b610ea582826040518060200160405280600081525061180e565b5050565b6001816000016000828254019250508190555050565b600080610ecb8361085a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610f0d5750610f0c8185610bef565b5b80610f4b57508373ffffffffffffffffffffffffffffffffffffffff16610f3384610595565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610f748261085a565b73ffffffffffffffffffffffffffffffffffffffff1614610fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc190612708565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190612748565b60405180910390fd5b611045838383611869565b611050600082610dc4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110a09190612aa3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110f791906129c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111b683838361186e565b505050565b6111c3610dbc565b73ffffffffffffffffffffffffffffffffffffffff166111e1610a3f565b73ffffffffffffffffffffffffffffffffffffffff1614611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e906127e8565b60405180910390fd5b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606000821415611347576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061145b565b600082905060005b6000821461137957808061136290612bf0565b915050600a826113729190612a18565b915061134f565b60008167ffffffffffffffff81111561139557611394612d26565b5b6040519080825280601f01601f1916602001820160405280156113c75781602001600182028036833780820191505090505b5090505b60008514611454576001826113e09190612aa3565b9150600a856113ef9190612c39565b60306113fb91906129c2565b60f81b81838151811061141157611410612cf7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561144d9190612a18565b94506113cb565b8093505050505b919050565b6060600082511415611483576040518060200160405280600081525090506115d4565b600060405180606001604052806040815260200161343b60409139905060006003600285516114b291906129c2565b6114bc9190612a18565b60046114c89190612a49565b905060006020826114d991906129c2565b67ffffffffffffffff8111156114f2576114f1612d26565b5b6040519080825280601f01601f1916602001820160405280156115245781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015611593576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050611538565b6003895106600181146115ad57600281146115bd576115c8565b613d3d60f01b60028303526115c8565b603d60f81b60018303525b50505050508093505050505b919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f90612768565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611739919061268b565b60405180910390a3505050565b611751848484610f54565b61175d84848484611873565b61179c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611793906126c8565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6118188383611a0a565b6118256000848484611873565b611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b906126c8565b60405180910390fd5b505050565b505050565b505050565b60006118948473ffffffffffffffffffffffffffffffffffffffff16611be4565b156119fd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118bd610dbc565b8786866040518563ffffffff1660e01b81526004016118df949392919061263f565b602060405180830381600087803b1580156118f957600080fd5b505af192505050801561192a57506040513d601f19601f820116820180604052508101906119279190611fe3565b60015b6119ad573d806000811461195a576040519150601f19603f3d011682016040523d82523d6000602084013e61195f565b606091505b506000815114156119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c906126c8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611a02565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a71906127c8565b60405180910390fd5b611a83816117a2565b15611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba90612728565b60405180910390fd5b611acf60008383611869565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b1f91906129c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611be06000838361186e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611c1390612b8d565b90600052602060002090601f016020900481019282611c355760008555611c7c565b82601f10611c4e57805160ff1916838001178555611c7c565b82800160010185558215611c7c579182015b82811115611c7b578251825591602001919060010190611c60565b5b509050611c899190611c8d565b5090565b5b80821115611ca6576000816000905550600101611c8e565b5090565b6000611cbd611cb884612908565b6128e3565b905082815260208101848484011115611cd957611cd8612d5a565b5b611ce4848285612b4b565b509392505050565b6000611cff611cfa84612939565b6128e3565b905082815260208101848484011115611d1b57611d1a612d5a565b5b611d26848285612b4b565b509392505050565b600081359050611d3d816133de565b92915050565b600081359050611d52816133f5565b92915050565b600081359050611d678161340c565b92915050565b600081519050611d7c8161340c565b92915050565b600082601f830112611d9757611d96612d55565b5b8135611da7848260208601611caa565b91505092915050565b600082601f830112611dc557611dc4612d55565b5b8135611dd5848260208601611cec565b91505092915050565b600081359050611ded81613423565b92915050565b600060208284031215611e0957611e08612d64565b5b6000611e1784828501611d2e565b91505092915050565b60008060408385031215611e3757611e36612d64565b5b6000611e4585828601611d2e565b9250506020611e5685828601611d2e565b9150509250929050565b600080600060608486031215611e7957611e78612d64565b5b6000611e8786828701611d2e565b9350506020611e9886828701611d2e565b9250506040611ea986828701611dde565b9150509250925092565b60008060008060808587031215611ecd57611ecc612d64565b5b6000611edb87828801611d2e565b9450506020611eec87828801611d2e565b9350506040611efd87828801611dde565b925050606085013567ffffffffffffffff811115611f1e57611f1d612d5f565b5b611f2a87828801611d82565b91505092959194509250565b60008060408385031215611f4d57611f4c612d64565b5b6000611f5b85828601611d2e565b9250506020611f6c85828601611d43565b9150509250929050565b60008060408385031215611f8d57611f8c612d64565b5b6000611f9b85828601611d2e565b9250506020611fac85828601611dde565b9150509250929050565b600060208284031215611fcc57611fcb612d64565b5b6000611fda84828501611d58565b91505092915050565b600060208284031215611ff957611ff8612d64565b5b600061200784828501611d6d565b91505092915050565b60006020828403121561202657612025612d64565b5b600082013567ffffffffffffffff81111561204457612043612d5f565b5b61205084828501611db0565b91505092915050565b60006020828403121561206f5761206e612d64565b5b600061207d84828501611dde565b91505092915050565b61208f81612ad7565b82525050565b61209e81612ae9565b82525050565b60006120af8261297f565b6120b98185612995565b93506120c9818560208601612b5a565b6120d281612d69565b840191505092915050565b60006120e88261298a565b6120f281856129a6565b9350612102818560208601612b5a565b61210b81612d69565b840191505092915050565b60006121218261298a565b61212b81856129b7565b935061213b818560208601612b5a565b80840191505092915050565b6000815461215481612b8d565b61215e81866129b7565b94506001821660008114612179576001811461218a576121bd565b60ff198316865281860193506121bd565b6121938561296a565b60005b838110156121b557815481890152600182019150602081019050612196565b838801955050505b50505092915050565b60006121d36027836129b7565b91506121de82612d7a565b602782019050919050565b60006121f66032836129a6565b915061220182612dc9565b604082019050919050565b60006122196026836129a6565b915061222482612e18565b604082019050919050565b600061223c6025836129a6565b915061224782612e67565b604082019050919050565b600061225f601c836129a6565b915061226a82612eb6565b602082019050919050565b6000612282607b836129b7565b915061228d82612edf565b607b82019050919050565b60006122a56024836129a6565b91506122b082612f7a565b604082019050919050565b60006122c86019836129a6565b91506122d382612fc9565b602082019050919050565b60006122eb6029836129a6565b91506122f682612ff2565b604082019050919050565b600061230e6009836129b7565b915061231982613041565b600982019050919050565b60006123316002836129b7565b915061233c8261306a565b600282019050919050565b6000612354603e836129a6565b915061235f82613093565b604082019050919050565b60006123776020836129a6565b9150612382826130e2565b602082019050919050565b600061239a6002836129b7565b91506123a58261310b565b600282019050919050565b60006123bd6020836129a6565b91506123c882613134565b602082019050919050565b60006123e06001836129b7565b91506123eb8261315d565b600182019050919050565b60006124036023836129a6565b915061240e82613186565b604082019050919050565b60006124266018836129a6565b9150612431826131d5565b602082019050919050565b60006124496021836129a6565b9150612454826131fe565b604082019050919050565b600061246c601d836129b7565b91506124778261324d565b601d82019050919050565b600061248f6027836129b7565b915061249a82613276565b602782019050919050565b60006124b2600e836129b7565b91506124bd826132c5565b600e82019050919050565b60006124d5601b836129a6565b91506124e0826132ee565b602082019050919050565b60006124f8602e836129a6565b915061250382613317565b604082019050919050565b600061251b602f836129a6565b915061252682613366565b604082019050919050565b600061253e6001836129b7565b9150612549826133b5565b600182019050919050565b61255d81612b41565b82525050565b600061256e826121c6565b915061257982612275565b9150612584826124a5565b915061258f826123d3565b915061259a82612482565b91506125a68286612116565b91506125b182612531565b91506125bd8285612116565b91506125c882612324565b91506125d38261238d565b91506125de82612301565b91506125ea8284612147565b91506125f582612324565b9150819050949350505050565b600061260d8261245f565b91506126198284612116565b915081905092915050565b60006020820190506126396000830184612086565b92915050565b60006080820190506126546000830187612086565b6126616020830186612086565b61266e6040830185612554565b818103606083015261268081846120a4565b905095945050505050565b60006020820190506126a06000830184612095565b92915050565b600060208201905081810360008301526126c081846120dd565b905092915050565b600060208201905081810360008301526126e1816121e9565b9050919050565b600060208201905081810360008301526127018161220c565b9050919050565b600060208201905081810360008301526127218161222f565b9050919050565b6000602082019050818103600083015261274181612252565b9050919050565b6000602082019050818103600083015261276181612298565b9050919050565b60006020820190508181036000830152612781816122bb565b9050919050565b600060208201905081810360008301526127a1816122de565b9050919050565b600060208201905081810360008301526127c181612347565b9050919050565b600060208201905081810360008301526127e18161236a565b9050919050565b60006020820190508181036000830152612801816123b0565b9050919050565b60006020820190508181036000830152612821816123f6565b9050919050565b6000602082019050818103600083015261284181612419565b9050919050565b600060208201905081810360008301526128618161243c565b9050919050565b60006020820190508181036000830152612881816124c8565b9050919050565b600060208201905081810360008301526128a1816124eb565b9050919050565b600060208201905081810360008301526128c18161250e565b9050919050565b60006020820190506128dd6000830184612554565b92915050565b60006128ed6128fe565b90506128f98282612bbf565b919050565b6000604051905090565b600067ffffffffffffffff82111561292357612922612d26565b5b61292c82612d69565b9050602081019050919050565b600067ffffffffffffffff82111561295457612953612d26565b5b61295d82612d69565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129cd82612b41565b91506129d883612b41565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a0d57612a0c612c6a565b5b828201905092915050565b6000612a2382612b41565b9150612a2e83612b41565b925082612a3e57612a3d612c99565b5b828204905092915050565b6000612a5482612b41565b9150612a5f83612b41565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a9857612a97612c6a565b5b828202905092915050565b6000612aae82612b41565b9150612ab983612b41565b925082821015612acc57612acb612c6a565b5b828203905092915050565b6000612ae282612b21565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b78578082015181840152602081019050612b5d565b83811115612b87576000848401525b50505050565b60006002820490506001821680612ba557607f821691505b60208210811415612bb957612bb8612cc8565b5b50919050565b612bc882612d69565b810181811067ffffffffffffffff82111715612be757612be6612d26565b5b80604052505050565b6000612bfb82612b41565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c2e57612c2d612c6a565b5b600182019050919050565b6000612c4482612b41565b9150612c4f83612b41565b925082612c5f57612c5e612c99565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f7b226e616d65223a22536b656c65746f6e205374657068202d2046616e626f7960008201527f2050617373222c00000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f226465736372697074696f6e223a224c6f636b7320696e20796f7572206d696e60008201527f74696e672073706f7420666f7220746865206578636c757369766520536b656c60208201527f65746f6e2053746570682047656e65736973204d696e692d5365726965732c2060408201527f776869636820676f6573206c697665204f63742e2031357468222c0000000000606082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f22696d616765223a220000000000000000000000000000000000000000000000600082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5d2c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5b00000000000000000000000000000000000000000000000000000000000000600082015250565b7f6e657720737570706c79206c657373207468616e20616c7265616479206d696e60008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f7b2274726169745f74797065223a2246616e626f79204e756d626572222c227660008201527f616c7565223a2200000000000000000000000000000000000000000000000000602082015250565b7f2261747472696275746573223a20000000000000000000000000000000000000600082015250565b7f6d696e74696e6720686173207265616368656420697473206d61780000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f53532046616e626f7920506173733a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6133e781612ad7565b81146133f257600080fd5b50565b6133fe81612ae9565b811461340957600080fd5b50565b61341581612af5565b811461342057600080fd5b50565b61342c81612b41565b811461343757600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220c70a39e2a589c75918bbbde0bf702b743310c5463f6ed89a1be8ce272ba9470164736f6c6343000806003368747470733a2f2f73656b6572666163746f72792e6d7970696e6174612e636c6f75642f697066732f516d58557432696b3350683539723872375478344c37343555423354314558376739424655594571715343507748

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b857806398cd61531161007c57806398cd615314610351578063a22cb4651461036d578063b88d4fde14610389578063c87b56dd146103a5578063e985e9c5146103d5578063f2fde38b1461040557610142565b806370a08231146102ab578063715018a6146102db5780637cb6e9d7146102e55780638da5cb5b1461031557806395d89b411461033357610142565b806318160ddd1161010a57806318160ddd146101eb57806323b872dd146102095780633d6969a71461022557806342842e0e1461024157806359a7715a1461025d5780636352211e1461027b57610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c55780631249c58b146101e1575b600080fd5b610161600480360381019061015c9190611fb6565b610421565b60405161016e919061268b565b60405180910390f35b61017f610503565b60405161018c91906126a6565b60405180910390f35b6101af60048036038101906101aa9190612059565b610595565b6040516101bc9190612624565b60405180910390f35b6101df60048036038101906101da9190611f76565b6105db565b005b6101e96106f3565b005b6101f3610766565b60405161020091906128c8565b60405180910390f35b610223600480360381019061021e9190611e60565b610777565b005b61023f600480360381019061023a9190612059565b6107d7565b005b61025b60048036038101906102569190611e60565b610834565b005b610265610854565b60405161027291906128c8565b60405180910390f35b61029560048036038101906102909190612059565b61085a565b6040516102a29190612624565b60405180910390f35b6102c560048036038101906102c09190611df3565b61090c565b6040516102d291906128c8565b60405180910390f35b6102e36109c4565b005b6102ff60048036038101906102fa9190612059565b6109d8565b60405161030c91906126a6565b60405180910390f35b61031d610a3f565b60405161032a9190612624565b60405180910390f35b61033b610a69565b60405161034891906126a6565b60405180910390f35b61036b60048036038101906103669190612010565b610afb565b005b61038760048036038101906103829190611f36565b610b1d565b005b6103a3600480360381019061039e9190611eb3565b610b33565b005b6103bf60048036038101906103ba9190612059565b610b95565b6040516103cc91906126a6565b60405180910390f35b6103ef60048036038101906103ea9190611e20565b610bef565b6040516103fc919061268b565b60405180910390f35b61041f600480360381019061041a9190611df3565b610c83565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104fc57506104fb82610d07565b5b9050919050565b60606000805461051290612b8d565b80601f016020809104026020016040519081016040528092919081815260200182805461053e90612b8d565b801561058b5780601f106105605761010080835404028352916020019161058b565b820191906000526020600020905b81548152906001019060200180831161056e57829003601f168201915b5050505050905090565b60006105a082610d71565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105e68261085a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064e90612848565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610676610dbc565b73ffffffffffffffffffffffffffffffffffffffff1614806106a557506106a48161069f610dbc565b610bef565b5b6106e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106db906127a8565b60405180910390fd5b6106ee8383610dc4565b505050565b6009546107006008610e7d565b1115610741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073890612868565b60405180910390fd5b600061074d6008610e7d565b90506107593382610e8b565b6107636008610ea9565b50565b60006107726008610e7d565b905090565b610788610782610dbc565b82610ebf565b6107c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107be90612888565b60405180910390fd5b6107d2838383610f54565b505050565b6107df6111bb565b6107e96008610e7d565b811161082a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082190612808565b60405180910390fd5b8060098190555050565b61084f83838360405180602001604052806000815250610b33565b505050565b60095481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fa90612828565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561097d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097490612788565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109cc6111bb565b6109d66000611239565b565b6060610a196109e6836112ff565b6109f16009546112ff565b600a604051602001610a0593929190612563565b604051602081830303815290604052611460565b604051602001610a299190612602565b6040516020818303038152906040529050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610a7890612b8d565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa490612b8d565b8015610af15780601f10610ac657610100808354040283529160200191610af1565b820191906000526020600020905b815481529060010190602001808311610ad457829003601f168201915b5050505050905090565b610b036111bb565b80600a9080519060200190610b19929190611c07565b5050565b610b2f610b28610dbc565b83836115d9565b5050565b610b44610b3e610dbc565b83610ebf565b610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90612888565b60405180910390fd5b610b8f84848484611746565b50505050565b6060610ba0826117a2565b610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd6906128a8565b60405180910390fd5b610be8826109d8565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c8b6111bb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf2906126e8565b60405180910390fd5b610d0481611239565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610d7a816117a2565b610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090612828565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610e378361085a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b610ea582826040518060200160405280600081525061180e565b5050565b6001816000016000828254019250508190555050565b600080610ecb8361085a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610f0d5750610f0c8185610bef565b5b80610f4b57508373ffffffffffffffffffffffffffffffffffffffff16610f3384610595565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610f748261085a565b73ffffffffffffffffffffffffffffffffffffffff1614610fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc190612708565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190612748565b60405180910390fd5b611045838383611869565b611050600082610dc4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110a09190612aa3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110f791906129c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111b683838361186e565b505050565b6111c3610dbc565b73ffffffffffffffffffffffffffffffffffffffff166111e1610a3f565b73ffffffffffffffffffffffffffffffffffffffff1614611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e906127e8565b60405180910390fd5b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606000821415611347576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061145b565b600082905060005b6000821461137957808061136290612bf0565b915050600a826113729190612a18565b915061134f565b60008167ffffffffffffffff81111561139557611394612d26565b5b6040519080825280601f01601f1916602001820160405280156113c75781602001600182028036833780820191505090505b5090505b60008514611454576001826113e09190612aa3565b9150600a856113ef9190612c39565b60306113fb91906129c2565b60f81b81838151811061141157611410612cf7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561144d9190612a18565b94506113cb565b8093505050505b919050565b6060600082511415611483576040518060200160405280600081525090506115d4565b600060405180606001604052806040815260200161343b60409139905060006003600285516114b291906129c2565b6114bc9190612a18565b60046114c89190612a49565b905060006020826114d991906129c2565b67ffffffffffffffff8111156114f2576114f1612d26565b5b6040519080825280601f01601f1916602001820160405280156115245781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015611593576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050611538565b6003895106600181146115ad57600281146115bd576115c8565b613d3d60f01b60028303526115c8565b603d60f81b60018303525b50505050508093505050505b919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f90612768565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611739919061268b565b60405180910390a3505050565b611751848484610f54565b61175d84848484611873565b61179c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611793906126c8565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6118188383611a0a565b6118256000848484611873565b611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b906126c8565b60405180910390fd5b505050565b505050565b505050565b60006118948473ffffffffffffffffffffffffffffffffffffffff16611be4565b156119fd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118bd610dbc565b8786866040518563ffffffff1660e01b81526004016118df949392919061263f565b602060405180830381600087803b1580156118f957600080fd5b505af192505050801561192a57506040513d601f19601f820116820180604052508101906119279190611fe3565b60015b6119ad573d806000811461195a576040519150601f19603f3d011682016040523d82523d6000602084013e61195f565b606091505b506000815114156119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c906126c8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611a02565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a71906127c8565b60405180910390fd5b611a83816117a2565b15611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba90612728565b60405180910390fd5b611acf60008383611869565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b1f91906129c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611be06000838361186e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611c1390612b8d565b90600052602060002090601f016020900481019282611c355760008555611c7c565b82601f10611c4e57805160ff1916838001178555611c7c565b82800160010185558215611c7c579182015b82811115611c7b578251825591602001919060010190611c60565b5b509050611c899190611c8d565b5090565b5b80821115611ca6576000816000905550600101611c8e565b5090565b6000611cbd611cb884612908565b6128e3565b905082815260208101848484011115611cd957611cd8612d5a565b5b611ce4848285612b4b565b509392505050565b6000611cff611cfa84612939565b6128e3565b905082815260208101848484011115611d1b57611d1a612d5a565b5b611d26848285612b4b565b509392505050565b600081359050611d3d816133de565b92915050565b600081359050611d52816133f5565b92915050565b600081359050611d678161340c565b92915050565b600081519050611d7c8161340c565b92915050565b600082601f830112611d9757611d96612d55565b5b8135611da7848260208601611caa565b91505092915050565b600082601f830112611dc557611dc4612d55565b5b8135611dd5848260208601611cec565b91505092915050565b600081359050611ded81613423565b92915050565b600060208284031215611e0957611e08612d64565b5b6000611e1784828501611d2e565b91505092915050565b60008060408385031215611e3757611e36612d64565b5b6000611e4585828601611d2e565b9250506020611e5685828601611d2e565b9150509250929050565b600080600060608486031215611e7957611e78612d64565b5b6000611e8786828701611d2e565b9350506020611e9886828701611d2e565b9250506040611ea986828701611dde565b9150509250925092565b60008060008060808587031215611ecd57611ecc612d64565b5b6000611edb87828801611d2e565b9450506020611eec87828801611d2e565b9350506040611efd87828801611dde565b925050606085013567ffffffffffffffff811115611f1e57611f1d612d5f565b5b611f2a87828801611d82565b91505092959194509250565b60008060408385031215611f4d57611f4c612d64565b5b6000611f5b85828601611d2e565b9250506020611f6c85828601611d43565b9150509250929050565b60008060408385031215611f8d57611f8c612d64565b5b6000611f9b85828601611d2e565b9250506020611fac85828601611dde565b9150509250929050565b600060208284031215611fcc57611fcb612d64565b5b6000611fda84828501611d58565b91505092915050565b600060208284031215611ff957611ff8612d64565b5b600061200784828501611d6d565b91505092915050565b60006020828403121561202657612025612d64565b5b600082013567ffffffffffffffff81111561204457612043612d5f565b5b61205084828501611db0565b91505092915050565b60006020828403121561206f5761206e612d64565b5b600061207d84828501611dde565b91505092915050565b61208f81612ad7565b82525050565b61209e81612ae9565b82525050565b60006120af8261297f565b6120b98185612995565b93506120c9818560208601612b5a565b6120d281612d69565b840191505092915050565b60006120e88261298a565b6120f281856129a6565b9350612102818560208601612b5a565b61210b81612d69565b840191505092915050565b60006121218261298a565b61212b81856129b7565b935061213b818560208601612b5a565b80840191505092915050565b6000815461215481612b8d565b61215e81866129b7565b94506001821660008114612179576001811461218a576121bd565b60ff198316865281860193506121bd565b6121938561296a565b60005b838110156121b557815481890152600182019150602081019050612196565b838801955050505b50505092915050565b60006121d36027836129b7565b91506121de82612d7a565b602782019050919050565b60006121f66032836129a6565b915061220182612dc9565b604082019050919050565b60006122196026836129a6565b915061222482612e18565b604082019050919050565b600061223c6025836129a6565b915061224782612e67565b604082019050919050565b600061225f601c836129a6565b915061226a82612eb6565b602082019050919050565b6000612282607b836129b7565b915061228d82612edf565b607b82019050919050565b60006122a56024836129a6565b91506122b082612f7a565b604082019050919050565b60006122c86019836129a6565b91506122d382612fc9565b602082019050919050565b60006122eb6029836129a6565b91506122f682612ff2565b604082019050919050565b600061230e6009836129b7565b915061231982613041565b600982019050919050565b60006123316002836129b7565b915061233c8261306a565b600282019050919050565b6000612354603e836129a6565b915061235f82613093565b604082019050919050565b60006123776020836129a6565b9150612382826130e2565b602082019050919050565b600061239a6002836129b7565b91506123a58261310b565b600282019050919050565b60006123bd6020836129a6565b91506123c882613134565b602082019050919050565b60006123e06001836129b7565b91506123eb8261315d565b600182019050919050565b60006124036023836129a6565b915061240e82613186565b604082019050919050565b60006124266018836129a6565b9150612431826131d5565b602082019050919050565b60006124496021836129a6565b9150612454826131fe565b604082019050919050565b600061246c601d836129b7565b91506124778261324d565b601d82019050919050565b600061248f6027836129b7565b915061249a82613276565b602782019050919050565b60006124b2600e836129b7565b91506124bd826132c5565b600e82019050919050565b60006124d5601b836129a6565b91506124e0826132ee565b602082019050919050565b60006124f8602e836129a6565b915061250382613317565b604082019050919050565b600061251b602f836129a6565b915061252682613366565b604082019050919050565b600061253e6001836129b7565b9150612549826133b5565b600182019050919050565b61255d81612b41565b82525050565b600061256e826121c6565b915061257982612275565b9150612584826124a5565b915061258f826123d3565b915061259a82612482565b91506125a68286612116565b91506125b182612531565b91506125bd8285612116565b91506125c882612324565b91506125d38261238d565b91506125de82612301565b91506125ea8284612147565b91506125f582612324565b9150819050949350505050565b600061260d8261245f565b91506126198284612116565b915081905092915050565b60006020820190506126396000830184612086565b92915050565b60006080820190506126546000830187612086565b6126616020830186612086565b61266e6040830185612554565b818103606083015261268081846120a4565b905095945050505050565b60006020820190506126a06000830184612095565b92915050565b600060208201905081810360008301526126c081846120dd565b905092915050565b600060208201905081810360008301526126e1816121e9565b9050919050565b600060208201905081810360008301526127018161220c565b9050919050565b600060208201905081810360008301526127218161222f565b9050919050565b6000602082019050818103600083015261274181612252565b9050919050565b6000602082019050818103600083015261276181612298565b9050919050565b60006020820190508181036000830152612781816122bb565b9050919050565b600060208201905081810360008301526127a1816122de565b9050919050565b600060208201905081810360008301526127c181612347565b9050919050565b600060208201905081810360008301526127e18161236a565b9050919050565b60006020820190508181036000830152612801816123b0565b9050919050565b60006020820190508181036000830152612821816123f6565b9050919050565b6000602082019050818103600083015261284181612419565b9050919050565b600060208201905081810360008301526128618161243c565b9050919050565b60006020820190508181036000830152612881816124c8565b9050919050565b600060208201905081810360008301526128a1816124eb565b9050919050565b600060208201905081810360008301526128c18161250e565b9050919050565b60006020820190506128dd6000830184612554565b92915050565b60006128ed6128fe565b90506128f98282612bbf565b919050565b6000604051905090565b600067ffffffffffffffff82111561292357612922612d26565b5b61292c82612d69565b9050602081019050919050565b600067ffffffffffffffff82111561295457612953612d26565b5b61295d82612d69565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129cd82612b41565b91506129d883612b41565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a0d57612a0c612c6a565b5b828201905092915050565b6000612a2382612b41565b9150612a2e83612b41565b925082612a3e57612a3d612c99565b5b828204905092915050565b6000612a5482612b41565b9150612a5f83612b41565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a9857612a97612c6a565b5b828202905092915050565b6000612aae82612b41565b9150612ab983612b41565b925082821015612acc57612acb612c6a565b5b828203905092915050565b6000612ae282612b21565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b78578082015181840152602081019050612b5d565b83811115612b87576000848401525b50505050565b60006002820490506001821680612ba557607f821691505b60208210811415612bb957612bb8612cc8565b5b50919050565b612bc882612d69565b810181811067ffffffffffffffff82111715612be757612be6612d26565b5b80604052505050565b6000612bfb82612b41565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c2e57612c2d612c6a565b5b600182019050919050565b6000612c4482612b41565b9150612c4f83612b41565b925082612c5f57612c5e612c99565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f7b226e616d65223a22536b656c65746f6e205374657068202d2046616e626f7960008201527f2050617373222c00000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f226465736372697074696f6e223a224c6f636b7320696e20796f7572206d696e60008201527f74696e672073706f7420666f7220746865206578636c757369766520536b656c60208201527f65746f6e2053746570682047656e65736973204d696e692d5365726965732c2060408201527f776869636820676f6573206c697665204f63742e2031357468222c0000000000606082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f22696d616765223a220000000000000000000000000000000000000000000000600082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5d2c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5b00000000000000000000000000000000000000000000000000000000000000600082015250565b7f6e657720737570706c79206c657373207468616e20616c7265616479206d696e60008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f7b2274726169745f74797065223a2246616e626f79204e756d626572222c227660008201527f616c7565223a2200000000000000000000000000000000000000000000000000602082015250565b7f2261747472696275746573223a20000000000000000000000000000000000000600082015250565b7f6d696e74696e6720686173207265616368656420697473206d61780000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f53532046616e626f7920506173733a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6133e781612ad7565b81146133f257600080fd5b50565b6133fe81612ae9565b811461340957600080fd5b50565b61341581612af5565b811461342057600080fd5b50565b61342c81612b41565b811461343757600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220c70a39e2a589c75918bbbde0bf702b743310c5463f6ed89a1be8ce272ba9470164736f6c63430008060033

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.