ETH Price: $2,996.36 (-1.80%)
Gas: 2 Gwei

Token

 

Overview

Max Total Supply

188

Holders

183

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xd6ed2602032b71a82c0f56d82233f2a236bc834c
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:
NiftyCookies

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : NiftyCookies.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

//  __    _  ___   _______  _______  __   __  _______  _______  _______  ___   _  ___   _______  _______ 
// |  |  | ||   | |       ||       ||  | |  ||       ||       ||       ||   | | ||   | |       ||       |
// |   |_| ||   | |    ___||_     _||  |_|  ||       ||   _   ||   _   ||   |_| ||   | |    ___||  _____|
// |       ||   | |   |___   |   |  |       ||       ||  | |  ||  | |  ||      _||   | |   |___ | |_____ 
// |  _    ||   | |    ___|  |   |  |_     _||      _||  |_|  ||  |_|  ||     |_ |   | |    ___||_____  |
// | | |   ||   | |   |      |   |    |   |  |     |_ |       ||       ||    _  ||   | |   |___  _____| |
// |_|  |__||___| |___|      |___|    |___|  |_______||_______||_______||___| |_||___| |_______||_______|

contract NiftyCookies is ERC1155, Ownable {
    using Strings for uint256;
    
    string private baseURI;

    constructor(string memory _baseURI) ERC1155(_baseURI) {
        baseURI = _baseURI;
    }
    
    function mint(uint256 id, uint256 amount) external onlyOwner {
        _mint(msg.sender, id, amount, "");
    }
    
    function updateBaseUri(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }
    
    function uri(uint256 typeId) public view override returns (string memory) {
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, typeId.toString())) : baseURI;
    }
}

