ETH Price: $3,410.67 (+2.98%)

Token

Mega Hash Lotto (MHL)
 

Overview

Max Total Supply

48 MHL

Holders

22

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
phunkyjon.eth
Balance
1 MHL
0x117fc50b84b515efe3c82d8bbb2e1fa00751fea0
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:
MegaHash

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 11 of 14: MegaHash.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";

contract MegaHash is ERC721Enumerable, Ownable {
    using Strings for uint256;
    using SafeMath for uint256;

    string public baseURI;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmount = 10;
    bool public paused = false;

    uint256 public SINGLE_PRICE = 40000000000000000; // 0.04 ether
    uint256 public FIVE_PRICE = 30000000000000000; // 0.03 ether
    uint256 public TEN_PRICE = 20000000000000000; // 0.02 ether

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

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

    function calculatePrice(uint256 _mintAmount) public view returns (uint256) {
        require(_mintAmount == 1 || _mintAmount == 5 || _mintAmount == 10, "Mint amount must be either 1, 5, or 10");
        uint256 tokenPrice = SINGLE_PRICE;

        if (_mintAmount == 5) {
            tokenPrice = FIVE_PRICE;
        } else if (_mintAmount == 10) {
            tokenPrice = TEN_PRICE;
        }
        return tokenPrice;
    }

    function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(!paused, "Sale hasn't started");
        require(_mintAmount > 0 && _mintAmount <= maxMintAmount, "You can get no fewer than 1, and no more than 10 tickets at a time");
        require(supply + _mintAmount <= maxSupply, "Not enough tickets available");
        require(msg.value >= SafeMath.mul(calculatePrice(_mintAmount), _mintAmount), "Amount of Ether sent is not correct");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
        maxMintAmount = _newmaxMintAmount;
    }

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

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

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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":"FIVE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SINGLE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"calculatePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600c55600a600d55600e805460ff19169055668e1bc9bf040000600f55666a94d74f43000060105566470de4df8200006011553480156200004757600080fd5b50604051620028ea380380620028ea8339810160408190526200006a91620002e8565b8251839083906200008390600090602085019062000197565b5080516200009990600190602084019062000197565b505050620000b6620000b0620000ca60201b60201c565b620000ce565b620000c18162000120565b505050620003fd565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200012a620000ca565b6001600160a01b03166200013d62000188565b6001600160a01b0316146200016f5760405162461bcd60e51b8152600401620001669062000375565b60405180910390fd5b80516200018490600b90602084019062000197565b5050565b600a546001600160a01b031690565b828054620001a590620003aa565b90600052602060002090601f016020900481019282620001c9576000855562000214565b82601f10620001e457805160ff191683800117855562000214565b8280016001018555821562000214579182015b8281111562000214578251825591602001919060010190620001f7565b506200022292915062000226565b5090565b5b8082111562000222576000815560010162000227565b600082601f8301126200024e578081fd5b81516001600160401b03808211156200026b576200026b620003e7565b6040516020601f8401601f1916820181018381118382101715620002935762000293620003e7565b6040528382528584018101871015620002aa578485fd5b8492505b83831015620002cd5785830181015182840182015291820191620002ae565b83831115620002de57848185840101525b5095945050505050565b600080600060608486031215620002fd578283fd5b83516001600160401b038082111562000314578485fd5b62000322878388016200023d565b9450602086015191508082111562000338578384fd5b62000346878388016200023d565b935060408601519150808211156200035c578283fd5b506200036b868287016200023d565b9150509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600281046001821680620003bf57607f821691505b60208210811415620003e157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6124dd806200040d6000396000f3fe6080604052600436106101ee5760003560e01c80634f6ccce71161010d5780638da5cb5b116100a0578063b88d4fde1161006f578063b88d4fde1461052e578063c87b56dd1461054e578063d5abeb011461056e578063e985e9c514610583578063f2fde38b146105a3576101ee565b80638da5cb5b146104c457806395d89b41146104d9578063a22cb465146104ee578063ae1042651461050e576101ee565b80636c0360eb116100dc5780636c0360eb1461045a57806370a082311461046f578063715018a61461048f5780637f00c7a6146104a4576101ee565b80634f6ccce7146103e557806355f804b3146104055780635c975abb146104255780636352211e1461043a576101ee565b806323b872dd1161018557806340c10f191161015457806340c10f191461037057806342842e0e14610383578063438b6300146103a35780634a152878146103d0576101ee565b806323b872dd146103065780632bb631f9146103265780632f745c591461033b5780633ccfd60b1461035b576101ee565b8063095ea7b3116101c1578063095ea7b31461029a57806318160ddd146102ba578063210504b8146102dc578063239c70ae146102f1576101ee565b806301ffc9a7146101f357806302329a291461022957806306fdde031461024b578063081812fc1461026d575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611b58565b6105c3565b6040516102209190611cde565b60405180910390f35b34801561023557600080fd5b50610249610244366004611b3e565b6105f0565b005b34801561025757600080fd5b5061026061064b565b6040516102209190611ce9565b34801561027957600080fd5b5061028d610288366004611bd6565b6106dd565b6040516102209190611c49565b3480156102a657600080fd5b506102496102b5366004611b15565b610720565b3480156102c657600080fd5b506102cf6107b8565b604051610220919061234e565b3480156102e857600080fd5b506102cf6107be565b3480156102fd57600080fd5b506102cf6107c4565b34801561031257600080fd5b50610249610321366004611a38565b6107ca565b34801561033257600080fd5b506102cf610802565b34801561034757600080fd5b506102cf610356366004611b15565b610808565b34801561036757600080fd5b5061024961085a565b61024961037e366004611b15565b6108cc565b34801561038f57600080fd5b5061024961039e366004611a38565b6109bb565b3480156103af57600080fd5b506103c36103be3660046119ec565b6109d6565b6040516102209190611c9a565b3480156103dc57600080fd5b506102cf610a94565b3480156103f157600080fd5b506102cf610400366004611bd6565b610a9a565b34801561041157600080fd5b50610249610420366004611b90565b610af5565b34801561043157600080fd5b50610213610b47565b34801561044657600080fd5b5061028d610455366004611bd6565b610b50565b34801561046657600080fd5b50610260610b85565b34801561047b57600080fd5b506102cf61048a3660046119ec565b610c13565b34801561049b57600080fd5b50610249610c57565b3480156104b057600080fd5b506102496104bf366004611bd6565b610ca2565b3480156104d057600080fd5b5061028d610ce6565b3480156104e557600080fd5b50610260610cf5565b3480156104fa57600080fd5b50610249610509366004611aec565b610d04565b34801561051a57600080fd5b506102cf610529366004611bd6565b610dd2565b34801561053a57600080fd5b50610249610549366004611a73565b610e32565b34801561055a57600080fd5b50610260610569366004611bd6565b610e6b565b34801561057a57600080fd5b506102cf610eee565b34801561058f57600080fd5b5061021361059e366004611a06565b610ef4565b3480156105af57600080fd5b506102496105be3660046119ec565b610f22565b60006001600160e01b0319821663780e9d6360e01b14806105e857506105e882610f93565b90505b919050565b6105f8610fd3565b6001600160a01b0316610609610ce6565b6001600160a01b0316146106385760405162461bcd60e51b815260040161062f90612176565b60405180910390fd5b600e805460ff1916911515919091179055565b60606000805461065a906123e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610686906123e5565b80156106d35780601f106106a8576101008083540402835291602001916106d3565b820191906000526020600020905b8154815290600101906020018083116106b657829003601f168201915b5050505050905090565b60006106e882610fd7565b6107045760405162461bcd60e51b815260040161062f9061212a565b506000908152600460205260409020546001600160a01b031690565b600061072b82610b50565b9050806001600160a01b0316836001600160a01b0316141561075f5760405162461bcd60e51b815260040161062f90612243565b806001600160a01b0316610771610fd3565b6001600160a01b0316148061078d575061078d8161059e610fd3565b6107a95760405162461bcd60e51b815260040161062f90611f9d565b6107b38383610ff4565b505050565b60085490565b60105481565b600d5481565b6107db6107d5610fd3565b82611062565b6107f75760405162461bcd60e51b815260040161062f90612284565b6107b38383836110e7565b60115481565b600061081383610c13565b82106108315760405162461bcd60e51b815260040161062f90611d42565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610862610fd3565b6001600160a01b0316610873610ce6565b6001600160a01b0316146108995760405162461bcd60e51b815260040161062f90612176565b6040514790339082156108fc029083906000818181858888f193505050501580156108c8573d6000803e3d6000fd5b5050565b60006108d66107b8565b600e5490915060ff16156108fc5760405162461bcd60e51b815260040161062f90612321565b60008211801561090e5750600d548211155b61092a5760405162461bcd60e51b815260040161062f9061208d565b600c546109378383612357565b11156109555760405162461bcd60e51b815260040161062f90611ddf565b61096761096183610dd2565b83611214565b3410156109865760405162461bcd60e51b815260040161062f90611e93565b60015b8281116109b5576109a38461099e8385612357565b611220565b806109ad81612420565b915050610989565b50505050565b6107b383838360405180602001604052806000815250610e32565b606060006109e383610c13565b905060008167ffffffffffffffff811115610a0e57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610a37578160200160208202803683370190505b50905060005b82811015610a8c57610a4f8582610808565b828281518110610a6f57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610a8481612420565b915050610a3d565b509392505050565b600f5481565b6000610aa46107b8565b8210610ac25760405162461bcd60e51b815260040161062f906122d5565b60088281548110610ae357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610afd610fd3565b6001600160a01b0316610b0e610ce6565b6001600160a01b031614610b345760405162461bcd60e51b815260040161062f90612176565b80516108c890600b9060208401906118bc565b600e5460ff1681565b6000818152600260205260408120546001600160a01b0316806105e85760405162461bcd60e51b815260040161062f90612044565b600b8054610b92906123e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbe906123e5565b8015610c0b5780601f10610be057610100808354040283529160200191610c0b565b820191906000526020600020905b815481529060010190602001808311610bee57829003601f168201915b505050505081565b60006001600160a01b038216610c3b5760405162461bcd60e51b815260040161062f90611ffa565b506001600160a01b031660009081526003602052604090205490565b610c5f610fd3565b6001600160a01b0316610c70610ce6565b6001600160a01b031614610c965760405162461bcd60e51b815260040161062f90612176565b610ca0600061123a565b565b610caa610fd3565b6001600160a01b0316610cbb610ce6565b6001600160a01b031614610ce15760405162461bcd60e51b815260040161062f90612176565b600d55565b600a546001600160a01b031690565b60606001805461065a906123e5565b610d0c610fd3565b6001600160a01b0316826001600160a01b03161415610d3d5760405162461bcd60e51b815260040161062f90611f1a565b8060056000610d4a610fd3565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d8e610fd3565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dc69190611cde565b60405180910390a35050565b60008160011480610de35750816005145b80610dee575081600a145b610e0a5760405162461bcd60e51b815260040161062f90611cfc565b600f546005831415610e1f57506010546105e8565b82600a14156105e8575050601154919050565b610e43610e3d610fd3565b83611062565b610e5f5760405162461bcd60e51b815260040161062f90612284565b6109b58484848461128c565b6060610e7682610fd7565b610e925760405162461bcd60e51b815260040161062f906121f4565b6000610e9c6112bf565b90506000815111610ebc5760405180602001604052806000815250610ee7565b80610ec6846112ce565b604051602001610ed7929190611c1a565b6040516020818303038152906040525b9392505050565b600c5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610f2a610fd3565b6001600160a01b0316610f3b610ce6565b6001600160a01b031614610f615760405162461bcd60e51b815260040161062f90612176565b6001600160a01b038116610f875760405162461bcd60e51b815260040161062f90611e16565b610f908161123a565b50565b60006001600160e01b031982166380ac58cd60e01b1480610fc457506001600160e01b03198216635b5e139f60e01b145b806105e857506105e8826113e9565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061102982610b50565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061106d82610fd7565b6110895760405162461bcd60e51b815260040161062f90611f51565b600061109483610b50565b9050806001600160a01b0316846001600160a01b031614806110cf5750836001600160a01b03166110c4846106dd565b6001600160a01b0316145b806110df57506110df8185610ef4565b949350505050565b826001600160a01b03166110fa82610b50565b6001600160a01b0316146111205760405162461bcd60e51b815260040161062f906121ab565b6001600160a01b0382166111465760405162461bcd60e51b815260040161062f90611ed6565b611151838383611402565b61115c600082610ff4565b6001600160a01b03831660009081526003602052604081208054600192906111859084906123a2565b90915550506001600160a01b03821660009081526003602052604081208054600192906111b3908490612357565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610ee78284612383565b6108c882826040518060200160405280600081525061148b565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6112978484846110e7565b6112a3848484846114be565b6109b55760405162461bcd60e51b815260040161062f90611d8d565b6060600b805461065a906123e5565b6060816112f357506040805180820190915260018152600360fc1b60208201526105eb565b8160005b811561131d578061130781612420565b91506113169050600a8361236f565b91506112f7565b60008167ffffffffffffffff81111561134657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611370576020820181803683370190505b5090505b84156110df576113856001836123a2565b9150611392600a8661243b565b61139d906030612357565b60f81b8183815181106113c057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506113e2600a8661236f565b9450611374565b6001600160e01b031981166301ffc9a760e01b14919050565b61140d8383836107b3565b6001600160a01b03831661142957611424816115d9565b61144c565b816001600160a01b0316836001600160a01b03161461144c5761144c838261161d565b6001600160a01b03821661146857611463816116ba565b6107b3565b826001600160a01b0316826001600160a01b0316146107b3576107b38282611793565b61149583836117d7565b6114a260008484846114be565b6107b35760405162461bcd60e51b815260040161062f90611d8d565b60006114d2846001600160a01b03166118b6565b156115ce57836001600160a01b031663150b7a026114ee610fd3565b8786866040518563ffffffff1660e01b81526004016115109493929190611c5d565b602060405180830381600087803b15801561152a57600080fd5b505af192505050801561155a575060408051601f3d908101601f1916820190925261155791810190611b74565b60015b6115b4573d808015611588576040519150601f19603f3d011682016040523d82523d6000602084013e61158d565b606091505b5080516115ac5760405162461bcd60e51b815260040161062f90611d8d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110df565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161162a84610c13565b61163491906123a2565b600083815260076020526040902054909150808214611687576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906116cc906001906123a2565b6000838152600960205260408120546008805493945090928490811061170257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061173157634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061177757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061179e83610c13565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166117fd5760405162461bcd60e51b815260040161062f906120f5565b61180681610fd7565b156118235760405162461bcd60e51b815260040161062f90611e5c565b61182f60008383611402565b6001600160a01b0382166000908152600360205260408120805460019290611858908490612357565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546118c8906123e5565b90600052602060002090601f0160209004810192826118ea5760008555611930565b82601f1061190357805160ff1916838001178555611930565b82800160010185558215611930579182015b82811115611930578251825591602001919060010190611915565b5061193c929150611940565b5090565b5b8082111561193c5760008155600101611941565b600067ffffffffffffffff808411156119705761197061247b565b604051601f8501601f1916810160200182811182821017156119945761199461247b565b6040528481529150818385018610156119ac57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105eb57600080fd5b803580151581146105eb57600080fd5b6000602082840312156119fd578081fd5b610ee7826119c5565b60008060408385031215611a18578081fd5b611a21836119c5565b9150611a2f602084016119c5565b90509250929050565b600080600060608486031215611a4c578081fd5b611a55846119c5565b9250611a63602085016119c5565b9150604084013590509250925092565b60008060008060808587031215611a88578081fd5b611a91856119c5565b9350611a9f602086016119c5565b925060408501359150606085013567ffffffffffffffff811115611ac1578182fd5b8501601f81018713611ad1578182fd5b611ae087823560208401611955565b91505092959194509250565b60008060408385031215611afe578182fd5b611b07836119c5565b9150611a2f602084016119dc565b60008060408385031215611b27578182fd5b611b30836119c5565b946020939093013593505050565b600060208284031215611b4f578081fd5b610ee7826119dc565b600060208284031215611b69578081fd5b8135610ee781612491565b600060208284031215611b85578081fd5b8151610ee781612491565b600060208284031215611ba1578081fd5b813567ffffffffffffffff811115611bb7578182fd5b8201601f81018413611bc7578182fd5b6110df84823560208401611955565b600060208284031215611be7578081fd5b5035919050565b60008151808452611c068160208601602086016123b9565b601f01601f19169290920160200192915050565b60008351611c2c8184602088016123b9565b835190830190611c408183602088016123b9565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c9090830184611bee565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611cd257835183529284019291840191600101611cb6565b50909695505050505050565b901515815260200190565b600060208252610ee76020830184611bee565b60208082526026908201527f4d696e7420616d6f756e74206d7573742062652065697468657220312c20352c6040820152650206f722031360d41b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4e6f7420656e6f756768207469636b65747320617661696c61626c6500000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526023908201527f416d6f756e74206f662045746865722073656e74206973206e6f7420636f72726040820152621958dd60ea1b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526042908201527f596f752063616e20676574206e6f206665776572207468616e20312c20616e6460408201527f206e6f206d6f7265207468616e203130207469636b65747320617420612074696060820152616d6560f01b608082015260a00190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526013908201527214d85b19481a185cdb89dd081cdd185c9d1959606a1b604082015260600190565b90815260200190565b6000821982111561236a5761236a61244f565b500190565b60008261237e5761237e612465565b500490565b600081600019048311821515161561239d5761239d61244f565b500290565b6000828210156123b4576123b461244f565b500390565b60005b838110156123d45781810151838201526020016123bc565b838111156109b55750506000910152565b6002810460018216806123f957607f821691505b6020821081141561241a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124345761243461244f565b5060010190565b60008261244a5761244a612465565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f9057600080fdfea2646970667358221220a493387da3986b2ddb09603abaf5da796c794fc757f7969628587932eec8800d64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f4d6567612048617368204c6f74746f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d484c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d526d3475705868386f546173706d416e6343314c74644b65666a77486d656e6a64345362796a347545364b482f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80634f6ccce71161010d5780638da5cb5b116100a0578063b88d4fde1161006f578063b88d4fde1461052e578063c87b56dd1461054e578063d5abeb011461056e578063e985e9c514610583578063f2fde38b146105a3576101ee565b80638da5cb5b146104c457806395d89b41146104d9578063a22cb465146104ee578063ae1042651461050e576101ee565b80636c0360eb116100dc5780636c0360eb1461045a57806370a082311461046f578063715018a61461048f5780637f00c7a6146104a4576101ee565b80634f6ccce7146103e557806355f804b3146104055780635c975abb146104255780636352211e1461043a576101ee565b806323b872dd1161018557806340c10f191161015457806340c10f191461037057806342842e0e14610383578063438b6300146103a35780634a152878146103d0576101ee565b806323b872dd146103065780632bb631f9146103265780632f745c591461033b5780633ccfd60b1461035b576101ee565b8063095ea7b3116101c1578063095ea7b31461029a57806318160ddd146102ba578063210504b8146102dc578063239c70ae146102f1576101ee565b806301ffc9a7146101f357806302329a291461022957806306fdde031461024b578063081812fc1461026d575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611b58565b6105c3565b6040516102209190611cde565b60405180910390f35b34801561023557600080fd5b50610249610244366004611b3e565b6105f0565b005b34801561025757600080fd5b5061026061064b565b6040516102209190611ce9565b34801561027957600080fd5b5061028d610288366004611bd6565b6106dd565b6040516102209190611c49565b3480156102a657600080fd5b506102496102b5366004611b15565b610720565b3480156102c657600080fd5b506102cf6107b8565b604051610220919061234e565b3480156102e857600080fd5b506102cf6107be565b3480156102fd57600080fd5b506102cf6107c4565b34801561031257600080fd5b50610249610321366004611a38565b6107ca565b34801561033257600080fd5b506102cf610802565b34801561034757600080fd5b506102cf610356366004611b15565b610808565b34801561036757600080fd5b5061024961085a565b61024961037e366004611b15565b6108cc565b34801561038f57600080fd5b5061024961039e366004611a38565b6109bb565b3480156103af57600080fd5b506103c36103be3660046119ec565b6109d6565b6040516102209190611c9a565b3480156103dc57600080fd5b506102cf610a94565b3480156103f157600080fd5b506102cf610400366004611bd6565b610a9a565b34801561041157600080fd5b50610249610420366004611b90565b610af5565b34801561043157600080fd5b50610213610b47565b34801561044657600080fd5b5061028d610455366004611bd6565b610b50565b34801561046657600080fd5b50610260610b85565b34801561047b57600080fd5b506102cf61048a3660046119ec565b610c13565b34801561049b57600080fd5b50610249610c57565b3480156104b057600080fd5b506102496104bf366004611bd6565b610ca2565b3480156104d057600080fd5b5061028d610ce6565b3480156104e557600080fd5b50610260610cf5565b3480156104fa57600080fd5b50610249610509366004611aec565b610d04565b34801561051a57600080fd5b506102cf610529366004611bd6565b610dd2565b34801561053a57600080fd5b50610249610549366004611a73565b610e32565b34801561055a57600080fd5b50610260610569366004611bd6565b610e6b565b34801561057a57600080fd5b506102cf610eee565b34801561058f57600080fd5b5061021361059e366004611a06565b610ef4565b3480156105af57600080fd5b506102496105be3660046119ec565b610f22565b60006001600160e01b0319821663780e9d6360e01b14806105e857506105e882610f93565b90505b919050565b6105f8610fd3565b6001600160a01b0316610609610ce6565b6001600160a01b0316146106385760405162461bcd60e51b815260040161062f90612176565b60405180910390fd5b600e805460ff1916911515919091179055565b60606000805461065a906123e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610686906123e5565b80156106d35780601f106106a8576101008083540402835291602001916106d3565b820191906000526020600020905b8154815290600101906020018083116106b657829003601f168201915b5050505050905090565b60006106e882610fd7565b6107045760405162461bcd60e51b815260040161062f9061212a565b506000908152600460205260409020546001600160a01b031690565b600061072b82610b50565b9050806001600160a01b0316836001600160a01b0316141561075f5760405162461bcd60e51b815260040161062f90612243565b806001600160a01b0316610771610fd3565b6001600160a01b0316148061078d575061078d8161059e610fd3565b6107a95760405162461bcd60e51b815260040161062f90611f9d565b6107b38383610ff4565b505050565b60085490565b60105481565b600d5481565b6107db6107d5610fd3565b82611062565b6107f75760405162461bcd60e51b815260040161062f90612284565b6107b38383836110e7565b60115481565b600061081383610c13565b82106108315760405162461bcd60e51b815260040161062f90611d42565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610862610fd3565b6001600160a01b0316610873610ce6565b6001600160a01b0316146108995760405162461bcd60e51b815260040161062f90612176565b6040514790339082156108fc029083906000818181858888f193505050501580156108c8573d6000803e3d6000fd5b5050565b60006108d66107b8565b600e5490915060ff16156108fc5760405162461bcd60e51b815260040161062f90612321565b60008211801561090e5750600d548211155b61092a5760405162461bcd60e51b815260040161062f9061208d565b600c546109378383612357565b11156109555760405162461bcd60e51b815260040161062f90611ddf565b61096761096183610dd2565b83611214565b3410156109865760405162461bcd60e51b815260040161062f90611e93565b60015b8281116109b5576109a38461099e8385612357565b611220565b806109ad81612420565b915050610989565b50505050565b6107b383838360405180602001604052806000815250610e32565b606060006109e383610c13565b905060008167ffffffffffffffff811115610a0e57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610a37578160200160208202803683370190505b50905060005b82811015610a8c57610a4f8582610808565b828281518110610a6f57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610a8481612420565b915050610a3d565b509392505050565b600f5481565b6000610aa46107b8565b8210610ac25760405162461bcd60e51b815260040161062f906122d5565b60088281548110610ae357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610afd610fd3565b6001600160a01b0316610b0e610ce6565b6001600160a01b031614610b345760405162461bcd60e51b815260040161062f90612176565b80516108c890600b9060208401906118bc565b600e5460ff1681565b6000818152600260205260408120546001600160a01b0316806105e85760405162461bcd60e51b815260040161062f90612044565b600b8054610b92906123e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbe906123e5565b8015610c0b5780601f10610be057610100808354040283529160200191610c0b565b820191906000526020600020905b815481529060010190602001808311610bee57829003601f168201915b505050505081565b60006001600160a01b038216610c3b5760405162461bcd60e51b815260040161062f90611ffa565b506001600160a01b031660009081526003602052604090205490565b610c5f610fd3565b6001600160a01b0316610c70610ce6565b6001600160a01b031614610c965760405162461bcd60e51b815260040161062f90612176565b610ca0600061123a565b565b610caa610fd3565b6001600160a01b0316610cbb610ce6565b6001600160a01b031614610ce15760405162461bcd60e51b815260040161062f90612176565b600d55565b600a546001600160a01b031690565b60606001805461065a906123e5565b610d0c610fd3565b6001600160a01b0316826001600160a01b03161415610d3d5760405162461bcd60e51b815260040161062f90611f1a565b8060056000610d4a610fd3565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d8e610fd3565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dc69190611cde565b60405180910390a35050565b60008160011480610de35750816005145b80610dee575081600a145b610e0a5760405162461bcd60e51b815260040161062f90611cfc565b600f546005831415610e1f57506010546105e8565b82600a14156105e8575050601154919050565b610e43610e3d610fd3565b83611062565b610e5f5760405162461bcd60e51b815260040161062f90612284565b6109b58484848461128c565b6060610e7682610fd7565b610e925760405162461bcd60e51b815260040161062f906121f4565b6000610e9c6112bf565b90506000815111610ebc5760405180602001604052806000815250610ee7565b80610ec6846112ce565b604051602001610ed7929190611c1a565b6040516020818303038152906040525b9392505050565b600c5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610f2a610fd3565b6001600160a01b0316610f3b610ce6565b6001600160a01b031614610f615760405162461bcd60e51b815260040161062f90612176565b6001600160a01b038116610f875760405162461bcd60e51b815260040161062f90611e16565b610f908161123a565b50565b60006001600160e01b031982166380ac58cd60e01b1480610fc457506001600160e01b03198216635b5e139f60e01b145b806105e857506105e8826113e9565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061102982610b50565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061106d82610fd7565b6110895760405162461bcd60e51b815260040161062f90611f51565b600061109483610b50565b9050806001600160a01b0316846001600160a01b031614806110cf5750836001600160a01b03166110c4846106dd565b6001600160a01b0316145b806110df57506110df8185610ef4565b949350505050565b826001600160a01b03166110fa82610b50565b6001600160a01b0316146111205760405162461bcd60e51b815260040161062f906121ab565b6001600160a01b0382166111465760405162461bcd60e51b815260040161062f90611ed6565b611151838383611402565b61115c600082610ff4565b6001600160a01b03831660009081526003602052604081208054600192906111859084906123a2565b90915550506001600160a01b03821660009081526003602052604081208054600192906111b3908490612357565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610ee78284612383565b6108c882826040518060200160405280600081525061148b565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6112978484846110e7565b6112a3848484846114be565b6109b55760405162461bcd60e51b815260040161062f90611d8d565b6060600b805461065a906123e5565b6060816112f357506040805180820190915260018152600360fc1b60208201526105eb565b8160005b811561131d578061130781612420565b91506113169050600a8361236f565b91506112f7565b60008167ffffffffffffffff81111561134657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611370576020820181803683370190505b5090505b84156110df576113856001836123a2565b9150611392600a8661243b565b61139d906030612357565b60f81b8183815181106113c057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506113e2600a8661236f565b9450611374565b6001600160e01b031981166301ffc9a760e01b14919050565b61140d8383836107b3565b6001600160a01b03831661142957611424816115d9565b61144c565b816001600160a01b0316836001600160a01b03161461144c5761144c838261161d565b6001600160a01b03821661146857611463816116ba565b6107b3565b826001600160a01b0316826001600160a01b0316146107b3576107b38282611793565b61149583836117d7565b6114a260008484846114be565b6107b35760405162461bcd60e51b815260040161062f90611d8d565b60006114d2846001600160a01b03166118b6565b156115ce57836001600160a01b031663150b7a026114ee610fd3565b8786866040518563ffffffff1660e01b81526004016115109493929190611c5d565b602060405180830381600087803b15801561152a57600080fd5b505af192505050801561155a575060408051601f3d908101601f1916820190925261155791810190611b74565b60015b6115b4573d808015611588576040519150601f19603f3d011682016040523d82523d6000602084013e61158d565b606091505b5080516115ac5760405162461bcd60e51b815260040161062f90611d8d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110df565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161162a84610c13565b61163491906123a2565b600083815260076020526040902054909150808214611687576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906116cc906001906123a2565b6000838152600960205260408120546008805493945090928490811061170257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061173157634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061177757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061179e83610c13565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166117fd5760405162461bcd60e51b815260040161062f906120f5565b61180681610fd7565b156118235760405162461bcd60e51b815260040161062f90611e5c565b61182f60008383611402565b6001600160a01b0382166000908152600360205260408120805460019290611858908490612357565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546118c8906123e5565b90600052602060002090601f0160209004810192826118ea5760008555611930565b82601f1061190357805160ff1916838001178555611930565b82800160010185558215611930579182015b82811115611930578251825591602001919060010190611915565b5061193c929150611940565b5090565b5b8082111561193c5760008155600101611941565b600067ffffffffffffffff808411156119705761197061247b565b604051601f8501601f1916810160200182811182821017156119945761199461247b565b6040528481529150818385018610156119ac57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105eb57600080fd5b803580151581146105eb57600080fd5b6000602082840312156119fd578081fd5b610ee7826119c5565b60008060408385031215611a18578081fd5b611a21836119c5565b9150611a2f602084016119c5565b90509250929050565b600080600060608486031215611a4c578081fd5b611a55846119c5565b9250611a63602085016119c5565b9150604084013590509250925092565b60008060008060808587031215611a88578081fd5b611a91856119c5565b9350611a9f602086016119c5565b925060408501359150606085013567ffffffffffffffff811115611ac1578182fd5b8501601f81018713611ad1578182fd5b611ae087823560208401611955565b91505092959194509250565b60008060408385031215611afe578182fd5b611b07836119c5565b9150611a2f602084016119dc565b60008060408385031215611b27578182fd5b611b30836119c5565b946020939093013593505050565b600060208284031215611b4f578081fd5b610ee7826119dc565b600060208284031215611b69578081fd5b8135610ee781612491565b600060208284031215611b85578081fd5b8151610ee781612491565b600060208284031215611ba1578081fd5b813567ffffffffffffffff811115611bb7578182fd5b8201601f81018413611bc7578182fd5b6110df84823560208401611955565b600060208284031215611be7578081fd5b5035919050565b60008151808452611c068160208601602086016123b9565b601f01601f19169290920160200192915050565b60008351611c2c8184602088016123b9565b835190830190611c408183602088016123b9565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c9090830184611bee565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611cd257835183529284019291840191600101611cb6565b50909695505050505050565b901515815260200190565b600060208252610ee76020830184611bee565b60208082526026908201527f4d696e7420616d6f756e74206d7573742062652065697468657220312c20352c6040820152650206f722031360d41b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4e6f7420656e6f756768207469636b65747320617661696c61626c6500000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526023908201527f416d6f756e74206f662045746865722073656e74206973206e6f7420636f72726040820152621958dd60ea1b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526042908201527f596f752063616e20676574206e6f206665776572207468616e20312c20616e6460408201527f206e6f206d6f7265207468616e203130207469636b65747320617420612074696060820152616d6560f01b608082015260a00190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526013908201527214d85b19481a185cdb89dd081cdd185c9d1959606a1b604082015260600190565b90815260200190565b6000821982111561236a5761236a61244f565b500190565b60008261237e5761237e612465565b500490565b600081600019048311821515161561239d5761239d61244f565b500290565b6000828210156123b4576123b461244f565b500390565b60005b838110156123d45781810151838201526020016123bc565b838111156109b55750506000910152565b6002810460018216806123f957607f821691505b6020821081141561241a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124345761243461244f565b5060010190565b60008261244a5761244a612465565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f9057600080fdfea2646970667358221220a493387da3986b2ddb09603abaf5da796c794fc757f7969628587932eec8800d64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f4d6567612048617368204c6f74746f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d484c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d526d3475705868386f546173706d416e6343314c74644b65666a77486d656e6a64345362796a347545364b482f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Mega Hash Lotto
Arg [1] : _symbol (string): MHL
Arg [2] : _initBaseURI (string): https://ipfs.io/ipfs/QmRm4upXh8oTaspmAncC1LtdKefjwHmenjd4Sbyj4uE6KH/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 4d6567612048617368204c6f74746f0000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4d484c0000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d526d3475705868386f
Arg [9] : 546173706d416e6343314c74644b65666a77486d656e6a64345362796a347545
Arg [10] : 364b482f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

