ETH Price: $3,465.39 (+2.20%)
Gas: 8 Gwei

Token

Jukiverse Scavenging Rewards (JREWARDS)
 

Overview

Max Total Supply

211 JREWARDS

Holders

57

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lxboy132.eth
0x8b9457072bfbd6cf46f1164cc9c601d4fb73bdea
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:
JukiReward

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 13 : JukiReward.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

/// @author yuru@GASPACK twitter.com/0xYuru
/// @dev aa0cdefd28cd450477ec80c28ecf3574 0x8fd31bb99658cb203b8c9034baf3f836c2bc2422fd30380fa30b8eade122618d3ca64095830cac2c0e84bc22910eef206eb43d54f71069f8d9e66cf8e4dcabec1c 
contract JukiReward is ERC1155, Pausable, ReentrancyGuard, Ownable {
    using Strings for uint256;
    
    mapping(address => bool) private proxyContracts;
    mapping(uint256 => bool) public tokenIds;

    string private baseURI;
    string public name = "Jukiverse Scavenging Rewards";
    string public symbol = "JREWARDS";
    bool public isActive;

    modifier notContract() {
        require(!_isContract(_msgSender()), "NOT_ALLOWED_CONTRACT");
        require(_msgSender() == tx.origin, "NOT_ALLOWED_PROXY");
        _;
    }
    modifier approvedCaller(){
        require(proxyContracts[msg.sender], "Invalid Caller");
        _;
    }
    constructor(string memory _uri, address _dev) 
        ERC1155(_uri)
    {
        baseURI = _uri;
        tokenIds[1] = true;
        tokenIds[2] = true;
        tokenIds[3] = true;
        tokenIds[4] = true;
        tokenIds[5] = true;
        isActive = true;
        _mint(_dev, 1, 1, "");
        _mint(_dev, 2, 1, "");
        _mint(_dev, 3, 1, "");
        _mint(_dev, 4, 1, "");
        _mint(_dev, 5, 1, "");
        _transferOwnership(_dev);
    }

    function appendToken(uint256 _tokenId)
        external 
        onlyOwner
    {
        tokenIds[_tokenId] = true;
    }

    function setRewardContract(address _contractAddress, bool _status) 
        external
        onlyOwner
    {
        proxyContracts[_contractAddress] = _status;
    }

    function burn(address _from, uint256[] calldata _ids, uint256[] calldata _amounts)
        external
        approvedCaller 
    {
        _burnBatch(_from, _ids, _amounts);
    }
    
    function setBaseURI(string calldata _uri) 
        external
        onlyOwner
     {
        baseURI = _uri;
    }

    function mint(address _to, uint256[] calldata _ids, uint256[] calldata _amounts)
        external
        approvedCaller
    {
        _mintBatch(_to, _ids, _amounts, "");
    }

    /// @notice Set signer for whitelist/redeem NFT.  
    /// @param _status state 
    function setActive(bool _status) 
        external 
        onlyOwner 
    {
        isActive = _status;
    }
    
    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    function _isContract(address _addr) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(_addr)
        }
        return size > 0;
    }

    function uri(uint256 typeId)
        public
        view                
        override
        returns (string memory)
    {
        require(
            tokenIds[typeId],
            "URI requested for invalid token type"
        );
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, typeId.toString()))
                : baseURI;
    }
}