File 2 of 11 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

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

    // 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;

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

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

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

    /**
     * @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) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual 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
        virtual
        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) {
            batchBalances[i] = balanceOf(accounts[i], ids[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 virtual 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(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(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(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `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 memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

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

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

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

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - 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[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        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];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _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] += amount;
        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 (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        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), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - 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 (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 5 of 11 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

File 6 of 11 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

File 7 of 11 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

File 8 of 11 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","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":[{"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":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"updateBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162003733380380620037338339818101604052810190620000379190620002a2565b8062000049816200008a60201b60201c565b506200006a6200005e620000a660201b60201c565b620000ae60201b60201c565b80600490805190602001906200008292919062000174565b505062000477565b8060029080519060200190620000a292919062000174565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001829062000388565b90600052602060002090601f016020900481019282620001a65760008555620001f2565b82601f10620001c157805160ff1916838001178555620001f2565b82800160010185558215620001f2579182015b82811115620001f1578251825591602001919060010190620001d4565b5b50905062000201919062000205565b5090565b5b808211156200022057600081600090555060010162000206565b5090565b60006200023b62000235846200031c565b620002f3565b9050828152602081018484840111156200025a576200025962000457565b5b6200026784828562000352565b509392505050565b600082601f83011262000287576200028662000452565b5b81516200029984826020860162000224565b91505092915050565b600060208284031215620002bb57620002ba62000461565b5b600082015167ffffffffffffffff811115620002dc57620002db6200045c565b5b620002ea848285016200026f565b91505092915050565b6000620002ff62000312565b90506200030d8282620003be565b919050565b6000604051905090565b600067ffffffffffffffff8211156200033a576200033962000423565b5b620003458262000466565b9050602081019050919050565b60005b838110156200037257808201518184015260208101905062000355565b8381111562000382576000848401525b50505050565b60006002820490506001821680620003a157607f821691505b60208210811415620003b857620003b7620003f4565b5b50919050565b620003c98262000466565b810181811067ffffffffffffffff82111715620003eb57620003ea62000423565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6132ac80620004876000396000f3fe608060405234801561001057600080fd5b50600436106100ce5760003560e01c80634e1273f41161008c578063a22cb46511610066578063a22cb4651461020f578063e985e9c51461022b578063f242432a1461025b578063f2fde38b14610277576100ce565b80634e1273f4146101b7578063715018a6146101e75780638da5cb5b146101f1576100ce565b8062fdd58e146100d357806301ffc9a7146101035780630e89341c146101335780631b2ef1ca146101635780632eb2c2d61461017f57806339f7e37f1461019b575b600080fd5b6100ed60048036038101906100e89190611fc7565b610293565b6040516100fa9190612861565b60405180910390f35b61011d6004803603810190610118919061207f565b61035c565b60405161012a9190612684565b60405180910390f35b61014d60048036038101906101489190612122565b61043e565b60405161015a919061269f565b60405180910390f35b61017d6004803603810190610178919061214f565b610519565b005b61019960048036038101906101949190611e21565b6105b4565b005b6101b560048036038101906101b091906120d9565b610655565b005b6101d160048036038101906101cc9190612007565b6106eb565b6040516101de919061262b565b60405180910390f35b6101ef610804565b005b6101f961088c565b604051610206919061254e565b60405180910390f35b61022960048036038101906102249190611f87565b6108b6565b005b61024560048036038101906102409190611de1565b610a37565b6040516102529190612684565b60405180910390f35b61027560048036038101906102709190611ef0565b610acb565b005b610291600480360381019061028c9190611db4565b610b6c565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102fb90612701565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061042757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610437575061043682610c64565b5b9050919050565b606060006004805461044f90612b86565b9050116104e6576004805461046390612b86565b80601f016020809104026020016040519081016040528092919081815260200182805461048f90612b86565b80156104dc5780601f106104b1576101008083540402835291602001916104dc565b820191906000526020600020905b8154815290600101906020018083116104bf57829003601f168201915b5050505050610512565b60046104f183610cce565b60405160200161050292919061252a565b6040516020818303038152906040525b9050919050565b610521610e2f565b73ffffffffffffffffffffffffffffffffffffffff1661053f61088c565b73ffffffffffffffffffffffffffffffffffffffff1614610595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058c906127c1565b60405180910390fd5b6105b033838360405180602001604052806000815250610e37565b5050565b6105bc610e2f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106025750610601856105fc610e2f565b610a37565b5b610641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063890612781565b60405180910390fd5b61064e8585858585610fcd565b5050505050565b61065d610e2f565b73ffffffffffffffffffffffffffffffffffffffff1661067b61088c565b73ffffffffffffffffffffffffffffffffffffffff16146106d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c8906127c1565b60405180910390fd5b80600490805190602001906106e7929190611a8c565b5050565b60608151835114610731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072890612801565b60405180910390fd5b6000835167ffffffffffffffff81111561074e5761074d612d1f565b5b60405190808252806020026020018201604052801561077c5781602001602082028036833780820191505090505b50905060005b84518110156107f9576107c98582815181106107a1576107a0612cf0565b5b60200260200101518583815181106107bc576107bb612cf0565b5b6020026020010151610293565b8282815181106107dc576107db612cf0565b5b602002602001018181525050806107f290612be9565b9050610782565b508091505092915050565b61080c610e2f565b73ffffffffffffffffffffffffffffffffffffffff1661082a61088c565b73ffffffffffffffffffffffffffffffffffffffff1614610880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610877906127c1565b60405180910390fd5b61088a60006112e1565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff166108d5610e2f565b73ffffffffffffffffffffffffffffffffffffffff16141561092c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610923906127e1565b60405180910390fd5b8060016000610939610e2f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166109e6610e2f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a2b9190612684565b60405180910390a35050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ad3610e2f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b195750610b1885610b13610e2f565b610a37565b5b610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f90612741565b60405180910390fd5b610b6585858585856113a7565b5050505050565b610b74610e2f565b73ffffffffffffffffffffffffffffffffffffffff16610b9261088c565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf906127c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f90612721565b60405180910390fd5b610c61816112e1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60606000821415610d16576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050610e2a565b600082905060005b60008214610d48578080610d3190612be9565b915050600a82610d419190612a6b565b9150610d1e565b60008167ffffffffffffffff811115610d6457610d63612d1f565b5b6040519080825280601f01601f191660200182016040528015610d965781602001600182028036833780820191505090505b5090505b60008514610e2357600182610daf9190612a9c565b9150600a85610dbe9190612c32565b6030610dca9190612a15565b60f81b818381518110610de057610ddf612cf0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85610e1c9190612a6b565b9450610d9a565b8093505050505b919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90612841565b60405180910390fd5b6000610eb1610e2f565b9050610ed281600087610ec388611629565b610ecc88611629565b876116a3565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f319190612a15565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051610faf92919061287c565b60405180910390a4610fc6816000878787876116ab565b5050505050565b8151835114611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100890612821565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890612761565b60405180910390fd5b600061108b610e2f565b905061109b8187878787876116a3565b60005b845181101561124c5760008582815181106110bc576110bb612cf0565b5b6020026020010151905060008583815181106110db576110da612cf0565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561117c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611173906127a1565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112319190612a15565b925050819055505050508061124590612be9565b905061109e565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112c392919061264d565b60405180910390a46112d9818787878787611892565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e90612761565b60405180910390fd5b6000611421610e2f565b905061144181878761143288611629565b61143b88611629565b876116a3565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf906127a1565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461158d9190612a15565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161160a92919061287c565b60405180910390a46116208288888888886116ab565b50505050505050565b60606000600167ffffffffffffffff81111561164857611647612d1f565b5b6040519080825280602002602001820160405280156116765781602001602082028036833780820191505090505b509050828160008151811061168e5761168d612cf0565b5b60200260200101818152505080915050919050565b505050505050565b6116ca8473ffffffffffffffffffffffffffffffffffffffff16611a79565b1561188a578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016117109594939291906125d1565b602060405180830381600087803b15801561172a57600080fd5b505af192505050801561175b57506040513d601f19601f8201168201806040525081019061175891906120ac565b60015b61180157611767612d4e565b806308c379a014156117c4575061177c613184565b8061178757506117c6565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb919061269f565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f8906126c1565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187f906126e1565b60405180910390fd5b505b505050505050565b6118b18473ffffffffffffffffffffffffffffffffffffffff16611a79565b15611a71578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016118f7959493929190612569565b602060405180830381600087803b15801561191157600080fd5b505af192505050801561194257506040513d601f19601f8201168201806040525081019061193f91906120ac565b60015b6119e85761194e612d4e565b806308c379a014156119ab5750611963613184565b8061196e57506119ad565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a2919061269f565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df906126c1565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a66906126e1565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b828054611a9890612b86565b90600052602060002090601f016020900481019282611aba5760008555611b01565b82601f10611ad357805160ff1916838001178555611b01565b82800160010185558215611b01579182015b82811115611b00578251825591602001919060010190611ae5565b5b509050611b0e9190611b12565b5090565b5b80821115611b2b576000816000905550600101611b13565b5090565b6000611b42611b3d846128ca565b6128a5565b90508083825260208201905082856020860282011115611b6557611b64612d75565b5b60005b85811015611b955781611b7b8882611c93565b845260208401935060208301925050600181019050611b68565b5050509392505050565b6000611bb2611bad846128f6565b6128a5565b90508083825260208201905082856020860282011115611bd557611bd4612d75565b5b60005b85811015611c055781611beb8882611d9f565b845260208401935060208301925050600181019050611bd8565b5050509392505050565b6000611c22611c1d84612922565b6128a5565b905082815260208101848484011115611c3e57611c3d612d7a565b5b611c49848285612b44565b509392505050565b6000611c64611c5f84612953565b6128a5565b905082815260208101848484011115611c8057611c7f612d7a565b5b611c8b848285612b44565b509392505050565b600081359050611ca28161321a565b92915050565b600082601f830112611cbd57611cbc612d70565b5b8135611ccd848260208601611b2f565b91505092915050565b600082601f830112611ceb57611cea612d70565b5b8135611cfb848260208601611b9f565b91505092915050565b600081359050611d1381613231565b92915050565b600081359050611d2881613248565b92915050565b600081519050611d3d81613248565b92915050565b600082601f830112611d5857611d57612d70565b5b8135611d68848260208601611c0f565b91505092915050565b600082601f830112611d8657611d85612d70565b5b8135611d96848260208601611c51565b91505092915050565b600081359050611dae8161325f565b92915050565b600060208284031215611dca57611dc9612d84565b5b6000611dd884828501611c93565b91505092915050565b60008060408385031215611df857611df7612d84565b5b6000611e0685828601611c93565b9250506020611e1785828601611c93565b9150509250929050565b600080600080600060a08688031215611e3d57611e3c612d84565b5b6000611e4b88828901611c93565b9550506020611e5c88828901611c93565b945050604086013567ffffffffffffffff811115611e7d57611e7c612d7f565b5b611e8988828901611cd6565b935050606086013567ffffffffffffffff811115611eaa57611ea9612d7f565b5b611eb688828901611cd6565b925050608086013567ffffffffffffffff811115611ed757611ed6612d7f565b5b611ee388828901611d43565b9150509295509295909350565b600080600080600060a08688031215611f0c57611f0b612d84565b5b6000611f1a88828901611c93565b9550506020611f2b88828901611c93565b9450506040611f3c88828901611d9f565b9350506060611f4d88828901611d9f565b925050608086013567ffffffffffffffff811115611f6e57611f6d612d7f565b5b611f7a88828901611d43565b9150509295509295909350565b60008060408385031215611f9e57611f9d612d84565b5b6000611fac85828601611c93565b9250506020611fbd85828601611d04565b9150509250929050565b60008060408385031215611fde57611fdd612d84565b5b6000611fec85828601611c93565b9250506020611ffd85828601611d9f565b9150509250929050565b6000806040838503121561201e5761201d612d84565b5b600083013567ffffffffffffffff81111561203c5761203b612d7f565b5b61204885828601611ca8565b925050602083013567ffffffffffffffff81111561206957612068612d7f565b5b61207585828601611cd6565b9150509250929050565b60006020828403121561209557612094612d84565b5b60006120a384828501611d19565b91505092915050565b6000602082840312156120c2576120c1612d84565b5b60006120d084828501611d2e565b91505092915050565b6000602082840312156120ef576120ee612d84565b5b600082013567ffffffffffffffff81111561210d5761210c612d7f565b5b61211984828501611d71565b91505092915050565b60006020828403121561213857612137612d84565b5b600061214684828501611d9f565b91505092915050565b6000806040838503121561216657612165612d84565b5b600061217485828601611d9f565b925050602061218585828601611d9f565b9150509250929050565b600061219b838361250c565b60208301905092915050565b6121b081612ad0565b82525050565b60006121c1826129a9565b6121cb81856129d7565b93506121d683612984565b8060005b838110156122075781516121ee888261218f565b97506121f9836129ca565b9250506001810190506121da565b5085935050505092915050565b61221d81612ae2565b82525050565b600061222e826129b4565b61223881856129e8565b9350612248818560208601612b53565b61225181612d89565b840191505092915050565b6000612267826129bf565b61227181856129f9565b9350612281818560208601612b53565b61228a81612d89565b840191505092915050565b60006122a0826129bf565b6122aa8185612a0a565b93506122ba818560208601612b53565b80840191505092915050565b600081546122d381612b86565b6122dd8186612a0a565b945060018216600081146122f857600181146123095761233c565b60ff1983168652818601935061233c565b61231285612994565b60005b8381101561233457815481890152600182019150602081019050612315565b838801955050505b50505092915050565b60006123526034836129f9565b915061235d82612da7565b604082019050919050565b60006123756028836129f9565b915061238082612df6565b604082019050919050565b6000612398602b836129f9565b91506123a382612e45565b604082019050919050565b60006123bb6026836129f9565b91506123c682612e94565b604082019050919050565b60006123de6029836129f9565b91506123e982612ee3565b604082019050919050565b60006124016025836129f9565b915061240c82612f32565b604082019050919050565b60006124246032836129f9565b915061242f82612f81565b604082019050919050565b6000612447602a836129f9565b915061245282612fd0565b604082019050919050565b600061246a6020836129f9565b91506124758261301f565b602082019050919050565b600061248d6029836129f9565b915061249882613048565b604082019050919050565b60006124b06029836129f9565b91506124bb82613097565b604082019050919050565b60006124d36028836129f9565b91506124de826130e6565b604082019050919050565b60006124f66021836129f9565b915061250182613135565b604082019050919050565b61251581612b3a565b82525050565b61252481612b3a565b82525050565b600061253682856122c6565b91506125428284612295565b91508190509392505050565b600060208201905061256360008301846121a7565b92915050565b600060a08201905061257e60008301886121a7565b61258b60208301876121a7565b818103604083015261259d81866121b6565b905081810360608301526125b181856121b6565b905081810360808301526125c58184612223565b90509695505050505050565b600060a0820190506125e660008301886121a7565b6125f360208301876121a7565b612600604083018661251b565b61260d606083018561251b565b818103608083015261261f8184612223565b90509695505050505050565b6000602082019050818103600083015261264581846121b6565b905092915050565b6000604082019050818103600083015261266781856121b6565b9050818103602083015261267b81846121b6565b90509392505050565b60006020820190506126996000830184612214565b92915050565b600060208201905081810360008301526126b9818461225c565b905092915050565b600060208201905081810360008301526126da81612345565b9050919050565b600060208201905081810360008301526126fa81612368565b9050919050565b6000602082019050818103600083015261271a8161238b565b9050919050565b6000602082019050818103600083015261273a816123ae565b9050919050565b6000602082019050818103600083015261275a816123d1565b9050919050565b6000602082019050818103600083015261277a816123f4565b9050919050565b6000602082019050818103600083015261279a81612417565b9050919050565b600060208201905081810360008301526127ba8161243a565b9050919050565b600060208201905081810360008301526127da8161245d565b9050919050565b600060208201905081810360008301526127fa81612480565b9050919050565b6000602082019050818103600083015261281a816124a3565b9050919050565b6000602082019050818103600083015261283a816124c6565b9050919050565b6000602082019050818103600083015261285a816124e9565b9050919050565b6000602082019050612876600083018461251b565b92915050565b6000604082019050612891600083018561251b565b61289e602083018461251b565b9392505050565b60006128af6128c0565b90506128bb8282612bb8565b919050565b6000604051905090565b600067ffffffffffffffff8211156128e5576128e4612d1f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561291157612910612d1f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561293d5761293c612d1f565b5b61294682612d89565b9050602081019050919050565b600067ffffffffffffffff82111561296e5761296d612d1f565b5b61297782612d89565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a2082612b3a565b9150612a2b83612b3a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a6057612a5f612c63565b5b828201905092915050565b6000612a7682612b3a565b9150612a8183612b3a565b925082612a9157612a90612c92565b5b828204905092915050565b6000612aa782612b3a565b9150612ab283612b3a565b925082821015612ac557612ac4612c63565b5b828203905092915050565b6000612adb82612b1a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b71578082015181840152602081019050612b56565b83811115612b80576000848401525b50505050565b60006002820490506001821680612b9e57607f821691505b60208210811415612bb257612bb1612cc1565b5b50919050565b612bc182612d89565b810181811067ffffffffffffffff82111715612be057612bdf612d1f565b5b80604052505050565b6000612bf482612b3a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c2757612c26612c63565b5b600182019050919050565b6000612c3d82612b3a565b9150612c4883612b3a565b925082612c5857612c57612c92565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115612d6d5760046000803e612d6a600051612d9a565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d101561319457613217565b61319c6128c0565b60043d036004823e80513d602482011167ffffffffffffffff821117156131c4575050613217565b808201805167ffffffffffffffff8111156131e25750505050613217565b80602083010160043d0385018111156131ff575050505050613217565b61320e82602001850186612bb8565b82955050505050505b90565b61322381612ad0565b811461322e57600080fd5b50565b61323a81612ae2565b811461324557600080fd5b50565b61325181612aee565b811461325c57600080fd5b50565b61326881612b3a565b811461327357600080fd5b5056fea26469706673582212208d612b364b95834699767c151d3a5cf5819edcd5a8fabda8b98086b151a26eaa64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d505164465466564143784a55464756425a346336354e45705a344e6f546b786e6b356652764342566b7262312f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ce5760003560e01c80634e1273f41161008c578063a22cb46511610066578063a22cb4651461020f578063e985e9c51461022b578063f242432a1461025b578063f2fde38b14610277576100ce565b80634e1273f4146101b7578063715018a6146101e75780638da5cb5b146101f1576100ce565b8062fdd58e146100d357806301ffc9a7146101035780630e89341c146101335780631b2ef1ca146101635780632eb2c2d61461017f57806339f7e37f1461019b575b600080fd5b6100ed60048036038101906100e89190611fc7565b610293565b6040516100fa9190612861565b60405180910390f35b61011d6004803603810190610118919061207f565b61035c565b60405161012a9190612684565b60405180910390f35b61014d60048036038101906101489190612122565b61043e565b60405161015a919061269f565b60405180910390f35b61017d6004803603810190610178919061214f565b610519565b005b61019960048036038101906101949190611e21565b6105b4565b005b6101b560048036038101906101b091906120d9565b610655565b005b6101d160048036038101906101cc9190612007565b6106eb565b6040516101de919061262b565b60405180910390f35b6101ef610804565b005b6101f961088c565b604051610206919061254e565b60405180910390f35b61022960048036038101906102249190611f87565b6108b6565b005b61024560048036038101906102409190611de1565b610a37565b6040516102529190612684565b60405180910390f35b61027560048036038101906102709190611ef0565b610acb565b005b610291600480360381019061028c9190611db4565b610b6c565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102fb90612701565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061042757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610437575061043682610c64565b5b9050919050565b606060006004805461044f90612b86565b9050116104e6576004805461046390612b86565b80601f016020809104026020016040519081016040528092919081815260200182805461048f90612b86565b80156104dc5780601f106104b1576101008083540402835291602001916104dc565b820191906000526020600020905b8154815290600101906020018083116104bf57829003601f168201915b5050505050610512565b60046104f183610cce565b60405160200161050292919061252a565b6040516020818303038152906040525b9050919050565b610521610e2f565b73ffffffffffffffffffffffffffffffffffffffff1661053f61088c565b73ffffffffffffffffffffffffffffffffffffffff1614610595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058c906127c1565b60405180910390fd5b6105b033838360405180602001604052806000815250610e37565b5050565b6105bc610e2f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106025750610601856105fc610e2f565b610a37565b5b610641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063890612781565b60405180910390fd5b61064e8585858585610fcd565b5050505050565b61065d610e2f565b73ffffffffffffffffffffffffffffffffffffffff1661067b61088c565b73ffffffffffffffffffffffffffffffffffffffff16146106d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c8906127c1565b60405180910390fd5b80600490805190602001906106e7929190611a8c565b5050565b60608151835114610731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072890612801565b60405180910390fd5b6000835167ffffffffffffffff81111561074e5761074d612d1f565b5b60405190808252806020026020018201604052801561077c5781602001602082028036833780820191505090505b50905060005b84518110156107f9576107c98582815181106107a1576107a0612cf0565b5b60200260200101518583815181106107bc576107bb612cf0565b5b6020026020010151610293565b8282815181106107dc576107db612cf0565b5b602002602001018181525050806107f290612be9565b9050610782565b508091505092915050565b61080c610e2f565b73ffffffffffffffffffffffffffffffffffffffff1661082a61088c565b73ffffffffffffffffffffffffffffffffffffffff1614610880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610877906127c1565b60405180910390fd5b61088a60006112e1565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff166108d5610e2f565b73ffffffffffffffffffffffffffffffffffffffff16141561092c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610923906127e1565b60405180910390fd5b8060016000610939610e2f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166109e6610e2f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a2b9190612684565b60405180910390a35050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ad3610e2f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b195750610b1885610b13610e2f565b610a37565b5b610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f90612741565b60405180910390fd5b610b6585858585856113a7565b5050505050565b610b74610e2f565b73ffffffffffffffffffffffffffffffffffffffff16610b9261088c565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf906127c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f90612721565b60405180910390fd5b610c61816112e1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60606000821415610d16576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050610e2a565b600082905060005b60008214610d48578080610d3190612be9565b915050600a82610d419190612a6b565b9150610d1e565b60008167ffffffffffffffff811115610d6457610d63612d1f565b5b6040519080825280601f01601f191660200182016040528015610d965781602001600182028036833780820191505090505b5090505b60008514610e2357600182610daf9190612a9c565b9150600a85610dbe9190612c32565b6030610dca9190612a15565b60f81b818381518110610de057610ddf612cf0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85610e1c9190612a6b565b9450610d9a565b8093505050505b919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90612841565b60405180910390fd5b6000610eb1610e2f565b9050610ed281600087610ec388611629565b610ecc88611629565b876116a3565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f319190612a15565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051610faf92919061287c565b60405180910390a4610fc6816000878787876116ab565b5050505050565b8151835114611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100890612821565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890612761565b60405180910390fd5b600061108b610e2f565b905061109b8187878787876116a3565b60005b845181101561124c5760008582815181106110bc576110bb612cf0565b5b6020026020010151905060008583815181106110db576110da612cf0565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561117c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611173906127a1565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112319190612a15565b925050819055505050508061124590612be9565b905061109e565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112c392919061264d565b60405180910390a46112d9818787878787611892565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e90612761565b60405180910390fd5b6000611421610e2f565b905061144181878761143288611629565b61143b88611629565b876116a3565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf906127a1565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461158d9190612a15565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161160a92919061287c565b60405180910390a46116208288888888886116ab565b50505050505050565b60606000600167ffffffffffffffff81111561164857611647612d1f565b5b6040519080825280602002602001820160405280156116765781602001602082028036833780820191505090505b509050828160008151811061168e5761168d612cf0565b5b60200260200101818152505080915050919050565b505050505050565b6116ca8473ffffffffffffffffffffffffffffffffffffffff16611a79565b1561188a578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016117109594939291906125d1565b602060405180830381600087803b15801561172a57600080fd5b505af192505050801561175b57506040513d601f19601f8201168201806040525081019061175891906120ac565b60015b61180157611767612d4e565b806308c379a014156117c4575061177c613184565b8061178757506117c6565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb919061269f565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f8906126c1565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187f906126e1565b60405180910390fd5b505b505050505050565b6118b18473ffffffffffffffffffffffffffffffffffffffff16611a79565b15611a71578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016118f7959493929190612569565b602060405180830381600087803b15801561191157600080fd5b505af192505050801561194257506040513d601f19601f8201168201806040525081019061193f91906120ac565b60015b6119e85761194e612d4e565b806308c379a014156119ab5750611963613184565b8061196e57506119ad565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a2919061269f565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df906126c1565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a66906126e1565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b828054611a9890612b86565b90600052602060002090601f016020900481019282611aba5760008555611b01565b82601f10611ad357805160ff1916838001178555611b01565b82800160010185558215611b01579182015b82811115611b00578251825591602001919060010190611ae5565b5b509050611b0e9190611b12565b5090565b5b80821115611b2b576000816000905550600101611b13565b5090565b6000611b42611b3d846128ca565b6128a5565b90508083825260208201905082856020860282011115611b6557611b64612d75565b5b60005b85811015611b955781611b7b8882611c93565b845260208401935060208301925050600181019050611b68565b5050509392505050565b6000611bb2611bad846128f6565b6128a5565b90508083825260208201905082856020860282011115611bd557611bd4612d75565b5b60005b85811015611c055781611beb8882611d9f565b845260208401935060208301925050600181019050611bd8565b5050509392505050565b6000611c22611c1d84612922565b6128a5565b905082815260208101848484011115611c3e57611c3d612d7a565b5b611c49848285612b44565b509392505050565b6000611c64611c5f84612953565b6128a5565b905082815260208101848484011115611c8057611c7f612d7a565b5b611c8b848285612b44565b509392505050565b600081359050611ca28161321a565b92915050565b600082601f830112611cbd57611cbc612d70565b5b8135611ccd848260208601611b2f565b91505092915050565b600082601f830112611ceb57611cea612d70565b5b8135611cfb848260208601611b9f565b91505092915050565b600081359050611d1381613231565b92915050565b600081359050611d2881613248565b92915050565b600081519050611d3d81613248565b92915050565b600082601f830112611d5857611d57612d70565b5b8135611d68848260208601611c0f565b91505092915050565b600082601f830112611d8657611d85612d70565b5b8135611d96848260208601611c51565b91505092915050565b600081359050611dae8161325f565b92915050565b600060208284031215611dca57611dc9612d84565b5b6000611dd884828501611c93565b91505092915050565b60008060408385031215611df857611df7612d84565b5b6000611e0685828601611c93565b9250506020611e1785828601611c93565b9150509250929050565b600080600080600060a08688031215611e3d57611e3c612d84565b5b6000611e4b88828901611c93565b9550506020611e5c88828901611c93565b945050604086013567ffffffffffffffff811115611e7d57611e7c612d7f565b5b611e8988828901611cd6565b935050606086013567ffffffffffffffff811115611eaa57611ea9612d7f565b5b611eb688828901611cd6565b925050608086013567ffffffffffffffff811115611ed757611ed6612d7f565b5b611ee388828901611d43565b9150509295509295909350565b600080600080600060a08688031215611f0c57611f0b612d84565b5b6000611f1a88828901611c93565b9550506020611f2b88828901611c93565b9450506040611f3c88828901611d9f565b9350506060611f4d88828901611d9f565b925050608086013567ffffffffffffffff811115611f6e57611f6d612d7f565b5b611f7a88828901611d43565b9150509295509295909350565b60008060408385031215611f9e57611f9d612d84565b5b6000611fac85828601611c93565b9250506020611fbd85828601611d04565b9150509250929050565b60008060408385031215611fde57611fdd612d84565b5b6000611fec85828601611c93565b9250506020611ffd85828601611d9f565b9150509250929050565b6000806040838503121561201e5761201d612d84565b5b600083013567ffffffffffffffff81111561203c5761203b612d7f565b5b61204885828601611ca8565b925050602083013567ffffffffffffffff81111561206957612068612d7f565b5b61207585828601611cd6565b9150509250929050565b60006020828403121561209557612094612d84565b5b60006120a384828501611d19565b91505092915050565b6000602082840312156120c2576120c1612d84565b5b60006120d084828501611d2e565b91505092915050565b6000602082840312156120ef576120ee612d84565b5b600082013567ffffffffffffffff81111561210d5761210c612d7f565b5b61211984828501611d71565b91505092915050565b60006020828403121561213857612137612d84565b5b600061214684828501611d9f565b91505092915050565b6000806040838503121561216657612165612d84565b5b600061217485828601611d9f565b925050602061218585828601611d9f565b9150509250929050565b600061219b838361250c565b60208301905092915050565b6121b081612ad0565b82525050565b60006121c1826129a9565b6121cb81856129d7565b93506121d683612984565b8060005b838110156122075781516121ee888261218f565b97506121f9836129ca565b9250506001810190506121da565b5085935050505092915050565b61221d81612ae2565b82525050565b600061222e826129b4565b61223881856129e8565b9350612248818560208601612b53565b61225181612d89565b840191505092915050565b6000612267826129bf565b61227181856129f9565b9350612281818560208601612b53565b61228a81612d89565b840191505092915050565b60006122a0826129bf565b6122aa8185612a0a565b93506122ba818560208601612b53565b80840191505092915050565b600081546122d381612b86565b6122dd8186612a0a565b945060018216600081146122f857600181146123095761233c565b60ff1983168652818601935061233c565b61231285612994565b60005b8381101561233457815481890152600182019150602081019050612315565b838801955050505b50505092915050565b60006123526034836129f9565b915061235d82612da7565b604082019050919050565b60006123756028836129f9565b915061238082612df6565b604082019050919050565b6000612398602b836129f9565b91506123a382612e45565b604082019050919050565b60006123bb6026836129f9565b91506123c682612e94565b604082019050919050565b60006123de6029836129f9565b91506123e982612ee3565b604082019050919050565b60006124016025836129f9565b915061240c82612f32565b604082019050919050565b60006124246032836129f9565b915061242f82612f81565b604082019050919050565b6000612447602a836129f9565b915061245282612fd0565b604082019050919050565b600061246a6020836129f9565b91506124758261301f565b602082019050919050565b600061248d6029836129f9565b915061249882613048565b604082019050919050565b60006124b06029836129f9565b91506124bb82613097565b604082019050919050565b60006124d36028836129f9565b91506124de826130e6565b604082019050919050565b60006124f66021836129f9565b915061250182613135565b604082019050919050565b61251581612b3a565b82525050565b61252481612b3a565b82525050565b600061253682856122c6565b91506125428284612295565b91508190509392505050565b600060208201905061256360008301846121a7565b92915050565b600060a08201905061257e60008301886121a7565b61258b60208301876121a7565b818103604083015261259d81866121b6565b905081810360608301526125b181856121b6565b905081810360808301526125c58184612223565b90509695505050505050565b600060a0820190506125e660008301886121a7565b6125f360208301876121a7565b612600604083018661251b565b61260d606083018561251b565b818103608083015261261f8184612223565b90509695505050505050565b6000602082019050818103600083015261264581846121b6565b905092915050565b6000604082019050818103600083015261266781856121b6565b9050818103602083015261267b81846121b6565b90509392505050565b60006020820190506126996000830184612214565b92915050565b600060208201905081810360008301526126b9818461225c565b905092915050565b600060208201905081810360008301526126da81612345565b9050919050565b600060208201905081810360008301526126fa81612368565b9050919050565b6000602082019050818103600083015261271a8161238b565b9050919050565b6000602082019050818103600083015261273a816123ae565b9050919050565b6000602082019050818103600083015261275a816123d1565b9050919050565b6000602082019050818103600083015261277a816123f4565b9050919050565b6000602082019050818103600083015261279a81612417565b9050919050565b600060208201905081810360008301526127ba8161243a565b9050919050565b600060208201905081810360008301526127da8161245d565b9050919050565b600060208201905081810360008301526127fa81612480565b9050919050565b6000602082019050818103600083015261281a816124a3565b9050919050565b6000602082019050818103600083015261283a816124c6565b9050919050565b6000602082019050818103600083015261285a816124e9565b9050919050565b6000602082019050612876600083018461251b565b92915050565b6000604082019050612891600083018561251b565b61289e602083018461251b565b9392505050565b60006128af6128c0565b90506128bb8282612bb8565b919050565b6000604051905090565b600067ffffffffffffffff8211156128e5576128e4612d1f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561291157612910612d1f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561293d5761293c612d1f565b5b61294682612d89565b9050602081019050919050565b600067ffffffffffffffff82111561296e5761296d612d1f565b5b61297782612d89565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a2082612b3a565b9150612a2b83612b3a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a6057612a5f612c63565b5b828201905092915050565b6000612a7682612b3a565b9150612a8183612b3a565b925082612a9157612a90612c92565b5b828204905092915050565b6000612aa782612b3a565b9150612ab283612b3a565b925082821015612ac557612ac4612c63565b5b828203905092915050565b6000612adb82612b1a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b71578082015181840152602081019050612b56565b83811115612b80576000848401525b50505050565b60006002820490506001821680612b9e57607f821691505b60208210811415612bb257612bb1612cc1565b5b50919050565b612bc182612d89565b810181811067ffffffffffffffff82111715612be057612bdf612d1f565b5b80604052505050565b6000612bf482612b3a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c2757612c26612c63565b5b600182019050919050565b6000612c3d82612b3a565b9150612c4883612b3a565b925082612c5857612c57612c92565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115612d6d5760046000803e612d6a600051612d9a565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d101561319457613217565b61319c6128c0565b60043d036004823e80513d602482011167ffffffffffffffff821117156131c4575050613217565b808201805167ffffffffffffffff8111156131e25750505050613217565b80602083010160043d0385018111156131ff575050505050613217565b61320e82602001850186612bb8565b82955050505050505b90565b61322381612ad0565b811461322e57600080fd5b50565b61323a81612ae2565b811461324557600080fd5b50565b61325181612aee565b811461325c57600080fd5b50565b61326881612b3a565b811461327357600080fd5b5056fea26469706673582212208d612b364b95834699767c151d3a5cf5819edcd5a8fabda8b98086b151a26eaa64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d505164465466564143784a55464756425a346336354e45705a344e6f546b786e6b356652764342566b7262312f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://QmPQdFTfVACxJUFGVBZ4c65NEpZ4NoTkxnk5fRvCBVkrb1/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d505164465466564143784a55464756425a346336354e45
Arg [3] : 705a344e6f546b786e6b356652764342566b7262312f00000000000000000000


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.