140:2611:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:222:4;;;;;;;;;;-1:-1:-1;909:222:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2526:77:10;;;;;;;;;;-1:-1:-1;2526:77:10;;;;;:::i;:::-;;:::i;:::-;;2349:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3398:401::-;;;;;;;;;;-1:-1:-1;3398:401:3;;;;;:::i;:::-;;:::i;1534:111:4:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;461:45:10:-;;;;;;;;;;;;;:::i;322:33::-;;;;;;;;;;;;;:::i;4724:330:3:-;;;;;;;;;;-1:-1:-1;4724:330:3;;;;;:::i;:::-;;:::i;526:44:10:-;;;;;;;;;;;;;:::i;1210:253:4:-;;;;;;;;;;-1:-1:-1;1210:253:4;;;;;:::i;:::-;;:::i;2609:140:10:-;;;;;;;;;;;;;:::i;1319:608::-;;;;;;:::i;:::-;;:::i;5120:179:3:-;;;;;;;;;;-1:-1:-1;5120:179:3;;;;;:::i;:::-;;:::i;1933:351:10:-;;;;;;;;;;-1:-1:-1;1933:351:10;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;394:47::-;;;;;;;;;;;;;:::i;1717:230:4:-;;;;;;;;;;-1:-1:-1;1717:230:4;;;;;:::i;:::-;;:::i;2418:102:10:-;;;;;;;;;;-1:-1:-1;2418:102:10;;;;;:::i;:::-;;:::i;361:26::-;;;;;;;;;;;;;:::i;2052:235:3:-;;;;;;;;;;-1:-1:-1;2052:235:3;;;;;:::i;:::-;;:::i;257:21:10:-;;;;;;;;;;;;;:::i;1790:205:3:-;;;;;;;;;;-1:-1:-1;1790:205:3;;;;;:::i;:::-;;:::i;1598:92:11:-;;;;;;;;;;;;;:::i;2290:122:10:-;;;;;;;;;;-1:-1:-1;2290:122:10;;;;;:::i;:::-;;:::i;966:85:11:-;;;;;;;;;;;;;:::i;2511:102:3:-;;;;;;;;;;;;;:::i;4144:290::-;;;;;;;;;;-1:-1:-1;4144:290:3;;;;;:::i;:::-;;:::i;887:426:10:-;;;;;;;;;;-1:-1:-1;887:426:10;;;;;:::i;:::-;;:::i;5365:320:3:-;;;;;;;;;;-1:-1:-1;5365:320:3;;;;;:::i;:::-;;:::i;2679:329::-;;;;;;;;;;-1:-1:-1;2679:329:3;;;;;:::i;:::-;;:::i;284:32:10:-;;;;;;;;;;;;;:::i;4500:162:3:-;;;;;;;;;;-1:-1:-1;4500:162:3;;;;;:::i;:::-;;:::i;1839:189:11:-;;;;;;;;;;-1:-1:-1;1839:189:11;;;;;:::i;:::-;;:::i;909:222:4:-;1011:4;-1:-1:-1;;;;;;1034:50:4;;-1:-1:-1;;;1034:50:4;;:90;;;1088:36;1112:11;1088:23;:36::i;:::-;1027:97;;909:222;;;;:::o;2526:77:10:-;1189:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:11;;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;;;;;;;;;2581:6:10::1;:15:::0;;-1:-1:-1;;2581:15:10::1;::::0;::::1;;::::0;;;::::1;::::0;;2526:77::o;2349:98:3:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;3963:16;3971:7;3963;:16::i;:::-;3955:73;;;;-1:-1:-1;;;3955:73:3;;;;;;;:::i;:::-;-1:-1:-1;4046:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:3;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:3;:2;-1:-1:-1;;;;;3535:11:3;;;3527:57;;;;-1:-1:-1;;;3527:57:3;;;;;;;:::i;:::-;3632:5;-1:-1:-1;;;;;3616:21:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3616:21:3;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:3;;;;;;;:::i;:::-;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3398:401;;;:::o;1534:111:4:-;1621:10;:17;1534:111;:::o;461:45:10:-;;;;:::o;322:33::-;;;;:::o;4724:330:3:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:3;;;;;;;:::i;:::-;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;526:44:10:-;;;;:::o;1210:253:4:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1430:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1210:253::o;2609:140:10:-;1189:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:11;;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;2705:37:10::1;::::0;2674:21:::1;::::0;2713:10:::1;::::0;2705:37;::::1;;;::::0;2674:21;;2656:15:::1;2705:37:::0;2656:15;2705:37;2674:21;2713:10;2705:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1248:1:11;2609:140:10:o:0;1319:608::-;1392:14;1409:13;:11;:13::i;:::-;1441:6;;1392:30;;-1:-1:-1;1441:6:10;;1440:7;1432:39;;;;-1:-1:-1;;;1432:39:10;;;;;;;:::i;:::-;1503:1;1489:11;:15;:47;;;;;1523:13;;1508:11;:28;;1489:47;1481:126;;;;-1:-1:-1;;;1481:126:10;;;;;;;:::i;:::-;1649:9;;1625:20;1634:11;1625:6;:20;:::i;:::-;:33;;1617:74;;;;-1:-1:-1;;;1617:74:10;;;;;;;:::i;:::-;1722:54;1735:27;1750:11;1735:14;:27::i;:::-;1764:11;1722:12;:54::i;:::-;1709:9;:67;;1701:115;;;;-1:-1:-1;;;1701:115:10;;;;;;;:::i;:::-;1844:1;1827:94;1852:11;1847:1;:16;1827:94;;1884:26;1894:3;1899:10;1908:1;1899:6;:10;:::i;:::-;1884:9;:26::i;:::-;1865:3;;;;:::i;:::-;;;;1827:94;;;;1319:608;;;:::o;5120:179:3:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;1933:351:10:-;1993:16;2021:23;2047:17;2057:6;2047:9;:17::i;:::-;2021:43;;2074:25;2116:15;2102:30;;;;;;-1:-1:-1;;;2102:30:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2102:30:10;;2074:58;;2147:9;2142:111;2162:15;2158:1;:19;2142:111;;;2212:30;2232:6;2240:1;2212:19;:30::i;:::-;2198:8;2207:1;2198:11;;;;;;-1:-1:-1;;;2198:11:10;;;;;;;;;;;;;;;;;;:44;2179:3;;;;:::i;:::-;;;;2142:111;;;-1:-1:-1;2269:8:10;1933:351;-1:-1:-1;;;1933:351:10:o;394:47::-;;;;:::o;1717:230:4:-;1792:7;1827:30;:28;:30::i;:::-;1819:5;:38;1811:95;;;;-1:-1:-1;;;1811:95:4;;;;;;;:::i;:::-;1923:10;1934:5;1923:17;;;;;;-1:-1:-1;;;1923:17:4;;;;;;;;;;;;;;;;;1916:24;;1717:230;;;:::o;2418:102:10:-;1189:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:11;;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;2492:21:10;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;361:26::-:0;;;;;;:::o;2052:235:3:-;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:3;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:3;;;;;;;:::i;257:21:10:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1790:205:3:-;1862:7;-1:-1:-1;;;;;1889:19:3;;1881:74;;;;-1:-1:-1;;;1881:74:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1972:16:3;;;;;:9;:16;;;;;;;1790:205::o;1598:92:11:-;1189:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:11;;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;2290:122:10:-;1189:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:11;;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;2372:13:10::1;:33:::0;2290:122::o;966:85:11:-;1038:6;;-1:-1:-1;;;;;1038:6:11;966:85;:::o;2511:102:3:-;2567:13;2599:7;2592:14;;;;;:::i;4144:290::-;4258:12;:10;:12::i;:::-;-1:-1:-1;;;;;4246:24:3;:8;-1:-1:-1;;;;;4246:24:3;;;4238:62;;;;-1:-1:-1;;;4238:62:3;;;;;;;:::i;:::-;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;-1:-1:-1;;;;;4311:32:3;;;;;;;;;;;;;;;;;-1:-1:-1;4311:32:3;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:3;;;;;;;;;;;4394:12;:10;:12::i;:::-;-1:-1:-1;;;;;4379:48:3;;4418:8;4379:48;;;;;;:::i;:::-;;;;;;;;4144:290;;:::o;887:426:10:-;953:7;980:11;995:1;980:16;:36;;;;1000:11;1015:1;1000:16;980:36;:57;;;;1020:11;1035:2;1020:17;980:57;972:108;;;;-1:-1:-1;;;972:108:10;;;;;;;:::i;:::-;1111:12;;1153:1;1138:16;;1134:146;;;-1:-1:-1;1183:10:10;;1134:146;;;1214:11;1229:2;1214:17;1210:70;;;-1:-1:-1;;1260:9:10;;;887:426;-1:-1:-1;887:426:10:o;5365:320:3:-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:3;;;;;;;:::i;:::-;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;2679:329::-;2752:13;2785:16;2793:7;2785;:16::i;:::-;2777:76;;;;-1:-1:-1;;;2777:76:3;;;;;;;:::i;:::-;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;2679:329;-1:-1:-1;;;2679:329:3:o;284:32:10:-;;;;:::o;4500:162:3:-;-1:-1:-1;;;;;4620:25:3;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4500:162::o;1839:189:11:-;1189:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:11;;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:11;::::1;1919:73;;;;-1:-1:-1::0;;;1919:73:11::1;;;;;;;:::i;:::-;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;1431:300:3:-;1533:4;-1:-1:-1;;;;;;1568:40:3;;-1:-1:-1;;;1568:40:3;;:104;;-1:-1:-1;;;;;;;1624:48:3;;-1:-1:-1;;;1624:48:3;1568:104;:156;;;;1688:36;1712:11;1688:23;:36::i;587:96:1:-;666:10;587:96;:::o;7157:125:3:-;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:3;:30;;;7157:125::o;11008:171::-;11082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11082:29:3;-1:-1:-1;;;;;11082:29:3;;;;;;;;:24;;11135:23;11082:24;11135:14;:23::i;:::-;-1:-1:-1;;;;;11126:46:3;;;;;;;;;;;11008:171;;:::o;7440:344::-;7533:4;7557:16;7565:7;7557;:16::i;:::-;7549:73;;;;-1:-1:-1;;;7549:73:3;;;;;;;:::i;:::-;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:3;:7;-1:-1:-1;;;;;7689:16:3;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:3;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:3;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;:::-;7681:96;7440:344;-1:-1:-1;;;;7440:344:3:o;10337:560::-;10491:4;-1:-1:-1;;;;;10464:31:3;:23;10479:7;10464:14;:23::i;:::-;-1:-1:-1;;;;;10464:31:3;;10456:85;;;;-1:-1:-1;;;10456:85:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;10559:16:3;;10551:65;;;;-1:-1:-1;;;10551:65:3;;;;;;;:::i;:::-;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;-1:-1:-1;;;;;10768:15:3;;;;;;:9;:15;;;;;:20;;10787:1;;10768:15;:20;;10787:1;;10768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10798:13:3;;;;;;:9;:13;;;;;:18;;10815:1;;10798:13;:18;;10815:1;;10798:18;:::i;:::-;;;;-1:-1:-1;;10826:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10826:21:3;-1:-1:-1;;;;;10826:21:3;;;;;;;;;10863:27;;10826:16;;10863:27;;;;;;;10337:560;;;:::o;3382:96:12:-;3440:7;3466:5;3470:1;3466;:5;:::i;8114:108:3:-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;2034:169:11:-;2108:6;;;-1:-1:-1;;;;;2124:17:11;;;-1:-1:-1;;;;;;2124:17:11;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2034:169;;:::o;6547:307:3:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:3;;;;;;;:::i;775:106:10:-;835:13;867:7;860:14;;;;;:::i;275:703:13:-;331:13;548:10;544:51;;-1:-1:-1;574:10:13;;;;;;;;;;;;-1:-1:-1;;;574:10:13;;;;;;544:51;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:13;;-1:-1:-1;720:2:13;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;-1:-1:-1;;;764:17:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:13;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:13;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;-1:-1:-1;;;849:14:13;;;;;;;;;;;;:56;-1:-1:-1;;;;;849:56:13;;;;;;;;-1:-1:-1;919:11:13;928:2;919:11;;:::i;:::-;;;791:150;;763:155:2;-1:-1:-1;;;;;;871:40:2;;-1:-1:-1;;;871:40:2;763:155;;;:::o;2543:572:4:-;2682:45;2709:4;2715:2;2719:7;2682:26;:45::i;:::-;-1:-1:-1;;;;;2742:18:4;;2738:183;;2776:40;2808:7;2776:31;:40::i;:::-;2738:183;;;2845:2;-1:-1:-1;;;;;2837:10:4;:4;-1:-1:-1;;;;;2837:10:4;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;-1:-1:-1;;;;;2934:16:4;;2930:179;;2966:45;3003:7;2966:36;:45::i;:::-;2930:179;;;3038:4;-1:-1:-1;;;;;3032:10:4;:2;-1:-1:-1;;;;;3032:10:4;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;8443:311:3:-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;-1:-1:-1;;;8596:151:3;;;;;;;:::i;11732:778::-;11882:4;11902:15;:2;-1:-1:-1;;;;;11902:13:3;;:15::i;:::-;11898:606;;;11953:2;-1:-1:-1;;;;;11937:36:3;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11937:72:3;;;;;;;;-1:-1:-1;;11937:72:3;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12176:13:3;;12172:266;;12218:60;;-1:-1:-1;;;12218:60:3;;;;;;;:::i;12172:266::-;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;-1:-1:-1;;;;;;12059:51:3;-1:-1:-1;;;12059:51:3;;-1:-1:-1;12052:58:3;;11898:606;-1:-1:-1;12489:4:3;11732:778;;;;;;:::o;3821:161:4:-;3924:10;:17;;3897:24;;;;:15;:24;;;;;:44;;;3951:24;;;;;;;;;;;;3821:161::o;4599:970::-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4922:18;4943:26;;;:17;:26;;;;;;4861:51;;-1:-1:-1;5073:28:4;;;5069:323;;-1:-1:-1;;;;;5139:18:4;;5117:19;5139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5188:30;;;;;;:44;;;5304:30;;:17;:30;;;;;:43;;;5069:323;-1:-1:-1;5485:26:4;;;;:17;:26;;;;;;;;5478:33;;;-1:-1:-1;;;;;5528:18:4;;;;;:12;:18;;;;;:34;;;;;;;5521:41;4599:970::o;5857:1061::-;6131:10;:17;6106:22;;6131:21;;6151:1;;6131:21;:::i;:::-;6162:18;6183:24;;;:15;:24;;;;;;6551:10;:26;;6106:46;;-1:-1:-1;6183:24:4;;6106:46;;6551:26;;;;-1:-1:-1;;;6551:26:4;;;;;;;;;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;-1:-1:-1;;;6588:22:4;;;;;;;;;;;;;;;;;;;;:36;;;;6692:28;;;:15;:28;;;;;;;:41;;;6861:24;;;;;6854:31;6895:10;:16;;;;;-1:-1:-1;;;6895:16:4;;;;;;;;;;;;;;;;;;;;;;;;;;5857:1061;;;;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;-1:-1:-1;;;;;3540:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3584:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3409:217:4:o;9076:372:3:-;-1:-1:-1;;;;;9155:16:3;;9147:61;;;;-1:-1:-1;;;9147:61:3;;;;;;;:::i;:::-;9227:16;9235:7;9227;:16::i;:::-;9226:17;9218:58;;;;-1:-1:-1;;;9218:58:3;;;;;;;:::i;:::-;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;-1:-1:-1;;;;;9343:13:3;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9371:21:3;-1:-1:-1;;;;;9371:21:3;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;718:377:0:-;1034:20;1080:8;;;718:377::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:14;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:14;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:14;473:16;;;470:25;-1:-1:-1;467:2:14;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:14;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:14;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:14:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:14;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:14;;4335:120;-1:-1:-1;4335:120:14:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:14;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:14:o;4724:470::-;;4941:6;4935:13;4957:53;5003:6;4998:3;4991:4;4983:6;4979:17;4957:53;:::i;:::-;5073:13;;5032:16;;;;5095:57;5073:13;5032:16;5129:4;5117:17;;5095:57;:::i;:::-;5168:20;;4911:283;-1:-1:-1;;;;4911:283:14:o;5199:203::-;-1:-1:-1;;;;;5363:32:14;;;;5345:51;;5333:2;5318:18;;5300:102::o;5407:490::-;-1:-1:-1;;;;;5676:15:14;;;5658:34;;5728:15;;5723:2;5708:18;;5701:43;5775:2;5760:18;;5753:34;;;5823:3;5818:2;5803:18;;5796:31;;;5407:490;;5844:47;;5871:19;;5863:6;5844:47;:::i;:::-;5836:55;5610:287;-1:-1:-1;;;;;;5610:287:14:o;5902:635::-;6073:2;6125:21;;;6195:13;;6098:18;;;6217:22;;;5902:635;;6073:2;6296:15;;;;6270:2;6255:18;;;5902:635;6342:169;6356:6;6353:1;6350:13;6342:169;;;6417:13;;6405:26;;6486:15;;;;6451:12;;;;6378:1;6371:9;6342:169;;;-1:-1:-1;6528:3:14;;6053:484;-1:-1:-1;;;;;;6053:484:14:o;6542:187::-;6707:14;;6700:22;6682:41;;6670:2;6655:18;;6637:92::o;6734:221::-;;6883:2;6872:9;6865:21;6903:46;6945:2;6934:9;6930:18;6922:6;6903:46;:::i;6960:402::-;7162:2;7144:21;;;7201:2;7181:18;;;7174:30;7240:34;7235:2;7220:18;;7213:62;-1:-1:-1;;;7306:2:14;7291:18;;7284:36;7352:3;7337:19;;7134:228::o;7367:407::-;7569:2;7551:21;;;7608:2;7588:18;;;7581:30;7647:34;7642:2;7627:18;;7620:62;-1:-1:-1;;;7713:2:14;7698:18;;7691:41;7764:3;7749:19;;7541:233::o;7779:414::-;7981:2;7963:21;;;8020:2;8000:18;;;7993:30;8059:34;8054:2;8039:18;;8032:62;-1:-1:-1;;;8125:2:14;8110:18;;8103:48;8183:3;8168:19;;7953:240::o;8198:352::-;8400:2;8382:21;;;8439:2;8419:18;;;8412:30;8478;8473:2;8458:18;;8451:58;8541:2;8526:18;;8372:178::o;8555:402::-;8757:2;8739:21;;;8796:2;8776:18;;;8769:30;8835:34;8830:2;8815:18;;8808:62;-1:-1:-1;;;8901:2:14;8886:18;;8879:36;8947:3;8932:19;;8729:228::o;8962:352::-;9164:2;9146:21;;;9203:2;9183:18;;;9176:30;9242;9237:2;9222:18;;9215:58;9305:2;9290:18;;9136:178::o;9319:399::-;9521:2;9503:21;;;9560:2;9540:18;;;9533:30;9599:34;9594:2;9579:18;;9572:62;-1:-1:-1;;;9665:2:14;9650:18;;9643:33;9708:3;9693:19;;9493:225::o;9723:400::-;9925:2;9907:21;;;9964:2;9944:18;;;9937:30;10003:34;9998:2;9983:18;;9976:62;-1:-1:-1;;;10069:2:14;10054:18;;10047:34;10113:3;10098:19;;9897:226::o;10128:349::-;10330:2;10312:21;;;10369:2;10349:18;;;10342:30;10408:27;10403:2;10388:18;;10381:55;10468:2;10453:18;;10302:175::o;10482:408::-;10684:2;10666:21;;;10723:2;10703:18;;;10696:30;10762:34;10757:2;10742:18;;10735:62;-1:-1:-1;;;10828:2:14;10813:18;;10806:42;10880:3;10865:19;;10656:234::o;10895:420::-;11097:2;11079:21;;;11136:2;11116:18;;;11109:30;11175:34;11170:2;11155:18;;11148:62;11246:26;11241:2;11226:18;;11219:54;11305:3;11290:19;;11069:246::o;11320:406::-;11522:2;11504:21;;;11561:2;11541:18;;;11534:30;11600:34;11595:2;11580:18;;11573:62;-1:-1:-1;;;11666:2:14;11651:18;;11644:40;11716:3;11701:19;;11494:232::o;11731:405::-;11933:2;11915:21;;;11972:2;11952:18;;;11945:30;12011:34;12006:2;11991:18;;11984:62;-1:-1:-1;;;12077:2:14;12062:18;;12055:39;12126:3;12111:19;;11905:231::o;12141:470::-;12343:2;12325:21;;;12382:2;12362:18;;;12355:30;12421:34;12416:2;12401:18;;12394:62;12492:34;12487:2;12472:18;;12465:62;-1:-1:-1;;;12558:3:14;12543:19;;12536:33;12601:3;12586:19;;12315:296::o;12616:356::-;12818:2;12800:21;;;12837:18;;;12830:30;12896:34;12891:2;12876:18;;12869:62;12963:2;12948:18;;12790:182::o;12977:408::-;13179:2;13161:21;;;13218:2;13198:18;;;13191:30;13257:34;13252:2;13237:18;;13230:62;-1:-1:-1;;;13323:2:14;13308:18;;13301:42;13375:3;13360:19;;13151:234::o;13390:356::-;13592:2;13574:21;;;13611:18;;;13604:30;13670:34;13665:2;13650:18;;13643:62;13737:2;13722:18;;13564:182::o;13751:405::-;13953:2;13935:21;;;13992:2;13972:18;;;13965:30;14031:34;14026:2;14011:18;;14004:62;-1:-1:-1;;;14097:2:14;14082:18;;14075:39;14146:3;14131:19;;13925:231::o;14161:411::-;14363:2;14345:21;;;14402:2;14382:18;;;14375:30;14441:34;14436:2;14421:18;;14414:62;-1:-1:-1;;;14507:2:14;14492:18;;14485:45;14562:3;14547:19;;14335:237::o;14577:397::-;14779:2;14761:21;;;14818:2;14798:18;;;14791:30;14857:34;14852:2;14837:18;;14830:62;-1:-1:-1;;;14923:2:14;14908:18;;14901:31;14964:3;14949:19;;14751:223::o;14979:413::-;15181:2;15163:21;;;15220:2;15200:18;;;15193:30;15259:34;15254:2;15239:18;;15232:62;-1:-1:-1;;;15325:2:14;15310:18;;15303:47;15382:3;15367:19;;15153:239::o;15397:408::-;15599:2;15581:21;;;15638:2;15618:18;;;15611:30;15677:34;15672:2;15657:18;;15650:62;-1:-1:-1;;;15743:2:14;15728:18;;15721:42;15795:3;15780:19;;15571:234::o;15810:343::-;16012:2;15994:21;;;16051:2;16031:18;;;16024:30;-1:-1:-1;;;16085:2:14;16070:18;;16063:49;16144:2;16129:18;;15984:169::o;16158:177::-;16304:25;;;16292:2;16277:18;;16259:76::o;16340:128::-;;16411:1;16407:6;16404:1;16401:13;16398:2;;;16417:18;;:::i;:::-;-1:-1:-1;16453:9:14;;16388:80::o;16473:120::-;;16539:1;16529:2;;16544:18;;:::i;:::-;-1:-1:-1;16578:9:14;;16519:74::o;16598:168::-;;16704:1;16700;16696:6;16692:14;16689:1;16686:21;16681:1;16674:9;16667:17;16663:45;16660:2;;;16711:18;;:::i;:::-;-1:-1:-1;16751:9:14;;16650:116::o;16771:125::-;;16839:1;16836;16833:8;16830:2;;;16844:18;;:::i;:::-;-1:-1:-1;16881:9:14;;16820:76::o;16901:258::-;16973:1;16983:113;16997:6;16994:1;16991:13;16983:113;;;17073:11;;;17067:18;17054:11;;;17047:39;17019:2;17012:10;16983:113;;;17114:6;17111:1;17108:13;17105:2;;;-1:-1:-1;;17149:1:14;17131:16;;17124:27;16954:205::o;17164:380::-;17249:1;17239:12;;17296:1;17286:12;;;17307:2;;17361:4;17353:6;17349:17;17339:27;;17307:2;17414;17406:6;17403:14;17383:18;17380:38;17377:2;;;17460:10;17455:3;17451:20;17448:1;17441:31;17495:4;17492:1;17485:15;17523:4;17520:1;17513:15;17377:2;;17219:325;;;:::o;17549:135::-;;-1:-1:-1;;17609:17:14;;17606:2;;;17629:18;;:::i;:::-;-1:-1:-1;17676:1:14;17665:13;;17596:88::o;17689:112::-;;17747:1;17737:2;;17752:18;;:::i;:::-;-1:-1:-1;17786:9:14;;17727:74::o;17806:127::-;17867:10;17862:3;17858:20;17855:1;17848:31;17898:4;17895:1;17888:15;17922:4;17919:1;17912:15;17938:127;17999:10;17994:3;17990:20;17987:1;17980:31;18030:4;18027:1;18020:15;18054:4;18051:1;18044:15;18070:127;18131:10;18126:3;18122:20;18119:1;18112:31;18162:4;18159:1;18152:15;18186:4;18183:1;18176:15;18202:133;-1:-1:-1;;;;;;18278:32:14;;18268:43;;18258:2;;18325:1;18322;18315:12

Swarm Source

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