ETH Price: $3,458.74 (-1.78%)
Gas: 4 Gwei

Token

0xCrystals (0XCRYSTALS)
 

Overview

Max Total Supply

3,542 0XCRYSTALS

Holders

115

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x97fd762517fd4b4d54a0a76515590c4927425ee9
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:
OxCrystals

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-02
*/

//
//   ██████╗ ██╗  ██╗ ██████╗██████╗ ██╗   ██╗███████╗████████╗ █████╗ ██╗     ███████╗
//  ██╔═████╗╚██╗██╔╝██╔════╝██╔══██╗╚██╗ ██╔╝██╔════╝╚══██╔══╝██╔══██╗██║     ██╔════╝
//  ██║██╔██║ ╚███╔╝ ██║     ██████╔╝ ╚████╔╝ ███████╗   ██║   ███████║██║     ███████╗
//  ████╔╝██║ ██╔██╗ ██║     ██╔══██╗  ╚██╔╝  ╚════██║   ██║   ██╔══██║██║     ╚════██║
//  ╚██████╔╝██╔╝ ██╗╚██████╗██║  ██║   ██║   ███████║   ██║   ██║  ██║███████╗███████║
//   ╚═════╝ ╚═╝  ╚═╝ ╚═════╝╚═╝  ╚═╝   ╚═╝   ╚══════╝   ╚═╝   ╚═╝  ╚═╝╚══════╝╚══════╝
//                                                                                     


// SPDX-License-Identifier: MIT
// Developer: jawadklair

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);
}

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values);

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external;
}

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

/**
 * _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {

    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    )
        external
        returns(bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    )
        external
        returns(bytes4);
}

/*
 * @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 GSN 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 memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

/**
 * @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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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.3._
     */
    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.3._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits;
        temp = value;
        while (temp != 0) {
            buffer[--index] = bytes1(uint8(48 + uint256(temp % 10)));
            temp /= 10;
        }
        return string(buffer);
    }
}

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 *
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;
    using Strings for uint256;

    // Mapping from token ID to account balances
    mapping (uint256 => mapping(address => uint256)) private _balances;

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

    // Total crystals count, including burnt nft
    uint256 public crystalsCount = 0;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /*
     *     bytes4(keccak256('balanceOf(address,uint256)')) == 0x00fdd58e
     *     bytes4(keccak256('balanceOfBatch(address[],uint256[])')) == 0x4e1273f4
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,uint256,bytes)')) == 0xf242432a
     *     bytes4(keccak256('safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)')) == 0x2eb2c2d6
     *
     *     => 0x00fdd58e ^ 0x4e1273f4 ^ 0xa22cb465 ^
     *        0xe985e9c5 ^ 0xf242432a ^ 0x2eb2c2d6 == 0xd9b67a26
     */
    bytes4 private constant _INTERFACE_ID_ERC1155 = 0xd9b67a26;

    /*
     *     bytes4(keccak256('uri(uint256)')) == 0x0e89341c
     */
    bytes4 private constant _INTERFACE_ID_ERC1155_METADATA_URI = 0x0e89341c;

    /**
     * @dev See {_setURI}.
     */
    constructor (string memory uri_) {
        _setURI(uri_);

        // register the supported interfaces to conform to ERC1155 via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155);

        // register the supported interfaces to conform to ERC1155MetadataURI via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155_METADATA_URI);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256 id) external view override returns (string memory) {
        require(id <= crystalsCount, "NFT does not exist");
        // Even if there is a base URI, it is only appended to non-empty token-specific URIs
        if (bytes(_uri).length == 0) {
            return "";
        } else {
            // bytes memory b = new bytes(32);
            // assembly { mstore(add(b, 32), id) }
            // abi.encodePacked is being used to concatenate strings
            return string(abi.encodePacked(_uri, id.toString()));
        }
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(
        address[] memory accounts,
        uint256[] memory ids
    )
        public
        view
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            require(accounts[i] != address(0), "ERC1155: batch balance query for the zero address");
            batchBalances[i] = _balances[ids[i]][accounts[i]];
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        public
        virtual
        override
    {
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][from] = _balances[id][from] - amount;
        _balances[id][to] = _balances[id][to] + amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        public
        virtual
        override
    {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            _balances[id][from] = _balances[id][from] - amount;
            _balances[id][to] = _balances[id][to] + amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] = _balances[id][account] + amount;
        crystalsCount++;

        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] = amounts[i] + _balances[ids[i]][to];
            crystalsCount++;
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(address account, uint256 id, uint256 amount) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        _balances[id][account] = _balances[id][account] - amount;

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][account] = _balances[ids[i]][account] - amounts[i];
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        internal virtual
    { }

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(address account, uint256 id, uint256 value) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }
}