File 2 of 13 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

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 {
        _setApprovalForAll(_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 `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

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

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, 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 `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

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

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

        emit TransferSingle(operator, from, 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 from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

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

        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: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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 13 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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

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

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

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

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

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

File 5 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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 6 of 13 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 7 of 13 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

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 8 of 13 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

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.
     *
     * NOTE: 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.
     *
     * NOTE: 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 9 of 13 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

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 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 11 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address","name":"_dev","type":"address"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"appendToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":"bool","name":"_status","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setRewardContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIds","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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60c0604052601c60808190527f4a756b6976657273652053636176656e67696e6720526577617264730000000060a0908152620000409160099190620006bf565b50604080518082019091526008808252674a5245574152445360c01b60209092019182526200007291600a91620006bf565b503480156200008057600080fd5b506040516200337c3803806200337c833981016040819052620000a391620007dd565b81620000af8162000290565b506003805460ff191690556001600455620000ca33620002a9565b8151620000df906008906020850190620006bf565b50600760209081527fb39221ace053465ec3453ce2b36430bd138b997ecea25c1043da0c366812b8288054600160ff1991821681179092557fb7c774451310d1be4108bc180d1b52823cb0ee0274a6c0081bcaf94f115fb96d80548216831790557f3be6fd20d5acfde5b873b48692cd31f4d3c7e8ee8a813af4696af8859e5ca6c680548216831790557fb805995a7ec585a251200611a61d179cfd7fb105e1ab17dc415a7336783786f78054821683179055600560009081527fbcdda56b5d08466ec462cbbe0adfa57cb0a15fcc8940ef68f702f21b787bc9358054831684179055600b805490921683179091556040805193840190528252620001e9918391908190620002fb565b6200020e816002600160405180602001604052806000815250620002fb60201b60201c565b62000233816003600160405180602001604052806000815250620002fb60201b60201c565b62000258816004600160405180602001604052806000815250620002fb60201b60201c565b6200027d816005600160405180602001604052806000815250620002fb60201b60201c565b6200028881620002a9565b505062000a85565b8051620002a5906002906020840190620006bf565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416620003615760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084015b60405180910390fd5b336200038781600087620003758862000422565b620003808862000422565b8762000470565b6000848152602081815260408083206001600160a01b038916845290915281208054859290620003b9908490620008a3565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46200041b81600087878787620004db565b5050505050565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106200045f576200045f620008ca565b602090810291909101015292915050565b60035460ff1615620004b85760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000358565b620004d3868686868686620004d360201b62000eed1760201c565b505050505050565b620004fa846001600160a01b0316620006b060201b62000ef51760201c565b15620004d35760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906200053690899089908890889088906004016200090e565b6020604051808303816000875af192505050801562000574575060408051601f3d908101601f19168201909252620005719181019062000955565b60015b62000634576200058362000988565b806308c379a003620005c357506200059a620009a5565b80620005a75750620005c5565b8060405162461bcd60e51b815260040162000358919062000a34565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e746572000000000000000000000000606482015260840162000358565b6001600160e01b0319811663f23a6e6160e01b14620006a75760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b606482015260840162000358565b50505050505050565b6001600160a01b03163b151590565b828054620006cd9062000a49565b90600052602060002090601f016020900481019282620006f157600085556200073c565b82601f106200070c57805160ff19168380011785556200073c565b828001600101855582156200073c579182015b828111156200073c5782518255916020019190600101906200071f565b506200074a9291506200074e565b5090565b5b808211156200074a57600081556001016200074f565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715620007a357620007a362000765565b6040525050565b60005b83811015620007c7578181015183820152602001620007ad565b83811115620007d7576000848401525b50505050565b60008060408385031215620007f157600080fd5b82516001600160401b03808211156200080957600080fd5b818501915085601f8301126200081e57600080fd5b81518181111562000833576200083362000765565b60405191506200084e601f8201601f1916602001836200077b565b8082528660208285010111156200086457600080fd5b62000877816020840160208601620007aa565b50602085015190935090506001600160a01b03811681146200089857600080fd5b809150509250929050565b60008219821115620008c557634e487b7160e01b600052601160045260246000fd5b500190565b634e487b7160e01b600052603260045260246000fd5b60008151808452620008fa816020860160208601620007aa565b601f01601f19169290920160200192915050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906200094a90830184620008e0565b979650505050505050565b6000602082840312156200096857600080fd5b81516001600160e01b0319811681146200098157600080fd5b9392505050565b600060033d1115620009a25760046000803e5060005160e01c5b90565b600060443d1015620009b45790565b6040516003193d81016004833e81513d6001600160401b038083116024840183101715620009e457505050505090565b8285019150815181811115620009fd5750505050505090565b843d870101602082850101111562000a185750505050505090565b62000a29602082860101876200077b565b509095945050505050565b602081526000620009816020830184620008e0565b600181811c9082168062000a5e57607f821691505b60208210810362000a7f57634e487b7160e01b600052602260045260246000fd5b50919050565b6128e78062000a956000396000f3fe608060405234801561001057600080fd5b50600436106101975760003560e01c80638456cb59116100e3578063acec338a1161008c578063e985e9c511610066578063e985e9c51461033d578063f242432a14610379578063f2fde38b1461038c57600080fd5b8063acec338a146102f4578063b7fe3e1914610307578063d58778d61461031a57600080fd5b806395d89b41116100bd57806395d89b41146102c65780639727756a146102ce578063a22cb465146102e157600080fd5b80638456cb59146102905780638bbc870e146102985780638da5cb5b146102ab57600080fd5b80633db0f8ab1161014557806355f804b31161011f57806355f804b31461026a5780635c975abb1461027d578063715018a61461028857600080fd5b80633db0f8ab1461022f5780633f4ba83a146102425780634e1273f41461024a57600080fd5b80630e89341c116101765780630e89341c146101fa57806322f3e2d41461020d5780632eb2c2d61461021a57600080fd5b8062fdd58e1461019c57806301ffc9a7146101c257806306fdde03146101e5575b600080fd5b6101af6101aa366004611f38565b61039f565b6040519081526020015b60405180910390f35b6101d56101d0366004611f78565b610448565b60405190151581526020016101b9565b6101ed6104e5565b6040516101b99190611ff8565b6101ed61020836600461200b565b610573565b600b546101d59060ff1681565b61022d610228366004612170565b6106d0565b005b61022d61023d366004612266565b610772565b61022d61083f565b61025d6102583660046122e7565b6108a3565b6040516101b991906123ed565b61022d610278366004612400565b6109e1565b60035460ff166101d5565b61022d610a4c565b61022d610ab0565b61022d6102a6366004612482565b610b12565b6005546040516001600160a01b0390911681526020016101b9565b6101ed610b97565b61022d6102dc366004612266565b610ba4565b61022d6102ef366004612482565b610c7f565b61022d6103023660046124b5565b610c8e565b61022d61031536600461200b565b610cfb565b6101d561032836600461200b565b60076020526000908152604090205460ff1681565b6101d561034b3660046124d0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61022d6103873660046124fa565b610d70565b61022d61039a36600461255f565b610e0b565b60006001600160a01b0383166104225760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b031982167fd9b67a260000000000000000000000000000000000000000000000000000000014806104ab57506001600160e01b031982167f0e89341c00000000000000000000000000000000000000000000000000000000145b806104df57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b600980546104f29061257a565b80601f016020809104026020016040519081016040528092919081815260200182805461051e9061257a565b801561056b5780601f106105405761010080835404028352916020019161056b565b820191906000526020600020905b81548152906001019060200180831161054e57829003601f168201915b505050505081565b60008181526007602052604090205460609060ff166105f95760405162461bcd60e51b8152602060048201526024808201527f5552492072657175657374656420666f7220696e76616c696420746f6b656e2060448201527f74797065000000000000000000000000000000000000000000000000000000006064820152608401610419565b6000600880546106089061257a565b90501161069f576008805461061c9061257a565b80601f01602080910402602001604051908101604052809291908181526020018280546106489061257a565b80156106955780601f1061066a57610100808354040283529160200191610695565b820191906000526020600020905b81548152906001019060200180831161067857829003601f168201915b50505050506104df565b60086106aa83610f04565b6040516020016106bb9291906125d0565b60405160208183030381529060405292915050565b6001600160a01b0385163314806106ec57506106ec853361034b565b61075e5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610419565b61076b8585858585611041565b5050505050565b3360009081526006602052604090205460ff166107d15760405162461bcd60e51b815260206004820152600e60248201527f496e76616c69642043616c6c65720000000000000000000000000000000000006044820152606401610419565b61076b85858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040805160208089028281018201909352888252909350889250879182918501908490808284376000920191909152506112a592505050565b6005546001600160a01b031633146108995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610419565b6108a161151f565b565b6060815183511461091c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610419565b6000835167ffffffffffffffff81111561093857610938612024565b604051908082528060200260200182016040528015610961578160200160208202803683370190505b50905060005b84518110156109d9576109ac85828151811061098557610985612676565b602002602001015185838151811061099f5761099f612676565b602002602001015161039f565b8282815181106109be576109be612676565b60209081029190910101526109d2816126a2565b9050610967565b509392505050565b6005546001600160a01b03163314610a3b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610419565b610a4760088383611e83565b505050565b6005546001600160a01b03163314610aa65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610419565b6108a160006115bb565b6005546001600160a01b03163314610b0a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610419565b6108a1611625565b6005546001600160a01b03163314610b6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610419565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b600a80546104f29061257a565b3360009081526006602052604090205460ff16610c035760405162461bcd60e51b815260206004820152600e60248201527f496e76616c69642043616c6c65720000000000000000000000000000000000006044820152606401610419565b61076b85858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040805160208089028281018201909352888252909350889250879182918501908490808284376000920182905250604080516020810190915290815292506116ad915050565b610c8a33838361189e565b5050565b6005546001600160a01b03163314610ce85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610419565b600b805460ff1916911515919091179055565b6005546001600160a01b03163314610d555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610419565b6000908152600760205260409020805460ff19166001179055565b6001600160a01b038516331480610d8c5750610d8c853361034b565b610dfe5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f76656400000000000000000000000000000000000000000000006064820152608401610419565b61076b8585858585611992565b6005546001600160a01b03163314610e655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610419565b6001600160a01b038116610ee15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610419565b610eea816115bb565b50565b505050505050565b6001600160a01b03163b151590565b606081600003610f4757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115610f715780610f5b816126a2565b9150610f6a9050600a836126d1565b9150610f4b565b60008167ffffffffffffffff811115610f8c57610f8c612024565b6040519080825280601f01601f191660200182016040528015610fb6576020820181803683370190505b5090505b841561103957610fcb6001836126e5565b9150610fd8600a866126fc565b610fe3906030612710565b60f81b818381518110610ff857610ff8612676565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611032600a866126d1565b9450610fba565b949350505050565b81518351146110a35760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610419565b6001600160a01b0384166111075760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610419565b33611116818787878787611b3f565b60005b845181101561123f57600085828151811061113657611136612676565b60200260200101519050600085838151811061115457611154612676565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156111e75760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610419565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611224908490612710565b9250508190555050505080611238906126a2565b9050611119565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161128f929190612728565b60405180910390a4610eed818787878787611b97565b6001600160a01b0383166113215760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610419565b80518251146113835760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610419565b60003390506113a681856000868660405180602001604052806000815250611b3f565b60005b83518110156114c05760008482815181106113c6576113c6612676565b6020026020010151905060008483815181106113e4576113e4612676565b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156114895760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610419565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806114b8816126a2565b9150506113a9565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611511929190612728565b60405180910390a450505050565b60035460ff166115715760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610419565b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60035460ff16156116785760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610419565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861159e3390565b6001600160a01b0384166117295760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610419565b815183511461178b5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610419565b3361179b81600087878787611b3f565b60005b8451811015611836578381815181106117b9576117b9612676565b60200260200101516000808784815181106117d6576117d6612676565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b03168152602001908152602001600020600082825461181e9190612710565b9091555081905061182e816126a2565b91505061179e565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611887929190612728565b60405180910390a461076b81600087878787611b97565b816001600160a01b0316836001600160a01b0316036119255760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610419565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166119f65760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610419565b33611a15818787611a0688611d3c565b611a0f88611d3c565b87611b3f565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611a995760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610419565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611ad6908490612710565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611b36828888888888611d87565b50505050505050565b60035460ff1615611b925760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610419565b610eed565b6001600160a01b0384163b15610eed5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611bdb908990899088908890889060040161274d565b6020604051808303816000875af1925050508015611c16575060408051601f3d908101601f19168201909252611c13918101906127ab565b60015b611ccb57611c226127c8565b806308c379a003611c5b5750611c366127e4565b80611c415750611c5d565b8060405162461bcd60e51b81526004016104199190611ff8565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610419565b6001600160e01b0319811663bc197c8160e01b14611b365760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401610419565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611d7657611d76612676565b602090810291909101015292915050565b6001600160a01b0384163b15610eed5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611dcb908990899088908890889060040161286e565b6020604051808303816000875af1925050508015611e06575060408051601f3d908101601f19168201909252611e03918101906127ab565b60015b611e1257611c226127c8565b6001600160e01b0319811663f23a6e6160e01b14611b365760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401610419565b828054611e8f9061257a565b90600052602060002090601f016020900481019282611eb15760008555611ef7565b82601f10611eca5782800160ff19823516178555611ef7565b82800160010185558215611ef7579182015b82811115611ef7578235825591602001919060010190611edc565b50611f03929150611f07565b5090565b5b80821115611f035760008155600101611f08565b80356001600160a01b0381168114611f3357600080fd5b919050565b60008060408385031215611f4b57600080fd5b611f5483611f1c565b946020939093013593505050565b6001600160e01b031981168114610eea57600080fd5b600060208284031215611f8a57600080fd5b8135611f9581611f62565b9392505050565b60005b83811015611fb7578181015183820152602001611f9f565b83811115611fc6576000848401525b50505050565b60008151808452611fe4816020860160208601611f9c565b601f01601f19169290920160200192915050565b602081526000611f956020830184611fcc565b60006020828403121561201d57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561206057612060612024565b6040525050565b600067ffffffffffffffff82111561208157612081612024565b5060051b60200190565b600082601f83011261209c57600080fd5b813560206120a982612067565b6040516120b6828261203a565b83815260059390931b85018201928281019150868411156120d657600080fd5b8286015b848110156120f157803583529183019183016120da565b509695505050505050565b600082601f83011261210d57600080fd5b813567ffffffffffffffff81111561212757612127612024565b60405161213e601f8301601f19166020018261203a565b81815284602083860101111561215357600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a0868803121561218857600080fd5b61219186611f1c565b945061219f60208701611f1c565b9350604086013567ffffffffffffffff808211156121bc57600080fd5b6121c889838a0161208b565b945060608801359150808211156121de57600080fd5b6121ea89838a0161208b565b9350608088013591508082111561220057600080fd5b5061220d888289016120fc565b9150509295509295909350565b60008083601f84011261222c57600080fd5b50813567ffffffffffffffff81111561224457600080fd5b6020830191508360208260051b850101111561225f57600080fd5b9250929050565b60008060008060006060868803121561227e57600080fd5b61228786611f1c565b9450602086013567ffffffffffffffff808211156122a457600080fd5b6122b089838a0161221a565b909650945060408801359150808211156122c957600080fd5b506122d68882890161221a565b969995985093965092949392505050565b600080604083850312156122fa57600080fd5b823567ffffffffffffffff8082111561231257600080fd5b818501915085601f83011261232657600080fd5b8135602061233382612067565b604051612340828261203a565b83815260059390931b850182019282810191508984111561236057600080fd5b948201945b838610156123855761237686611f1c565b82529482019490820190612365565b9650508601359250508082111561239b57600080fd5b506123a88582860161208b565b9150509250929050565b600081518084526020808501945080840160005b838110156123e2578151875295820195908201906001016123c6565b509495945050505050565b602081526000611f9560208301846123b2565b6000806020838503121561241357600080fd5b823567ffffffffffffffff8082111561242b57600080fd5b818501915085601f83011261243f57600080fd5b81358181111561244e57600080fd5b86602082850101111561246057600080fd5b60209290920196919550909350505050565b80358015158114611f3357600080fd5b6000806040838503121561249557600080fd5b61249e83611f1c565b91506124ac60208401612472565b90509250929050565b6000602082840312156124c757600080fd5b611f9582612472565b600080604083850312156124e357600080fd5b6124ec83611f1c565b91506124ac60208401611f1c565b600080600080600060a0868803121561251257600080fd5b61251b86611f1c565b945061252960208701611f1c565b93506040860135925060608601359150608086013567ffffffffffffffff81111561255357600080fd5b61220d888289016120fc565b60006020828403121561257157600080fd5b611f9582611f1c565b600181811c9082168061258e57607f821691505b6020821081036125ae57634e487b7160e01b600052602260045260246000fd5b50919050565b600081516125c6818560208601611f9c565b9290920192915050565b600080845481600182811c9150808316806125ec57607f831692505b6020808410820361260b57634e487b7160e01b86526022600452602486fd5b81801561261f57600181146126305761265d565b60ff1986168952848901965061265d565b60008b81526020902060005b868110156126555781548b82015290850190830161263c565b505084890196505b50505050505061266d81856125b4565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016126b4576126b461268c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826126e0576126e06126bb565b500490565b6000828210156126f7576126f761268c565b500390565b60008261270b5761270b6126bb565b500690565b600082198211156127235761272361268c565b500190565b60408152600061273b60408301856123b2565b828103602084015261266d81856123b2565b60006001600160a01b03808816835280871660208401525060a0604083015261277960a08301866123b2565b828103606084015261278b81866123b2565b9050828103608084015261279f8185611fcc565b98975050505050505050565b6000602082840312156127bd57600080fd5b8151611f9581611f62565b600060033d11156127e15760046000803e5060005160e01c5b90565b600060443d10156127f25790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561282257505050505090565b828501915081518181111561283a5750505050505090565b843d87010160208285010111156128545750505050505090565b6128636020828601018761203a565b509095945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a060808301526128a660a0830184611fcc565b97965050505050505056fea26469706673582212207e861063d10fc7bf301f50d9e82148ca1e2b287da94398eccf69fd5af7632bb064736f6c634300080d00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c1f27b9a03eaf544f657f42dd66cd6f123b8b6780000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59537a587942565234597832416b386d6e394337506836716e3638465779706a35705a7532513666596858712f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101975760003560e01c80638456cb59116100e3578063acec338a1161008c578063e985e9c511610066578063e985e9c51461033d578063f242432a14610379578063f2fde38b1461038c57600080fd5b8063acec338a146102f4578063b7fe3e1914610307578063d58778d61461031a57600080fd5b806395d89b41116100bd57806395d89b41146102c65780639727756a146102ce578063a22cb465146102e157600080fd5b80638456cb59146102905780638bbc870e146102985780638da5cb5b146102ab57600080fd5b80633db0f8ab1161014557806355f804b31161011f57806355f804b31461026a5780635c975abb1461027d578063715018a61461028857600080fd5b80633db0f8ab1461022f5780633f4ba83a146102425780634e1273f41461024a57600080fd5b80630e89341c116101765780630e89341c146101fa57806322f3e2d41461020d5780632eb2c2d61461021a57600080fd5b8062fdd58e1461019c57806301ffc9a7146101c257806306fdde03146101e5575b600080fd5b6101af6101aa366004611f38565b61039f565b6040519081526020015b60405180910390f35b6101d56101d0366004611f78565b610448565b60405190151581526020016101b9565b6101ed6104e5565b6040516101b99190611ff8565b6101ed61020836600461200b565b610573565b600b546101d59060ff1681565b61022d610228366004612170565b6106d0565b005b61022d61023d366004612266565b610772565b61022d61083f565b61025d6102583660046122e7565b6108a3565b6040516101b991906123ed565b61022d610278366004612400565b6109e1565b60035460ff166101d5565b61022d610a4c565b61022d610ab0565b61022d6102a6366004612482565b610b12565b6005546040516001600160a01b0390911681526020016101b9565b6101ed610b97565b61022d6102dc366004612266565b610ba4565b61022d6102ef366004612482565b610c7f565b61022d6103023660046124b5565b610c8e565b61022d61031536600461200b565b610cfb565b6101d561032836600461200b565b60076020526000908152604090205460ff1681565b6101d561034b3660046124d0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61022d6103873660046124fa565b610d70565b61022d61039a36600461255f565b610e0b565b60006001600160a01b0383166104225760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b031982167fd9b67a260000000000000000000000000000000000000000000000000000000014806104ab57506001600160e01b031982167f0e89341c00000000000000000000000000000000000000000000000000000000145b806104df57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b600980546104f29061257a565b80601f016020809104026020016040519081016040528092919081815260200182805461051e9061257a565b801561056b5780601f106105405761010080835404028352916020019161056b565b820191906000526020600020905b81548152906001019060200180831161054e57829003601f168201915b505050505081565b60008181526007602052604090205460609060ff166105f95760405162461bcd60e51b8152602060048201526024808201527f5552492072657175657374656420666f7220696e76616c696420746f6b656e2060448201527f74797065000000000000000000000000000000000000000000000000000000006064820152608401610419565b6000600880546106089061257a565b90501161069f576008805461061c9061257a565b80601f01602080910402602001604051908101604052809291908181526020018280546106489061257a565b80156106955780601f1061066a57610100808354040283529160200191610695565b820191906000526020600020905b81548152906001019060200180831161067857829003601f168201915b50505050506104df565b60086106aa83610f04565b6040516020016106bb9291906125d0565b60405160208183030381529060405292915050565b6001600160a01b0385163314806106ec57506106ec853361034b565b61075e5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610419565b61076b8585858585611041565b5050505050565b3360009081526006602052604090205460ff166107d15760405162461bcd60e51b815260206004820152600e60248201527f496e76616c69642043616c6c65720000000000000000000000000000000000006044820152606401610419565b61076b85858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040805160208089028281018201909352888252909350889250879182918501908490808284376000920191909152506112a592505050565b6005546001600160a01b031633146108995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610419565b6108a161151f565b565b6060815183511461091c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610419565b6000835167ffffffffffffffff81111561093857610938612024565b604051908082528060200260200182016040528015610961578160200160208202803683370190505b50905060005b84518110156109d9576109ac85828151811061098557610985612676565b602002602001015185838151811061099f5761099f612676565b602002602001015161039f565b8282815181106109be576109be612676565b60209081029190910101526109d2816126a2565b9050610967565b509392505050565b6005546001600160a01b03163314610a3b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610419565b610a4760088383611e83565b505050565b6005546001600160a01b03163314610aa65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610419565b6108a160006115bb565b6005546001600160a01b03163314610b0a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610419565b6108a1611625565b6005546001600160a01b03163314610b6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610419565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b600a80546104f29061257a565b3360009081526006602052604090205460ff16610c035760405162461bcd60e51b815260206004820152600e60248201527f496e76616c69642043616c6c65720000000000000000000000000000000000006044820152606401610419565b61076b85858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040805160208089028281018201909352888252909350889250879182918501908490808284376000920182905250604080516020810190915290815292506116ad915050565b610c8a33838361189e565b5050565b6005546001600160a01b03163314610ce85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610419565b600b805460ff1916911515919091179055565b6005546001600160a01b03163314610d555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610419565b6000908152600760205260409020805460ff19166001179055565b6001600160a01b038516331480610d8c5750610d8c853361034b565b610dfe5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f76656400000000000000000000000000000000000000000000006064820152608401610419565b61076b8585858585611992565b6005546001600160a01b03163314610e655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610419565b6001600160a01b038116610ee15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610419565b610eea816115bb565b50565b505050505050565b6001600160a01b03163b151590565b606081600003610f4757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115610f715780610f5b816126a2565b9150610f6a9050600a836126d1565b9150610f4b565b60008167ffffffffffffffff811115610f8c57610f8c612024565b6040519080825280601f01601f191660200182016040528015610fb6576020820181803683370190505b5090505b841561103957610fcb6001836126e5565b9150610fd8600a866126fc565b610fe3906030612710565b60f81b818381518110610ff857610ff8612676565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611032600a866126d1565b9450610fba565b949350505050565b81518351146110a35760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610419565b6001600160a01b0384166111075760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610419565b33611116818787878787611b3f565b60005b845181101561123f57600085828151811061113657611136612676565b60200260200101519050600085838151811061115457611154612676565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156111e75760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610419565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611224908490612710565b9250508190555050505080611238906126a2565b9050611119565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161128f929190612728565b60405180910390a4610eed818787878787611b97565b6001600160a01b0383166113215760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610419565b80518251146113835760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610419565b60003390506113a681856000868660405180602001604052806000815250611b3f565b60005b83518110156114c05760008482815181106113c6576113c6612676565b6020026020010151905060008483815181106113e4576113e4612676565b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156114895760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610419565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806114b8816126a2565b9150506113a9565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611511929190612728565b60405180910390a450505050565b60035460ff166115715760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610419565b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60035460ff16156116785760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610419565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861159e3390565b6001600160a01b0384166117295760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610419565b815183511461178b5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610419565b3361179b81600087878787611b3f565b60005b8451811015611836578381815181106117b9576117b9612676565b60200260200101516000808784815181106117d6576117d6612676565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b03168152602001908152602001600020600082825461181e9190612710565b9091555081905061182e816126a2565b91505061179e565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611887929190612728565b60405180910390a461076b81600087878787611b97565b816001600160a01b0316836001600160a01b0316036119255760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610419565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166119f65760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610419565b33611a15818787611a0688611d3c565b611a0f88611d3c565b87611b3f565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611a995760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610419565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611ad6908490612710565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611b36828888888888611d87565b50505050505050565b60035460ff1615611b925760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610419565b610eed565b6001600160a01b0384163b15610eed5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611bdb908990899088908890889060040161274d565b6020604051808303816000875af1925050508015611c16575060408051601f3d908101601f19168201909252611c13918101906127ab565b60015b611ccb57611c226127c8565b806308c379a003611c5b5750611c366127e4565b80611c415750611c5d565b8060405162461bcd60e51b81526004016104199190611ff8565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610419565b6001600160e01b0319811663bc197c8160e01b14611b365760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401610419565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611d7657611d76612676565b602090810291909101015292915050565b6001600160a01b0384163b15610eed5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611dcb908990899088908890889060040161286e565b6020604051808303816000875af1925050508015611e06575060408051601f3d908101601f19168201909252611e03918101906127ab565b60015b611e1257611c226127c8565b6001600160e01b0319811663f23a6e6160e01b14611b365760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401610419565b828054611e8f9061257a565b90600052602060002090601f016020900481019282611eb15760008555611ef7565b82601f10611eca5782800160ff19823516178555611ef7565b82800160010185558215611ef7579182015b82811115611ef7578235825591602001919060010190611edc565b50611f03929150611f07565b5090565b5b80821115611f035760008155600101611f08565b80356001600160a01b0381168114611f3357600080fd5b919050565b60008060408385031215611f4b57600080fd5b611f5483611f1c565b946020939093013593505050565b6001600160e01b031981168114610eea57600080fd5b600060208284031215611f8a57600080fd5b8135611f9581611f62565b9392505050565b60005b83811015611fb7578181015183820152602001611f9f565b83811115611fc6576000848401525b50505050565b60008151808452611fe4816020860160208601611f9c565b601f01601f19169290920160200192915050565b602081526000611f956020830184611fcc565b60006020828403121561201d57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561206057612060612024565b6040525050565b600067ffffffffffffffff82111561208157612081612024565b5060051b60200190565b600082601f83011261209c57600080fd5b813560206120a982612067565b6040516120b6828261203a565b83815260059390931b85018201928281019150868411156120d657600080fd5b8286015b848110156120f157803583529183019183016120da565b509695505050505050565b600082601f83011261210d57600080fd5b813567ffffffffffffffff81111561212757612127612024565b60405161213e601f8301601f19166020018261203a565b81815284602083860101111561215357600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a0868803121561218857600080fd5b61219186611f1c565b945061219f60208701611f1c565b9350604086013567ffffffffffffffff808211156121bc57600080fd5b6121c889838a0161208b565b945060608801359150808211156121de57600080fd5b6121ea89838a0161208b565b9350608088013591508082111561220057600080fd5b5061220d888289016120fc565b9150509295509295909350565b60008083601f84011261222c57600080fd5b50813567ffffffffffffffff81111561224457600080fd5b6020830191508360208260051b850101111561225f57600080fd5b9250929050565b60008060008060006060868803121561227e57600080fd5b61228786611f1c565b9450602086013567ffffffffffffffff808211156122a457600080fd5b6122b089838a0161221a565b909650945060408801359150808211156122c957600080fd5b506122d68882890161221a565b969995985093965092949392505050565b600080604083850312156122fa57600080fd5b823567ffffffffffffffff8082111561231257600080fd5b818501915085601f83011261232657600080fd5b8135602061233382612067565b604051612340828261203a565b83815260059390931b850182019282810191508984111561236057600080fd5b948201945b838610156123855761237686611f1c565b82529482019490820190612365565b9650508601359250508082111561239b57600080fd5b506123a88582860161208b565b9150509250929050565b600081518084526020808501945080840160005b838110156123e2578151875295820195908201906001016123c6565b509495945050505050565b602081526000611f9560208301846123b2565b6000806020838503121561241357600080fd5b823567ffffffffffffffff8082111561242b57600080fd5b818501915085601f83011261243f57600080fd5b81358181111561244e57600080fd5b86602082850101111561246057600080fd5b60209290920196919550909350505050565b80358015158114611f3357600080fd5b6000806040838503121561249557600080fd5b61249e83611f1c565b91506124ac60208401612472565b90509250929050565b6000602082840312156124c757600080fd5b611f9582612472565b600080604083850312156124e357600080fd5b6124ec83611f1c565b91506124ac60208401611f1c565b600080600080600060a0868803121561251257600080fd5b61251b86611f1c565b945061252960208701611f1c565b93506040860135925060608601359150608086013567ffffffffffffffff81111561255357600080fd5b61220d888289016120fc565b60006020828403121561257157600080fd5b611f9582611f1c565b600181811c9082168061258e57607f821691505b6020821081036125ae57634e487b7160e01b600052602260045260246000fd5b50919050565b600081516125c6818560208601611f9c565b9290920192915050565b600080845481600182811c9150808316806125ec57607f831692505b6020808410820361260b57634e487b7160e01b86526022600452602486fd5b81801561261f57600181146126305761265d565b60ff1986168952848901965061265d565b60008b81526020902060005b868110156126555781548b82015290850190830161263c565b505084890196505b50505050505061266d81856125b4565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016126b4576126b461268c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826126e0576126e06126bb565b500490565b6000828210156126f7576126f761268c565b500390565b60008261270b5761270b6126bb565b500690565b600082198211156127235761272361268c565b500190565b60408152600061273b60408301856123b2565b828103602084015261266d81856123b2565b60006001600160a01b03808816835280871660208401525060a0604083015261277960a08301866123b2565b828103606084015261278b81866123b2565b9050828103608084015261279f8185611fcc565b98975050505050505050565b6000602082840312156127bd57600080fd5b8151611f9581611f62565b600060033d11156127e15760046000803e5060005160e01c5b90565b600060443d10156127f25790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561282257505050505090565b828501915081518181111561283a5750505050505090565b843d87010160208285010111156128545750505050505090565b6128636020828601018761203a565b509095945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a060808301526128a660a0830184611fcc565b97965050505050505056fea26469706673582212207e861063d10fc7bf301f50d9e82148ca1e2b287da94398eccf69fd5af7632bb064736f6c634300080d0033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c1f27b9a03eaf544f657f42dd66cd6f123b8b6780000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59537a587942565234597832416b386d6e394337506836716e3638465779706a35705a7532513666596858712f00000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmYSzXyBVR4Yx2Ak8mn9C7Ph6qn68FWypj5pZu2Q6fYhXq/
Arg [1] : _dev (address): 0xc1f27b9A03EaF544F657f42dD66cD6f123b8b678

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000c1f27b9a03eaf544f657f42dd66cd6f123b8b678
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d59537a587942565234597832416b386d6e394337506836
Arg [4] : 716e3638465779706a35705a7532513666596858712f00000000000000000000


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.