ETH Price: $3,476.58 (+6.01%)
Gas: 4 Gwei

Token

Melty (MLTY)
 

Overview

Max Total Supply

0 MLTY

Holders

282

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
omniapotens.eth
Balance
9 MLTY
0x5e7ddc75ddba78301f35e4c98b6c1f1684a6fb8e
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:
Melty

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-06
*/

/**
 *Submitted for verification at Etherscan.io on 2022-01-03
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
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);
}
pragma solidity ^0.8.0;
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
pragma solidity ^0.8.0;
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);
}
pragma solidity ^0.8.0;
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);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
pragma solidity ^0.8.0;
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);
    }
}

pragma solidity ^0.8.0;
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

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

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

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

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;
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;
}

pragma solidity ^0.8.0;
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);
}

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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

pragma solidity ^0.8.0;
contract Melty is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenSupply;

    uint256 public constant MAX_SUPPLY = 3333;
    string baseURI;
    string public baseExtension = ".json";
    bool public paused = true;
    bool public staffPurchaced = false;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721 (_name, _symbol){
        baseURI = _initBaseURI;
    }

    //PUBLIC
    // This is the new mint function leveraging the counter library
    function mint(uint256 _mintAmount) public payable {

        uint256 mintIndex = _tokenSupply.current() + 1; // Start IDs at 1

        require(!paused, "Melties are paused!");
        require(_mintAmount > 0, "Cant order negative number");
        require(mintIndex + _mintAmount <= MAX_SUPPLY, "This order would exceed the max supply");

        require(_mintAmount <= maxMintAmount(mintIndex), "This order exceeds max mint amount for the current stage");
        require(msg.value >= price(mintIndex) * _mintAmount, "This order doesn't meet the price requirement for the current stage");


        for (uint256 i = 0; i < _mintAmount; i++){
            _safeMint(msg.sender, mintIndex + i);
            _tokenSupply.increment();
        }
    }

    //Staff access 10 (must get before sold out)
    function adminMint() public onlyOwner {
        require(!staffPurchaced, "Staff order has already been fuffiled"); 
        require(_tokenSupply.current() + 10 <= MAX_SUPPLY, "Exceeds max supply");

        uint256 mintIndex = _tokenSupply.current() + 1;
        for (uint256 i = 0; i < 10; i++) { 
            
            _safeMint(msg.sender, mintIndex + i);
            _tokenSupply.increment();
        }
    }


    // How many left
    function remainingSupply() public view returns (uint256) {
        return MAX_SUPPLY - _tokenSupply.current();
    }

    // How many minted
    function tokenSupply() public view returns (uint256) {
        return _tokenSupply.current();
    }

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

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

    // Internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function price(uint256 _supply) internal pure returns (uint256 _cost){
      if(_supply < 333){
        return 0 ether;
      }else{
          return 0.02 ether;
      }
    } 

    function maxMintAmount(uint256 _supply) internal pure returns (uint256 _maxMintAmount){
      if(_supply < 333){
          return 3;
      }else{
        return 10;
      }
    }

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

    function pause(bool _state) public onlyOwner{
        paused = _state;
    }

    function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"staffPurchaced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a090815262000028916009919062000128565b50600a805461ffff191660011790553480156200004457600080fd5b506040516200230238038062002302833981016040819052620000679162000285565b8251839083906200008090600090602085019062000128565b5080516200009690600190602084019062000128565b505050620000b3620000ad620000d260201b60201c565b620000d6565b8051620000c890600890602084019062000128565b5050505062000369565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001369062000316565b90600052602060002090601f0160209004810192826200015a5760008555620001a5565b82601f106200017557805160ff1916838001178555620001a5565b82800160010185558215620001a5579182015b82811115620001a557825182559160200191906001019062000188565b50620001b3929150620001b7565b5090565b5b80821115620001b35760008155600101620001b8565b600082601f830112620001e057600080fd5b81516001600160401b0380821115620001fd57620001fd62000353565b604051601f8301601f19908116603f0116810190828211818310171562000228576200022862000353565b816040528381526020925086838588010111156200024557600080fd5b600091505b838210156200026957858201830151818301840152908201906200024a565b838211156200027b5760008385830101525b9695505050505050565b6000806000606084860312156200029b57600080fd5b83516001600160401b0380821115620002b357600080fd5b620002c187838801620001ce565b94506020860151915080821115620002d857600080fd5b620002e687838801620001ce565b93506040860151915080821115620002fd57600080fd5b506200030c86828701620001ce565b9150509250925092565b600181811c908216806200032b57607f821691505b602082108114156200034d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611f8980620003796000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610451578063da0239a614610471578063e985e9c514610486578063f2fde38b146104cf57600080fd5b8063a22cb465146103fc578063b88d4fde1461041c578063c66828621461043c57600080fd5b8063895fc788116100c6578063895fc788146103a15780638da5cb5b146103b657806395d89b41146103d4578063a0712d68146103e957600080fd5b806370a0823114610357578063715018a6146103775780637824407f1461038c57600080fd5b806332cb6b0c1161015957806342842e0e1161013357806342842e0e146102dd57806355f804b3146102fd5780635c975abb1461031d5780636352211e1461033757600080fd5b806332cb6b0c146102925780633ccfd60b146102b657806340cf448e146102be57600080fd5b806301ffc9a7146101a157806302329a29146101d657806306fdde03146101f8578063081812fc1461021a578063095ea7b31461025257806323b872dd14610272575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611b39565b6104ef565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101f66101f1366004611b1e565b610541565b005b34801561020457600080fd5b5061020d610587565b6040516101cd9190611d02565b34801561022657600080fd5b5061023a610235366004611bbc565b610619565b6040516001600160a01b0390911681526020016101cd565b34801561025e57600080fd5b506101f661026d366004611af4565b6106ae565b34801561027e57600080fd5b506101f661028d366004611a12565b6107c4565b34801561029e57600080fd5b506102a8610d0581565b6040519081526020016101cd565b6101f66107f5565b3480156102ca57600080fd5b50600a546101c190610100900460ff1681565b3480156102e957600080fd5b506101f66102f8366004611a12565b610893565b34801561030957600080fd5b506101f6610318366004611b73565b6108ae565b34801561032957600080fd5b50600a546101c19060ff1681565b34801561034357600080fd5b5061023a610352366004611bbc565b6108ef565b34801561036357600080fd5b506102a86103723660046119c4565b610966565b34801561038357600080fd5b506101f66109ed565b34801561039857600080fd5b506102a8610a23565b3480156103ad57600080fd5b506101f6610a33565b3480156103c257600080fd5b506006546001600160a01b031661023a565b3480156103e057600080fd5b5061020d610b74565b6101f66103f7366004611bbc565b610b83565b34801561040857600080fd5b506101f6610417366004611aca565b610deb565b34801561042857600080fd5b506101f6610437366004611a4e565b610df6565b34801561044857600080fd5b5061020d610e2e565b34801561045d57600080fd5b5061020d61046c366004611bbc565b610ebc565b34801561047d57600080fd5b506102a8610f9a565b34801561049257600080fd5b506101c16104a13660046119df565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104db57600080fd5b506101f66104ea3660046119c4565b610fb1565b60006001600160e01b031982166380ac58cd60e01b148061052057506001600160e01b03198216635b5e139f60e01b145b8061053b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146105745760405162461bcd60e51b815260040161056b90611d67565b60405180910390fd5b600a805460ff1916911515919091179055565b60606000805461059690611e7b565b80601f01602080910402602001604051908101604052809291908181526020018280546105c290611e7b565b801561060f5780601f106105e45761010080835404028352916020019161060f565b820191906000526020600020905b8154815290600101906020018083116105f257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056b565b506000908152600460205260409020546001600160a01b031690565b60006106b9826108ef565b9050806001600160a01b0316836001600160a01b031614156107275760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161056b565b336001600160a01b0382161480610743575061074381336104a1565b6107b55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161056b565b6107bf8383611049565b505050565b6107ce33826110b7565b6107ea5760405162461bcd60e51b815260040161056b90611d9c565b6107bf8383836111ae565b6006546001600160a01b0316331461081f5760405162461bcd60e51b815260040161056b90611d67565b60006108336006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461087d576040519150601f19603f3d011682016040523d82523d6000602084013e610882565b606091505b505090508061089057600080fd5b50565b6107bf83838360405180602001604052806000815250610df6565b6006546001600160a01b031633146108d85760405162461bcd60e51b815260040161056b90611d67565b80516108eb90600890602084019061188e565b5050565b6000818152600260205260408120546001600160a01b03168061053b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161056b565b60006001600160a01b0382166109d15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161056b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a175760405162461bcd60e51b815260040161056b90611d67565b610a21600061134e565b565b6000610a2e60075490565b905090565b6006546001600160a01b03163314610a5d5760405162461bcd60e51b815260040161056b90611d67565b600a54610100900460ff1615610ac35760405162461bcd60e51b815260206004820152602560248201527f5374616666206f726465722068617320616c7265616479206265656e20667566604482015264199a5b195960da1b606482015260840161056b565b610d05610acf60075490565b610ada90600a611ded565b1115610b1d5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b604482015260640161056b565b6000610b2860075490565b610b33906001611ded565b905060005b600a8110156108eb57610b5433610b4f8385611ded565b6113a0565b610b62600780546001019055565b80610b6c81611eb6565b915050610b38565b60606001805461059690611e7b565b6000610b8e60075490565b610b99906001611ded565b600a5490915060ff1615610be55760405162461bcd60e51b81526020600482015260136024820152724d656c7469657320617265207061757365642160681b604482015260640161056b565b60008211610c355760405162461bcd60e51b815260206004820152601a60248201527f43616e74206f72646572206e65676174697665206e756d626572000000000000604482015260640161056b565b610d05610c428383611ded565b1115610c9f5760405162461bcd60e51b815260206004820152602660248201527f54686973206f7264657220776f756c642065786365656420746865206d617820604482015265737570706c7960d01b606482015260840161056b565b610ca8816113ba565b821115610d1d5760405162461bcd60e51b815260206004820152603860248201527f54686973206f726465722065786365656473206d6178206d696e7420616d6f7560448201527f6e7420666f72207468652063757272656e742073746167650000000000000000606482015260840161056b565b81610d27826113db565b610d319190611e19565b341015610db25760405162461bcd60e51b815260206004820152604360248201527f54686973206f7264657220646f65736e2774206d65657420746865207072696360448201527f6520726571756972656d656e7420666f72207468652063757272656e7420737460648201526261676560e81b608482015260a40161056b565b60005b828110156107bf57610dcb33610b4f8385611ded565b610dd9600780546001019055565b80610de381611eb6565b915050610db5565b6108eb3383836113fd565b610e0033836110b7565b610e1c5760405162461bcd60e51b815260040161056b90611d9c565b610e28848484846114cc565b50505050565b60098054610e3b90611e7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6790611e7b565b8015610eb45780601f10610e8957610100808354040283529160200191610eb4565b820191906000526020600020905b815481529060010190602001808311610e9757829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b0316610f3b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161056b565b6000610f456114ff565b90506000815111610f655760405180602001604052806000815250610f93565b80610f6f8461150e565b6009604051602001610f8393929190611c01565b6040516020818303038152906040525b9392505050565b6000610fa560075490565b610a2e90610d05611e38565b6006546001600160a01b03163314610fdb5760405162461bcd60e51b815260040161056b90611d67565b6001600160a01b0381166110405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056b565b6108908161134e565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061107e826108ef565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111305760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056b565b600061113b836108ef565b9050806001600160a01b0316846001600160a01b031614806111765750836001600160a01b031661116b84610619565b6001600160a01b0316145b806111a657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111c1826108ef565b6001600160a01b0316146112295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161056b565b6001600160a01b03821661128b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161056b565b611296600082611049565b6001600160a01b03831660009081526003602052604081208054600192906112bf908490611e38565b90915550506001600160a01b03821660009081526003602052604081208054600192906112ed908490611ded565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108eb82826040518060200160405280600081525061160c565b600061014d8210156113ce57506003919050565b50600a919050565b919050565b600061014d8210156113ef57506000919050565b5066470de4df820000919050565b816001600160a01b0316836001600160a01b0316141561145f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161056b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6114d78484846111ae565b6114e38484848461163f565b610e285760405162461bcd60e51b815260040161056b90611d15565b60606008805461059690611e7b565b6060816115325750506040805180820190915260018152600360fc1b602082015290565b8160005b811561155c578061154681611eb6565b91506115559050600a83611e05565b9150611536565b60008167ffffffffffffffff81111561157757611577611f27565b6040519080825280601f01601f1916602001820160405280156115a1576020820181803683370190505b5090505b84156111a6576115b6600183611e38565b91506115c3600a86611ed1565b6115ce906030611ded565b60f81b8183815181106115e3576115e3611f11565b60200101906001600160f81b031916908160001a905350611605600a86611e05565b94506115a5565b611616838361174c565b611623600084848461163f565b6107bf5760405162461bcd60e51b815260040161056b90611d15565b60006001600160a01b0384163b1561174157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611683903390899088908890600401611cc5565b602060405180830381600087803b15801561169d57600080fd5b505af19250505080156116cd575060408051601f3d908101601f191682019092526116ca91810190611b56565b60015b611727573d8080156116fb576040519150601f19603f3d011682016040523d82523d6000602084013e611700565b606091505b50805161171f5760405162461bcd60e51b815260040161056b90611d15565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111a6565b506001949350505050565b6001600160a01b0382166117a25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161056b565b6000818152600260205260409020546001600160a01b0316156118075760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161056b565b6001600160a01b0382166000908152600360205260408120805460019290611830908490611ded565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461189a90611e7b565b90600052602060002090601f0160209004810192826118bc5760008555611902565b82601f106118d557805160ff1916838001178555611902565b82800160010185558215611902579182015b828111156119025782518255916020019190600101906118e7565b5061190e929150611912565b5090565b5b8082111561190e5760008155600101611913565b600067ffffffffffffffff8084111561194257611942611f27565b604051601f8501601f19908116603f0116810190828211818310171561196a5761196a611f27565b8160405280935085815286868601111561198357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146113d657600080fd5b803580151581146113d657600080fd5b6000602082840312156119d657600080fd5b610f938261199d565b600080604083850312156119f257600080fd5b6119fb8361199d565b9150611a096020840161199d565b90509250929050565b600080600060608486031215611a2757600080fd5b611a308461199d565b9250611a3e6020850161199d565b9150604084013590509250925092565b60008060008060808587031215611a6457600080fd5b611a6d8561199d565b9350611a7b6020860161199d565b925060408501359150606085013567ffffffffffffffff811115611a9e57600080fd5b8501601f81018713611aaf57600080fd5b611abe87823560208401611927565b91505092959194509250565b60008060408385031215611add57600080fd5b611ae68361199d565b9150611a09602084016119b4565b60008060408385031215611b0757600080fd5b611b108361199d565b946020939093013593505050565b600060208284031215611b3057600080fd5b610f93826119b4565b600060208284031215611b4b57600080fd5b8135610f9381611f3d565b600060208284031215611b6857600080fd5b8151610f9381611f3d565b600060208284031215611b8557600080fd5b813567ffffffffffffffff811115611b9c57600080fd5b8201601f81018413611bad57600080fd5b6111a684823560208401611927565b600060208284031215611bce57600080fd5b5035919050565b60008151808452611bed816020860160208601611e4f565b601f01601f19169290920160200192915050565b600084516020611c148285838a01611e4f565b855191840191611c278184848a01611e4f565b8554920191600090600181811c9080831680611c4457607f831692505b858310811415611c6257634e487b7160e01b85526022600452602485fd5b808015611c765760018114611c8757611cb4565b60ff19851688528388019550611cb4565b60008b81526020902060005b85811015611cac5781548a820152908401908801611c93565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cf890830184611bd5565b9695505050505050565b602081526000610f936020830184611bd5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e0057611e00611ee5565b500190565b600082611e1457611e14611efb565b500490565b6000816000190483118215151615611e3357611e33611ee5565b500290565b600082821015611e4a57611e4a611ee5565b500390565b60005b83811015611e6a578181015183820152602001611e52565b83811115610e285750506000910152565b600181811c90821680611e8f57607f821691505b60208210811415611eb057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611eca57611eca611ee5565b5060010190565b600082611ee057611ee0611efb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461089057600080fdfea26469706673582212203a9079fcc2fb4a298a2612235ad6d101dd5927f3f15458f4231d87c1e83ebcee64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000054d656c747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4c5459000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5235697a7a70745a565553354b435658505a564b71634b6b575a6d514c68746b32455a6366356b50687256442f00000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610451578063da0239a614610471578063e985e9c514610486578063f2fde38b146104cf57600080fd5b8063a22cb465146103fc578063b88d4fde1461041c578063c66828621461043c57600080fd5b8063895fc788116100c6578063895fc788146103a15780638da5cb5b146103b657806395d89b41146103d4578063a0712d68146103e957600080fd5b806370a0823114610357578063715018a6146103775780637824407f1461038c57600080fd5b806332cb6b0c1161015957806342842e0e1161013357806342842e0e146102dd57806355f804b3146102fd5780635c975abb1461031d5780636352211e1461033757600080fd5b806332cb6b0c146102925780633ccfd60b146102b657806340cf448e146102be57600080fd5b806301ffc9a7146101a157806302329a29146101d657806306fdde03146101f8578063081812fc1461021a578063095ea7b31461025257806323b872dd14610272575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611b39565b6104ef565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101f66101f1366004611b1e565b610541565b005b34801561020457600080fd5b5061020d610587565b6040516101cd9190611d02565b34801561022657600080fd5b5061023a610235366004611bbc565b610619565b6040516001600160a01b0390911681526020016101cd565b34801561025e57600080fd5b506101f661026d366004611af4565b6106ae565b34801561027e57600080fd5b506101f661028d366004611a12565b6107c4565b34801561029e57600080fd5b506102a8610d0581565b6040519081526020016101cd565b6101f66107f5565b3480156102ca57600080fd5b50600a546101c190610100900460ff1681565b3480156102e957600080fd5b506101f66102f8366004611a12565b610893565b34801561030957600080fd5b506101f6610318366004611b73565b6108ae565b34801561032957600080fd5b50600a546101c19060ff1681565b34801561034357600080fd5b5061023a610352366004611bbc565b6108ef565b34801561036357600080fd5b506102a86103723660046119c4565b610966565b34801561038357600080fd5b506101f66109ed565b34801561039857600080fd5b506102a8610a23565b3480156103ad57600080fd5b506101f6610a33565b3480156103c257600080fd5b506006546001600160a01b031661023a565b3480156103e057600080fd5b5061020d610b74565b6101f66103f7366004611bbc565b610b83565b34801561040857600080fd5b506101f6610417366004611aca565b610deb565b34801561042857600080fd5b506101f6610437366004611a4e565b610df6565b34801561044857600080fd5b5061020d610e2e565b34801561045d57600080fd5b5061020d61046c366004611bbc565b610ebc565b34801561047d57600080fd5b506102a8610f9a565b34801561049257600080fd5b506101c16104a13660046119df565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104db57600080fd5b506101f66104ea3660046119c4565b610fb1565b60006001600160e01b031982166380ac58cd60e01b148061052057506001600160e01b03198216635b5e139f60e01b145b8061053b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146105745760405162461bcd60e51b815260040161056b90611d67565b60405180910390fd5b600a805460ff1916911515919091179055565b60606000805461059690611e7b565b80601f01602080910402602001604051908101604052809291908181526020018280546105c290611e7b565b801561060f5780601f106105e45761010080835404028352916020019161060f565b820191906000526020600020905b8154815290600101906020018083116105f257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056b565b506000908152600460205260409020546001600160a01b031690565b60006106b9826108ef565b9050806001600160a01b0316836001600160a01b031614156107275760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161056b565b336001600160a01b0382161480610743575061074381336104a1565b6107b55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161056b565b6107bf8383611049565b505050565b6107ce33826110b7565b6107ea5760405162461bcd60e51b815260040161056b90611d9c565b6107bf8383836111ae565b6006546001600160a01b0316331461081f5760405162461bcd60e51b815260040161056b90611d67565b60006108336006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461087d576040519150601f19603f3d011682016040523d82523d6000602084013e610882565b606091505b505090508061089057600080fd5b50565b6107bf83838360405180602001604052806000815250610df6565b6006546001600160a01b031633146108d85760405162461bcd60e51b815260040161056b90611d67565b80516108eb90600890602084019061188e565b5050565b6000818152600260205260408120546001600160a01b03168061053b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161056b565b60006001600160a01b0382166109d15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161056b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a175760405162461bcd60e51b815260040161056b90611d67565b610a21600061134e565b565b6000610a2e60075490565b905090565b6006546001600160a01b03163314610a5d5760405162461bcd60e51b815260040161056b90611d67565b600a54610100900460ff1615610ac35760405162461bcd60e51b815260206004820152602560248201527f5374616666206f726465722068617320616c7265616479206265656e20667566604482015264199a5b195960da1b606482015260840161056b565b610d05610acf60075490565b610ada90600a611ded565b1115610b1d5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b604482015260640161056b565b6000610b2860075490565b610b33906001611ded565b905060005b600a8110156108eb57610b5433610b4f8385611ded565b6113a0565b610b62600780546001019055565b80610b6c81611eb6565b915050610b38565b60606001805461059690611e7b565b6000610b8e60075490565b610b99906001611ded565b600a5490915060ff1615610be55760405162461bcd60e51b81526020600482015260136024820152724d656c7469657320617265207061757365642160681b604482015260640161056b565b60008211610c355760405162461bcd60e51b815260206004820152601a60248201527f43616e74206f72646572206e65676174697665206e756d626572000000000000604482015260640161056b565b610d05610c428383611ded565b1115610c9f5760405162461bcd60e51b815260206004820152602660248201527f54686973206f7264657220776f756c642065786365656420746865206d617820604482015265737570706c7960d01b606482015260840161056b565b610ca8816113ba565b821115610d1d5760405162461bcd60e51b815260206004820152603860248201527f54686973206f726465722065786365656473206d6178206d696e7420616d6f7560448201527f6e7420666f72207468652063757272656e742073746167650000000000000000606482015260840161056b565b81610d27826113db565b610d319190611e19565b341015610db25760405162461bcd60e51b815260206004820152604360248201527f54686973206f7264657220646f65736e2774206d65657420746865207072696360448201527f6520726571756972656d656e7420666f72207468652063757272656e7420737460648201526261676560e81b608482015260a40161056b565b60005b828110156107bf57610dcb33610b4f8385611ded565b610dd9600780546001019055565b80610de381611eb6565b915050610db5565b6108eb3383836113fd565b610e0033836110b7565b610e1c5760405162461bcd60e51b815260040161056b90611d9c565b610e28848484846114cc565b50505050565b60098054610e3b90611e7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6790611e7b565b8015610eb45780601f10610e8957610100808354040283529160200191610eb4565b820191906000526020600020905b815481529060010190602001808311610e9757829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b0316610f3b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161056b565b6000610f456114ff565b90506000815111610f655760405180602001604052806000815250610f93565b80610f6f8461150e565b6009604051602001610f8393929190611c01565b6040516020818303038152906040525b9392505050565b6000610fa560075490565b610a2e90610d05611e38565b6006546001600160a01b03163314610fdb5760405162461bcd60e51b815260040161056b90611d67565b6001600160a01b0381166110405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056b565b6108908161134e565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061107e826108ef565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111305760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056b565b600061113b836108ef565b9050806001600160a01b0316846001600160a01b031614806111765750836001600160a01b031661116b84610619565b6001600160a01b0316145b806111a657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111c1826108ef565b6001600160a01b0316146112295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161056b565b6001600160a01b03821661128b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161056b565b611296600082611049565b6001600160a01b03831660009081526003602052604081208054600192906112bf908490611e38565b90915550506001600160a01b03821660009081526003602052604081208054600192906112ed908490611ded565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108eb82826040518060200160405280600081525061160c565b600061014d8210156113ce57506003919050565b50600a919050565b919050565b600061014d8210156113ef57506000919050565b5066470de4df820000919050565b816001600160a01b0316836001600160a01b0316141561145f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161056b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6114d78484846111ae565b6114e38484848461163f565b610e285760405162461bcd60e51b815260040161056b90611d15565b60606008805461059690611e7b565b6060816115325750506040805180820190915260018152600360fc1b602082015290565b8160005b811561155c578061154681611eb6565b91506115559050600a83611e05565b9150611536565b60008167ffffffffffffffff81111561157757611577611f27565b6040519080825280601f01601f1916602001820160405280156115a1576020820181803683370190505b5090505b84156111a6576115b6600183611e38565b91506115c3600a86611ed1565b6115ce906030611ded565b60f81b8183815181106115e3576115e3611f11565b60200101906001600160f81b031916908160001a905350611605600a86611e05565b94506115a5565b611616838361174c565b611623600084848461163f565b6107bf5760405162461bcd60e51b815260040161056b90611d15565b60006001600160a01b0384163b1561174157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611683903390899088908890600401611cc5565b602060405180830381600087803b15801561169d57600080fd5b505af19250505080156116cd575060408051601f3d908101601f191682019092526116ca91810190611b56565b60015b611727573d8080156116fb576040519150601f19603f3d011682016040523d82523d6000602084013e611700565b606091505b50805161171f5760405162461bcd60e51b815260040161056b90611d15565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111a6565b506001949350505050565b6001600160a01b0382166117a25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161056b565b6000818152600260205260409020546001600160a01b0316156118075760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161056b565b6001600160a01b0382166000908152600360205260408120805460019290611830908490611ded565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461189a90611e7b565b90600052602060002090601f0160209004810192826118bc5760008555611902565b82601f106118d557805160ff1916838001178555611902565b82800160010185558215611902579182015b828111156119025782518255916020019190600101906118e7565b5061190e929150611912565b5090565b5b8082111561190e5760008155600101611913565b600067ffffffffffffffff8084111561194257611942611f27565b604051601f8501601f19908116603f0116810190828211818310171561196a5761196a611f27565b8160405280935085815286868601111561198357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146113d657600080fd5b803580151581146113d657600080fd5b6000602082840312156119d657600080fd5b610f938261199d565b600080604083850312156119f257600080fd5b6119fb8361199d565b9150611a096020840161199d565b90509250929050565b600080600060608486031215611a2757600080fd5b611a308461199d565b9250611a3e6020850161199d565b9150604084013590509250925092565b60008060008060808587031215611a6457600080fd5b611a6d8561199d565b9350611a7b6020860161199d565b925060408501359150606085013567ffffffffffffffff811115611a9e57600080fd5b8501601f81018713611aaf57600080fd5b611abe87823560208401611927565b91505092959194509250565b60008060408385031215611add57600080fd5b611ae68361199d565b9150611a09602084016119b4565b60008060408385031215611b0757600080fd5b611b108361199d565b946020939093013593505050565b600060208284031215611b3057600080fd5b610f93826119b4565b600060208284031215611b4b57600080fd5b8135610f9381611f3d565b600060208284031215611b6857600080fd5b8151610f9381611f3d565b600060208284031215611b8557600080fd5b813567ffffffffffffffff811115611b9c57600080fd5b8201601f81018413611bad57600080fd5b6111a684823560208401611927565b600060208284031215611bce57600080fd5b5035919050565b60008151808452611bed816020860160208601611e4f565b601f01601f19169290920160200192915050565b600084516020611c148285838a01611e4f565b855191840191611c278184848a01611e4f565b8554920191600090600181811c9080831680611c4457607f831692505b858310811415611c6257634e487b7160e01b85526022600452602485fd5b808015611c765760018114611c8757611cb4565b60ff19851688528388019550611cb4565b60008b81526020902060005b85811015611cac5781548a820152908401908801611c93565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cf890830184611bd5565b9695505050505050565b602081526000610f936020830184611bd5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e0057611e00611ee5565b500190565b600082611e1457611e14611efb565b500490565b6000816000190483118215151615611e3357611e33611ee5565b500290565b600082821015611e4a57611e4a611ee5565b500390565b60005b83811015611e6a578181015183820152602001611e52565b83811115610e285750506000910152565b600181811c90821680611e8f57607f821691505b60208210811415611eb057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611eca57611eca611ee5565b5060010190565b600082611ee057611ee0611efb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461089057600080fdfea26469706673582212203a9079fcc2fb4a298a2612235ad6d101dd5927f3f15458f4231d87c1e83ebcee64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000054d656c747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4c5459000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5235697a7a70745a565553354b435658505a564b71634b6b575a6d514c68746b32455a6366356b50687256442f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Melty
Arg [1] : _symbol (string): MLTY
Arg [2] : _initBaseURI (string): ipfs://QmR5izzptZVUS5KCVXPZVKqcKkWZmQLhtk2EZcf5kPhrVD/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 4d656c7479000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4d4c545900000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5235697a7a70745a565553354b435658505a564b71634b
Arg [9] : 6b575a6d514c68746b32455a6366356b50687256442f00000000000000000000


Deployed Bytecode Sourcemap

33309:3493:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20844:305;;;;;;;;;;-1:-1:-1;20844:305:0;;;;;:::i;:::-;;:::i;:::-;;;7170:14:1;;7163:22;7145:41;;7133:2;7118:18;20844:305:0;;;;;;;;36568:78;;;;;;;;;;-1:-1:-1;36568:78:0;;;;;:::i;:::-;;:::i;:::-;;21789:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23348:221::-;;;;;;;;;;-1:-1:-1;23348:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6468:32:1;;;6450:51;;6438:2;6423:18;23348:221:0;6304:203:1;22871:411:0;;;;;;;;;;-1:-1:-1;22871:411:0;;;;;:::i;:::-;;:::i;24098:339::-;;;;;;;;;;-1:-1:-1;24098:339:0;;;;;:::i;:::-;;:::i;33472:41::-;;;;;;;;;;;;33509:4;33472:41;;;;;16713:25:1;;;16701:2;16686:18;33472:41:0;16567:177:1;36654:145:0;;;:::i;33617:34::-;;;;;;;;;;-1:-1:-1;33617:34:0;;;;;;;;;;;24508:185;;;;;;;;;;-1:-1:-1;24508:185:0;;;;;:::i;:::-;;:::i;36456:104::-;;;;;;;;;;-1:-1:-1;36456:104:0;;;;;:::i;:::-;;:::i;33585:25::-;;;;;;;;;;-1:-1:-1;33585:25:0;;;;;;;;21483:239;;;;;;;;;;-1:-1:-1;21483:239:0;;;;;:::i;:::-;;:::i;21213:208::-;;;;;;;;;;-1:-1:-1;21213:208:0;;;;;:::i;:::-;;:::i;13884:103::-;;;;;;;;;;;;;:::i;35361:101::-;;;;;;;;;;;;;:::i;34754:425::-;;;;;;;;;;;;;:::i;13233:87::-;;;;;;;;;;-1:-1:-1;13306:6:0;;-1:-1:-1;;;;;13306:6:0;13233:87;;21958:104;;;;;;;;;;;;;:::i;33933:763::-;;;;;;:::i;:::-;;:::i;23641:155::-;;;;;;;;;;-1:-1:-1;23641:155:0;;;;;:::i;:::-;;:::i;24764:328::-;;;;;;;;;;-1:-1:-1;24764:328:0;;;;;:::i;:::-;;:::i;33541:37::-;;;;;;;;;;;;;:::i;35470:463::-;;;;;;;;;;-1:-1:-1;35470:463:0;;;;;:::i;:::-;;:::i;35211:118::-;;;;;;;;;;;;;:::i;23867:164::-;;;;;;;;;;-1:-1:-1;23867:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23988:25:0;;;23964:4;23988:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23867:164;14142:201;;;;;;;;;;-1:-1:-1;14142:201:0;;;;;:::i;:::-;;:::i;20844:305::-;20946:4;-1:-1:-1;;;;;;20983:40:0;;-1:-1:-1;;;20983:40:0;;:105;;-1:-1:-1;;;;;;;21040:48:0;;-1:-1:-1;;;21040:48:0;20983:105;:158;;;-1:-1:-1;;;;;;;;;;12766:40:0;;;21105:36;20963:178;20844:305;-1:-1:-1;;20844:305:0:o;36568:78::-;13306:6;;-1:-1:-1;;;;;13306:6:0;969:10;13453:23;13445:68;;;;-1:-1:-1;;;13445:68:0;;;;;;;:::i;:::-;;;;;;;;;36623:6:::1;:15:::0;;-1:-1:-1;;36623:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36568:78::o;21789:100::-;21843:13;21876:5;21869:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21789:100;:::o;23348:221::-;23424:7;26691:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26691:16:0;23444:73;;;;-1:-1:-1;;;23444:73:0;;13170:2:1;23444:73:0;;;13152:21:1;13209:2;13189:18;;;13182:30;13248:34;13228:18;;;13221:62;-1:-1:-1;;;13299:18:1;;;13292:42;13351:19;;23444:73:0;12968:408:1;23444:73:0;-1:-1:-1;23537:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23537:24:0;;23348:221::o;22871:411::-;22952:13;22968:23;22983:7;22968:14;:23::i;:::-;22952:39;;23016:5;-1:-1:-1;;;;;23010:11:0;:2;-1:-1:-1;;;;;23010:11:0;;;23002:57;;;;-1:-1:-1;;;23002:57:0;;15125:2:1;23002:57:0;;;15107:21:1;15164:2;15144:18;;;15137:30;15203:34;15183:18;;;15176:62;-1:-1:-1;;;15254:18:1;;;15247:31;15295:19;;23002:57:0;14923:397:1;23002:57:0;969:10;-1:-1:-1;;;;;23094:21:0;;;;:62;;-1:-1:-1;23119:37:0;23136:5;969:10;23867:164;:::i;23119:37::-;23072:168;;;;-1:-1:-1;;;23072:168:0;;11216:2:1;23072:168:0;;;11198:21:1;11255:2;11235:18;;;11228:30;11294:34;11274:18;;;11267:62;11365:26;11345:18;;;11338:54;11409:19;;23072:168:0;11014:420:1;23072:168:0;23253:21;23262:2;23266:7;23253:8;:21::i;:::-;22941:341;22871:411;;:::o;24098:339::-;24293:41;969:10;24326:7;24293:18;:41::i;:::-;24285:103;;;;-1:-1:-1;;;24285:103:0;;;;;;;:::i;:::-;24401:28;24411:4;24417:2;24421:7;24401:9;:28::i;36654:145::-;13306:6;;-1:-1:-1;;;;;13306:6:0;969:10;13453:23;13445:68;;;;-1:-1:-1;;;13445:68:0;;;;;;;:::i;:::-;36707:7:::1;36728;13306:6:::0;;-1:-1:-1;;;;;13306:6:0;;13233:87;36728:7:::1;-1:-1:-1::0;;;;;36720:21:0::1;36749;36720:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36706:69;;;36790:2;36782:11;;;::::0;::::1;;36699:100;36654:145::o:0;24508:185::-;24646:39;24663:4;24669:2;24673:7;24646:39;;;;;;;;;;;;:16;:39::i;36456:104::-;13306:6;;-1:-1:-1;;;;;13306:6:0;969:10;13453:23;13445:68;;;;-1:-1:-1;;;13445:68:0;;;;;;;:::i;:::-;36531:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;36456:104:::0;:::o;21483:239::-;21555:7;21591:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21591:16:0;21626:19;21618:73;;;;-1:-1:-1;;;21618:73:0;;12052:2:1;21618:73:0;;;12034:21:1;12091:2;12071:18;;;12064:30;12130:34;12110:18;;;12103:62;-1:-1:-1;;;12181:18:1;;;12174:39;12230:19;;21618:73:0;11850:405:1;21213:208:0;21285:7;-1:-1:-1;;;;;21313:19:0;;21305:74;;;;-1:-1:-1;;;21305:74:0;;11641:2:1;21305:74:0;;;11623:21:1;11680:2;11660:18;;;11653:30;11719:34;11699:18;;;11692:62;-1:-1:-1;;;11770:18:1;;;11763:40;11820:19;;21305:74:0;11439:406:1;21305:74:0;-1:-1:-1;;;;;;21397:16:0;;;;;:9;:16;;;;;;;21213:208::o;13884:103::-;13306:6;;-1:-1:-1;;;;;13306:6:0;969:10;13453:23;13445:68;;;;-1:-1:-1;;;13445:68:0;;;;;;;:::i;:::-;13949:30:::1;13976:1;13949:18;:30::i;:::-;13884:103::o:0;35361:101::-;35405:7;35432:22;:12;12049:14;;11957:114;35432:22;35425:29;;35361:101;:::o;34754:425::-;13306:6;;-1:-1:-1;;;;;13306:6:0;969:10;13453:23;13445:68;;;;-1:-1:-1;;;13445:68:0;;;;;;;:::i;:::-;34812:14:::1;::::0;::::1;::::0;::::1;;;34811:15;34803:65;;;::::0;-1:-1:-1;;;34803:65:0;;9231:2:1;34803:65:0::1;::::0;::::1;9213:21:1::0;9270:2;9250:18;;;9243:30;9309:34;9289:18;;;9282:62;-1:-1:-1;;;9360:18:1;;;9353:35;9405:19;;34803:65:0::1;9029:401:1::0;34803:65:0::1;33509:4;34888:22;:12;12049:14:::0;;11957:114;34888:22:::1;:27;::::0;34913:2:::1;34888:27;:::i;:::-;:41;;34880:72;;;::::0;-1:-1:-1;;;34880:72:0;;12462:2:1;34880:72:0::1;::::0;::::1;12444:21:1::0;12501:2;12481:18;;;12474:30;-1:-1:-1;;;12520:18:1;;;12513:48;12578:18;;34880:72:0::1;12260:342:1::0;34880:72:0::1;34965:17;34985:22;:12;12049:14:::0;;11957:114;34985:22:::1;:26;::::0;35010:1:::1;34985:26;:::i;:::-;34965:46;;35027:9;35022:150;35046:2;35042:1;:6;35022:150;;;35085:36;35095:10;35107:13;35119:1:::0;35107:9;:13:::1;:::i;:::-;35085:9;:36::i;:::-;35136:24;:12;12168:19:::0;;12186:1;12168:19;;;12079:127;35136:24:::1;35050:3:::0;::::1;::::0;::::1;:::i;:::-;;;;35022:150;;21958:104:::0;22014:13;22047:7;22040:14;;;;;:::i;33933:763::-;33996:17;34016:22;:12;12049:14;;11957:114;34016:22;:26;;34041:1;34016:26;:::i;:::-;34082:6;;33996:46;;-1:-1:-1;34082:6:0;;34081:7;34073:39;;;;-1:-1:-1;;;34073:39:0;;16421:2:1;34073:39:0;;;16403:21:1;16460:2;16440:18;;;16433:30;-1:-1:-1;;;16479:18:1;;;16472:49;16538:18;;34073:39:0;16219:343:1;34073:39:0;34145:1;34131:11;:15;34123:54;;;;-1:-1:-1;;;34123:54:0;;14770:2:1;34123:54:0;;;14752:21:1;14809:2;14789:18;;;14782:30;14848:28;14828:18;;;14821:56;14894:18;;34123:54:0;14568:350:1;34123:54:0;33509:4;34196:23;34208:11;34196:9;:23;:::i;:::-;:37;;34188:88;;;;-1:-1:-1;;;34188:88:0;;10809:2:1;34188:88:0;;;10791:21:1;10848:2;10828:18;;;10821:30;10887:34;10867:18;;;10860:62;-1:-1:-1;;;10938:18:1;;;10931:36;10984:19;;34188:88:0;10607:402:1;34188:88:0;34312:24;34326:9;34312:13;:24::i;:::-;34297:11;:39;;34289:108;;;;-1:-1:-1;;;34289:108:0;;7623:2:1;34289:108:0;;;7605:21:1;7662:2;7642:18;;;7635:30;7701:34;7681:18;;;7674:62;7772:26;7752:18;;;7745:54;7816:19;;34289:108:0;7421:420:1;34289:108:0;34448:11;34429:16;34435:9;34429:5;:16::i;:::-;:30;;;;:::i;:::-;34416:9;:43;;34408:123;;;;-1:-1:-1;;;34408:123:0;;15527:2:1;34408:123:0;;;15509:21:1;15566:2;15546:18;;;15539:30;15605:34;15585:18;;;15578:62;15676:34;15656:18;;;15649:62;-1:-1:-1;;;15727:19:1;;;15720:34;15771:19;;34408:123:0;15325:471:1;34408:123:0;34551:9;34546:143;34570:11;34566:1;:15;34546:143;;;34602:36;34612:10;34624:13;34636:1;34624:9;:13;:::i;34602:36::-;34653:24;:12;12168:19;;12186:1;12168:19;;;12079:127;34653:24;34583:3;;;;:::i;:::-;;;;34546:143;;23641:155;23736:52;969:10;23769:8;23779;23736:18;:52::i;24764:328::-;24939:41;969:10;24972:7;24939:18;:41::i;:::-;24931:103;;;;-1:-1:-1;;;24931:103:0;;;;;;;:::i;:::-;25045:39;25059:4;25065:2;25069:7;25078:5;25045:13;:39::i;:::-;24764:328;;;;:::o;33541:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35470:463::-;26667:4;26691:16;;;:7;:16;;;;;;35568:13;;-1:-1:-1;;;;;26691:16:0;35599:113;;;;-1:-1:-1;;;35599:113:0;;14354:2:1;35599:113:0;;;14336:21:1;14393:2;14373:18;;;14366:30;14432:34;14412:18;;;14405:62;-1:-1:-1;;;14483:18:1;;;14476:45;14538:19;;35599:113:0;14152:411:1;35599:113:0;35725:28;35756:10;:8;:10::i;:::-;35725:41;;35815:1;35790:14;35784:28;:32;:141;;;;;;;;;;;;;;;;;35856:14;35872:18;:7;:16;:18::i;:::-;35892:13;35839:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35784:141;35777:148;35470:463;-1:-1:-1;;;35470:463:0:o;35211:118::-;35259:7;35299:22;:12;12049:14;;11957:114;35299:22;35286:35;;33509:4;35286:35;:::i;14142:201::-;13306:6;;-1:-1:-1;;;;;13306:6:0;969:10;13453:23;13445:68;;;;-1:-1:-1;;;13445:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14231:22:0;::::1;14223:73;;;::::0;-1:-1:-1;;;14223:73:0;;8467:2:1;14223:73:0::1;::::0;::::1;8449:21:1::0;8506:2;8486:18;;;8479:30;8545:34;8525:18;;;8518:62;-1:-1:-1;;;8596:18:1;;;8589:36;8642:19;;14223:73:0::1;8265:402:1::0;14223:73:0::1;14307:28;14326:8;14307:18;:28::i;30584:174::-:0;30659:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30659:29:0;-1:-1:-1;;;;;30659:29:0;;;;;;;;:24;;30713:23;30659:24;30713:14;:23::i;:::-;-1:-1:-1;;;;;30704:46:0;;;;;;;;;;;30584:174;;:::o;26896:348::-;26989:4;26691:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26691:16:0;27006:73;;;;-1:-1:-1;;;27006:73:0;;10396:2:1;27006:73:0;;;10378:21:1;10435:2;10415:18;;;10408:30;10474:34;10454:18;;;10447:62;-1:-1:-1;;;10525:18:1;;;10518:42;10577:19;;27006:73:0;10194:408:1;27006:73:0;27090:13;27106:23;27121:7;27106:14;:23::i;:::-;27090:39;;27159:5;-1:-1:-1;;;;;27148:16:0;:7;-1:-1:-1;;;;;27148:16:0;;:51;;;;27192:7;-1:-1:-1;;;;;27168:31:0;:20;27180:7;27168:11;:20::i;:::-;-1:-1:-1;;;;;27168:31:0;;27148:51;:87;;;-1:-1:-1;;;;;;23988:25:0;;;23964:4;23988:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27203:32;27140:96;26896:348;-1:-1:-1;;;;26896:348:0:o;29888:578::-;30047:4;-1:-1:-1;;;;;30020:31:0;:23;30035:7;30020:14;:23::i;:::-;-1:-1:-1;;;;;30020:31:0;;30012:85;;;;-1:-1:-1;;;30012:85:0;;13944:2:1;30012:85:0;;;13926:21:1;13983:2;13963:18;;;13956:30;14022:34;14002:18;;;13995:62;-1:-1:-1;;;14073:18:1;;;14066:39;14122:19;;30012:85:0;13742:405:1;30012:85:0;-1:-1:-1;;;;;30116:16:0;;30108:65;;;;-1:-1:-1;;;30108:65:0;;9637:2:1;30108:65:0;;;9619:21:1;9676:2;9656:18;;;9649:30;9715:34;9695:18;;;9688:62;-1:-1:-1;;;9766:18:1;;;9759:34;9810:19;;30108:65:0;9435:400:1;30108:65:0;30290:29;30307:1;30311:7;30290:8;:29::i;:::-;-1:-1:-1;;;;;30332:15:0;;;;;;:9;:15;;;;;:20;;30351:1;;30332:15;:20;;30351:1;;30332:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30363:13:0;;;;;;:9;:13;;;;;:18;;30380:1;;30363:13;:18;;30380:1;;30363:18;:::i;:::-;;;;-1:-1:-1;;30392:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30392:21:0;-1:-1:-1;;;;;30392:21:0;;;;;;;;;30431:27;;30392:16;;30431:27;;;;;;;29888:578;;;:::o;14503:191::-;14596:6;;;-1:-1:-1;;;;;14613:17:0;;;-1:-1:-1;;;;;;14613:17:0;;;;;;;14646:40;;14596:6;;;14613:17;14596:6;;14646:40;;14577:16;;14646:40;14566:128;14503:191;:::o;27586:110::-;27662:26;27672:2;27676:7;27662:26;;;;;;;;;;;;:9;:26::i;36264:184::-;36327:22;36372:3;36362:7;:13;36359:82;;;-1:-1:-1;36396:1:0;;36264:184;-1:-1:-1;36264:184:0:o;36359:82::-;-1:-1:-1;36429:2:0;;36264:184;-1:-1:-1;36264:184:0:o;36359:82::-;36264:184;;;:::o;36074:181::-;36129:13;36165:3;36155:7;:13;36152:96;;;-1:-1:-1;36187:7:0;;36074:181;-1:-1:-1;36074:181:0:o;36152:96::-;-1:-1:-1;36228:10:0;;36074:181;-1:-1:-1;36074:181:0:o;30900:315::-;31055:8;-1:-1:-1;;;;;31046:17:0;:5;-1:-1:-1;;;;;31046:17:0;;;31038:55;;;;-1:-1:-1;;;31038:55:0;;10042:2:1;31038:55:0;;;10024:21:1;10081:2;10061:18;;;10054:30;10120:27;10100:18;;;10093:55;10165:18;;31038:55:0;9840:349:1;31038:55:0;-1:-1:-1;;;;;31104:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31104:46:0;;;;;;;;;;31166:41;;7145::1;;;31166::0;;7118:18:1;31166:41:0;;;;;;;30900:315;;;:::o;25974:::-;26131:28;26141:4;26147:2;26151:7;26131:9;:28::i;:::-;26178:48;26201:4;26207:2;26211:7;26220:5;26178:22;:48::i;:::-;26170:111;;;;-1:-1:-1;;;26170:111:0;;;;;;;:::i;35958:108::-;36018:13;36051:7;36044:14;;;;;:::i;9762:723::-;9818:13;10039:10;10035:53;;-1:-1:-1;;10066:10:0;;;;;;;;;;;;-1:-1:-1;;;10066:10:0;;;;;9762:723::o;10035:53::-;10113:5;10098:12;10154:78;10161:9;;10154:78;;10187:8;;;;:::i;:::-;;-1:-1:-1;10210:10:0;;-1:-1:-1;10218:2:0;10210:10;;:::i;:::-;;;10154:78;;;10242:19;10274:6;10264:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10264:17:0;;10242:39;;10292:154;10299:10;;10292:154;;10326:11;10336:1;10326:11;;:::i;:::-;;-1:-1:-1;10395:10:0;10403:2;10395:5;:10;:::i;:::-;10382:24;;:2;:24;:::i;:::-;10369:39;;10352:6;10359;10352:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10352:56:0;;;;;;;;-1:-1:-1;10423:11:0;10432:2;10423:11;;:::i;:::-;;;10292:154;;27923:321;28053:18;28059:2;28063:7;28053:5;:18::i;:::-;28104:54;28135:1;28139:2;28143:7;28152:5;28104:22;:54::i;:::-;28082:154;;;;-1:-1:-1;;;28082:154:0;;;;;;;:::i;31780:799::-;31935:4;-1:-1:-1;;;;;31956:13:0;;2543:20;2591:8;31952:620;;31992:72;;-1:-1:-1;;;31992:72:0;;-1:-1:-1;;;;;31992:36:0;;;;;:72;;969:10;;32043:4;;32049:7;;32058:5;;31992:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31992:72:0;;;;;;;;-1:-1:-1;;31992:72:0;;;;;;;;;;;;:::i;:::-;;;31988:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32234:13:0;;32230:272;;32277:60;;-1:-1:-1;;;32277:60:0;;;;;;;:::i;32230:272::-;32452:6;32446:13;32437:6;32433:2;32429:15;32422:38;31988:529;-1:-1:-1;;;;;;32115:51:0;-1:-1:-1;;;32115:51:0;;-1:-1:-1;32108:58:0;;31952:620;-1:-1:-1;32556:4:0;31780:799;;;;;;:::o;28580:382::-;-1:-1:-1;;;;;28660:16:0;;28652:61;;;;-1:-1:-1;;;28652:61:0;;12809:2:1;28652:61:0;;;12791:21:1;;;12828:18;;;12821:30;12887:34;12867:18;;;12860:62;12939:18;;28652:61:0;12607:356:1;28652:61:0;26667:4;26691:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26691:16:0;:30;28724:58;;;;-1:-1:-1;;;28724:58:0;;8874:2:1;28724:58:0;;;8856:21:1;8913:2;8893:18;;;8886:30;8952;8932:18;;;8925:58;9000:18;;28724:58:0;8672:352:1;28724:58:0;-1:-1:-1;;;;;28853:13:0;;;;;;:9;:13;;;;;:18;;28870:1;;28853:13;:18;;28870:1;;28853:18;:::i;:::-;;;;-1:-1:-1;;28882:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28882:21:0;-1:-1:-1;;;;;28882:21:0;;;;;;;;28921:33;;28882:16;;;28921:33;;28882:16;;28921:33;28580:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;16822:1;16815:14;;;16859:4;16846:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6512:488::-;-1:-1:-1;;;;;6781:15:1;;;6763:34;;6833:15;;6828:2;6813:18;;6806:43;6880:2;6865:18;;6858:34;;;6928:3;6923:2;6908:18;;6901:31;;;6706:4;;6949:45;;6974:19;;6966:6;6949:45;:::i;:::-;6941:53;6512:488;-1:-1:-1;;;;;;6512:488:1:o;7197:219::-;7346:2;7335:9;7328:21;7309:4;7366:44;7406:2;7395:9;7391:18;7383:6;7366:44;:::i;7846:414::-;8048:2;8030:21;;;8087:2;8067:18;;;8060:30;8126:34;8121:2;8106:18;;8099:62;-1:-1:-1;;;8192:2:1;8177:18;;8170:48;8250:3;8235:19;;7846:414::o;13381:356::-;13583:2;13565:21;;;13602:18;;;13595:30;13661:34;13656:2;13641:18;;13634:62;13728:2;13713:18;;13381:356::o;15801:413::-;16003:2;15985:21;;;16042:2;16022:18;;;16015:30;16081:34;16076:2;16061:18;;16054:62;-1:-1:-1;;;16147:2:1;16132:18;;16125:47;16204:3;16189:19;;15801:413::o;16875:128::-;16915:3;16946:1;16942:6;16939:1;16936:13;16933:39;;;16952:18;;:::i;:::-;-1:-1:-1;16988:9:1;;16875:128::o;17008:120::-;17048:1;17074;17064:35;;17079:18;;:::i;:::-;-1:-1:-1;17113:9:1;;17008:120::o;17133:168::-;17173:7;17239:1;17235;17231:6;17227:14;17224:1;17221:21;17216:1;17209:9;17202:17;17198:45;17195:71;;;17246:18;;:::i;:::-;-1:-1:-1;17286:9:1;;17133:168::o;17306:125::-;17346:4;17374:1;17371;17368:8;17365:34;;;17379:18;;:::i;:::-;-1:-1:-1;17416:9:1;;17306:125::o;17436:258::-;17508:1;17518:113;17532:6;17529:1;17526:13;17518:113;;;17608:11;;;17602:18;17589:11;;;17582:39;17554:2;17547:10;17518:113;;;17649:6;17646:1;17643:13;17640:48;;;-1:-1:-1;;17684:1:1;17666:16;;17659:27;17436:258::o;17699:380::-;17778:1;17774:12;;;;17821;;;17842:61;;17896:4;17888:6;17884:17;17874:27;;17842:61;17949:2;17941:6;17938:14;17918:18;17915:38;17912:161;;;17995:10;17990:3;17986:20;17983:1;17976:31;18030:4;18027:1;18020:15;18058:4;18055:1;18048:15;17912:161;;17699:380;;;:::o;18084:135::-;18123:3;-1:-1:-1;;18144:17:1;;18141:43;;;18164:18;;:::i;:::-;-1:-1:-1;18211:1:1;18200:13;;18084:135::o;18224:112::-;18256:1;18282;18272:35;;18287:18;;:::i;:::-;-1:-1:-1;18321:9:1;;18224:112::o;18341:127::-;18402:10;18397:3;18393:20;18390:1;18383:31;18433:4;18430:1;18423:15;18457:4;18454:1;18447:15;18473:127;18534:10;18529:3;18525:20;18522:1;18515:31;18565:4;18562:1;18555:15;18589:4;18586:1;18579:15;18605:127;18666:10;18661:3;18657:20;18654:1;18647:31;18697:4;18694:1;18687:15;18721:4;18718:1;18711:15;18737:127;18798:10;18793:3;18789:20;18786:1;18779:31;18829:4;18826:1;18819:15;18853:4;18850:1;18843:15;18869:131;-1:-1:-1;;;;;;18943:32:1;;18933:43;;18923:71;;18990:1;18987;18980:12

Swarm Source

ipfs://3a9079fcc2fb4a298a2612235ad6d101dd5927f3f15458f4231d87c1e83ebcee
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.