ETH Price: $3,102.63 (+1.39%)
Gas: 7 Gwei

Token

 

Overview

Max Total Supply

487

Holders

194

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0xbb416feca6c36a13e7848eaeab0099d02a3440b4
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:
NuclearAcidVault

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


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

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

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC1155/ERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @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: contracts/NuclearAcidVault.sol



pragma solidity 0.8.7;




contract NuclearAcidVault is ERC1155, Ownable {

    string public baseTokenURI; 
    address public acidapesContract;


     constructor(string memory _baseTokenURI) ERC1155(_baseTokenURI) {
        setBaseURI(_baseTokenURI);
     }
     
    function mintBatch(uint256[] memory ids, uint256[] memory amounts) external onlyOwner
    {
        _mintBatch(owner(), ids, amounts, "");
    }

    function burnPotionForAddress(uint256 typeId, address burnTokenAddress) external
    {
        require(msg.sender == acidapesContract, "You are not authorized to burn");
        _burn(burnTokenAddress, typeId, 1);
    }

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

    //setters
    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function setAcidApesContractAddress(address _contractAddress) public onlyOwner
    {
        acidapesContract = _contractAddress;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"acidapesContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"},{"internalType":"address","name":"burnTokenAddress","type":"address"}],"name":"burnPotionForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"}],"name":"setAcidApesContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200223f3803806200223f8339810160408190526200003491620001de565b8062000040816200005e565b506200004c3362000077565b6200005781620000c9565b506200030d565b80516200007390600290602084019062000138565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6003546001600160a01b03163314620001285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620000739060049060208401905b8280546200014690620002ba565b90600052602060002090601f0160209004810192826200016a5760008555620001b5565b82601f106200018557805160ff1916838001178555620001b5565b82800160010185558215620001b5579182015b82811115620001b557825182559160200191906001019062000198565b50620001c3929150620001c7565b5090565b5b80821115620001c35760008155600101620001c8565b60006020808385031215620001f257600080fd5b82516001600160401b03808211156200020a57600080fd5b818501915085601f8301126200021f57600080fd5b815181811115620002345762000234620002f7565b604051601f8201601f19908116603f011681019083821181831017156200025f576200025f620002f7565b8160405282815288868487010111156200027857600080fd5b600093505b828410156200029c57848401860151818501870152928501926200027d565b82841115620002ae5760008684830101525b98975050505050505050565b600181811c90821680620002cf57607f821691505b60208210811415620002f157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611f22806200031d6000396000f3fe608060405234801561001057600080fd5b506004361061010a5760003560e01c80638da5cb5b116100a2578063d547cfb711610071578063d547cfb714610239578063e4ba5ade14610241578063e985e9c514610254578063f242432a14610290578063f2fde38b146102a357600080fd5b80638da5cb5b146101db578063a22cb46514610200578063ceff7a8f14610213578063d351cfdc1461022657600080fd5b80632eb2c2d6116100de5780632eb2c2d61461018d5780634e1273f4146101a057806355f804b3146101c0578063715018a6146101d357600080fd5b8062fdd58e1461010f57806301ffc9a7146101355780630a5358a4146101585780630e89341c1461016d575b600080fd5b61012261011d366004611737565b6102b6565b6040519081526020015b60405180910390f35b61014861014336600461187f565b61034d565b604051901515815260200161012c565b61016b61016636600461159e565b61039f565b005b61018061017b366004611902565b6103eb565b60405161012c9190611b43565b61016b61019b3660046115ec565b6104c4565b6101b36101ae366004611761565b61055b565b60405161012c9190611b0b565b61016b6101ce3660046118b9565b610685565b61016b6106c6565b6003546001600160a01b03165b6040516001600160a01b03909116815260200161012c565b61016b61020e3660046116fb565b6106fc565b61016b61022136600461191b565b610707565b61016b610234366004611832565b61076d565b6101806107c3565b6005546101e8906001600160a01b031681565b6101486102623660046115b9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61016b61029e366004611696565b610851565b61016b6102b136600461159e565b6108d8565b60006001600160a01b0383166103275760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061037e57506001600160e01b031982166303a24d0760e21b145b8061039957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146103c95760405162461bcd60e51b815260040161031e90611c2d565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b60606000600480546103fc90611d41565b905011610493576004805461041090611d41565b80601f016020809104026020016040519081016040528092919081815260200182805461043c90611d41565b80156104895780601f1061045e57610100808354040283529160200191610489565b820191906000526020600020905b81548152906001019060200180831161046c57829003601f168201915b5050505050610399565b600461049e83610973565b6040516020016104af9291906119c1565b60405160208183030381529060405292915050565b6001600160a01b0385163314806104e057506104e08533610262565b6105475760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161031e565b6105548585858585610a79565b5050505050565b606081518351146105c05760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161031e565b6000835167ffffffffffffffff8111156105dc576105dc611e1a565b604051908082528060200260200182016040528015610605578160200160208202803683370190505b50905060005b845181101561067d5761065085828151811061062957610629611e04565b602002602001015185838151811061064357610643611e04565b60200260200101516102b6565b82828151811061066257610662611e04565b602090810291909101015261067681611da9565b905061060b565b509392505050565b6003546001600160a01b031633146106af5760405162461bcd60e51b815260040161031e90611c2d565b80516106c29060049060208401906113ed565b5050565b6003546001600160a01b031633146106f05760405162461bcd60e51b815260040161031e90611c2d565b6106fa6000610c15565b565b6106c2338383610c67565b6005546001600160a01b031633146107615760405162461bcd60e51b815260206004820152601e60248201527f596f7520617265206e6f7420617574686f72697a656420746f206275726e0000604482015260640161031e565b6106c281836001610d48565b6003546001600160a01b031633146107975760405162461bcd60e51b815260040161031e90611c2d565b6106c26107ac6003546001600160a01b031690565b838360405180602001604052806000815250610ec2565b600480546107d090611d41565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc90611d41565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b505050505081565b6001600160a01b03851633148061086d575061086d8533610262565b6108cb5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161031e565b6105548585858585611047565b6003546001600160a01b031633146109025760405162461bcd60e51b815260040161031e90611c2d565b6001600160a01b0381166109675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161031e565b61097081610c15565b50565b6060816109975750506040805180820190915260018152600360fc1b602082015290565b8160005b81156109c157806109ab81611da9565b91506109ba9050600a83611ce6565b915061099b565b60008167ffffffffffffffff8111156109dc576109dc611e1a565b6040519080825280601f01601f191660200182016040528015610a06576020820181803683370190505b5090505b8415610a7157610a1b600183611cfa565b9150610a28600a86611dc4565b610a33906030611cce565b60f81b818381518110610a4857610a48611e04565b60200101906001600160f81b031916908160001a905350610a6a600a86611ce6565b9450610a0a565b949350505050565b8151835114610a9a5760405162461bcd60e51b815260040161031e90611c62565b6001600160a01b038416610ac05760405162461bcd60e51b815260040161031e90611b9e565b3360005b8451811015610ba7576000858281518110610ae157610ae1611e04565b602002602001015190506000858381518110610aff57610aff611e04565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610b4f5760405162461bcd60e51b815260040161031e90611be3565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610b8c908490611cce565b9250508190555050505080610ba090611da9565b9050610ac4565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610bf7929190611b1e565b60405180910390a4610c0d81878787878761116d565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610cdb5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161031e565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038316610daa5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b606482015260840161031e565b33610dda81856000610dbb876112d8565b610dc4876112d8565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b038816845290915290205482811015610e575760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b606482015260840161031e565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6001600160a01b038416610f225760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161031e565b8151835114610f435760405162461bcd60e51b815260040161031e90611c62565b3360005b8451811015610fdf57838181518110610f6257610f62611e04565b6020026020010151600080878481518110610f7f57610f7f611e04565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254610fc79190611cce565b90915550819050610fd781611da9565b915050610f47565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611030929190611b1e565b60405180910390a46105548160008787878761116d565b6001600160a01b03841661106d5760405162461bcd60e51b815260040161031e90611b9e565b3361108681878761107d886112d8565b610554886112d8565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156110c75760405162461bcd60e51b815260040161031e90611be3565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611104908490611cce565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611164828888888888611323565b50505050505050565b6001600160a01b0384163b15610c0d5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906111b19089908990889088908890600401611a68565b602060405180830381600087803b1580156111cb57600080fd5b505af19250505080156111fb575060408051601f3d908101601f191682019092526111f89181019061189c565b60015b6112a857611207611e30565b806308c379a01415611241575061121c611e4c565b806112275750611243565b8060405162461bcd60e51b815260040161031e9190611b43565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161031e565b6001600160e01b0319811663bc197c8160e01b146111645760405162461bcd60e51b815260040161031e90611b56565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061131257611312611e04565b602090810291909101015292915050565b6001600160a01b0384163b15610c0d5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906113679089908990889088908890600401611ac6565b602060405180830381600087803b15801561138157600080fd5b505af19250505080156113b1575060408051601f3d908101601f191682019092526113ae9181019061189c565b60015b6113bd57611207611e30565b6001600160e01b0319811663f23a6e6160e01b146111645760405162461bcd60e51b815260040161031e90611b56565b8280546113f990611d41565b90600052602060002090601f01602090048101928261141b5760008555611461565b82601f1061143457805160ff1916838001178555611461565b82800160010185558215611461579182015b82811115611461578251825591602001919060010190611446565b5061146d929150611471565b5090565b5b8082111561146d5760008155600101611472565b600067ffffffffffffffff8311156114a0576114a0611e1a565b6040516114b7601f8501601f191660200182611d7c565b8091508381528484840111156114cc57600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b03811681146114fb57600080fd5b919050565b600082601f83011261151157600080fd5b8135602061151e82611caa565b60405161152b8282611d7c565b8381528281019150858301600585901b8701840188101561154b57600080fd5b60005b8581101561156a5781358452928401929084019060010161154e565b5090979650505050505050565b600082601f83011261158857600080fd5b61159783833560208501611486565b9392505050565b6000602082840312156115b057600080fd5b611597826114e4565b600080604083850312156115cc57600080fd5b6115d5836114e4565b91506115e3602084016114e4565b90509250929050565b600080600080600060a0868803121561160457600080fd5b61160d866114e4565b945061161b602087016114e4565b9350604086013567ffffffffffffffff8082111561163857600080fd5b61164489838a01611500565b9450606088013591508082111561165a57600080fd5b61166689838a01611500565b9350608088013591508082111561167c57600080fd5b5061168988828901611577565b9150509295509295909350565b600080600080600060a086880312156116ae57600080fd5b6116b7866114e4565b94506116c5602087016114e4565b93506040860135925060608601359150608086013567ffffffffffffffff8111156116ef57600080fd5b61168988828901611577565b6000806040838503121561170e57600080fd5b611717836114e4565b91506020830135801515811461172c57600080fd5b809150509250929050565b6000806040838503121561174a57600080fd5b611753836114e4565b946020939093013593505050565b6000806040838503121561177457600080fd5b823567ffffffffffffffff8082111561178c57600080fd5b818501915085601f8301126117a057600080fd5b813560206117ad82611caa565b6040516117ba8282611d7c565b8381528281019150858301600585901b870184018b10156117da57600080fd5b600096505b84871015611804576117f0816114e4565b8352600196909601959183019183016117df565b509650508601359250508082111561181b57600080fd5b5061182885828601611500565b9150509250929050565b6000806040838503121561184557600080fd5b823567ffffffffffffffff8082111561185d57600080fd5b61186986838701611500565b9350602085013591508082111561181b57600080fd5b60006020828403121561189157600080fd5b813561159781611ed6565b6000602082840312156118ae57600080fd5b815161159781611ed6565b6000602082840312156118cb57600080fd5b813567ffffffffffffffff8111156118e257600080fd5b8201601f810184136118f357600080fd5b610a7184823560208401611486565b60006020828403121561191457600080fd5b5035919050565b6000806040838503121561192e57600080fd5b823591506115e3602084016114e4565b600081518084526020808501945080840160005b8381101561196e57815187529582019590820190600101611952565b509495945050505050565b60008151808452611991816020860160208601611d11565b601f01601f19169290920160200192915050565b600081516119b7818560208601611d11565b9290920192915050565b600080845481600182811c9150808316806119dd57607f831692505b60208084108214156119fd57634e487b7160e01b86526022600452602486fd5b818015611a115760018114611a2257611a4f565b60ff19861689528489019650611a4f565b60008b81526020902060005b86811015611a475781548b820152908501908301611a2e565b505084890196505b505050505050611a5f81856119a5565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611a949083018661193e565b8281036060840152611aa6818661193e565b90508281036080840152611aba8185611979565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611b0090830184611979565b979650505050505050565b602081526000611597602083018461193e565b604081526000611b31604083018561193e565b8281036020840152611a5f818561193e565b6020815260006115976020830184611979565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b600067ffffffffffffffff821115611cc457611cc4611e1a565b5060051b60200190565b60008219821115611ce157611ce1611dd8565b500190565b600082611cf557611cf5611dee565b500490565b600082821015611d0c57611d0c611dd8565b500390565b60005b83811015611d2c578181015183820152602001611d14565b83811115611d3b576000848401525b50505050565b600181811c90821680611d5557607f821691505b60208210811415611d7657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611da257611da2611e1a565b6040525050565b6000600019821415611dbd57611dbd611dd8565b5060010190565b600082611dd357611dd3611dee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611e495760046000803e5060005160e01c5b90565b600060443d1015611e5a5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611e8a57505050505090565b8285019150815181811115611ea25750505050505090565b843d8701016020828501011115611ebc5750505050505090565b611ecb60208286010187611d7c565b509095945050505050565b6001600160e01b03198116811461097057600080fdfea2646970667358221220517204093253752c38510bc317fa1069ddbfb801642f7f4e09af29d273c6d3e364736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d587a57546b76357435467672466650694b4e704759545a69564e596d647359655174535043626e614d694b632f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010a5760003560e01c80638da5cb5b116100a2578063d547cfb711610071578063d547cfb714610239578063e4ba5ade14610241578063e985e9c514610254578063f242432a14610290578063f2fde38b146102a357600080fd5b80638da5cb5b146101db578063a22cb46514610200578063ceff7a8f14610213578063d351cfdc1461022657600080fd5b80632eb2c2d6116100de5780632eb2c2d61461018d5780634e1273f4146101a057806355f804b3146101c0578063715018a6146101d357600080fd5b8062fdd58e1461010f57806301ffc9a7146101355780630a5358a4146101585780630e89341c1461016d575b600080fd5b61012261011d366004611737565b6102b6565b6040519081526020015b60405180910390f35b61014861014336600461187f565b61034d565b604051901515815260200161012c565b61016b61016636600461159e565b61039f565b005b61018061017b366004611902565b6103eb565b60405161012c9190611b43565b61016b61019b3660046115ec565b6104c4565b6101b36101ae366004611761565b61055b565b60405161012c9190611b0b565b61016b6101ce3660046118b9565b610685565b61016b6106c6565b6003546001600160a01b03165b6040516001600160a01b03909116815260200161012c565b61016b61020e3660046116fb565b6106fc565b61016b61022136600461191b565b610707565b61016b610234366004611832565b61076d565b6101806107c3565b6005546101e8906001600160a01b031681565b6101486102623660046115b9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61016b61029e366004611696565b610851565b61016b6102b136600461159e565b6108d8565b60006001600160a01b0383166103275760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061037e57506001600160e01b031982166303a24d0760e21b145b8061039957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146103c95760405162461bcd60e51b815260040161031e90611c2d565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b60606000600480546103fc90611d41565b905011610493576004805461041090611d41565b80601f016020809104026020016040519081016040528092919081815260200182805461043c90611d41565b80156104895780601f1061045e57610100808354040283529160200191610489565b820191906000526020600020905b81548152906001019060200180831161046c57829003601f168201915b5050505050610399565b600461049e83610973565b6040516020016104af9291906119c1565b60405160208183030381529060405292915050565b6001600160a01b0385163314806104e057506104e08533610262565b6105475760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161031e565b6105548585858585610a79565b5050505050565b606081518351146105c05760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161031e565b6000835167ffffffffffffffff8111156105dc576105dc611e1a565b604051908082528060200260200182016040528015610605578160200160208202803683370190505b50905060005b845181101561067d5761065085828151811061062957610629611e04565b602002602001015185838151811061064357610643611e04565b60200260200101516102b6565b82828151811061066257610662611e04565b602090810291909101015261067681611da9565b905061060b565b509392505050565b6003546001600160a01b031633146106af5760405162461bcd60e51b815260040161031e90611c2d565b80516106c29060049060208401906113ed565b5050565b6003546001600160a01b031633146106f05760405162461bcd60e51b815260040161031e90611c2d565b6106fa6000610c15565b565b6106c2338383610c67565b6005546001600160a01b031633146107615760405162461bcd60e51b815260206004820152601e60248201527f596f7520617265206e6f7420617574686f72697a656420746f206275726e0000604482015260640161031e565b6106c281836001610d48565b6003546001600160a01b031633146107975760405162461bcd60e51b815260040161031e90611c2d565b6106c26107ac6003546001600160a01b031690565b838360405180602001604052806000815250610ec2565b600480546107d090611d41565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc90611d41565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b505050505081565b6001600160a01b03851633148061086d575061086d8533610262565b6108cb5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161031e565b6105548585858585611047565b6003546001600160a01b031633146109025760405162461bcd60e51b815260040161031e90611c2d565b6001600160a01b0381166109675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161031e565b61097081610c15565b50565b6060816109975750506040805180820190915260018152600360fc1b602082015290565b8160005b81156109c157806109ab81611da9565b91506109ba9050600a83611ce6565b915061099b565b60008167ffffffffffffffff8111156109dc576109dc611e1a565b6040519080825280601f01601f191660200182016040528015610a06576020820181803683370190505b5090505b8415610a7157610a1b600183611cfa565b9150610a28600a86611dc4565b610a33906030611cce565b60f81b818381518110610a4857610a48611e04565b60200101906001600160f81b031916908160001a905350610a6a600a86611ce6565b9450610a0a565b949350505050565b8151835114610a9a5760405162461bcd60e51b815260040161031e90611c62565b6001600160a01b038416610ac05760405162461bcd60e51b815260040161031e90611b9e565b3360005b8451811015610ba7576000858281518110610ae157610ae1611e04565b602002602001015190506000858381518110610aff57610aff611e04565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610b4f5760405162461bcd60e51b815260040161031e90611be3565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610b8c908490611cce565b9250508190555050505080610ba090611da9565b9050610ac4565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610bf7929190611b1e565b60405180910390a4610c0d81878787878761116d565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610cdb5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161031e565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038316610daa5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b606482015260840161031e565b33610dda81856000610dbb876112d8565b610dc4876112d8565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b038816845290915290205482811015610e575760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b606482015260840161031e565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6001600160a01b038416610f225760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161031e565b8151835114610f435760405162461bcd60e51b815260040161031e90611c62565b3360005b8451811015610fdf57838181518110610f6257610f62611e04565b6020026020010151600080878481518110610f7f57610f7f611e04565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254610fc79190611cce565b90915550819050610fd781611da9565b915050610f47565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611030929190611b1e565b60405180910390a46105548160008787878761116d565b6001600160a01b03841661106d5760405162461bcd60e51b815260040161031e90611b9e565b3361108681878761107d886112d8565b610554886112d8565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156110c75760405162461bcd60e51b815260040161031e90611be3565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611104908490611cce565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611164828888888888611323565b50505050505050565b6001600160a01b0384163b15610c0d5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906111b19089908990889088908890600401611a68565b602060405180830381600087803b1580156111cb57600080fd5b505af19250505080156111fb575060408051601f3d908101601f191682019092526111f89181019061189c565b60015b6112a857611207611e30565b806308c379a01415611241575061121c611e4c565b806112275750611243565b8060405162461bcd60e51b815260040161031e9190611b43565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161031e565b6001600160e01b0319811663bc197c8160e01b146111645760405162461bcd60e51b815260040161031e90611b56565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061131257611312611e04565b602090810291909101015292915050565b6001600160a01b0384163b15610c0d5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906113679089908990889088908890600401611ac6565b602060405180830381600087803b15801561138157600080fd5b505af19250505080156113b1575060408051601f3d908101601f191682019092526113ae9181019061189c565b60015b6113bd57611207611e30565b6001600160e01b0319811663f23a6e6160e01b146111645760405162461bcd60e51b815260040161031e90611b56565b8280546113f990611d41565b90600052602060002090601f01602090048101928261141b5760008555611461565b82601f1061143457805160ff1916838001178555611461565b82800160010185558215611461579182015b82811115611461578251825591602001919060010190611446565b5061146d929150611471565b5090565b5b8082111561146d5760008155600101611472565b600067ffffffffffffffff8311156114a0576114a0611e1a565b6040516114b7601f8501601f191660200182611d7c565b8091508381528484840111156114cc57600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b03811681146114fb57600080fd5b919050565b600082601f83011261151157600080fd5b8135602061151e82611caa565b60405161152b8282611d7c565b8381528281019150858301600585901b8701840188101561154b57600080fd5b60005b8581101561156a5781358452928401929084019060010161154e565b5090979650505050505050565b600082601f83011261158857600080fd5b61159783833560208501611486565b9392505050565b6000602082840312156115b057600080fd5b611597826114e4565b600080604083850312156115cc57600080fd5b6115d5836114e4565b91506115e3602084016114e4565b90509250929050565b600080600080600060a0868803121561160457600080fd5b61160d866114e4565b945061161b602087016114e4565b9350604086013567ffffffffffffffff8082111561163857600080fd5b61164489838a01611500565b9450606088013591508082111561165a57600080fd5b61166689838a01611500565b9350608088013591508082111561167c57600080fd5b5061168988828901611577565b9150509295509295909350565b600080600080600060a086880312156116ae57600080fd5b6116b7866114e4565b94506116c5602087016114e4565b93506040860135925060608601359150608086013567ffffffffffffffff8111156116ef57600080fd5b61168988828901611577565b6000806040838503121561170e57600080fd5b611717836114e4565b91506020830135801515811461172c57600080fd5b809150509250929050565b6000806040838503121561174a57600080fd5b611753836114e4565b946020939093013593505050565b6000806040838503121561177457600080fd5b823567ffffffffffffffff8082111561178c57600080fd5b818501915085601f8301126117a057600080fd5b813560206117ad82611caa565b6040516117ba8282611d7c565b8381528281019150858301600585901b870184018b10156117da57600080fd5b600096505b84871015611804576117f0816114e4565b8352600196909601959183019183016117df565b509650508601359250508082111561181b57600080fd5b5061182885828601611500565b9150509250929050565b6000806040838503121561184557600080fd5b823567ffffffffffffffff8082111561185d57600080fd5b61186986838701611500565b9350602085013591508082111561181b57600080fd5b60006020828403121561189157600080fd5b813561159781611ed6565b6000602082840312156118ae57600080fd5b815161159781611ed6565b6000602082840312156118cb57600080fd5b813567ffffffffffffffff8111156118e257600080fd5b8201601f810184136118f357600080fd5b610a7184823560208401611486565b60006020828403121561191457600080fd5b5035919050565b6000806040838503121561192e57600080fd5b823591506115e3602084016114e4565b600081518084526020808501945080840160005b8381101561196e57815187529582019590820190600101611952565b509495945050505050565b60008151808452611991816020860160208601611d11565b601f01601f19169290920160200192915050565b600081516119b7818560208601611d11565b9290920192915050565b600080845481600182811c9150808316806119dd57607f831692505b60208084108214156119fd57634e487b7160e01b86526022600452602486fd5b818015611a115760018114611a2257611a4f565b60ff19861689528489019650611a4f565b60008b81526020902060005b86811015611a475781548b820152908501908301611a2e565b505084890196505b505050505050611a5f81856119a5565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611a949083018661193e565b8281036060840152611aa6818661193e565b90508281036080840152611aba8185611979565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611b0090830184611979565b979650505050505050565b602081526000611597602083018461193e565b604081526000611b31604083018561193e565b8281036020840152611a5f818561193e565b6020815260006115976020830184611979565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b600067ffffffffffffffff821115611cc457611cc4611e1a565b5060051b60200190565b60008219821115611ce157611ce1611dd8565b500190565b600082611cf557611cf5611dee565b500490565b600082821015611d0c57611d0c611dd8565b500390565b60005b83811015611d2c578181015183820152602001611d14565b83811115611d3b576000848401525b50505050565b600181811c90821680611d5557607f821691505b60208210811415611d7657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611da257611da2611e1a565b6040525050565b6000600019821415611dbd57611dbd611dd8565b5060010190565b600082611dd357611dd3611dee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611e495760046000803e5060005160e01c5b90565b600060443d1015611e5a5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611e8a57505050505090565b8285019150815181811115611ea25750505050505090565b843d8701016020828501011115611ebc5750505050505090565b611ecb60208286010187611d7c565b509095945050505050565b6001600160e01b03198116811461097057600080fdfea2646970667358221220517204093253752c38510bc317fa1069ddbfb801642f7f4e09af29d273c6d3e364736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d587a57546b76357435467672466650694b4e704759545a69564e596d647359655174535043626e614d694b632f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): ipfs://QmXzWTkv5t5FvrFfPiKNpGYTZiVNYmdsYeQtSPCbnaMiKc/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d587a57546b76357435467672466650694b4e704759545a
