ETH Price: $3,319.94 (-4.09%)

Token

Molecule IP NFT (IPNFT)
 

Overview

Max Total Supply

0 IPNFT

Holders

6

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
VitaDAO: Treasury
Balance
4 IPNFT
0xF5307a74d1550739ef81c6488DC5C7a6a53e5Ac2
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:
IPNFT

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract IPNFT is ERC721URIStorage, Ownable {
    // Events
    event TokenURIChanged(uint256 tokenId, string indexed newURI);

    //calling constructor from this contract plus ERC721 constructor
    constructor(string memory _name, string memory _symbol)
        ERC721(_name, _symbol)
    {}

    function setTokenURI(uint256 tokenId, string memory _tokenURI)
        public
        onlyOwner
    {
        _setTokenURI(tokenId, _tokenURI);
        emit TokenURIChanged(tokenId, _tokenURI);
    }

    // default mint is minting with tokenURI
    function mint(
        address to,
        uint256 _tokenId,
        string memory _tokenURI
    ) public returns (bool) {
        _safeMint(to, _tokenId);
        setTokenURI(_tokenId, _tokenURI);

        return true;
    }

    // there is an option to mint the NFT without the tokenURI if needed too
    function mintWithoutTokenURI(address to, uint256 _tokenId)
        external
        onlyOwner
    {
        _safeMint(to, _tokenId);
    }

    function transfer(
        address from,
        address to,
        uint256 _tokenId
    ) public {
        safeTransferFrom(from, to, _tokenId);
    }
}

File 2 of 12 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

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) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        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 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 override {
        super._burn(tokenId);

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

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

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: balance query for the zero address");
        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: owner query for nonexistent token");
        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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not 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: transfer caller is not 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) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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

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

File 5 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

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

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

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

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

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

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