contract OxCrystals is ERC1155Burnable, Ownable {
    
    string public OXCRYSTALS_PROVENANCE = "";

    constructor(string memory uri) ERC1155(uri) {
    }

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

    /**
     * @dev Gets the token name
     * @return string representing the token name
     */
    function name() external pure returns(string memory) {
        return "0xCrystals";
    }

    /**
     * @dev Gets the token symbol
     * @return string representing the token symbol
     */
    function symbol() external pure returns(string memory) {
        return "0XCRYSTALS";
    }

    /*     
    * Set provenance once it's calculated
    */
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        OXCRYSTALS_PROVENANCE = provenanceHash;
    }

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

    /**
    * Mints 0xcrystals
    */
    function mint0xCrystals(uint256 numberOfTokens) public onlyOwner {
        uint mintIndex = ERC1155.crystalsCount;
        _mint(msg.sender, mintIndex, numberOfTokens,"");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"OXCRYSTALS_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"crystalsCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint0xCrystals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","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":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600381905560a0604081905260808290526200002191600691906200017c565b503480156200002f57600080fd5b506040516200226d3803806200226d833981016040819052620000529162000222565b80620000656301ffc9a760e01b620000df565b620000708162000163565b62000082636cdb3d1360e11b620000df565b620000946303a24d0760e21b620000df565b50600580546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3505062000351565b6001600160e01b031980821614156200013e5760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015260640160405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b8051620001789060049060208401906200017c565b5050565b8280546200018a90620002fe565b90600052602060002090601f016020900481019282620001ae5760008555620001f9565b82601f10620001c957805160ff1916838001178555620001f9565b82800160010185558215620001f9579182015b82811115620001f9578251825591602001919060010190620001dc565b50620002079291506200020b565b5090565b5b808211156200020757600081556001016200020c565b600060208083850312156200023657600080fd5b82516001600160401b03808211156200024e57600080fd5b818501915085601f8301126200026357600080fd5b8151818111156200027857620002786200033b565b604051601f8201601f19908116603f01168101908382118183101715620002a357620002a36200033b565b816040528281528886848701011115620002bc57600080fd5b600093505b82841015620002e05784840186015181850187015292850192620002c1565b82841115620002f25760008684830101525b98975050505050505050565b600181811c908216806200031357607f821691505b602082108114156200033557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611f0c80620003616000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c806366875457116100ad578063a22cb46511610071578063a22cb465146102a5578063e985e9c5146102b8578063f242432a146102f4578063f2fde38b14610307578063f5298aca1461031a57600080fd5b80636687545714610241578063715018a6146102495780638da5cb5b1461025157806395d89b411461026c5780639eaaec141461029257600080fd5b806312ae31f7116100f457806312ae31f7146101ea5780632eb2c2d6146101f35780633ccfd60b146102065780634e1273f41461020e57806355f804b31461022e57600080fd5b8062fdd58e1461013057806301ffc9a71461015657806306fdde03146101935780630e89341c146101c257806310969523146101d5575b600080fd5b61014361013e366004611788565b61032d565b6040519081526020015b60405180910390f35b6101836101643660046118b6565b6001600160e01b03191660009081526020819052604090205460ff1690565b604051901515815260200161014d565b60408051808201909152600a81526930784372797374616c7360b01b60208201525b60405161014d9190611b5f565b6101b56101d0366004611941565b6103c6565b6101e86101e33660046118f0565b61046f565b005b61014360035481565b6101e861020136600461163d565b6104b0565b6101e8610714565b61022161021c3660046117e5565b61076d565b60405161014d9190611b27565b6101e861023c3660046118f0565b61095a565b6101b5610990565b6101e8610a1e565b6005546040516001600160a01b03909116815260200161014d565b60408051808201909152600a81526930584352595354414c5360b01b60208201526101b5565b6101e86102a0366004611941565b610a92565b6101e86102b336600461174c565b610ade565b6101836102c636600461160a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6101e86103023660046116e7565b610bb5565b6101e86103153660046115ef565b610d0e565b6101e86103283660046117b2565b610df9565b60006001600160a01b03831661039e5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b606060035482111561040f5760405162461bcd60e51b815260206004820152601260248201527113919508191bd95cc81b9bdd08195e1a5cdd60721b6044820152606401610395565b6004805461041c90611d2b565b1515905061043857505060408051602081019091526000815290565b600461044383610e41565b6040516020016104549291906119dd565b6040516020818303038152906040529050919050565b919050565b6005546001600160a01b031633146104995760405162461bcd60e51b815260040161039590611c48565b80516104ac906006906020840190611443565b5050565b81518351146105125760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610395565b6001600160a01b0384166105385760405162461bcd60e51b815260040161039590611c03565b6001600160a01b038516331480610554575061055485336102c6565b6105bb5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610395565b3360005b84518110156106a65760008582815181106105dc576105dc611dee565b6020026020010151905060008583815181106105fa576105fa611dee565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150610636908290611ccd565b60008381526001602090815260408083206001600160a01b038e811685529252808320939093558a168152205461066e908290611ca1565b60009283526001602090815260408085206001600160a01b038c168652909152909220919091555061069f81611d93565b90506105bf565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516106f6929190611b3a565b60405180910390a461070c818787878787610f4a565b505050505050565b6005546001600160a01b0316331461073e5760405162461bcd60e51b815260040161039590611c48565b6040514790339082156108fc029083906000818181858888f193505050501580156104ac573d6000803e3d6000fd5b606081518351146107d25760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610395565b6000835167ffffffffffffffff8111156107ee576107ee611e04565b604051908082528060200260200182016040528015610817578160200160208202803683370190505b50905060005b84518110156109525760006001600160a01b031685828151811061084357610843611dee565b60200260200101516001600160a01b031614156108bc5760405162461bcd60e51b815260206004820152603160248201527f455243313135353a2062617463682062616c616e636520717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610395565b600160008583815181106108d2576108d2611dee565b6020026020010151815260200190815260200160002060008683815181106108fc576108fc611dee565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000205482828151811061093757610937611dee565b602090810291909101015261094b81611d93565b905061081d565b509392505050565b6005546001600160a01b031633146109845760405162461bcd60e51b815260040161039590611c48565b61098d816110be565b50565b6006805461099d90611d2b565b80601f01602080910402602001604051908101604052809291908181526020018280546109c990611d2b565b8015610a165780601f106109eb57610100808354040283529160200191610a16565b820191906000526020600020905b8154815290600101906020018083116109f957829003601f168201915b505050505081565b6005546001600160a01b03163314610a485760405162461bcd60e51b815260040161039590611c48565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610abc5760405162461bcd60e51b815260040161039590611c48565b600060035490506104ac338284604051806020016040528060008152506110d1565b336001600160a01b0383161415610b495760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610395565b3360008181526002602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001600160a01b038416610bdb5760405162461bcd60e51b815260040161039590611c03565b6001600160a01b038516331480610bf75750610bf785336102c6565b610c135760405162461bcd60e51b815260040161039590611bba565b33610c33818787610c2388611204565b610c2c88611204565b5050505050565b60008481526001602090815260408083206001600160a01b038a168452909152902054610c61908490611ccd565b60008581526001602090815260408083206001600160a01b038b81168552925280832093909355871681522054610c99908490611ca1565b60008581526001602090815260408083206001600160a01b038a811680865291845293829020949094558051888152918201879052898316928516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461070c81878787878761124f565b6005546001600160a01b03163314610d385760405162461bcd60e51b815260040161039590611c48565b6001600160a01b038116610d9d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610395565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316331480610e155750610e1583336102c6565b610e315760405162461bcd60e51b815260040161039590611bba565b610e3c838383611319565b505050565b606081610e655750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610e8f5780610e7981611d93565b9150610e889050600a83611cb9565b9150610e69565b60008167ffffffffffffffff811115610eaa57610eaa611e04565b6040519080825280601f01601f191660200182016040528015610ed4576020820181803683370190505b508593509050815b8315610f4157610eed600a85611dae565b610ef8906030611ca1565b60f81b82610f0583611d14565b92508281518110610f1857610f18611dee565b60200101906001600160f81b031916908160001a905350610f3a600a85611cb9565b9350610edc565b50949350505050565b6001600160a01b0384163b1561070c5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190610f8e9089908990889088908890600401611a84565b602060405180830381600087803b158015610fa857600080fd5b505af1925050508015610fd8575060408051601f3d908101601f19168201909252610fd5918101906118d3565b60015b61108557610fe4611e1a565b806308c379a0141561101e5750610ff9611e36565b806110045750611020565b8060405162461bcd60e51b81526004016103959190611b5f565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610395565b6001600160e01b0319811663bc197c8160e01b146110b55760405162461bcd60e51b815260040161039590611b72565b50505050505050565b80516104ac906004906020840190611443565b6001600160a01b0384166111315760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610395565b3361114281600087610c2388611204565b60008481526001602090815260408083206001600160a01b0389168452909152902054611170908490611ca1565b60008581526001602090815260408083206001600160a01b038a16845290915281209190915560038054916111a483611d93565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610c2c8160008787878761124f565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061123e5761123e611dee565b602090810291909101015292915050565b6001600160a01b0384163b1561070c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906112939089908990889088908890600401611ae2565b602060405180830381600087803b1580156112ad57600080fd5b505af19250505080156112dd575060408051601f3d908101601f191682019092526112da918101906118d3565b60015b6112e957610fe4611e1a565b6001600160e01b0319811663f23a6e6160e01b146110b55760405162461bcd60e51b815260040161039590611b72565b6001600160a01b03831661137b5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610395565b336113ab8185600061138c87611204565b61139587611204565b5050604080516020810190915260009052505050565b60008381526001602090815260408083206001600160a01b03881684529091529020546113d9908390611ccd565b60008481526001602090815260408083206001600160a01b0389811680865291845282852095909555815188815292830187905292938516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a450505050565b82805461144f90611d2b565b90600052602060002090601f01602090048101928261147157600085556114b7565b82601f1061148a57805160ff19168380011785556114b7565b828001600101855582156114b7579182015b828111156114b757825182559160200191906001019061149c565b506114c39291506114c7565b5090565b5b808211156114c357600081556001016114c8565b600067ffffffffffffffff8311156114f6576114f6611e04565b60405161150d601f8501601f191660200182611d66565b80915083815284848401111561152257600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461046a57600080fd5b600082601f83011261156257600080fd5b8135602061156f82611c7d565b60405161157c8282611d66565b8381528281019150858301600585901b8701840188101561159c57600080fd5b60005b858110156115bb5781358452928401929084019060010161159f565b5090979650505050505050565b600082601f8301126115d957600080fd5b6115e8838335602085016114dc565b9392505050565b60006020828403121561160157600080fd5b6115e88261153a565b6000806040838503121561161d57600080fd5b6116268361153a565b91506116346020840161153a565b90509250929050565b600080600080600060a0868803121561165557600080fd5b61165e8661153a565b945061166c6020870161153a565b9350604086013567ffffffffffffffff8082111561168957600080fd5b61169589838a01611551565b945060608801359150808211156116ab57600080fd5b6116b789838a01611551565b935060808801359150808211156116cd57600080fd5b506116da888289016115c8565b9150509295509295909350565b600080600080600060a086880312156116ff57600080fd5b6117088661153a565b94506117166020870161153a565b93506040860135925060608601359150608086013567ffffffffffffffff81111561174057600080fd5b6116da888289016115c8565b6000806040838503121561175f57600080fd5b6117688361153a565b91506020830135801515811461177d57600080fd5b809150509250929050565b6000806040838503121561179b57600080fd5b6117a48361153a565b946020939093013593505050565b6000806000606084860312156117c757600080fd5b6117d08461153a565b95602085013595506040909401359392505050565b600080604083850312156117f857600080fd5b823567ffffffffffffffff8082111561181057600080fd5b818501915085601f83011261182457600080fd5b8135602061183182611c7d565b60405161183e8282611d66565b8381528281019150858301600585901b870184018b101561185e57600080fd5b600096505b84871015611888576118748161153a565b835260019690960195918301918301611863565b509650508601359250508082111561189f57600080fd5b506118ac85828601611551565b9150509250929050565b6000602082840312156118c857600080fd5b81356115e881611ec0565b6000602082840312156118e557600080fd5b81516115e881611ec0565b60006020828403121561190257600080fd5b813567ffffffffffffffff81111561191957600080fd5b8201601f8101841361192a57600080fd5b611939848235602084016114dc565b949350505050565b60006020828403121561195357600080fd5b5035919050565b600081518084526020808501945080840160005b8381101561198a5781518752958201959082019060010161196e565b509495945050505050565b600081518084526119ad816020860160208601611ce4565b601f01601f19169290920160200192915050565b600081516119d3818560208601611ce4565b9290920192915050565b600080845481600182811c9150808316806119f957607f831692505b6020808410821415611a1957634e487b7160e01b86526022600452602486fd5b818015611a2d5760018114611a3e57611a6b565b60ff19861689528489019650611a6b565b60008b81526020902060005b86811015611a635781548b820152908501908301611a4a565b505084890196505b505050505050611a7b81856119c1565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611ab09083018661195a565b8281036060840152611ac2818661195a565b90508281036080840152611ad68185611995565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611b1c90830184611995565b979650505050505050565b6020815260006115e8602083018461195a565b604081526000611b4d604083018561195a565b8281036020840152611a7b818561195a565b6020815260006115e86020830184611995565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff821115611c9757611c97611e04565b5060051b60200190565b60008219821115611cb457611cb4611dc2565b500190565b600082611cc857611cc8611dd8565b500490565b600082821015611cdf57611cdf611dc2565b500390565b60005b83811015611cff578181015183820152602001611ce7565b83811115611d0e576000848401525b50505050565b600081611d2357611d23611dc2565b506000190190565b600181811c90821680611d3f57607f821691505b60208210811415611d6057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611d8c57611d8c611e04565b6040525050565b6000600019821415611da757611da7611dc2565b5060010190565b600082611dbd57611dbd611dd8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611e335760046000803e5060005160e01c5b90565b600060443d1015611e445790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611e7457505050505090565b8285019150815181811115611e8c5750505050505090565b843d8701016020828501011115611ea65750505050505090565b611eb560208286010187611d66565b509095945050505050565b6001600160e01b03198116811461098d57600080fdfea2646970667358221220ff7269f5f4e375e517b31a0b8c86cc08433a54af6c1d23c2f65821b59f24636464736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d55315a50455a757157587433704b32774377594a736b397659514a39455a4e3332645a6a7a783654615376392f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012b5760003560e01c806366875457116100ad578063a22cb46511610071578063a22cb465146102a5578063e985e9c5146102b8578063f242432a146102f4578063f2fde38b14610307578063f5298aca1461031a57600080fd5b80636687545714610241578063715018a6146102495780638da5cb5b1461025157806395d89b411461026c5780639eaaec141461029257600080fd5b806312ae31f7116100f457806312ae31f7146101ea5780632eb2c2d6146101f35780633ccfd60b146102065780634e1273f41461020e57806355f804b31461022e57600080fd5b8062fdd58e1461013057806301ffc9a71461015657806306fdde03146101935780630e89341c146101c257806310969523146101d5575b600080fd5b61014361013e366004611788565b61032d565b6040519081526020015b60405180910390f35b6101836101643660046118b6565b6001600160e01b03191660009081526020819052604090205460ff1690565b604051901515815260200161014d565b60408051808201909152600a81526930784372797374616c7360b01b60208201525b60405161014d9190611b5f565b6101b56101d0366004611941565b6103c6565b6101e86101e33660046118f0565b61046f565b005b61014360035481565b6101e861020136600461163d565b6104b0565b6101e8610714565b61022161021c3660046117e5565b61076d565b60405161014d9190611b27565b6101e861023c3660046118f0565b61095a565b6101b5610990565b6101e8610a1e565b6005546040516001600160a01b03909116815260200161014d565b60408051808201909152600a81526930584352595354414c5360b01b60208201526101b5565b6101e86102a0366004611941565b610a92565b6101e86102b336600461174c565b610ade565b6101836102c636600461160a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6101e86103023660046116e7565b610bb5565b6101e86103153660046115ef565b610d0e565b6101e86103283660046117b2565b610df9565b60006001600160a01b03831661039e5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b606060035482111561040f5760405162461bcd60e51b815260206004820152601260248201527113919508191bd95cc81b9bdd08195e1a5cdd60721b6044820152606401610395565b6004805461041c90611d2b565b1515905061043857505060408051602081019091526000815290565b600461044383610e41565b6040516020016104549291906119dd565b6040516020818303038152906040529050919050565b919050565b6005546001600160a01b031633146104995760405162461bcd60e51b815260040161039590611c48565b80516104ac906006906020840190611443565b5050565b81518351146105125760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610395565b6001600160a01b0384166105385760405162461bcd60e51b815260040161039590611c03565b6001600160a01b038516331480610554575061055485336102c6565b6105bb5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610395565b3360005b84518110156106a65760008582815181106105dc576105dc611dee565b6020026020010151905060008583815181106105fa576105fa611dee565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150610636908290611ccd565b60008381526001602090815260408083206001600160a01b038e811685529252808320939093558a168152205461066e908290611ca1565b60009283526001602090815260408085206001600160a01b038c168652909152909220919091555061069f81611d93565b90506105bf565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516106f6929190611b3a565b60405180910390a461070c818787878787610f4a565b505050505050565b6005546001600160a01b0316331461073e5760405162461bcd60e51b815260040161039590611c48565b6040514790339082156108fc029083906000818181858888f193505050501580156104ac573d6000803e3d6000fd5b606081518351146107d25760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610395565b6000835167ffffffffffffffff8111156107ee576107ee611e04565b604051908082528060200260200182016040528015610817578160200160208202803683370190505b50905060005b84518110156109525760006001600160a01b031685828151811061084357610843611dee565b60200260200101516001600160a01b031614156108bc5760405162461bcd60e51b815260206004820152603160248201527f455243313135353a2062617463682062616c616e636520717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610395565b600160008583815181106108d2576108d2611dee565b6020026020010151815260200190815260200160002060008683815181106108fc576108fc611dee565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000205482828151811061093757610937611dee565b602090810291909101015261094b81611d93565b905061081d565b509392505050565b6005546001600160a01b031633146109845760405162461bcd60e51b815260040161039590611c48565b61098d816110be565b50565b6006805461099d90611d2b565b80601f01602080910402602001604051908101604052809291908181526020018280546109c990611d2b565b8015610a165780601f106109eb57610100808354040283529160200191610a16565b820191906000526020600020905b8154815290600101906020018083116109f957829003601f168201915b505050505081565b6005546001600160a01b03163314610a485760405162461bcd60e51b815260040161039590611c48565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610abc5760405162461bcd60e51b815260040161039590611c48565b600060035490506104ac338284604051806020016040528060008152506110d1565b336001600160a01b0383161415610b495760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610395565b3360008181526002602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001600160a01b038416610bdb5760405162461bcd60e51b815260040161039590611c03565b6001600160a01b038516331480610bf75750610bf785336102c6565b610c135760405162461bcd60e51b815260040161039590611bba565b33610c33818787610c2388611204565b610c2c88611204565b5050505050565b60008481526001602090815260408083206001600160a01b038a168452909152902054610c61908490611ccd565b60008581526001602090815260408083206001600160a01b038b81168552925280832093909355871681522054610c99908490611ca1565b60008581526001602090815260408083206001600160a01b038a811680865291845293829020949094558051888152918201879052898316928516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461070c81878787878761124f565b6005546001600160a01b03163314610d385760405162461bcd60e51b815260040161039590611c48565b6001600160a01b038116610d9d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610395565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316331480610e155750610e1583336102c6565b610e315760405162461bcd60e51b815260040161039590611bba565b610e3c838383611319565b505050565b606081610e655750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610e8f5780610e7981611d93565b9150610e889050600a83611cb9565b9150610e69565b60008167ffffffffffffffff811115610eaa57610eaa611e04565b6040519080825280601f01601f191660200182016040528015610ed4576020820181803683370190505b508593509050815b8315610f4157610eed600a85611dae565b610ef8906030611ca1565b60f81b82610f0583611d14565b92508281518110610f1857610f18611dee565b60200101906001600160f81b031916908160001a905350610f3a600a85611cb9565b9350610edc565b50949350505050565b6001600160a01b0384163b1561070c5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190610f8e9089908990889088908890600401611a84565b602060405180830381600087803b158015610fa857600080fd5b505af1925050508015610fd8575060408051601f3d908101601f19168201909252610fd5918101906118d3565b60015b61108557610fe4611e1a565b806308c379a0141561101e5750610ff9611e36565b806110045750611020565b8060405162461bcd60e51b81526004016103959190611b5f565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610395565b6001600160e01b0319811663bc197c8160e01b146110b55760405162461bcd60e51b815260040161039590611b72565b50505050505050565b80516104ac906004906020840190611443565b6001600160a01b0384166111315760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610395565b3361114281600087610c2388611204565b60008481526001602090815260408083206001600160a01b0389168452909152902054611170908490611ca1565b60008581526001602090815260408083206001600160a01b038a16845290915281209190915560038054916111a483611d93565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610c2c8160008787878761124f565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061123e5761123e611dee565b602090810291909101015292915050565b6001600160a01b0384163b1561070c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906112939089908990889088908890600401611ae2565b602060405180830381600087803b1580156112ad57600080fd5b505af19250505080156112dd575060408051601f3d908101601f191682019092526112da918101906118d3565b60015b6112e957610fe4611e1a565b6001600160e01b0319811663f23a6e6160e01b146110b55760405162461bcd60e51b815260040161039590611b72565b6001600160a01b03831661137b5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610395565b336113ab8185600061138c87611204565b61139587611204565b5050604080516020810190915260009052505050565b60008381526001602090815260408083206001600160a01b03881684529091529020546113d9908390611ccd565b60008481526001602090815260408083206001600160a01b0389811680865291845282852095909555815188815292830187905292938516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a450505050565b82805461144f90611d2b565b90600052602060002090601f01602090048101928261147157600085556114b7565b82601f1061148a57805160ff19168380011785556114b7565b828001600101855582156114b7579182015b828111156114b757825182559160200191906001019061149c565b506114c39291506114c7565b5090565b5b808211156114c357600081556001016114c8565b600067ffffffffffffffff8311156114f6576114f6611e04565b60405161150d601f8501601f191660200182611d66565b80915083815284848401111561152257600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461046a57600080fd5b600082601f83011261156257600080fd5b8135602061156f82611c7d565b60405161157c8282611d66565b8381528281019150858301600585901b8701840188101561159c57600080fd5b60005b858110156115bb5781358452928401929084019060010161159f565b5090979650505050505050565b600082601f8301126115d957600080fd5b6115e8838335602085016114dc565b9392505050565b60006020828403121561160157600080fd5b6115e88261153a565b6000806040838503121561161d57600080fd5b6116268361153a565b91506116346020840161153a565b90509250929050565b600080600080600060a0868803121561165557600080fd5b61165e8661153a565b945061166c6020870161153a565b9350604086013567ffffffffffffffff8082111561168957600080fd5b61169589838a01611551565b945060608801359150808211156116ab57600080fd5b6116b789838a01611551565b935060808801359150808211156116cd57600080fd5b506116da888289016115c8565b9150509295509295909350565b600080600080600060a086880312156116ff57600080fd5b6117088661153a565b94506117166020870161153a565b93506040860135925060608601359150608086013567ffffffffffffffff81111561174057600080fd5b6116da888289016115c8565b6000806040838503121561175f57600080fd5b6117688361153a565b91506020830135801515811461177d57600080fd5b809150509250929050565b6000806040838503121561179b57600080fd5b6117a48361153a565b946020939093013593505050565b6000806000606084860312156117c757600080fd5b6117d08461153a565b95602085013595506040909401359392505050565b600080604083850312156117f857600080fd5b823567ffffffffffffffff8082111561181057600080fd5b818501915085601f83011261182457600080fd5b8135602061183182611c7d565b60405161183e8282611d66565b8381528281019150858301600585901b870184018b101561185e57600080fd5b600096505b84871015611888576118748161153a565b835260019690960195918301918301611863565b509650508601359250508082111561189f57600080fd5b506118ac85828601611551565b9150509250929050565b6000602082840312156118c857600080fd5b81356115e881611ec0565b6000602082840312156118e557600080fd5b81516115e881611ec0565b60006020828403121561190257600080fd5b813567ffffffffffffffff81111561191957600080fd5b8201601f8101841361192a57600080fd5b611939848235602084016114dc565b949350505050565b60006020828403121561195357600080fd5b5035919050565b600081518084526020808501945080840160005b8381101561198a5781518752958201959082019060010161196e565b509495945050505050565b600081518084526119ad816020860160208601611ce4565b601f01601f19169290920160200192915050565b600081516119d3818560208601611ce4565b9290920192915050565b600080845481600182811c9150808316806119f957607f831692505b6020808410821415611a1957634e487b7160e01b86526022600452602486fd5b818015611a2d5760018114611a3e57611a6b565b60ff19861689528489019650611a6b565b60008b81526020902060005b86811015611a635781548b820152908501908301611a4a565b505084890196505b505050505050611a7b81856119c1565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611ab09083018661195a565b8281036060840152611ac2818661195a565b90508281036080840152611ad68185611995565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611b1c90830184611995565b979650505050505050565b6020815260006115e8602083018461195a565b604081526000611b4d604083018561195a565b8281036020840152611a7b818561195a565b6020815260006115e86020830184611995565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff821115611c9757611c97611e04565b5060051b60200190565b60008219821115611cb457611cb4611dc2565b500190565b600082611cc857611cc8611dd8565b500490565b600082821015611cdf57611cdf611dc2565b500390565b60005b83811015611cff578181015183820152602001611ce7565b83811115611d0e576000848401525b50505050565b600081611d2357611d23611dc2565b506000190190565b600181811c90821680611d3f57607f821691505b60208210811415611d6057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611d8c57611d8c611e04565b6040525050565b6000600019821415611da757611da7611dc2565b5060010190565b600082611dbd57611dbd611dd8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611e335760046000803e5060005160e01c5b90565b600060443d1015611e445790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611e7457505050505090565b8285019150815181811115611e8c5750505050505090565b843d8701016020828501011115611ea65750505050505090565b611eb560208286010187611d66565b509095945050505050565b6001600160e01b03198116811461098d57600080fdfea2646970667358221220ff7269f5f4e375e517b31a0b8c86cc08433a54af6c1d23c2f65821b59f24636464736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d55315a50455a757157587433704b32774377594a736b397659514a39455a4e3332645a6a7a783654615376392f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : uri (string): https://ipfs.io/ipfs/QmU1ZPEZuqWXt3pK2wCwYJsk9vYQJ9EZN32dZjzx6TaSv9/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d55315a50455a757157
Arg [3] : 587433704b32774377594a736b397659514a39455a4e3332645a6a7a78365461
Arg [4] : 5376392f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

37755:1256:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25863:223;;;;;;:::i;:::-;;:::i;:::-;;;17969:25:1;;;17957:2;17942:18;25863:223:0;;;;;;;;10758:142;;;;;;:::i;:::-;-1:-1:-1;;;;;;10859:33:0;10835:4;10859:33;;;;;;;;;;;;;;10758:142;;;;11527:14:1;;11520:22;11502:41;;11490:2;11475:18;10758:142:0;11362:187:1;38175:91:0;38239:19;;;;;;;;;;;;-1:-1:-1;;;38239:19:0;;;;38175:91;;;;;;;:::i;25147:565::-;;;;;;:::i;:::-;;:::i;38545:131::-;;;;;;:::i;:::-;;:::i;:::-;;23250:32;;;;;;28523:1119;;;;;;:::i;:::-;;:::i;37925:140::-;;;:::i;26252:634::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;38684:95::-;;;;;;:::i;:::-;;:::i;37816:40::-;;;:::i;22023:148::-;;;:::i;21372:87::-;21445:6;;21372:87;;-1:-1:-1;;;;;21445:6:0;;;9168:51:1;;9156:2;9141:18;21372:87:0;9022:203:1;38380:93:0;38446:19;;;;;;;;;;;;-1:-1:-1;;;38446:19:0;;;;38380:93;;38828:180;;;;;;:::i;:::-;;:::i;26959:311::-;;;;;;:::i;:::-;;:::i;27342:160::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27457:27:0;;;27433:4;27457:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;27342:160;27574:872;;;;;;:::i;:::-;;:::i;22326:244::-;;;;;;:::i;:::-;;:::i;37461:287::-;;;;;;:::i;:::-;;:::i;25863:223::-;25941:7;-1:-1:-1;;;;;25969:21:0;;25961:77;;;;-1:-1:-1;;;25961:77:0;;12810:2:1;25961:77:0;;;12792:21:1;12849:2;12829:18;;;12822:30;12888:34;12868:18;;;12861:62;-1:-1:-1;;;12939:18:1;;;12932:41;12990:19;;25961:77:0;;;;;;;;;-1:-1:-1;26056:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;26056:22:0;;;;;;;;;;;;25863:223::o;25147:565::-;25204:13;25244;;25238:2;:19;;25230:50;;;;-1:-1:-1;;;25230:50:0;;16867:2:1;25230:50:0;;;16849:21:1;16906:2;16886:18;;;16879:30;-1:-1:-1;;;16925:18:1;;;16918:48;16983:18;;25230:50:0;16665:342:1;25230:50:0;25395:4;25389:18;;;;;:::i;:::-;:23;25385:320;;-1:-1:-1;25385:320:0;;-1:-1:-1;;25429:9:0;;;;;;;;;-1:-1:-1;25429:9:0;;;25147:565::o;25385:320::-;25672:4;25678:13;:2;:11;:13::i;:::-;25655:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25641:52;;25147:565;;;:::o;25385:320::-;25147:565;;;:::o;38545:131::-;21445:6;;-1:-1:-1;;;;;21445:6:0;9599:10;21592:23;21584:68;;;;-1:-1:-1;;;21584:68:0;;;;;;;:::i;:::-;38630:38;;::::1;::::0;:21:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;:::-;;38545:131:::0;:::o;28523:1119::-;28788:7;:14;28774:3;:10;:28;28766:81;;;;-1:-1:-1;;;28766:81:0;;17214:2:1;28766:81:0;;;17196:21:1;17253:2;17233:18;;;17226:30;17292:34;17272:18;;;17265:62;-1:-1:-1;;;17343:18:1;;;17336:38;17391:19;;28766:81:0;17012:404:1;28766:81:0;-1:-1:-1;;;;;28866:16:0;;28858:66;;;;-1:-1:-1;;;28858:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28957:20:0;;9599:10;28957:20;;:60;;-1:-1:-1;28981:36:0;28998:4;9599:10;27342:160;:::i;28981:36::-;28935:160;;;;-1:-1:-1;;;28935:160:0;;14863:2:1;28935:160:0;;;14845:21:1;14902:2;14882:18;;;14875:30;14941:34;14921:18;;;14914:62;-1:-1:-1;;;14992:18:1;;;14985:48;15050:19;;28935:160:0;14661:414:1;28935:160:0;9599:10;29108:16;29225:257;29249:3;:10;29245:1;:14;29225:257;;;29281:10;29294:3;29298:1;29294:6;;;;;;;;:::i;:::-;;;;;;;29281:19;;29315:14;29332:7;29340:1;29332:10;;;;;;;;:::i;:::-;;;;;;;;;;;;29381:13;;;;:9;:13;;;;;;-1:-1:-1;;;;;29381:19:0;;;;;;;;;;;;29332:10;;-1:-1:-1;29381:28:0;;29332:10;;29381:28;:::i;:::-;29359:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;29359:19:0;;;;;;;;;;:50;;;;29444:17;;;;;;:26;;29464:6;;29444:26;:::i;:::-;29424:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;29424:17:0;;;;;;;;;;:46;;;;-1:-1:-1;29261:3:0;;;:::i;:::-;;;29225:257;;;;29529:2;-1:-1:-1;;;;;29499:47:0;29523:4;-1:-1:-1;;;;;29499:47:0;29513:8;-1:-1:-1;;;;;29499:47:0;;29533:3;29538:7;29499:47;;;;;;;:::i;:::-;;;;;;;;29559:75;29595:8;29605:4;29611:2;29615:3;29620:7;29629:4;29559:35;:75::i;:::-;28755:887;28523:1119;;;;;:::o;37925:140::-;21445:6;;-1:-1:-1;;;;;21445:6:0;9599:10;21592:23;21584:68;;;;-1:-1:-1;;;21584:68:0;;;;;;;:::i;:::-;38020:37:::1;::::0;37988:21:::1;::::0;38028:10:::1;::::0;38020:37;::::1;;;::::0;37988:21;;37973:12:::1;38020:37:::0;37973:12;38020:37;37988:21;38028:10;38020:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;26252:634:::0;26416:16;26477:3;:10;26458:8;:15;:29;26450:83;;;;-1:-1:-1;;;26450:83:0;;16457:2:1;26450:83:0;;;16439:21:1;16496:2;16476:18;;;16469:30;16535:34;16515:18;;;16508:62;-1:-1:-1;;;16586:18:1;;;16579:39;16635:19;;26450:83:0;16255:405:1;26450:83:0;26546:30;26593:8;:15;26579:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26579:30:0;;26546:63;;26627:9;26622:224;26646:8;:15;26642:1;:19;26622:224;;;26714:1;-1:-1:-1;;;;;26691:25:0;:8;26700:1;26691:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;26691:25:0;;;26683:87;;;;-1:-1:-1;;;26683:87:0;;13222:2:1;26683:87:0;;;13204:21:1;13261:2;13241:18;;;13234:30;13300:34;13280:18;;;13273:62;-1:-1:-1;;;13351:18:1;;;13344:47;13408:19;;26683:87:0;13020:413:1;26683:87:0;26804:9;:17;26814:3;26818:1;26814:6;;;;;;;;:::i;:::-;;;;;;;26804:17;;;;;;;;;;;:30;26822:8;26831:1;26822:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;26804:30:0;-1:-1:-1;;;;;26804:30:0;;;;;;;;;;;;;26785:13;26799:1;26785:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;26663:3;;;:::i;:::-;;;26622:224;;;-1:-1:-1;26865:13:0;26252:634;-1:-1:-1;;;26252:634:0:o;38684:95::-;21445:6;;-1:-1:-1;;;;;21445:6:0;9599:10;21592:23;21584:68;;;;-1:-1:-1;;;21584:68:0;;;;;;;:::i;:::-;38755:16:::1;38763:7;38755;:16::i;:::-;38684:95:::0;:::o;37816:40::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22023:148::-;21445:6;;-1:-1:-1;;;;;21445:6:0;9599:10;21592:23;21584:68;;;;-1:-1:-1;;;21584:68:0;;;;;;;:::i;:::-;22114:6:::1;::::0;22093:40:::1;::::0;22130:1:::1;::::0;-1:-1:-1;;;;;22114:6:0::1;::::0;22093:40:::1;::::0;22130:1;;22093:40:::1;22144:6;:19:::0;;-1:-1:-1;;;;;;22144:19:0::1;::::0;;22023:148::o;38828:180::-;21445:6;;-1:-1:-1;;;;;21445:6:0;9599:10;21592:23;21584:68;;;;-1:-1:-1;;;21584:68:0;;;;;;;:::i;:::-;38904:14:::1;38921:21;;38904:38;;38953:47;38959:10;38971:9;38982:14;38953:47;;;;;;;;;;;::::0;:5:::1;:47::i;26959:311::-:0;9599:10;-1:-1:-1;;;;;27062:24:0;;;;27054:78;;;;-1:-1:-1;;;27054:78:0;;16047:2:1;27054:78:0;;;16029:21:1;16086:2;16066:18;;;16059:30;16125:34;16105:18;;;16098:62;-1:-1:-1;;;16176:18:1;;;16169:39;16225:19;;27054:78:0;15845:405:1;27054:78:0;9599:10;27145:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27145:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27145:53:0;;;;;;;;;;27214:48;;11502:41:1;;;27145:42:0;;9599:10;27214:48;;11475:18:1;27214:48:0;;;;;;;26959:311;;:::o;27574:872::-;-1:-1:-1;;;;;27800:16:0;;27792:66;;;;-1:-1:-1;;;27792:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27891:20:0;;9599:10;27891:20;;:60;;-1:-1:-1;27915:36:0;27932:4;9599:10;27342:160;:::i;27915:36::-;27869:151;;;;-1:-1:-1;;;27869:151:0;;;;;;;:::i;:::-;9599:10;28077:96;9599:10;28108:4;28114:2;28118:21;28136:2;28118:17;:21::i;:::-;28141:25;28159:6;28141:17;:25::i;:::-;28523:1119;;;;;;28077:96;28208:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;28208:19:0;;;;;;;;;;:28;;28230:6;;28208:28;:::i;:::-;28186:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;28186:19:0;;;;;;;;;;:50;;;;28267:17;;;;;;:26;;28287:6;;28267:26;:::i;:::-;28247:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;28247:17:0;;;;;;;;;;;;;:46;;;;28311;;18179:25:1;;;18220:18;;;18213:34;;;28311:46:0;;;;;;;;;18152:18:1;28311:46:0;;;;;;;28370:68;28401:8;28411:4;28417:2;28421;28425:6;28433:4;28370:30;:68::i;22326:244::-;21445:6;;-1:-1:-1;;;;;21445:6:0;9599:10;21592:23;21584:68;;;;-1:-1:-1;;;21584:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22415:22:0;::::1;22407:73;;;::::0;-1:-1:-1;;;22407:73:0;;13640:2:1;22407:73:0::1;::::0;::::1;13622:21:1::0;13679:2;13659:18;;;13652:30;13718:34;13698:18;;;13691:62;-1:-1:-1;;;13769:18:1;;;13762:36;13815:19;;22407:73:0::1;13438:402:1::0;22407:73:0::1;22517:6;::::0;22496:38:::1;::::0;-1:-1:-1;;;;;22496:38:0;;::::1;::::0;22517:6:::1;::::0;22496:38:::1;::::0;22517:6:::1;::::0;22496:38:::1;22545:6;:17:::0;;-1:-1:-1;;;;;;22545:17:0::1;-1:-1:-1::0;;;;;22545:17:0;;;::::1;::::0;;;::::1;::::0;;22326:244::o;37461:287::-;-1:-1:-1;;;;;37567:23:0;;9599:10;37567:23;;:66;;-1:-1:-1;37594:39:0;37611:7;9599:10;27342:160;:::i;37594:39::-;37545:157;;;;-1:-1:-1;;;37545:157:0;;;;;;;:::i;:::-;37715:25;37721:7;37730:2;37734:5;37715;:25::i;:::-;37461:287;;;:::o;19606:751::-;19662:13;19883:10;19879:53;;-1:-1:-1;;19910:10:0;;;;;;;;;;;;-1:-1:-1;;;19910:10:0;;;;;19606:751::o;19879:53::-;19957:5;19942:12;19998:78;20005:9;;19998:78;;20031:8;;;;:::i;:::-;;-1:-1:-1;20054:10:0;;-1:-1:-1;20062:2:0;20054:10;;:::i;:::-;;;19998:78;;;20086:19;20118:6;20108:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20108:17:0;-1:-1:-1;20176:5:0;;-1:-1:-1;20086:39:0;-1:-1:-1;20152:6:0;20192:126;20199:9;;20192:126;;20269:9;20276:2;20269:4;:9;:::i;:::-;20256:23;;:2;:23;:::i;:::-;20243:38;;20225:6;20232:7;;;:::i;:::-;;;;20225:15;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20225:56:0;;;;;;;;-1:-1:-1;20296:10:0;20304:2;20296:10;;:::i;:::-;;;20192:126;;;-1:-1:-1;20342:6:0;19606:751;-1:-1:-1;;;;19606:751:0:o;36213:799::-;-1:-1:-1;;;;;36467:13:0;;12563:20;12602:8;36463:542;;36503:79;;-1:-1:-1;;;36503:79:0;;-1:-1:-1;;;;;36503:43:0;;;;;:79;;36547:8;;36557:4;;36563:3;;36568:7;;36577:4;;36503:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36503:79:0;;;;;;;;-1:-1:-1;;36503:79:0;;;;;;;;;;;;:::i;:::-;;;36499:495;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;36867:6;36860:14;;-1:-1:-1;;;36860:14:0;;;;;;;;:::i;36499:495::-;;;36916:62;;-1:-1:-1;;;36916:62:0;;11980:2:1;36916:62:0;;;11962:21:1;12019:2;11999:18;;;11992:30;12058:34;12038:18;;;12031:62;-1:-1:-1;;;12109:18:1;;;12102:50;12169:19;;36916:62:0;11778:416:1;36499:495:0;-1:-1:-1;;;;;;36632:64:0;;-1:-1:-1;;;36632:64:0;36628:163;;36721:50;;-1:-1:-1;;;36721:50:0;;;;;;;:::i;36628:163::-;36583:223;36213:799;;;;;;:::o;30486:88::-;30553:13;;;;:4;;:13;;;;;:::i;30975:608::-;-1:-1:-1;;;;;31090:21:0;;31082:67;;;;-1:-1:-1;;;31082:67:0;;17623:2:1;31082:67:0;;;17605:21:1;17662:2;17642:18;;;17635:30;17701:34;17681:18;;;17674:62;-1:-1:-1;;;17752:18:1;;;17745:31;17793:19;;31082:67:0;17421:397:1;31082:67:0;9599:10;31206:107;9599:10;31162:16;31249:7;31258:21;31276:2;31258:17;:21::i;31206:107::-;31351:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;31351:22:0;;;;;;;;;;:31;;31376:6;;31351:31;:::i;:::-;31326:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;31326:22:0;;;;;;;;;:56;;;;31393:13;:15;;;;;;:::i;:::-;;;;-1:-1:-1;;31426:57:0;;;18179:25:1;;;18235:2;18220:18;;18213:34;;;-1:-1:-1;;;;;31426:57:0;;;;31459:1;;31426:57;;;;;;18152:18:1;31426:57:0;;;;;;;31496:79;31527:8;31545:1;31549:7;31558:2;31562:6;31570:4;31496:30;:79::i;37020:198::-;37140:16;;;37154:1;37140:16;;;;;;;;;37086;;37115:22;;37140:16;;;;;;;;;;;;-1:-1:-1;37140:16:0;37115:41;;37178:7;37167:5;37173:1;37167:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;37205:5;37020:198;-1:-1:-1;;37020:198:0:o;35443:762::-;-1:-1:-1;;;;;35672:13:0;;12563:20;12602:8;35668:530;;35708:72;;-1:-1:-1;;;35708:72:0;;-1:-1:-1;;;;;35708:38:0;;;;;:72;;35747:8;;35757:4;;35763:2;;35767:6;;35775:4;;35708:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35708:72:0;;;;;;;;-1:-1:-1;;35708:72:0;;;;;;;;;;;;:::i;:::-;;;35704:483;;;;:::i;:::-;-1:-1:-1;;;;;;35830:59:0;;-1:-1:-1;;;35830:59:0;35826:158;;35914:50;;-1:-1:-1;;;35914:50:0;;;;;;;:::i;32940:471::-;-1:-1:-1;;;;;33036:21:0;;33028:69;;;;-1:-1:-1;;;33028:69:0;;15282:2:1;33028:69:0;;;15264:21:1;15321:2;15301:18;;;15294:30;15360:34;15340:18;;;15333:62;-1:-1:-1;;;15411:18:1;;;15404:33;15454:19;;33028:69:0;15080:399:1;33028:69:0;9599:10;33154:105;9599:10;33185:7;33110:16;33206:21;33224:2;33206:17;:21::i;:::-;33229:25;33247:6;33229:17;:25::i;:::-;-1:-1:-1;;33154:105:0;;;;;;;;;-1:-1:-1;33154:105:0;;-1:-1:-1;;;28523:1119:0;33154:105;33297:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;33297:22:0;;;;;;;;;;:31;;33322:6;;33297:31;:::i;:::-;33272:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;33272:22:0;;;;;;;;;;;;:56;;;;33346:57;;18179:25:1;;;18220:18;;;18213:34;;;33272:13:0;;33346:57;;;;;18152:18:1;33346:57:0;;;;;;;33017:394;32940:471;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;665:735;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:1;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:1;;;1175:1;1172;1165:12;1118:61;1197:1;1207:163;1221:2;1218:1;1215:9;1207:163;;;1278:17;;1266:30;;1316:12;;;;1348;;;;1239:1;1232:9;1207:163;;;-1:-1:-1;1388:6:1;;665:735;-1:-1:-1;;;;;;;665:735:1:o;1405:220::-;1447:5;1500:3;1493:4;1485:6;1481:17;1477:27;1467:55;;1518:1;1515;1508:12;1467:55;1540:79;1615:3;1606:6;1593:20;1586:4;1578:6;1574:17;1540:79;:::i;:::-;1531:88;1405:220;-1:-1:-1;;;1405:220:1:o;1630:186::-;1689:6;1742:2;1730:9;1721:7;1717:23;1713:32;1710:52;;;1758:1;1755;1748:12;1710:52;1781:29;1800:9;1781:29;:::i;1821:260::-;1889:6;1897;1950:2;1938:9;1929:7;1925:23;1921:32;1918:52;;;1966:1;1963;1956:12;1918:52;1989:29;2008:9;1989:29;:::i;:::-;1979:39;;2037:38;2071:2;2060:9;2056:18;2037:38;:::i;:::-;2027:48;;1821:260;;;;;:::o;2086:943::-;2240:6;2248;2256;2264;2272;2325:3;2313:9;2304:7;2300:23;2296:33;2293:53;;;2342:1;2339;2332:12;2293:53;2365:29;2384:9;2365:29;:::i;:::-;2355:39;;2413:38;2447:2;2436:9;2432:18;2413:38;:::i;:::-;2403:48;;2502:2;2491:9;2487:18;2474:32;2525:18;2566:2;2558:6;2555:14;2552:34;;;2582:1;2579;2572:12;2552:34;2605:61;2658:7;2649:6;2638:9;2634:22;2605:61;:::i;:::-;2595:71;;2719:2;2708:9;2704:18;2691:32;2675:48;;2748:2;2738:8;2735:16;2732:36;;;2764:1;2761;2754:12;2732:36;2787:63;2842:7;2831:8;2820:9;2816:24;2787:63;:::i;:::-;2777:73;;2903:3;2892:9;2888:19;2875:33;2859:49;;2933:2;2923:8;2920:16;2917:36;;;2949:1;2946;2939:12;2917:36;;2972:51;3015:7;3004:8;2993:9;2989:24;2972:51;:::i;:::-;2962:61;;;2086:943;;;;;;;;:::o;3034:606::-;3138:6;3146;3154;3162;3170;3223:3;3211:9;3202:7;3198:23;3194:33;3191:53;;;3240:1;3237;3230:12;3191:53;3263:29;3282:9;3263:29;:::i;:::-;3253:39;;3311:38;3345:2;3334:9;3330:18;3311:38;:::i;:::-;3301:48;;3396:2;3385:9;3381:18;3368:32;3358:42;;3447:2;3436:9;3432:18;3419:32;3409:42;;3502:3;3491:9;3487:19;3474:33;3530:18;3522:6;3519:30;3516:50;;;3562:1;3559;3552:12;3516:50;3585:49;3626:7;3617:6;3606:9;3602:22;3585:49;:::i;3645:347::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3810:29;3829:9;3810:29;:::i;:::-;3800:39;;3889:2;3878:9;3874:18;3861:32;3936:5;3929:13;3922:21;3915:5;3912:32;3902:60;;3958:1;3955;3948:12;3902:60;3981:5;3971:15;;;3645:347;;;;;:::o;3997:254::-;4065:6;4073;4126:2;4114:9;4105:7;4101:23;4097:32;4094:52;;;4142:1;4139;4132:12;4094:52;4165:29;4184:9;4165:29;:::i;:::-;4155:39;4241:2;4226:18;;;;4213:32;;-1:-1:-1;;;3997:254:1:o;4256:322::-;4333:6;4341;4349;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4441:29;4460:9;4441:29;:::i;:::-;4431:39;4517:2;4502:18;;4489:32;;-1:-1:-1;4568:2:1;4553:18;;;4540:32;;4256:322;-1:-1:-1;;;4256:322:1:o;4583:1219::-;4701:6;4709;4762:2;4750:9;4741:7;4737:23;4733:32;4730:52;;;4778:1;4775;4768:12;4730:52;4818:9;4805:23;4847:18;4888:2;4880:6;4877:14;4874:34;;;4904:1;4901;4894:12;4874:34;4942:6;4931:9;4927:22;4917:32;;4987:7;4980:4;4976:2;4972:13;4968:27;4958:55;;5009:1;5006;4999:12;4958:55;5045:2;5032:16;5067:4;5090:43;5130:2;5090:43;:::i;:::-;5162:2;5156:9;5174:31;5202:2;5194:6;5174:31;:::i;:::-;5240:18;;;5274:15;;;;-1:-1:-1;5309:11:1;;;5351:1;5347:10;;;5339:19;;5335:28;;5332:41;-1:-1:-1;5329:61:1;;;5386:1;5383;5376:12;5329:61;5408:1;5399:10;;5418:169;5432:2;5429:1;5426:9;5418:169;;;5489:23;5508:3;5489:23;:::i;:::-;5477:36;;5450:1;5443:9;;;;;5533:12;;;;5565;;5418:169;;;-1:-1:-1;5606:6:1;-1:-1:-1;;5650:18:1;;5637:32;;-1:-1:-1;;5681:16:1;;;5678:36;;;5710:1;5707;5700:12;5678:36;;5733:63;5788:7;5777:8;5766:9;5762:24;5733:63;:::i;:::-;5723:73;;;4583:1219;;;;;:::o;5807:245::-;5865:6;5918:2;5906:9;5897:7;5893:23;5889:32;5886:52;;;5934:1;5931;5924:12;5886:52;5973:9;5960:23;5992:30;6016:5;5992:30;:::i;6057:249::-;6126:6;6179:2;6167:9;6158:7;6154:23;6150:32;6147:52;;;6195:1;6192;6185:12;6147:52;6227:9;6221:16;6246:30;6270:5;6246:30;:::i;6311:450::-;6380:6;6433:2;6421:9;6412:7;6408:23;6404:32;6401:52;;;6449:1;6446;6439:12;6401:52;6489:9;6476:23;6522:18;6514:6;6511:30;6508:50;;;6554:1;6551;6544:12;6508:50;6577:22;;6630:4;6622:13;;6618:27;-1:-1:-1;6608:55:1;;6659:1;6656;6649:12;6608:55;6682:73;6747:7;6742:2;6729:16;6724:2;6720;6716:11;6682:73;:::i;:::-;6672:83;6311:450;-1:-1:-1;;;;6311:450:1:o;6766:180::-;6825:6;6878:2;6866:9;6857:7;6853:23;6849:32;6846:52;;;6894:1;6891;6884:12;6846:52;-1:-1:-1;6917:23:1;;6766:180;-1:-1:-1;6766:180:1:o;6951:435::-;7004:3;7042:5;7036:12;7069:6;7064:3;7057:19;7095:4;7124:2;7119:3;7115:12;7108:19;;7161:2;7154:5;7150:14;7182:1;7192:169;7206:6;7203:1;7200:13;7192:169;;;7267:13;;7255:26;;7301:12;;;;7336:15;;;;7228:1;7221:9;7192:169;;;-1:-1:-1;7377:3:1;;6951:435;-1:-1:-1;;;;;6951:435:1:o;7391:257::-;7432:3;7470:5;7464:12;7497:6;7492:3;7485:19;7513:63;7569:6;7562:4;7557:3;7553:14;7546:4;7539:5;7535:16;7513:63;:::i;:::-;7630:2;7609:15;-1:-1:-1;;7605:29:1;7596:39;;;;7637:4;7592:50;;7391:257;-1:-1:-1;;7391:257:1:o;7653:185::-;7695:3;7733:5;7727:12;7748:52;7793:6;7788:3;7781:4;7774:5;7770:16;7748:52;:::i;:::-;7816:16;;;;;7653:185;-1:-1:-1;;7653:185:1:o;7843:1174::-;8019:3;8048:1;8081:6;8075:13;8111:3;8133:1;8161:9;8157:2;8153:18;8143:28;;8221:2;8210:9;8206:18;8243;8233:61;;8287:4;8279:6;8275:17;8265:27;;8233:61;8313:2;8361;8353:6;8350:14;8330:18;8327:38;8324:165;;;-1:-1:-1;;;8388:33:1;;8444:4;8441:1;8434:15;8474:4;8395:3;8462:17;8324:165;8505:18;8532:104;;;;8650:1;8645:320;;;;8498:467;;8532:104;-1:-1:-1;;8565:24:1;;8553:37;;8610:16;;;;-1:-1:-1;8532:104:1;;8645:320;18519:1;18512:14;;;18556:4;18543:18;;8740:1;8754:165;8768:6;8765:1;8762:13;8754:165;;;8846:14;;8833:11;;;8826:35;8889:16;;;;8783:10;;8754:165;;;8758:3;;8948:6;8943:3;8939:16;8932:23;;8498:467;;;;;;;8981:30;9007:3;8999:6;8981:30;:::i;:::-;8974:37;7843:1174;-1:-1:-1;;;;;7843:1174:1:o;9230:826::-;-1:-1:-1;;;;;9627:15:1;;;9609:34;;9679:15;;9674:2;9659:18;;9652:43;9589:3;9726:2;9711:18;;9704:31;;;9552:4;;9758:57;;9795:19;;9787:6;9758:57;:::i;:::-;9863:9;9855:6;9851:22;9846:2;9835:9;9831:18;9824:50;9897:44;9934:6;9926;9897:44;:::i;:::-;9883:58;;9990:9;9982:6;9978:22;9972:3;9961:9;9957:19;9950:51;10018:32;10043:6;10035;10018:32;:::i;:::-;10010:40;9230:826;-1:-1:-1;;;;;;;;9230:826:1:o;10061:560::-;-1:-1:-1;;;;;10358:15:1;;;10340:34;;10410:15;;10405:2;10390:18;;10383:43;10457:2;10442:18;;10435:34;;;10500:2;10485:18;;10478:34;;;10320:3;10543;10528:19;;10521:32;;;10283:4;;10570:45;;10595:19;;10587:6;10570:45;:::i;:::-;10562:53;10061:560;-1:-1:-1;;;;;;;10061:560:1:o;10626:261::-;10805:2;10794:9;10787:21;10768:4;10825:56;10877:2;10866:9;10862:18;10854:6;10825:56;:::i;10892:465::-;11149:2;11138:9;11131:21;11112:4;11175:56;11227:2;11216:9;11212:18;11204:6;11175:56;:::i;:::-;11279:9;11271:6;11267:22;11262:2;11251:9;11247:18;11240:50;11307:44;11344:6;11336;11307:44;:::i;11554:219::-;11703:2;11692:9;11685:21;11666:4;11723:44;11763:2;11752:9;11748:18;11740:6;11723:44;:::i;12199:404::-;12401:2;12383:21;;;12440:2;12420:18;;;12413:30;12479:34;12474:2;12459:18;;12452:62;-1:-1:-1;;;12545:2:1;12530:18;;12523:38;12593:3;12578:19;;12199:404::o;13845:405::-;14047:2;14029:21;;;14086:2;14066:18;;;14059:30;14125:34;14120:2;14105:18;;14098:62;-1:-1:-1;;;14191:2:1;14176:18;;14169:39;14240:3;14225:19;;13845:405::o;14255:401::-;14457:2;14439:21;;;14496:2;14476:18;;;14469:30;14535:34;14530:2;14515:18;;14508:62;-1:-1:-1;;;14601:2:1;14586:18;;14579:35;14646:3;14631:19;;14255:401::o;15484:356::-;15686:2;15668:21;;;15705:18;;;15698:30;15764:34;15759:2;15744:18;;15737:62;15831:2;15816:18;;15484:356::o;18258:183::-;18318:4;18351:18;18343:6;18340:30;18337:56;;;18373:18;;:::i;:::-;-1:-1:-1;18418:1:1;18414:14;18430:4;18410:25;;18258:183::o;18572:128::-;18612:3;18643:1;18639:6;18636:1;18633:13;18630:39;;;18649:18;;:::i;:::-;-1:-1:-1;18685:9:1;;18572:128::o;18705:120::-;18745:1;18771;18761:35;;18776:18;;:::i;:::-;-1:-1:-1;18810:9:1;;18705:120::o;18830:125::-;18870:4;18898:1;18895;18892:8;18889:34;;;18903:18;;:::i;:::-;-1:-1:-1;18940:9:1;;18830:125::o;18960:258::-;19032:1;19042:113;19056:6;19053:1;19050:13;19042:113;;;19132:11;;;19126:18;19113:11;;;19106:39;19078:2;19071:10;19042:113;;;19173:6;19170:1;19167:13;19164:48;;;19208:1;19199:6;19194:3;19190:16;19183:27;19164:48;;18960:258;;;:::o;19223:136::-;19262:3;19290:5;19280:39;;19299:18;;:::i;:::-;-1:-1:-1;;;19335:18:1;;19223:136::o;19364:380::-;19443:1;19439:12;;;;19486;;;19507:61;;19561:4;19553:6;19549:17;19539:27;;19507:61;19614:2;19606:6;19603:14;19583:18;19580:38;19577:161;;;19660:10;19655:3;19651:20;19648:1;19641:31;19695:4;19692:1;19685:15;19723:4;19720:1;19713:15;19577:161;;19364:380;;;:::o;19749:249::-;19859:2;19840:13;;-1:-1:-1;;19836:27:1;19824:40;;19894:18;19879:34;;19915:22;;;19876:62;19873:88;;;19941:18;;:::i;:::-;19977:2;19970:22;-1:-1:-1;;19749:249:1:o;20003:135::-;20042:3;-1:-1:-1;;20063:17:1;;20060:43;;;20083:18;;:::i;:::-;-1:-1:-1;20130:1:1;20119:13;;20003:135::o;20143:112::-;20175:1;20201;20191:35;;20206:18;;:::i;:::-;-1:-1:-1;20240:9:1;;20143:112::o;20260:127::-;20321:10;20316:3;20312:20;20309:1;20302:31;20352:4;20349:1;20342:15;20376:4;20373:1;20366:15;20392:127;20453:10;20448:3;20444:20;20441:1;20434:31;20484:4;20481:1;20474:15;20508:4;20505:1;20498:15;20524:127;20585:10;20580:3;20576:20;20573:1;20566:31;20616:4;20613:1;20606:15;20640:4;20637:1;20630:15;20656:127;20717:10;20712:3;20708:20;20705:1;20698:31;20748:4;20745:1;20738:15;20772:4;20769:1;20762:15;20788:179;20823:3;20865:1;20847:16;20844:23;20841:120;;;20911:1;20908;20905;20890:23;-1:-1:-1;20948:1:1;20942:8;20937:3;20933:18;20841:120;20788:179;:::o;20972:671::-;21011:3;21053:4;21035:16;21032:26;21029:39;;;20972:671;:::o;21029:39::-;21095:2;21089:9;-1:-1:-1;;21160:16:1;21156:25;;21153:1;21089:9;21132:50;21211:4;21205:11;21235:16;21270:18;21341:2;21334:4;21326:6;21322:17;21319:25;21314:2;21306:6;21303:14;21300:45;21297:58;;;21348:5;;;;;20972:671;:::o;21297:58::-;21385:6;21379:4;21375:17;21364:28;;21421:3;21415:10;21448:2;21440:6;21437:14;21434:27;;;21454:5;;;;;;20972:671;:::o;21434:27::-;21538:2;21519:16;21513:4;21509:27;21505:36;21498:4;21489:6;21484:3;21480:16;21476:27;21473:69;21470:82;;;21545:5;;;;;;20972:671;:::o;21470:82::-;21561:57;21612:4;21603:6;21595;21591:19;21587:30;21581:4;21561:57;:::i;:::-;-1:-1:-1;21634:3:1;;20972:671;-1:-1:-1;;;;;20972:671:1:o;21648:131::-;-1:-1:-1;;;;;;21722:32:1;;21712:43;;21702:71;;21769:1;21766;21759:12

Swarm Source

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