Arg [3] : 69564e596d647359655174535043626e614d694b632f00000000000000000000


Deployed Bytecode Sourcemap

38135:1232:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24553:231;;;;;;:::i;:::-;;:::i;:::-;;;18911:25:1;;;18899:2;18884:18;24553:231:0;;;;;;;;23576:310;;;;;;:::i;:::-;;:::i;:::-;;;12059:14:1;;12052:22;12034:41;;12022:2;12007:18;23576:310:0;11894:187:1;39224:138:0;;;;;;:::i;:::-;;:::i;:::-;;38791:301;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26492:442::-;;;;;;:::i;:::-;;:::i;24950:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39115:101::-;;;;;;:::i;:::-;;:::i;4558:94::-;;;:::i;3907:87::-;3980:6;;-1:-1:-1;;;;;3980:6:0;3907:87;;;-1:-1:-1;;;;;9718:32:1;;;9700:51;;9688:2;9673:18;3907:87:0;9554:203:1;25547:155:0;;;;;;:::i;:::-;;:::i;38544:223::-;;;;;;:::i;:::-;;:::i;38389:147::-;;;;;;:::i;:::-;;:::i;38190:26::-;;;:::i;38224:31::-;;;;;-1:-1:-1;;;;;38224:31:0;;;25774:168;;;;;;:::i;:::-;-1:-1:-1;;;;;25897:27:0;;;25873:4;25897:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;25774:168;26014:401;;;;;;:::i;:::-;;:::i;4807:192::-;;;;;;:::i;:::-;;:::i;24553:231::-;24639:7;-1:-1:-1;;;;;24667:21:0;;24659:77;;;;-1:-1:-1;;;24659:77:0;;13342:2:1;24659:77:0;;;13324:21:1;13381:2;13361:18;;;13354:30;13420:34;13400:18;;;13393:62;-1:-1:-1;;;13471:18:1;;;13464:41;13522:19;;24659:77:0;;;;;;;;;-1:-1:-1;24754:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;24754:22:0;;;;;;;;;;;;24553:231::o;23576:310::-;23678:4;-1:-1:-1;;;;;;23715:41:0;;-1:-1:-1;;;23715:41:0;;:110;;-1:-1:-1;;;;;;;23773:52:0;;-1:-1:-1;;;23773:52:0;23715:110;:163;;;-1:-1:-1;;;;;;;;;;15040:40:0;;;23842:36;23695:183;23576:310;-1:-1:-1;;23576:310:0:o;39224:138::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;39319:16:::1;:35:::0;;-1:-1:-1;;;;;;39319:35:0::1;-1:-1:-1::0;;;;;39319:35:0;;;::::1;::::0;;;::::1;::::0;;39224:138::o;38791:301::-;38850:13;39001:1;38978:12;38972:26;;;;;:::i;:::-;;;:30;:112;;39072:12;38972:112;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39029:12;39043:24;39060:6;39043:16;:24::i;:::-;39012:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38965:119;38791:301;-1:-1:-1;;38791:301:0:o;26492:442::-;-1:-1:-1;;;;;26725:20:0;;2775:10;26725:20;;:60;;-1:-1:-1;26749:36:0;26766:4;2775:10;25774:168;:::i;26749:36::-;26703:160;;;;-1:-1:-1;;;26703:160:0;;15382:2:1;26703:160:0;;;15364:21:1;15421:2;15401:18;;;15394:30;15460:34;15440:18;;;15433:62;-1:-1:-1;;;15511:18:1;;;15504:48;15569:19;;26703:160:0;15180:414:1;26703:160:0;26874:52;26897:4;26903:2;26907:3;26912:7;26921:4;26874:22;:52::i;:::-;26492:442;;;;;:::o;24950:524::-;25106:16;25167:3;:10;25148:8;:15;:29;25140:83;;;;-1:-1:-1;;;25140:83:0;;17746:2:1;25140:83:0;;;17728:21:1;17785:2;17765:18;;;17758:30;17824:34;17804:18;;;17797:62;-1:-1:-1;;;17875:18:1;;;17868:39;17924:19;;25140:83:0;17544:405:1;25140:83:0;25236:30;25283:8;:15;25269:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25269:30:0;;25236:63;;25317:9;25312:122;25336:8;:15;25332:1;:19;25312:122;;;25392:30;25402:8;25411:1;25402:11;;;;;;;;:::i;:::-;;;;;;;25415:3;25419:1;25415:6;;;;;;;;:::i;:::-;;;;;;;25392:9;:30::i;:::-;25373:13;25387:1;25373:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;25353:3;;;:::i;:::-;;;25312:122;;;-1:-1:-1;25453:13:0;24950:524;-1:-1:-1;;;24950:524:0:o;39115:101::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;39186:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39115:101:::0;:::o;4558:94::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;4623:21:::1;4641:1;4623:9;:21::i;:::-;4558:94::o:0;25547:155::-;25642:52;2775:10;25675:8;25685;25642:18;:52::i;38544:223::-;38663:16;;-1:-1:-1;;;;;38663:16:0;38649:10;:30;38641:73;;;;-1:-1:-1;;;38641:73:0;;16977:2:1;38641:73:0;;;16959:21:1;17016:2;16996:18;;;16989:30;17055:32;17035:18;;;17028:60;17105:18;;38641:73:0;16775:354:1;38641:73:0;38725:34;38731:16;38749:6;38757:1;38725:5;:34::i;38389:147::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;38491:37:::1;38502:7;3980:6:::0;;-1:-1:-1;;;;;3980:6:0;;3907:87;38502:7:::1;38511:3;38516:7;38491:37;;;;;;;;;;;::::0;:10:::1;:37::i;38190:26::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26014:401::-;-1:-1:-1;;;;;26222:20:0;;2775:10;26222:20;;:60;;-1:-1:-1;26246:36:0;26263:4;2775:10;25774:168;:::i;26246:36::-;26200:151;;;;-1:-1:-1;;;26200:151:0;;14566:2:1;26200:151:0;;;14548:21:1;14605:2;14585:18;;;14578:30;14644:34;14624:18;;;14617:62;-1:-1:-1;;;14695:18:1;;;14688:39;14744:19;;26200:151:0;14364:405:1;26200:151:0;26362:45;26380:4;26386:2;26390;26394:6;26402:4;26362:17;:45::i;4807:192::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4896:22:0;::::1;4888:73;;;::::0;-1:-1:-1;;;4888:73:0;;13754:2:1;4888:73:0::1;::::0;::::1;13736:21:1::0;13793:2;13773:18;;;13766:30;13832:34;13812:18;;;13805:62;-1:-1:-1;;;13883:18:1;;;13876:36;13929:19;;4888:73:0::1;13552:402:1::0;4888:73:0::1;4972:19;4982:8;4972:9;:19::i;:::-;4807:192:::0;:::o;311:723::-;367:13;588:10;584:53;;-1:-1:-1;;615:10:0;;;;;;;;;;;;-1:-1:-1;;;615:10:0;;;;;311:723::o;584:53::-;662:5;647:12;703:78;710:9;;703:78;;736:8;;;;:::i;:::-;;-1:-1:-1;759:10:0;;-1:-1:-1;767:2:0;759:10;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;813:17:0;;791:39;;841:154;848:10;;841:154;;875:11;885:1;875:11;;:::i;:::-;;-1:-1:-1;944:10:0;952:2;944:5;:10;:::i;:::-;931:24;;:2;:24;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;901:56:0;;;;;;;;-1:-1:-1;972:11:0;981:2;972:11;;:::i;:::-;;;841:154;;;1019:6;311:723;-1:-1:-1;;;;311:723:0:o;28576:1074::-;28803:7;:14;28789:3;:10;:28;28781:81;;;;-1:-1:-1;;;28781:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28881:16:0;;28873:66;;;;-1:-1:-1;;;28873:66:0;;;;;;;:::i;:::-;2775:10;28952:16;29069:421;29093:3;:10;29089:1;:14;29069:421;;;29125:10;29138:3;29142:1;29138:6;;;;;;;;:::i;:::-;;;;;;;29125:19;;29159:14;29176:7;29184:1;29176:10;;;;;;;;:::i;:::-;;;;;;;;;;;;29203:19;29225:13;;;;;;;;;;-1:-1:-1;;;;;29225:19:0;;;;;;;;;;;;29176:10;;-1:-1:-1;29267:21:0;;;;29259:76;;;;-1:-1:-1;;;29259:76:0;;;;;;;:::i;:::-;29379:9;:13;;;;;;;;;;;-1:-1:-1;;;;;29379:19:0;;;;;;;;;;29401:20;;;29379:42;;29451:17;;;;;;;:27;;29401:20;;29379:9;29451:27;;29401:20;;29451:27;:::i;:::-;;;;;;;;29110:380;;;29105:3;;;;:::i;:::-;;;29069:421;;;;29537:2;-1:-1:-1;;;;;29507:47:0;29531:4;-1:-1:-1;;;;;29507:47:0;29521:8;-1:-1:-1;;;;;29507:47:0;;29541:3;29546:7;29507:47;;;;;;;:::i;:::-;;;;;;;;29567:75;29603:8;29613:4;29619:2;29623:3;29628:7;29637:4;29567:35;:75::i;:::-;28770:880;28576:1074;;;;;:::o;5007:173::-;5082:6;;;-1:-1:-1;;;;;5099:17:0;;;-1:-1:-1;;;;;;5099:17:0;;;;;;;5132:40;;5082:6;;;5099:17;5082:6;;5132:40;;5063:16;;5132:40;5052:128;5007:173;:::o;34762:331::-;34917:8;-1:-1:-1;;;;;34908:17:0;:5;-1:-1:-1;;;;;34908:17:0;;;34900:71;;;;-1:-1:-1;;;34900:71:0;;17336:2:1;34900:71:0;;;17318:21:1;17375:2;17355:18;;;17348:30;17414:34;17394:18;;;17387:62;-1:-1:-1;;;17465:18:1;;;17458:39;17514:19;;34900:71:0;17134:405:1;34900:71:0;-1:-1:-1;;;;;34982:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34982:46:0;;;;;;;;;;35044:41;;12034::1;;;35044::0;;12007:18:1;35044:41:0;;;;;;;34762:331;;;:::o;32878:648::-;-1:-1:-1;;;;;33005:18:0;;32997:66;;;;-1:-1:-1;;;32997:66:0;;15801:2:1;32997:66:0;;;15783:21:1;15840:2;15820:18;;;15813:30;15879:34;15859:18;;;15852:62;-1:-1:-1;;;15930:18:1;;;15923:33;15973:19;;32997:66:0;15599:399:1;32997:66:0;2775:10;33120:102;2775:10;33151:4;33076:16;33169:21;33187:2;33169:17;:21::i;:::-;33192:25;33210:6;33192:17;:25::i;:::-;-1:-1:-1;;33120:102:0;;;;;;;;;-1:-1:-1;33120:102:0;;-1:-1:-1;;;28576:1074:0;33120:102;33235:19;33257:13;;;;;;;;;;;-1:-1:-1;;;;;33257:19:0;;;;;;;;;;33295:21;;;;33287:70;;;;-1:-1:-1;;;33287:70:0;;14161:2:1;33287:70:0;;;14143:21:1;14200:2;14180:18;;;14173:30;14239:34;14219:18;;;14212:62;-1:-1:-1;;;14290:18:1;;;14283:34;14334:19;;33287:70:0;13959:400:1;33287:70:0;33393:9;:13;;;;;;;;;;;-1:-1:-1;;;;;33393:19:0;;;;;;;;;;;;33415:20;;;33393:42;;33464:54;;19121:25:1;;;19162:18;;;19155:34;;;33393:19:0;;33464:54;;;;;;19094:18:1;33464:54:0;;;;;;;32986:540;;32878:648;;;:::o;31893:735::-;-1:-1:-1;;;;;32071:16:0;;32063:62;;;;-1:-1:-1;;;32063:62:0;;18565:2:1;32063:62:0;;;18547:21:1;18604:2;18584:18;;;18577:30;18643:34;18623:18;;;18616:62;-1:-1:-1;;;18694:18:1;;;18687:31;18735:19;;32063:62:0;18363:397:1;32063:62:0;32158:7;:14;32144:3;:10;:28;32136:81;;;;-1:-1:-1;;;32136:81:0;;;;;;;:::i;:::-;2775:10;32230:16;32353:103;32377:3;:10;32373:1;:14;32353:103;;;32434:7;32442:1;32434:10;;;;;;;;:::i;:::-;;;;;;;32409:9;:17;32419:3;32423:1;32419:6;;;;;;;;:::i;:::-;;;;;;;32409:17;;;;;;;;;;;:21;32427:2;-1:-1:-1;;;;;32409:21:0;-1:-1:-1;;;;;32409:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;32389:3:0;;-1:-1:-1;32389:3:0;;;:::i;:::-;;;;32353:103;;;;32509:2;-1:-1:-1;;;;;32473:53:0;32505:1;-1:-1:-1;;;;;32473:53:0;32487:8;-1:-1:-1;;;;;32473:53:0;;32513:3;32518:7;32473:53;;;;;;;:::i;:::-;;;;;;;;32539:81;32575:8;32593:1;32597:2;32601:3;32606:7;32615:4;32539:35;:81::i;27398:820::-;-1:-1:-1;;;;;27586:16:0;;27578:66;;;;-1:-1:-1;;;27578:66:0;;;;;;;:::i;:::-;2775:10;27701:96;2775:10;27732:4;27738:2;27742:21;27760:2;27742:17;:21::i;:::-;27765:25;27783:6;27765:17;:25::i;27701:96::-;27810:19;27832:13;;;;;;;;;;;-1:-1:-1;;;;;27832:19:0;;;;;;;;;;27870:21;;;;27862:76;;;;-1:-1:-1;;;27862:76:0;;;;;;;:::i;:::-;27974:9;:13;;;;;;;;;;;-1:-1:-1;;;;;27974:19:0;;;;;;;;;;27996:20;;;27974:42;;28038:17;;;;;;;:27;;27996:20;;27974:9;28038:27;;27996:20;;28038:27;:::i;:::-;;;;-1:-1:-1;;28083:46:0;;;19121:25:1;;;19177:2;19162:18;;19155:34;;;-1:-1:-1;;;;;28083:46:0;;;;;;;;;;;;;;19094:18:1;28083:46:0;;;;;;;28142:68;28173:8;28183:4;28189:2;28193;28197:6;28205:4;28142:30;:68::i;:::-;27567:651;;27398:820;;;;;:::o;37030:813::-;-1:-1:-1;;;;;37270:13:0;;6276:20;6324:8;37266:570;;37306:79;;-1:-1:-1;;;37306:79:0;;-1:-1:-1;;;;;37306:43:0;;;;;:79;;37350:8;;37360:4;;37366:3;;37371:7;;37380:4;;37306:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37306:79:0;;;;;;;;-1:-1:-1;;37306:79:0;;;;;;;;;;;;:::i;:::-;;;37302:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;37698:6;37691:14;;-1:-1:-1;;;37691:14:0;;;;;;;;:::i;37302:523::-;;;37747:62;;-1:-1:-1;;;37747:62:0;;12512:2:1;37747:62:0;;;12494:21:1;12551:2;12531:18;;;12524:30;12590:34;12570:18;;;12563:62;-1:-1:-1;;;12641:18:1;;;12634:50;12701:19;;37747:62:0;12310:416:1;37302:523:0;-1:-1:-1;;;;;;37467:60:0;;-1:-1:-1;;;37467:60:0;37463:159;;37552:50;;-1:-1:-1;;;37552:50:0;;;;;;;:::i;37851:198::-;37971:16;;;37985:1;37971:16;;;;;;;;;37917;;37946:22;;37971:16;;;;;;;;;;;;-1:-1:-1;37971:16:0;37946:41;;38009:7;37998:5;38004:1;37998:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;38036:5;37851:198;-1:-1:-1;;37851:198:0:o;36278:744::-;-1:-1:-1;;;;;36493:13:0;;6276:20;6324:8;36489:526;;36529:72;;-1:-1:-1;;;36529:72:0;;-1:-1:-1;;;;;36529:38:0;;;;;:72;;36568:8;;36578:4;;36584:2;;36588:6;;36596:4;;36529:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36529:72:0;;;;;;;;-1:-1:-1;;36529:72:0;;;;;;;;;;;;:::i;:::-;;;36525:479;;;;:::i;:::-;-1:-1:-1;;;;;;36651:55:0;;-1:-1:-1;;;36651:55:0;36647:154;;36731:50;;-1:-1:-1;;;36731:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:735::-;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:1;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:1;;;1175:1;1172;1165:12;1118:61;1197:1;1207:163;1221:2;1218:1;1215:9;1207:163;;;1278:17;;1266:30;;1316:12;;;;1348;;;;1239:1;1232:9;1207:163;;;-1:-1:-1;1388:6:1;;665:735;-1:-1:-1;;;;;;;665:735:1:o;1405:220::-;1447:5;1500:3;1493:4;1485:6;1481:17;1477:27;1467:55;;1518:1;1515;1508:12;1467:55;1540:79;1615:3;1606:6;1593:20;1586:4;1578:6;1574:17;1540:79;:::i;:::-;1531:88;1405:220;-1:-1:-1;;;1405:220:1:o;1630:186::-;1689:6;1742:2;1730:9;1721:7;1717:23;1713:32;1710:52;;;1758:1;1755;1748:12;1710:52;1781:29;1800:9;1781:29;:::i;1821:260::-;1889:6;1897;1950:2;1938:9;1929:7;1925:23;1921:32;1918:52;;;1966:1;1963;1956:12;1918:52;1989:29;2008:9;1989:29;:::i;:::-;1979:39;;2037:38;2071:2;2060:9;2056:18;2037:38;:::i;:::-;2027:48;;1821:260;;;;;:::o;2086:943::-;2240:6;2248;2256;2264;2272;2325:3;2313:9;2304:7;2300:23;2296:33;2293:53;;;2342:1;2339;2332:12;2293:53;2365:29;2384:9;2365:29;:::i;:::-;2355:39;;2413:38;2447:2;2436:9;2432:18;2413:38;:::i;:::-;2403:48;;2502:2;2491:9;2487:18;2474:32;2525:18;2566:2;2558:6;2555:14;2552:34;;;2582:1;2579;2572:12;2552:34;2605:61;2658:7;2649:6;2638:9;2634:22;2605:61;:::i;:::-;2595:71;;2719:2;2708:9;2704:18;2691:32;2675:48;;2748:2;2738:8;2735:16;2732:36;;;2764:1;2761;2754:12;2732:36;2787:63;2842:7;2831:8;2820:9;2816:24;2787:63;:::i;:::-;2777:73;;2903:3;2892:9;2888:19;2875:33;2859:49;;2933:2;2923:8;2920:16;2917:36;;;2949:1;2946;2939:12;2917:36;;2972:51;3015:7;3004:8;2993:9;2989:24;2972:51;:::i;:::-;2962:61;;;2086:943;;;;;;;;:::o;3034:606::-;3138:6;3146;3154;3162;3170;3223:3;3211:9;3202:7;3198:23;3194:33;3191:53;;;3240:1;3237;3230:12;3191:53;3263:29;3282:9;3263:29;:::i;:::-;3253:39;;3311:38;3345:2;3334:9;3330:18;3311:38;:::i;:::-;3301:48;;3396:2;3385:9;3381:18;3368:32;3358:42;;3447:2;3436:9;3432:18;3419:32;3409:42;;3502:3;3491:9;3487:19;3474:33;3530:18;3522:6;3519:30;3516:50;;;3562:1;3559;3552:12;3516:50;3585:49;3626:7;3617:6;3606:9;3602:22;3585:49;:::i;3645:347::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3810:29;3829:9;3810:29;:::i;:::-;3800:39;;3889:2;3878:9;3874:18;3861:32;3936:5;3929:13;3922:21;3915:5;3912:32;3902:60;;3958:1;3955;3948:12;3902:60;3981:5;3971:15;;;3645:347;;;;;:::o;3997:254::-;4065:6;4073;4126:2;4114:9;4105:7;4101:23;4097:32;4094:52;;;4142:1;4139;4132:12;4094:52;4165:29;4184:9;4165:29;:::i;:::-;4155:39;4241:2;4226:18;;;;4213:32;;-1:-1:-1;;;3997:254:1:o;4256:1219::-;4374:6;4382;4435:2;4423:9;4414:7;4410:23;4406:32;4403:52;;;4451:1;4448;4441:12;4403:52;4491:9;4478:23;4520:18;4561:2;4553:6;4550:14;4547:34;;;4577:1;4574;4567:12;4547:34;4615:6;4604:9;4600:22;4590:32;;4660:7;4653:4;4649:2;4645:13;4641:27;4631:55;;4682:1;4679;4672:12;4631:55;4718:2;4705:16;4740:4;4763:43;4803:2;4763:43;:::i;:::-;4835:2;4829:9;4847:31;4875:2;4867:6;4847:31;:::i;:::-;4913:18;;;4947:15;;;;-1:-1:-1;4982:11:1;;;5024:1;5020:10;;;5012:19;;5008:28;;5005:41;-1:-1:-1;5002:61:1;;;5059:1;5056;5049:12;5002:61;5081:1;5072:10;;5091:169;5105:2;5102:1;5099:9;5091:169;;;5162:23;5181:3;5162:23;:::i;:::-;5150:36;;5123:1;5116:9;;;;;5206:12;;;;5238;;5091:169;;;-1:-1:-1;5279:6:1;-1:-1:-1;;5323:18:1;;5310:32;;-1:-1:-1;;5354:16:1;;;5351:36;;;5383:1;5380;5373:12;5351:36;;5406:63;5461:7;5450:8;5439:9;5435:24;5406:63;:::i;:::-;5396:73;;;4256:1219;;;;;:::o;5480:595::-;5598:6;5606;5659:2;5647:9;5638:7;5634:23;5630:32;5627:52;;;5675:1;5672;5665:12;5627:52;5715:9;5702:23;5744:18;5785:2;5777:6;5774:14;5771:34;;;5801:1;5798;5791:12;5771:34;5824:61;5877:7;5868:6;5857:9;5853:22;5824:61;:::i;:::-;5814:71;;5938:2;5927:9;5923:18;5910:32;5894:48;;5967:2;5957:8;5954:16;5951:36;;;5983:1;5980;5973:12;6080:245;6138:6;6191:2;6179:9;6170:7;6166:23;6162:32;6159:52;;;6207:1;6204;6197:12;6159:52;6246:9;6233:23;6265:30;6289:5;6265:30;:::i;6330:249::-;6399:6;6452:2;6440:9;6431:7;6427:23;6423:32;6420:52;;;6468:1;6465;6458:12;6420:52;6500:9;6494:16;6519:30;6543:5;6519:30;:::i;6584:450::-;6653:6;6706:2;6694:9;6685:7;6681:23;6677:32;6674:52;;;6722:1;6719;6712:12;6674:52;6762:9;6749:23;6795:18;6787:6;6784:30;6781:50;;;6827:1;6824;6817:12;6781:50;6850:22;;6903:4;6895:13;;6891:27;-1:-1:-1;6881:55:1;;6932:1;6929;6922:12;6881:55;6955:73;7020:7;7015:2;7002:16;6997:2;6993;6989:11;6955:73;:::i;7039:180::-;7098:6;7151:2;7139:9;7130:7;7126:23;7122:32;7119:52;;;7167:1;7164;7157:12;7119:52;-1:-1:-1;7190:23:1;;7039:180;-1:-1:-1;7039:180:1:o;7224:254::-;7292:6;7300;7353:2;7341:9;7332:7;7328:23;7324:32;7321:52;;;7369:1;7366;7359:12;7321:52;7405:9;7392:23;7382:33;;7434:38;7468:2;7457:9;7453:18;7434:38;:::i;7483:435::-;7536:3;7574:5;7568:12;7601:6;7596:3;7589:19;7627:4;7656:2;7651:3;7647:12;7640:19;;7693:2;7686:5;7682:14;7714:1;7724:169;7738:6;7735:1;7732:13;7724:169;;;7799:13;;7787:26;;7833:12;;;;7868:15;;;;7760:1;7753:9;7724:169;;;-1:-1:-1;7909:3:1;;7483:435;-1:-1:-1;;;;;7483:435:1:o;7923:257::-;7964:3;8002:5;7996:12;8029:6;8024:3;8017:19;8045:63;8101:6;8094:4;8089:3;8085:14;8078:4;8071:5;8067:16;8045:63;:::i;:::-;8162:2;8141:15;-1:-1:-1;;8137:29:1;8128:39;;;;8169:4;8124:50;;7923:257;-1:-1:-1;;7923:257:1:o;8185:185::-;8227:3;8265:5;8259:12;8280:52;8325:6;8320:3;8313:4;8306:5;8302:16;8280:52;:::i;:::-;8348:16;;;;;8185:185;-1:-1:-1;;8185:185:1:o;8375:1174::-;8551:3;8580:1;8613:6;8607:13;8643:3;8665:1;8693:9;8689:2;8685:18;8675:28;;8753:2;8742:9;8738:18;8775;8765:61;;8819:4;8811:6;8807:17;8797:27;;8765:61;8845:2;8893;8885:6;8882:14;8862:18;8859:38;8856:165;;;-1:-1:-1;;;8920:33:1;;8976:4;8973:1;8966:15;9006:4;8927:3;8994:17;8856:165;9037:18;9064:104;;;;9182:1;9177:320;;;;9030:467;;9064:104;-1:-1:-1;;9097:24:1;;9085:37;;9142:16;;;;-1:-1:-1;9064:104:1;;9177:320;19461:1;19454:14;;;19498:4;19485:18;;9272:1;9286:165;9300:6;9297:1;9294:13;9286:165;;;9378:14;;9365:11;;;9358:35;9421:16;;;;9315:10;;9286:165;;;9290:3;;9480:6;9475:3;9471:16;9464:23;;9030:467;;;;;;;9513:30;9539:3;9531:6;9513:30;:::i;:::-;9506:37;8375:1174;-1:-1:-1;;;;;8375:1174:1:o;9762:826::-;-1:-1:-1;;;;;10159:15:1;;;10141:34;;10211:15;;10206:2;10191:18;;10184:43;10121:3;10258:2;10243:18;;10236:31;;;10084:4;;10290:57;;10327:19;;10319:6;10290:57;:::i;:::-;10395:9;10387:6;10383:22;10378:2;10367:9;10363:18;10356:50;10429:44;10466:6;10458;10429:44;:::i;:::-;10415:58;;10522:9;10514:6;10510:22;10504:3;10493:9;10489:19;10482:51;10550:32;10575:6;10567;10550:32;:::i;:::-;10542:40;9762:826;-1:-1:-1;;;;;;;;9762:826:1:o;10593:560::-;-1:-1:-1;;;;;10890:15:1;;;10872:34;;10942:15;;10937:2;10922:18;;10915:43;10989:2;10974:18;;10967:34;;;11032:2;11017:18;;11010:34;;;10852:3;11075;11060:19;;11053:32;;;10815:4;;11102:45;;11127:19;;11119:6;11102:45;:::i;:::-;11094:53;10593:560;-1:-1:-1;;;;;;;10593:560:1:o;11158:261::-;11337:2;11326:9;11319:21;11300:4;11357:56;11409:2;11398:9;11394:18;11386:6;11357:56;:::i;11424:465::-;11681:2;11670:9;11663:21;11644:4;11707:56;11759:2;11748:9;11744:18;11736:6;11707:56;:::i;:::-;11811:9;11803:6;11799:22;11794:2;11783:9;11779:18;11772:50;11839:44;11876:6;11868;11839:44;:::i;12086:219::-;12235:2;12224:9;12217:21;12198:4;12255:44;12295:2;12284:9;12280:18;12272:6;12255:44;:::i;12731:404::-;12933:2;12915:21;;;12972:2;12952:18;;;12945:30;13011:34;13006:2;12991:18;;12984:62;-1:-1:-1;;;13077:2:1;13062:18;;13055:38;13125:3;13110:19;;12731:404::o;14774:401::-;14976:2;14958:21;;;15015:2;14995:18;;;14988:30;15054:34;15049:2;15034:18;;15027:62;-1:-1:-1;;;15120:2:1;15105:18;;15098:35;15165:3;15150:19;;14774:401::o;16003:406::-;16205:2;16187:21;;;16244:2;16224:18;;;16217:30;16283:34;16278:2;16263:18;;16256:62;-1:-1:-1;;;16349:2:1;16334:18;;16327:40;16399:3;16384:19;;16003:406::o;16414:356::-;16616:2;16598:21;;;16635:18;;;16628:30;16694:34;16689:2;16674:18;;16667:62;16761:2;16746:18;;16414:356::o;17954:404::-;18156:2;18138:21;;;18195:2;18175:18;;;18168:30;18234:34;18229:2;18214:18;;18207:62;-1:-1:-1;;;18300:2:1;18285:18;;18278:38;18348:3;18333:19;;17954:404::o;19200:183::-;19260:4;19293:18;19285:6;19282:30;19279:56;;;19315:18;;:::i;:::-;-1:-1:-1;19360:1:1;19356:14;19372:4;19352:25;;19200:183::o;19514:128::-;19554:3;19585:1;19581:6;19578:1;19575:13;19572:39;;;19591:18;;:::i;:::-;-1:-1:-1;19627:9:1;;19514:128::o;19647:120::-;19687:1;19713;19703:35;;19718:18;;:::i;:::-;-1:-1:-1;19752:9:1;;19647:120::o;19772:125::-;19812:4;19840:1;19837;19834:8;19831:34;;;19845:18;;:::i;:::-;-1:-1:-1;19882:9:1;;19772:125::o;19902:258::-;19974:1;19984:113;19998:6;19995:1;19992:13;19984:113;;;20074:11;;;20068:18;20055:11;;;20048:39;20020:2;20013:10;19984:113;;;20115:6;20112:1;20109:13;20106:48;;;20150:1;20141:6;20136:3;20132:16;20125:27;20106:48;;19902:258;;;:::o;20165:380::-;20244:1;20240:12;;;;20287;;;20308:61;;20362:4;20354:6;20350:17;20340:27;;20308:61;20415:2;20407:6;20404:14;20384:18;20381:38;20378:161;;;20461:10;20456:3;20452:20;20449:1;20442:31;20496:4;20493:1;20486:15;20524:4;20521:1;20514:15;20378:161;;20165:380;;;:::o;20550:249::-;20660:2;20641:13;;-1:-1:-1;;20637:27:1;20625:40;;20695:18;20680:34;;20716:22;;;20677:62;20674:88;;;20742:18;;:::i;:::-;20778:2;20771:22;-1:-1:-1;;20550:249:1:o;20804:135::-;20843:3;-1:-1:-1;;20864:17:1;;20861:43;;;20884:18;;:::i;:::-;-1:-1:-1;20931:1:1;20920:13;;20804:135::o;20944:112::-;20976:1;21002;20992:35;;21007:18;;:::i;:::-;-1:-1:-1;21041:9:1;;20944:112::o;21061:127::-;21122:10;21117:3;21113:20;21110:1;21103:31;21153:4;21150:1;21143:15;21177:4;21174:1;21167:15;21193:127;21254:10;21249:3;21245:20;21242:1;21235:31;21285:4;21282:1;21275:15;21309:4;21306:1;21299:15;21325:127;21386:10;21381:3;21377:20;21374:1;21367:31;21417:4;21414:1;21407:15;21441:4;21438:1;21431:15;21457:127;21518:10;21513:3;21509:20;21506:1;21499:31;21549:4;21546:1;21539:15;21573:4;21570:1;21563:15;21589:179;21624:3;21666:1;21648:16;21645:23;21642:120;;;21712:1;21709;21706;21691:23;-1:-1:-1;21749:1:1;21743:8;21738:3;21734:18;21642:120;21589:179;:::o;21773:671::-;21812:3;21854:4;21836:16;21833:26;21830:39;;;21773:671;:::o;21830:39::-;21896:2;21890:9;-1:-1:-1;;21961:16:1;21957:25;;21954:1;21890:9;21933:50;22012:4;22006:11;22036:16;22071:18;22142:2;22135:4;22127:6;22123:17;22120:25;22115:2;22107:6;22104:14;22101:45;22098:58;;;22149:5;;;;;21773:671;:::o;22098:58::-;22186:6;22180:4;22176:17;22165:28;;22222:3;22216:10;22249:2;22241:6;22238:14;22235:27;;;22255:5;;;;;;21773:671;:::o;22235:27::-;22339:2;22320:16;22314:4;22310:27;22306:36;22299:4;22290:6;22285:3;22281:16;22277:27;22274:69;22271:82;;;22346:5;;;;;;21773:671;:::o;22271:82::-;22362:57;22413:4;22404:6;22396;22392:19;22388:30;22382:4;22362:57;:::i;:::-;-1:-1:-1;22435:3:1;;21773:671;-1:-1:-1;;;;;21773:671:1:o;22449:131::-;-1:-1:-1;;;;;;22523:32:1;;22513:43;;22503:71;;22570:1;22567;22560:12

Swarm Source

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