File 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 7 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"string","name":"newURI","type":"string"}],"name":"TokenURIChanged","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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mintWithoutTokenURI","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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transfer","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620036ca380380620036ca833981810160405281019062000037919062000291565b818181600090805190602001906200005192919062000163565b5080600190805190602001906200006a92919062000163565b5050506200008d620000816200009560201b60201c565b6200009d60201b60201c565b50506200049a565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200017190620003ab565b90600052602060002090601f016020900481019282620001955760008555620001e1565b82601f10620001b057805160ff1916838001178555620001e1565b82800160010185558215620001e1579182015b82811115620001e0578251825591602001919060010190620001c3565b5b509050620001f09190620001f4565b5090565b5b808211156200020f576000816000905550600101620001f5565b5090565b60006200022a62000224846200033f565b62000316565b9050828152602081018484840111156200024957620002486200047a565b5b6200025684828562000375565b509392505050565b600082601f83011262000276576200027562000475565b5b81516200028884826020860162000213565b91505092915050565b60008060408385031215620002ab57620002aa62000484565b5b600083015167ffffffffffffffff811115620002cc57620002cb6200047f565b5b620002da858286016200025e565b925050602083015167ffffffffffffffff811115620002fe57620002fd6200047f565b5b6200030c858286016200025e565b9150509250929050565b60006200032262000335565b9050620003308282620003e1565b919050565b6000604051905090565b600067ffffffffffffffff8211156200035d576200035c62000446565b5b620003688262000489565b9050602081019050919050565b60005b838110156200039557808201518184015260208101905062000378565b83811115620003a5576000848401525b50505050565b60006002820490506001821680620003c457607f821691505b60208210811415620003db57620003da62000417565b5b50919050565b620003ec8262000489565b810181811067ffffffffffffffff821117156200040e576200040d62000446565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61322080620004aa6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063beabacc811610071578063beabacc814610319578063c87b56dd14610335578063d3fc986414610365578063e985e9c514610395578063f2fde38b146103c55761012c565b80638da5cb5b1461028957806395d89b41146102a757806399baaed4146102c5578063a22cb465146102e1578063b88d4fde146102fd5761012c565b806323b872dd116100f457806323b872dd146101e757806342842e0e146102035780636352211e1461021f57806370a082311461024f578063715018a61461027f5761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af578063162094c4146101cb575b600080fd5b61014b6004803603810190610146919061210d565b6103e1565b60405161015891906125d8565b60405180910390f35b6101696104c3565b60405161017691906125f3565b60405180910390f35b61019960048036038101906101949190612167565b610555565b6040516101a69190612571565b60405180910390f35b6101c960048036038101906101c4919061205e565b6105da565b005b6101e560048036038101906101e09190612194565b6106f2565b005b61020160048036038101906101fc9190611f48565b6107c9565b005b61021d60048036038101906102189190611f48565b610829565b005b61023960048036038101906102349190612167565b610849565b6040516102469190612571565b60405180910390f35b61026960048036038101906102649190611edb565b6108fb565b6040516102769190612855565b60405180910390f35b6102876109b3565b005b610291610a3b565b60405161029e9190612571565b60405180910390f35b6102af610a65565b6040516102bc91906125f3565b60405180910390f35b6102df60048036038101906102da919061205e565b610af7565b005b6102fb60048036038101906102f6919061201e565b610b81565b005b61031760048036038101906103129190611f9b565b610d02565b005b610333600480360381019061032e9190611f48565b610d64565b005b61034f600480360381019061034a9190612167565b610d74565b60405161035c91906125f3565b60405180910390f35b61037f600480360381019061037a919061209e565b610ec6565b60405161038c91906125d8565b60405180910390f35b6103af60048036038101906103aa9190611f08565b610ee7565b6040516103bc91906125d8565b60405180910390f35b6103df60048036038101906103da9190611edb565b610f7b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ac57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104bc57506104bb82611073565b5b9050919050565b6060600080546104d290612aab565b80601f01602080910402602001604051908101604052809291908181526020018280546104fe90612aab565b801561054b5780601f106105205761010080835404028352916020019161054b565b820191906000526020600020905b81548152906001019060200180831161052e57829003601f168201915b5050505050905090565b6000610560826110dd565b61059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690612795565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105e582610849565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064d90612815565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610675611149565b73ffffffffffffffffffffffffffffffffffffffff1614806106a457506106a38161069e611149565b610ee7565b5b6106e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106da906126d5565b60405180910390fd5b6106ed8383611151565b505050565b6106fa611149565b73ffffffffffffffffffffffffffffffffffffffff16610718610a3b565b73ffffffffffffffffffffffffffffffffffffffff161461076e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610765906127b5565b60405180910390fd5b610778828261120a565b806040516107869190612536565b60405180910390207f483621391b5e72d74eb03c7b5715531c486e326fb115ab3bcf34b133041854ce836040516107bd9190612855565b60405180910390a25050565b6107da6107d4611149565b8261127e565b610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090612835565b60405180910390fd5b61082483838361135c565b505050565b61084483838360405180602001604052806000815250610d02565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e990612715565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561096c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610963906126f5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109bb611149565b73ffffffffffffffffffffffffffffffffffffffff166109d9610a3b565b73ffffffffffffffffffffffffffffffffffffffff1614610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a26906127b5565b60405180910390fd5b610a3960006115b8565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610a7490612aab565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa090612aab565b8015610aed5780601f10610ac257610100808354040283529160200191610aed565b820191906000526020600020905b815481529060010190602001808311610ad057829003601f168201915b5050505050905090565b610aff611149565b73ffffffffffffffffffffffffffffffffffffffff16610b1d610a3b565b73ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a906127b5565b60405180910390fd5b610b7d828261167e565b5050565b610b89611149565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee90612695565b60405180910390fd5b8060056000610c04611149565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610cb1611149565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610cf691906125d8565b60405180910390a35050565b610d13610d0d611149565b8361127e565b610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4990612835565b60405180910390fd5b610d5e8484848461169c565b50505050565b610d6f838383610829565b505050565b6060610d7f826110dd565b610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590612775565b60405180910390fd5b6000600660008481526020019081526020016000208054610dde90612aab565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0a90612aab565b8015610e575780601f10610e2c57610100808354040283529160200191610e57565b820191906000526020600020905b815481529060010190602001808311610e3a57829003601f168201915b505050505090506000610e686116f8565b9050600081511415610e7e578192505050610ec1565b600082511115610eb3578082604051602001610e9b92919061254d565b60405160208183030381529060405292505050610ec1565b610ebc8461170f565b925050505b919050565b6000610ed2848461167e565b610edc83836106f2565b600190509392505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f83611149565b73ffffffffffffffffffffffffffffffffffffffff16610fa1610a3b565b73ffffffffffffffffffffffffffffffffffffffff1614610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee906127b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e90612635565b60405180910390fd5b611070816115b8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166111c483610849565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611213826110dd565b611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990612735565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611279929190611cef565b505050565b6000611289826110dd565b6112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf906126b5565b60405180910390fd5b60006112d383610849565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061134257508373ffffffffffffffffffffffffffffffffffffffff1661132a84610555565b73ffffffffffffffffffffffffffffffffffffffff16145b8061135357506113528185610ee7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661137c82610849565b73ffffffffffffffffffffffffffffffffffffffff16146113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c9906127d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143990612675565b60405180910390fd5b61144d8383836117b6565b611458600082611151565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114a891906129c1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114ff919061293a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6116988282604051806020016040528060008152506117bb565b5050565b6116a784848461135c565b6116b384848484611816565b6116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990612615565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061171a826110dd565b611759576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611750906127f5565b60405180910390fd5b60006117636116f8565b9050600081511161178357604051806020016040528060008152506117ae565b8061178d846119ad565b60405160200161179e92919061254d565b6040516020818303038152906040525b915050919050565b505050565b6117c58383611b0e565b6117d26000848484611816565b611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890612615565b60405180910390fd5b505050565b60006118378473ffffffffffffffffffffffffffffffffffffffff16611cdc565b156119a0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611860611149565b8786866040518563ffffffff1660e01b8152600401611882949392919061258c565b602060405180830381600087803b15801561189c57600080fd5b505af19250505080156118cd57506040513d601f19601f820116820180604052508101906118ca919061213a565b60015b611950573d80600081146118fd576040519150601f19603f3d011682016040523d82523d6000602084013e611902565b606091505b50600081511415611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193f90612615565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506119a5565b600190505b949350505050565b606060008214156119f5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b09565b600082905060005b60008214611a27578080611a1090612b0e565b915050600a82611a209190612990565b91506119fd565b60008167ffffffffffffffff811115611a4357611a42612c44565b5b6040519080825280601f01601f191660200182016040528015611a755781602001600182028036833780820191505090505b5090505b60008514611b0257600182611a8e91906129c1565b9150600a85611a9d9190612b57565b6030611aa9919061293a565b60f81b818381518110611abf57611abe612c15565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611afb9190612990565b9450611a79565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7590612755565b60405180910390fd5b611b87816110dd565b15611bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbe90612655565b60405180910390fd5b611bd3600083836117b6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c23919061293a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054611cfb90612aab565b90600052602060002090601f016020900481019282611d1d5760008555611d64565b82601f10611d3657805160ff1916838001178555611d64565b82800160010185558215611d64579182015b82811115611d63578251825591602001919060010190611d48565b5b509050611d719190611d75565b5090565b5b80821115611d8e576000816000905550600101611d76565b5090565b6000611da5611da084612895565b612870565b905082815260208101848484011115611dc157611dc0612c78565b5b611dcc848285612a69565b509392505050565b6000611de7611de2846128c6565b612870565b905082815260208101848484011115611e0357611e02612c78565b5b611e0e848285612a69565b509392505050565b600081359050611e258161318e565b92915050565b600081359050611e3a816131a5565b92915050565b600081359050611e4f816131bc565b92915050565b600081519050611e64816131bc565b92915050565b600082601f830112611e7f57611e7e612c73565b5b8135611e8f848260208601611d92565b91505092915050565b600082601f830112611ead57611eac612c73565b5b8135611ebd848260208601611dd4565b91505092915050565b600081359050611ed5816131d3565b92915050565b600060208284031215611ef157611ef0612c82565b5b6000611eff84828501611e16565b91505092915050565b60008060408385031215611f1f57611f1e612c82565b5b6000611f2d85828601611e16565b9250506020611f3e85828601611e16565b9150509250929050565b600080600060608486031215611f6157611f60612c82565b5b6000611f6f86828701611e16565b9350506020611f8086828701611e16565b9250506040611f9186828701611ec6565b9150509250925092565b60008060008060808587031215611fb557611fb4612c82565b5b6000611fc387828801611e16565b9450506020611fd487828801611e16565b9350506040611fe587828801611ec6565b925050606085013567ffffffffffffffff81111561200657612005612c7d565b5b61201287828801611e6a565b91505092959194509250565b6000806040838503121561203557612034612c82565b5b600061204385828601611e16565b925050602061205485828601611e2b565b9150509250929050565b6000806040838503121561207557612074612c82565b5b600061208385828601611e16565b925050602061209485828601611ec6565b9150509250929050565b6000806000606084860312156120b7576120b6612c82565b5b60006120c586828701611e16565b93505060206120d686828701611ec6565b925050604084013567ffffffffffffffff8111156120f7576120f6612c7d565b5b61210386828701611e98565b9150509250925092565b60006020828403121561212357612122612c82565b5b600061213184828501611e40565b91505092915050565b6000602082840312156121505761214f612c82565b5b600061215e84828501611e55565b91505092915050565b60006020828403121561217d5761217c612c82565b5b600061218b84828501611ec6565b91505092915050565b600080604083850312156121ab576121aa612c82565b5b60006121b985828601611ec6565b925050602083013567ffffffffffffffff8111156121da576121d9612c7d565b5b6121e685828601611e98565b9150509250929050565b6121f9816129f5565b82525050565b61220881612a07565b82525050565b6000612219826128f7565b612223818561290d565b9350612233818560208601612a78565b61223c81612c87565b840191505092915050565b600061225282612902565b61225c818561291e565b935061226c818560208601612a78565b61227581612c87565b840191505092915050565b600061228b82612902565b612295818561292f565b93506122a5818560208601612a78565b80840191505092915050565b60006122be60328361291e565b91506122c982612c98565b604082019050919050565b60006122e160268361291e565b91506122ec82612ce7565b604082019050919050565b6000612304601c8361291e565b915061230f82612d36565b602082019050919050565b600061232760248361291e565b915061233282612d5f565b604082019050919050565b600061234a60198361291e565b915061235582612dae565b602082019050919050565b600061236d602c8361291e565b915061237882612dd7565b604082019050919050565b600061239060388361291e565b915061239b82612e26565b604082019050919050565b60006123b3602a8361291e565b91506123be82612e75565b604082019050919050565b60006123d660298361291e565b91506123e182612ec4565b604082019050919050565b60006123f9602e8361291e565b915061240482612f13565b604082019050919050565b600061241c60208361291e565b915061242782612f62565b602082019050919050565b600061243f60318361291e565b915061244a82612f8b565b604082019050919050565b6000612462602c8361291e565b915061246d82612fda565b604082019050919050565b600061248560208361291e565b915061249082613029565b602082019050919050565b60006124a860298361291e565b91506124b382613052565b604082019050919050565b60006124cb602f8361291e565b91506124d6826130a1565b604082019050919050565b60006124ee60218361291e565b91506124f9826130f0565b604082019050919050565b600061251160318361291e565b915061251c8261313f565b604082019050919050565b61253081612a5f565b82525050565b60006125428284612280565b915081905092915050565b60006125598285612280565b91506125658284612280565b91508190509392505050565b600060208201905061258660008301846121f0565b92915050565b60006080820190506125a160008301876121f0565b6125ae60208301866121f0565b6125bb6040830185612527565b81810360608301526125cd818461220e565b905095945050505050565b60006020820190506125ed60008301846121ff565b92915050565b6000602082019050818103600083015261260d8184612247565b905092915050565b6000602082019050818103600083015261262e816122b1565b9050919050565b6000602082019050818103600083015261264e816122d4565b9050919050565b6000602082019050818103600083015261266e816122f7565b9050919050565b6000602082019050818103600083015261268e8161231a565b9050919050565b600060208201905081810360008301526126ae8161233d565b9050919050565b600060208201905081810360008301526126ce81612360565b9050919050565b600060208201905081810360008301526126ee81612383565b9050919050565b6000602082019050818103600083015261270e816123a6565b9050919050565b6000602082019050818103600083015261272e816123c9565b9050919050565b6000602082019050818103600083015261274e816123ec565b9050919050565b6000602082019050818103600083015261276e8161240f565b9050919050565b6000602082019050818103600083015261278e81612432565b9050919050565b600060208201905081810360008301526127ae81612455565b9050919050565b600060208201905081810360008301526127ce81612478565b9050919050565b600060208201905081810360008301526127ee8161249b565b9050919050565b6000602082019050818103600083015261280e816124be565b9050919050565b6000602082019050818103600083015261282e816124e1565b9050919050565b6000602082019050818103600083015261284e81612504565b9050919050565b600060208201905061286a6000830184612527565b92915050565b600061287a61288b565b90506128868282612add565b919050565b6000604051905090565b600067ffffffffffffffff8211156128b0576128af612c44565b5b6128b982612c87565b9050602081019050919050565b600067ffffffffffffffff8211156128e1576128e0612c44565b5b6128ea82612c87565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061294582612a5f565b915061295083612a5f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561298557612984612b88565b5b828201905092915050565b600061299b82612a5f565b91506129a683612a5f565b9250826129b6576129b5612bb7565b5b828204905092915050565b60006129cc82612a5f565b91506129d783612a5f565b9250828210156129ea576129e9612b88565b5b828203905092915050565b6000612a0082612a3f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612a96578082015181840152602081019050612a7b565b83811115612aa5576000848401525b50505050565b60006002820490506001821680612ac357607f821691505b60208210811415612ad757612ad6612be6565b5b50919050565b612ae682612c87565b810181811067ffffffffffffffff82111715612b0557612b04612c44565b5b80604052505050565b6000612b1982612a5f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b4c57612b4b612b88565b5b600182019050919050565b6000612b6282612a5f565b9150612b6d83612a5f565b925082612b7d57612b7c612bb7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613197816129f5565b81146131a257600080fd5b50565b6131ae81612a07565b81146131b957600080fd5b50565b6131c581612a13565b81146131d057600080fd5b50565b6131dc81612a5f565b81146131e757600080fd5b5056fea26469706673582212207c78da3cdcda13c28334a83d57287cee4c5d95b7c64cfac63542d8b9a51b553a64736f6c6343000805003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f4d6f6c6563756c65204950204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000549504e4654000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063beabacc811610071578063beabacc814610319578063c87b56dd14610335578063d3fc986414610365578063e985e9c514610395578063f2fde38b146103c55761012c565b80638da5cb5b1461028957806395d89b41146102a757806399baaed4146102c5578063a22cb465146102e1578063b88d4fde146102fd5761012c565b806323b872dd116100f457806323b872dd146101e757806342842e0e146102035780636352211e1461021f57806370a082311461024f578063715018a61461027f5761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af578063162094c4146101cb575b600080fd5b61014b6004803603810190610146919061210d565b6103e1565b60405161015891906125d8565b60405180910390f35b6101696104c3565b60405161017691906125f3565b60405180910390f35b61019960048036038101906101949190612167565b610555565b6040516101a69190612571565b60405180910390f35b6101c960048036038101906101c4919061205e565b6105da565b005b6101e560048036038101906101e09190612194565b6106f2565b005b61020160048036038101906101fc9190611f48565b6107c9565b005b61021d60048036038101906102189190611f48565b610829565b005b61023960048036038101906102349190612167565b610849565b6040516102469190612571565b60405180910390f35b61026960048036038101906102649190611edb565b6108fb565b6040516102769190612855565b60405180910390f35b6102876109b3565b005b610291610a3b565b60405161029e9190612571565b60405180910390f35b6102af610a65565b6040516102bc91906125f3565b60405180910390f35b6102df60048036038101906102da919061205e565b610af7565b005b6102fb60048036038101906102f6919061201e565b610b81565b005b61031760048036038101906103129190611f9b565b610d02565b005b610333600480360381019061032e9190611f48565b610d64565b005b61034f600480360381019061034a9190612167565b610d74565b60405161035c91906125f3565b60405180910390f35b61037f600480360381019061037a919061209e565b610ec6565b60405161038c91906125d8565b60405180910390f35b6103af60048036038101906103aa9190611f08565b610ee7565b6040516103bc91906125d8565b60405180910390f35b6103df60048036038101906103da9190611edb565b610f7b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ac57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104bc57506104bb82611073565b5b9050919050565b6060600080546104d290612aab565b80601f01602080910402602001604051908101604052809291908181526020018280546104fe90612aab565b801561054b5780601f106105205761010080835404028352916020019161054b565b820191906000526020600020905b81548152906001019060200180831161052e57829003601f168201915b5050505050905090565b6000610560826110dd565b61059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690612795565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105e582610849565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064d90612815565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610675611149565b73ffffffffffffffffffffffffffffffffffffffff1614806106a457506106a38161069e611149565b610ee7565b5b6106e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106da906126d5565b60405180910390fd5b6106ed8383611151565b505050565b6106fa611149565b73ffffffffffffffffffffffffffffffffffffffff16610718610a3b565b73ffffffffffffffffffffffffffffffffffffffff161461076e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610765906127b5565b60405180910390fd5b610778828261120a565b806040516107869190612536565b60405180910390207f483621391b5e72d74eb03c7b5715531c486e326fb115ab3bcf34b133041854ce836040516107bd9190612855565b60405180910390a25050565b6107da6107d4611149565b8261127e565b610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090612835565b60405180910390fd5b61082483838361135c565b505050565b61084483838360405180602001604052806000815250610d02565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e990612715565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561096c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610963906126f5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109bb611149565b73ffffffffffffffffffffffffffffffffffffffff166109d9610a3b565b73ffffffffffffffffffffffffffffffffffffffff1614610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a26906127b5565b60405180910390fd5b610a3960006115b8565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610a7490612aab565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa090612aab565b8015610aed5780601f10610ac257610100808354040283529160200191610aed565b820191906000526020600020905b815481529060010190602001808311610ad057829003601f168201915b5050505050905090565b610aff611149565b73ffffffffffffffffffffffffffffffffffffffff16610b1d610a3b565b73ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a906127b5565b60405180910390fd5b610b7d828261167e565b5050565b610b89611149565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee90612695565b60405180910390fd5b8060056000610c04611149565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610cb1611149565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610cf691906125d8565b60405180910390a35050565b610d13610d0d611149565b8361127e565b610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4990612835565b60405180910390fd5b610d5e8484848461169c565b50505050565b610d6f838383610829565b505050565b6060610d7f826110dd565b610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590612775565b60405180910390fd5b6000600660008481526020019081526020016000208054610dde90612aab565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0a90612aab565b8015610e575780601f10610e2c57610100808354040283529160200191610e57565b820191906000526020600020905b815481529060010190602001808311610e3a57829003601f168201915b505050505090506000610e686116f8565b9050600081511415610e7e578192505050610ec1565b600082511115610eb3578082604051602001610e9b92919061254d565b60405160208183030381529060405292505050610ec1565b610ebc8461170f565b925050505b919050565b6000610ed2848461167e565b610edc83836106f2565b600190509392505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f83611149565b73ffffffffffffffffffffffffffffffffffffffff16610fa1610a3b565b73ffffffffffffffffffffffffffffffffffffffff1614610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee906127b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e90612635565b60405180910390fd5b611070816115b8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166111c483610849565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611213826110dd565b611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990612735565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611279929190611cef565b505050565b6000611289826110dd565b6112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf906126b5565b60405180910390fd5b60006112d383610849565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061134257508373ffffffffffffffffffffffffffffffffffffffff1661132a84610555565b73ffffffffffffffffffffffffffffffffffffffff16145b8061135357506113528185610ee7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661137c82610849565b73ffffffffffffffffffffffffffffffffffffffff16146113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c9906127d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143990612675565b60405180910390fd5b61144d8383836117b6565b611458600082611151565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114a891906129c1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114ff919061293a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6116988282604051806020016040528060008152506117bb565b5050565b6116a784848461135c565b6116b384848484611816565b6116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990612615565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061171a826110dd565b611759576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611750906127f5565b60405180910390fd5b60006117636116f8565b9050600081511161178357604051806020016040528060008152506117ae565b8061178d846119ad565b60405160200161179e92919061254d565b6040516020818303038152906040525b915050919050565b505050565b6117c58383611b0e565b6117d26000848484611816565b611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890612615565b60405180910390fd5b505050565b60006118378473ffffffffffffffffffffffffffffffffffffffff16611cdc565b156119a0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611860611149565b8786866040518563ffffffff1660e01b8152600401611882949392919061258c565b602060405180830381600087803b15801561189c57600080fd5b505af19250505080156118cd57506040513d601f19601f820116820180604052508101906118ca919061213a565b60015b611950573d80600081146118fd576040519150601f19603f3d011682016040523d82523d6000602084013e611902565b606091505b50600081511415611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193f90612615565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506119a5565b600190505b949350505050565b606060008214156119f5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b09565b600082905060005b60008214611a27578080611a1090612b0e565b915050600a82611a209190612990565b91506119fd565b60008167ffffffffffffffff811115611a4357611a42612c44565b5b6040519080825280601f01601f191660200182016040528015611a755781602001600182028036833780820191505090505b5090505b60008514611b0257600182611a8e91906129c1565b9150600a85611a9d9190612b57565b6030611aa9919061293a565b60f81b818381518110611abf57611abe612c15565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611afb9190612990565b9450611a79565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7590612755565b60405180910390fd5b611b87816110dd565b15611bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbe90612655565b60405180910390fd5b611bd3600083836117b6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c23919061293a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054611cfb90612aab565b90600052602060002090601f016020900481019282611d1d5760008555611d64565b82601f10611d3657805160ff1916838001178555611d64565b82800160010185558215611d64579182015b82811115611d63578251825591602001919060010190611d48565b5b509050611d719190611d75565b5090565b5b80821115611d8e576000816000905550600101611d76565b5090565b6000611da5611da084612895565b612870565b905082815260208101848484011115611dc157611dc0612c78565b5b611dcc848285612a69565b509392505050565b6000611de7611de2846128c6565b612870565b905082815260208101848484011115611e0357611e02612c78565b5b611e0e848285612a69565b509392505050565b600081359050611e258161318e565b92915050565b600081359050611e3a816131a5565b92915050565b600081359050611e4f816131bc565b92915050565b600081519050611e64816131bc565b92915050565b600082601f830112611e7f57611e7e612c73565b5b8135611e8f848260208601611d92565b91505092915050565b600082601f830112611ead57611eac612c73565b5b8135611ebd848260208601611dd4565b91505092915050565b600081359050611ed5816131d3565b92915050565b600060208284031215611ef157611ef0612c82565b5b6000611eff84828501611e16565b91505092915050565b60008060408385031215611f1f57611f1e612c82565b5b6000611f2d85828601611e16565b9250506020611f3e85828601611e16565b9150509250929050565b600080600060608486031215611f6157611f60612c82565b5b6000611f6f86828701611e16565b9350506020611f8086828701611e16565b9250506040611f9186828701611ec6565b9150509250925092565b60008060008060808587031215611fb557611fb4612c82565b5b6000611fc387828801611e16565b9450506020611fd487828801611e16565b9350506040611fe587828801611ec6565b925050606085013567ffffffffffffffff81111561200657612005612c7d565b5b61201287828801611e6a565b91505092959194509250565b6000806040838503121561203557612034612c82565b5b600061204385828601611e16565b925050602061205485828601611e2b565b9150509250929050565b6000806040838503121561207557612074612c82565b5b600061208385828601611e16565b925050602061209485828601611ec6565b9150509250929050565b6000806000606084860312156120b7576120b6612c82565b5b60006120c586828701611e16565b93505060206120d686828701611ec6565b925050604084013567ffffffffffffffff8111156120f7576120f6612c7d565b5b61210386828701611e98565b9150509250925092565b60006020828403121561212357612122612c82565b5b600061213184828501611e40565b91505092915050565b6000602082840312156121505761214f612c82565b5b600061215e84828501611e55565b91505092915050565b60006020828403121561217d5761217c612c82565b5b600061218b84828501611ec6565b91505092915050565b600080604083850312156121ab576121aa612c82565b5b60006121b985828601611ec6565b925050602083013567ffffffffffffffff8111156121da576121d9612c7d565b5b6121e685828601611e98565b9150509250929050565b6121f9816129f5565b82525050565b61220881612a07565b82525050565b6000612219826128f7565b612223818561290d565b9350612233818560208601612a78565b61223c81612c87565b840191505092915050565b600061225282612902565b61225c818561291e565b935061226c818560208601612a78565b61227581612c87565b840191505092915050565b600061228b82612902565b612295818561292f565b93506122a5818560208601612a78565b80840191505092915050565b60006122be60328361291e565b91506122c982612c98565b604082019050919050565b60006122e160268361291e565b91506122ec82612ce7565b604082019050919050565b6000612304601c8361291e565b915061230f82612d36565b602082019050919050565b600061232760248361291e565b915061233282612d5f565b604082019050919050565b600061234a60198361291e565b915061235582612dae565b602082019050919050565b600061236d602c8361291e565b915061237882612dd7565b604082019050919050565b600061239060388361291e565b915061239b82612e26565b604082019050919050565b60006123b3602a8361291e565b91506123be82612e75565b604082019050919050565b60006123d660298361291e565b91506123e182612ec4565b604082019050919050565b60006123f9602e8361291e565b915061240482612f13565b604082019050919050565b600061241c60208361291e565b915061242782612f62565b602082019050919050565b600061243f60318361291e565b915061244a82612f8b565b604082019050919050565b6000612462602c8361291e565b915061246d82612fda565b604082019050919050565b600061248560208361291e565b915061249082613029565b602082019050919050565b60006124a860298361291e565b91506124b382613052565b604082019050919050565b60006124cb602f8361291e565b91506124d6826130a1565b604082019050919050565b60006124ee60218361291e565b91506124f9826130f0565b604082019050919050565b600061251160318361291e565b915061251c8261313f565b604082019050919050565b61253081612a5f565b82525050565b60006125428284612280565b915081905092915050565b60006125598285612280565b91506125658284612280565b91508190509392505050565b600060208201905061258660008301846121f0565b92915050565b60006080820190506125a160008301876121f0565b6125ae60208301866121f0565b6125bb6040830185612527565b81810360608301526125cd818461220e565b905095945050505050565b60006020820190506125ed60008301846121ff565b92915050565b6000602082019050818103600083015261260d8184612247565b905092915050565b6000602082019050818103600083015261262e816122b1565b9050919050565b6000602082019050818103600083015261264e816122d4565b9050919050565b6000602082019050818103600083015261266e816122f7565b9050919050565b6000602082019050818103600083015261268e8161231a565b9050919050565b600060208201905081810360008301526126ae8161233d565b9050919050565b600060208201905081810360008301526126ce81612360565b9050919050565b600060208201905081810360008301526126ee81612383565b9050919050565b6000602082019050818103600083015261270e816123a6565b9050919050565b6000602082019050818103600083015261272e816123c9565b9050919050565b6000602082019050818103600083015261274e816123ec565b9050919050565b6000602082019050818103600083015261276e8161240f565b9050919050565b6000602082019050818103600083015261278e81612432565b9050919050565b600060208201905081810360008301526127ae81612455565b9050919050565b600060208201905081810360008301526127ce81612478565b9050919050565b600060208201905081810360008301526127ee8161249b565b9050919050565b6000602082019050818103600083015261280e816124be565b9050919050565b6000602082019050818103600083015261282e816124e1565b9050919050565b6000602082019050818103600083015261284e81612504565b9050919050565b600060208201905061286a6000830184612527565b92915050565b600061287a61288b565b90506128868282612add565b919050565b6000604051905090565b600067ffffffffffffffff8211156128b0576128af612c44565b5b6128b982612c87565b9050602081019050919050565b600067ffffffffffffffff8211156128e1576128e0612c44565b5b6128ea82612c87565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061294582612a5f565b915061295083612a5f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561298557612984612b88565b5b828201905092915050565b600061299b82612a5f565b91506129a683612a5f565b9250826129b6576129b5612bb7565b5b828204905092915050565b60006129cc82612a5f565b91506129d783612a5f565b9250828210156129ea576129e9612b88565b5b828203905092915050565b6000612a0082612a3f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612a96578082015181840152602081019050612a7b565b83811115612aa5576000848401525b50505050565b60006002820490506001821680612ac357607f821691505b60208210811415612ad757612ad6612be6565b5b50919050565b612ae682612c87565b810181811067ffffffffffffffff82111715612b0557612b04612c44565b5b80604052505050565b6000612b1982612a5f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b4c57612b4b612b88565b5b600182019050919050565b6000612b6282612a5f565b9150612b6d83612a5f565b925082612b7d57612b7c612bb7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613197816129f5565b81146131a257600080fd5b50565b6131ae81612a07565b81146131b957600080fd5b50565b6131c581612a13565b81146131d057600080fd5b50565b6131dc81612a5f565b81146131e757600080fd5b5056fea26469706673582212207c78da3cdcda13c28334a83d57287cee4c5d95b7c64cfac63542d8b9a51b553a64736f6c63430008050033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f4d6f6c6563756c65204950204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000549504e4654000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Molecule IP NFT
Arg [1] : _symbol (string): IPNFT

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 4d6f6c6563756c65204950204e46540000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 49504e4654000000000000000000000000000000000000000000000000000000


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.