ETH Price: $2,354.38 (+0.27%)

Dead Neighbors ()
 

Overview

TokenID

8

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
DeadNeighbors

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 3 of 14: DeadNeighbors.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import "./Ownable.sol";
import "./ERC1155Supply.sol";
import "./SafeMath.sol";
import "./Strings.sol";

contract DeadNeighbors is ERC1155Supply, Ownable {
    using SafeMath for uint256;

    string public name = "Dead Neighbors";
    bool private isPublicSaleActive = false;
    uint256 private collectionsCount = 2000;
    uint256[] collection1 = [1, 2, 3, 4, 5];
    uint256[] collection2 = [6, 7, 8, 9, 10];
    uint256[] amount = [1, 1, 1, 1, 1];

    constructor() ERC1155("https://storage.googleapis.com/nbrs.io/dead-neighbors/{id}.json") {}

    function togglePublicSale() external onlyOwner {
        isPublicSaleActive = !isPublicSaleActive;
    }

    function reserve(address to) external onlyOwner {
        require(collectionsCount > 1, "Not enough supply");

        _mintBatch(to, collection1, amount, "");
        collectionsCount--;
        _mintBatch(to, collection2, amount, "");
        collectionsCount--;
    }

    function mint() external payable {
        require(isPublicSaleActive, "Mint is not active.");
        require(collectionsCount > 0, "Not enough supply");

        if (collectionsCount % 2 == 0) {
            _mintBatch(msg.sender, collection1, amount, "");
        } else {
            _mintBatch(msg.sender, collection2, amount, "");
        }
        collectionsCount--;
    }

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

    function contractURI() public pure returns (string memory) {
        return "https://nbrs.io/opensea/dead_neighbors.json";
    }

    function uri(uint256 _tokenId) override public pure returns (string memory) {
        return string(
            abi.encodePacked(
                "https://storage.googleapis.com/nbrs.io/dead-neighbors/",
                Strings.toString(_tokenId),".json"
            )
        );
    }
}

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 2 of 14: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

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

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

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

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

        return array;
    }
}

File 5 of 14: ERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/utils/ERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "./IERC1155Receiver.sol";
import "./ERC165.sol";

/**
 * @dev _Available since v3.1._
 */
abstract contract ERC1155Receiver is ERC165, IERC1155Receiver {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId);
    }
}

File 6 of 14: ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

import "./ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] -= amounts[i];
            }
        }
    }
}

File 7 of 14: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

File 9 of 14: IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";

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

File 10 of 14: IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

File 11 of 14: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 13 of 14: SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600e60808190526d44656164204e65696768626f727360901b60a0908152620000319160059190620001a7565b506006805460ff191690556107d06007556040805160a0810182526001815260026020820152600391810191909152600460608201526005608082018190526200007e9160089162000236565b506040805160a0810182526006815260076020820152600891810191909152600960608201819052600a6080830152620000ba91600562000236565b506040805160a081018252600180825260208201819052918101829052606081018290526080810191909152620000f690600a90600562000236565b503480156200010457600080fd5b506040518060600160405280603f81526020016200242c603f91396200012a816200013c565b50620001363362000155565b620002cc565b805162000151906002906020840190620001a7565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b59062000290565b90600052602060002090601f016020900481019282620001d9576000855562000224565b82601f10620001f457805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022457825182559160200191906001019062000207565b506200023292915062000279565b5090565b82805482825590600052602060002090810192821562000224579160200282015b8281111562000224578251829060ff1690559160200191906001019062000257565b5b808211156200023257600081556001016200027a565b600181811c90821680620002a557607f821691505b602082108103620002c657634e487b7160e01b600052602260045260246000fd5b50919050565b61215080620002dc6000396000f3fe6080604052600436106101135760003560e01c8063715018a6116100a0578063e75179a411610064578063e75179a4146102f7578063e8a3d48514610317578063e985e9c51461032c578063f242432a14610375578063f2fde38b1461039557600080fd5b8063715018a6146102585780638da5cb5b1461026d578063a22cb46514610295578063bd85b039146102b5578063e222c7f9146102e257600080fd5b80631249c58b116100e75780631249c58b146101bd5780632eb2c2d6146101c75780633ccfd60b146101e75780634e1273f4146101fc5780634f558e791461022957600080fd5b8062fdd58e1461011857806301ffc9a71461014b57806306fdde031461017b5780630e89341c1461019d575b600080fd5b34801561012457600080fd5b506101386101333660046117a7565b6103b5565b6040519081526020015b60405180910390f35b34801561015757600080fd5b5061016b6101663660046117e7565b61044c565b6040519015158152602001610142565b34801561018757600080fd5b5061019061049e565b6040516101429190611867565b3480156101a957600080fd5b506101906101b836600461187a565b61052c565b6101c561055d565b005b3480156101d357600080fd5b506101c56101e23660046119df565b61078f565b3480156101f357600080fd5b506101c5610826565b34801561020857600080fd5b5061021c610217366004611a89565b610883565b6040516101429190611b8f565b34801561023557600080fd5b5061016b61024436600461187a565b600090815260036020526040902054151590565b34801561026457600080fd5b506101c56109ad565b34801561027957600080fd5b506004546040516001600160a01b039091168152602001610142565b3480156102a157600080fd5b506101c56102b0366004611ba2565b6109e3565b3480156102c157600080fd5b506101386102d036600461187a565b60009081526003602052604090205490565b3480156102ee57600080fd5b506101c56109ee565b34801561030357600080fd5b506101c5610312366004611bde565b610a2c565b34801561032357600080fd5b50610190610c37565b34801561033857600080fd5b5061016b610347366004611bf9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561038157600080fd5b506101c5610390366004611c2c565b610c57565b3480156103a157600080fd5b506101c56103b0366004611bde565b610cde565b60006001600160a01b0383166104265760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061047d57506001600160e01b031982166303a24d0760e21b145b8061049857506301ffc9a760e01b6001600160e01b03198316145b92915050565b600580546104ab90611c91565b80601f01602080910402602001604051908101604052809291908181526020018280546104d790611c91565b80156105245780601f106104f957610100808354040283529160200191610524565b820191906000526020600020905b81548152906001019060200180831161050757829003601f168201915b505050505081565b606061053782610d79565b6040516020016105479190611ccb565b6040516020818303038152906040529050919050565b60065460ff166105a55760405162461bcd60e51b815260206004820152601360248201527226b4b73a1034b9903737ba1030b1ba34bb329760691b604482015260640161041d565b6000600754116105eb5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b604482015260640161041d565b60026007546105fa9190611d54565b6000036106c1576106bc33600880548060200260200160405190810160405280929190818152602001828054801561065157602002820191906000526020600020905b81548152602001906001019080831161063d575b5050505050600a8054806020026020016040519081016040528092919081815260200182805480156106a257602002820191906000526020600020905b81548152602001906001019080831161068e575b505050505060405180602001604052806000815250610e82565b610778565b610778336009805480602002602001604051908101604052809291908181526020018280548015610651576020028201919060005260206000209081548152602001906001019080831161063d575050505050600a8054806020026020016040519081016040528092919081815260200182805480156106a2576020028201919060005260206000209081548152602001906001019080831161068e57505050505060405180602001604052806000815250610e82565b6007805490600061078883611d7e565b9190505550565b6001600160a01b0385163314806107ab57506107ab8533610347565b6108125760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161041d565b61081f8585858585611016565b5050505050565b6004546001600160a01b031633146108505760405162461bcd60e51b815260040161041d90611d95565b6040514790339082156108fc029083906000818181858888f1935050505015801561087f573d6000803e3d6000fd5b5050565b606081518351146108e85760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161041d565b6000835167ffffffffffffffff81111561090457610904611893565b60405190808252806020026020018201604052801561092d578160200160208202803683370190505b50905060005b84518110156109a55761097885828151811061095157610951611dca565b602002602001015185838151811061096b5761096b611dca565b60200260200101516103b5565b82828151811061098a5761098a611dca565b602090810291909101015261099e81611de0565b9050610933565b509392505050565b6004546001600160a01b031633146109d75760405162461bcd60e51b815260040161041d90611d95565b6109e160006111c0565b565b61087f338383611212565b6004546001600160a01b03163314610a185760405162461bcd60e51b815260040161041d90611d95565b6006805460ff19811660ff90911615179055565b6004546001600160a01b03163314610a565760405162461bcd60e51b815260040161041d90611d95565b600160075411610a9c5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b604482015260640161041d565b610b53816008805480602002602001604051908101604052809291908181526020018280548015610651576020028201919060005260206000209081548152602001906001019080831161063d575050505050600a8054806020026020016040519081016040528092919081815260200182805480156106a2576020028201919060005260206000209081548152602001906001019080831161068e57505050505060405180602001604052806000815250610e82565b60078054906000610b6383611d7e565b9190505550610c1f816009805480602002602001604051908101604052809291908181526020018280548015610651576020028201919060005260206000209081548152602001906001019080831161063d575050505050600a8054806020026020016040519081016040528092919081815260200182805480156106a2576020028201919060005260206000209081548152602001906001019080831161068e57505050505060405180602001604052806000815250610e82565b60078054906000610c2f83611d7e565b919050555050565b60606040518060600160405280602b81526020016120f0602b9139905090565b6001600160a01b038516331480610c735750610c738533610347565b610cd15760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161041d565b61081f85858585856112f2565b6004546001600160a01b03163314610d085760405162461bcd60e51b815260040161041d90611d95565b6001600160a01b038116610d6d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161041d565b610d76816111c0565b50565b606081600003610da05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610dca5780610db481611de0565b9150610dc39050600a83611df9565b9150610da4565b60008167ffffffffffffffff811115610de557610de5611893565b6040519080825280601f01601f191660200182016040528015610e0f576020820181803683370190505b5090505b8415610e7a57610e24600183611e0d565b9150610e31600a86611d54565b610e3c906030611e24565b60f81b818381518110610e5157610e51611dca565b60200101906001600160f81b031916908160001a905350610e73600a86611df9565b9450610e13565b949350505050565b6001600160a01b038416610ee25760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161041d565b8151835114610f035760405162461bcd60e51b815260040161041d90611e3c565b33610f138160008787878761141e565b60005b8451811015610fae57838181518110610f3157610f31611dca565b6020026020010151600080878481518110610f4e57610f4e611dca565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254610f969190611e24565b90915550819050610fa681611de0565b915050610f16565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610fff929190611e84565b60405180910390a461081f8160008787878761152a565b81518351146110375760405162461bcd60e51b815260040161041d90611e3c565b6001600160a01b03841661105d5760405162461bcd60e51b815260040161041d90611eb2565b3361106c81878787878761141e565b60005b845181101561115257600085828151811061108c5761108c611dca565b6020026020010151905060008583815181106110aa576110aa611dca565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156110fa5760405162461bcd60e51b815260040161041d90611ef7565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611137908490611e24565b925050819055505050508061114b90611de0565b905061106f565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516111a2929190611e84565b60405180910390a46111b881878787878761152a565b505050505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036112855760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161041d565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166113185760405162461bcd60e51b815260040161041d90611eb2565b3361133781878761132888611685565b61133188611685565b8761141e565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156113785760405162461bcd60e51b815260040161041d90611ef7565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906113b5908490611e24565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46114158288888888886116d0565b50505050505050565b6001600160a01b0385166114a55760005b83518110156114a35782818151811061144a5761144a611dca565b60200260200101516003600086848151811061146857611468611dca565b60200260200101518152602001908152602001600020600082825461148d9190611e24565b9091555061149c905081611de0565b905061142f565b505b6001600160a01b0384166111b85760005b8351811015611415578281815181106114d1576114d1611dca565b6020026020010151600360008684815181106114ef576114ef611dca565b6020026020010151815260200190815260200160002060008282546115149190611e0d565b90915550611523905081611de0565b90506114b6565b6001600160a01b0384163b156111b85760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061156e9089908990889088908890600401611f41565b6020604051808303816000875af19250505080156115a9575060408051601f3d908101601f191682019092526115a691810190611f9f565b60015b611655576115b5611fbc565b806308c379a0036115ee57506115c9611fd8565b806115d457506115f0565b8060405162461bcd60e51b815260040161041d9190611867565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161041d565b6001600160e01b0319811663bc197c8160e01b146114155760405162461bcd60e51b815260040161041d90612062565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106116bf576116bf611dca565b602090810291909101015292915050565b6001600160a01b0384163b156111b85760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061171490899089908890889088906004016120aa565b6020604051808303816000875af192505050801561174f575060408051601f3d908101601f1916820190925261174c91810190611f9f565b60015b61175b576115b5611fbc565b6001600160e01b0319811663f23a6e6160e01b146114155760405162461bcd60e51b815260040161041d90612062565b80356001600160a01b03811681146117a257600080fd5b919050565b600080604083850312156117ba57600080fd5b6117c38361178b565b946020939093013593505050565b6001600160e01b031981168114610d7657600080fd5b6000602082840312156117f957600080fd5b8135611804816117d1565b9392505050565b60005b8381101561182657818101518382015260200161180e565b83811115611835576000848401525b50505050565b6000815180845261185381602086016020860161180b565b601f01601f19169290920160200192915050565b602081526000611804602083018461183b565b60006020828403121561188c57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156118cf576118cf611893565b6040525050565b600067ffffffffffffffff8211156118f0576118f0611893565b5060051b60200190565b600082601f83011261190b57600080fd5b81356020611918826118d6565b60405161192582826118a9565b83815260059390931b850182019282810191508684111561194557600080fd5b8286015b848110156119605780358352918301918301611949565b509695505050505050565b600082601f83011261197c57600080fd5b813567ffffffffffffffff81111561199657611996611893565b6040516119ad601f8301601f1916602001826118a9565b8181528460208386010111156119c257600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a086880312156119f757600080fd5b611a008661178b565b9450611a0e6020870161178b565b9350604086013567ffffffffffffffff80821115611a2b57600080fd5b611a3789838a016118fa565b94506060880135915080821115611a4d57600080fd5b611a5989838a016118fa565b93506080880135915080821115611a6f57600080fd5b50611a7c8882890161196b565b9150509295509295909350565b60008060408385031215611a9c57600080fd5b823567ffffffffffffffff80821115611ab457600080fd5b818501915085601f830112611ac857600080fd5b81356020611ad5826118d6565b604051611ae282826118a9565b83815260059390931b8501820192828101915089841115611b0257600080fd5b948201945b83861015611b2757611b188661178b565b82529482019490820190611b07565b96505086013592505080821115611b3d57600080fd5b50611b4a858286016118fa565b9150509250929050565b600081518084526020808501945080840160005b83811015611b8457815187529582019590820190600101611b68565b509495945050505050565b6020815260006118046020830184611b54565b60008060408385031215611bb557600080fd5b611bbe8361178b565b915060208301358015158114611bd357600080fd5b809150509250929050565b600060208284031215611bf057600080fd5b6118048261178b565b60008060408385031215611c0c57600080fd5b611c158361178b565b9150611c236020840161178b565b90509250929050565b600080600080600060a08688031215611c4457600080fd5b611c4d8661178b565b9450611c5b6020870161178b565b93506040860135925060608601359150608086013567ffffffffffffffff811115611c8557600080fd5b611a7c8882890161196b565b600181811c90821680611ca557607f821691505b602082108103611cc557634e487b7160e01b600052602260045260246000fd5b50919050565b7f68747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f6e8152756272732e696f2f646561642d6e65696768626f72732f60501b602082015260008251611d2281603685016020870161180b565b64173539b7b760d91b6036939091019283015250603b01919050565b634e487b7160e01b600052601260045260246000fd5b600082611d6357611d63611d3e565b500690565b634e487b7160e01b600052601160045260246000fd5b600081611d8d57611d8d611d68565b506000190190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060018201611df257611df2611d68565b5060010190565b600082611e0857611e08611d3e565b500490565b600082821015611e1f57611e1f611d68565b500390565b60008219821115611e3757611e37611d68565b500190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b604081526000611e976040830185611b54565b8281036020840152611ea98185611b54565b95945050505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090611f6d90830186611b54565b8281036060840152611f7f8186611b54565b90508281036080840152611f93818561183b565b98975050505050505050565b600060208284031215611fb157600080fd5b8151611804816117d1565b600060033d1115611fd55760046000803e5060005160e01c5b90565b600060443d1015611fe65790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561201657505050505090565b828501915081518181111561202e5750505050505090565b843d87010160208285010111156120485750505050505090565b612057602082860101876118a9565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906120e49083018461183b565b97965050505050505056fe68747470733a2f2f6e6272732e696f2f6f70656e7365612f646561645f6e65696768626f72732e6a736f6ea2646970667358221220b78acb4be642f590e21e8178c9d3d79f49737eddb64396929393a9afe98e9f9e64736f6c634300080d003368747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f6e6272732e696f2f646561642d6e65696768626f72732f7b69647d2e6a736f6e

Deployed Bytecode

0x6080604052600436106101135760003560e01c8063715018a6116100a0578063e75179a411610064578063e75179a4146102f7578063e8a3d48514610317578063e985e9c51461032c578063f242432a14610375578063f2fde38b1461039557600080fd5b8063715018a6146102585780638da5cb5b1461026d578063a22cb46514610295578063bd85b039146102b5578063e222c7f9146102e257600080fd5b80631249c58b116100e75780631249c58b146101bd5780632eb2c2d6146101c75780633ccfd60b146101e75780634e1273f4146101fc5780634f558e791461022957600080fd5b8062fdd58e1461011857806301ffc9a71461014b57806306fdde031461017b5780630e89341c1461019d575b600080fd5b34801561012457600080fd5b506101386101333660046117a7565b6103b5565b6040519081526020015b60405180910390f35b34801561015757600080fd5b5061016b6101663660046117e7565b61044c565b6040519015158152602001610142565b34801561018757600080fd5b5061019061049e565b6040516101429190611867565b3480156101a957600080fd5b506101906101b836600461187a565b61052c565b6101c561055d565b005b3480156101d357600080fd5b506101c56101e23660046119df565b61078f565b3480156101f357600080fd5b506101c5610826565b34801561020857600080fd5b5061021c610217366004611a89565b610883565b6040516101429190611b8f565b34801561023557600080fd5b5061016b61024436600461187a565b600090815260036020526040902054151590565b34801561026457600080fd5b506101c56109ad565b34801561027957600080fd5b506004546040516001600160a01b039091168152602001610142565b3480156102a157600080fd5b506101c56102b0366004611ba2565b6109e3565b3480156102c157600080fd5b506101386102d036600461187a565b60009081526003602052604090205490565b3480156102ee57600080fd5b506101c56109ee565b34801561030357600080fd5b506101c5610312366004611bde565b610a2c565b34801561032357600080fd5b50610190610c37565b34801561033857600080fd5b5061016b610347366004611bf9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561038157600080fd5b506101c5610390366004611c2c565b610c57565b3480156103a157600080fd5b506101c56103b0366004611bde565b610cde565b60006001600160a01b0383166104265760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061047d57506001600160e01b031982166303a24d0760e21b145b8061049857506301ffc9a760e01b6001600160e01b03198316145b92915050565b600580546104ab90611c91565b80601f01602080910402602001604051908101604052809291908181526020018280546104d790611c91565b80156105245780601f106104f957610100808354040283529160200191610524565b820191906000526020600020905b81548152906001019060200180831161050757829003601f168201915b505050505081565b606061053782610d79565b6040516020016105479190611ccb565b6040516020818303038152906040529050919050565b60065460ff166105a55760405162461bcd60e51b815260206004820152601360248201527226b4b73a1034b9903737ba1030b1ba34bb329760691b604482015260640161041d565b6000600754116105eb5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b604482015260640161041d565b60026007546105fa9190611d54565b6000036106c1576106bc33600880548060200260200160405190810160405280929190818152602001828054801561065157602002820191906000526020600020905b81548152602001906001019080831161063d575b5050505050600a8054806020026020016040519081016040528092919081815260200182805480156106a257602002820191906000526020600020905b81548152602001906001019080831161068e575b505050505060405180602001604052806000815250610e82565b610778565b610778336009805480602002602001604051908101604052809291908181526020018280548015610651576020028201919060005260206000209081548152602001906001019080831161063d575050505050600a8054806020026020016040519081016040528092919081815260200182805480156106a2576020028201919060005260206000209081548152602001906001019080831161068e57505050505060405180602001604052806000815250610e82565b6007805490600061078883611d7e565b9190505550565b6001600160a01b0385163314806107ab57506107ab8533610347565b6108125760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161041d565b61081f8585858585611016565b5050505050565b6004546001600160a01b031633146108505760405162461bcd60e51b815260040161041d90611d95565b6040514790339082156108fc029083906000818181858888f1935050505015801561087f573d6000803e3d6000fd5b5050565b606081518351146108e85760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161041d565b6000835167ffffffffffffffff81111561090457610904611893565b60405190808252806020026020018201604052801561092d578160200160208202803683370190505b50905060005b84518110156109a55761097885828151811061095157610951611dca565b602002602001015185838151811061096b5761096b611dca565b60200260200101516103b5565b82828151811061098a5761098a611dca565b602090810291909101015261099e81611de0565b9050610933565b509392505050565b6004546001600160a01b031633146109d75760405162461bcd60e51b815260040161041d90611d95565b6109e160006111c0565b565b61087f338383611212565b6004546001600160a01b03163314610a185760405162461bcd60e51b815260040161041d90611d95565b6006805460ff19811660ff90911615179055565b6004546001600160a01b03163314610a565760405162461bcd60e51b815260040161041d90611d95565b600160075411610a9c5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b604482015260640161041d565b610b53816008805480602002602001604051908101604052809291908181526020018280548015610651576020028201919060005260206000209081548152602001906001019080831161063d575050505050600a8054806020026020016040519081016040528092919081815260200182805480156106a2576020028201919060005260206000209081548152602001906001019080831161068e57505050505060405180602001604052806000815250610e82565b60078054906000610b6383611d7e565b9190505550610c1f816009805480602002602001604051908101604052809291908181526020018280548015610651576020028201919060005260206000209081548152602001906001019080831161063d575050505050600a8054806020026020016040519081016040528092919081815260200182805480156106a2576020028201919060005260206000209081548152602001906001019080831161068e57505050505060405180602001604052806000815250610e82565b60078054906000610c2f83611d7e565b919050555050565b60606040518060600160405280602b81526020016120f0602b9139905090565b6001600160a01b038516331480610c735750610c738533610347565b610cd15760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161041d565b61081f85858585856112f2565b6004546001600160a01b03163314610d085760405162461bcd60e51b815260040161041d90611d95565b6001600160a01b038116610d6d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161041d565b610d76816111c0565b50565b606081600003610da05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610dca5780610db481611de0565b9150610dc39050600a83611df9565b9150610da4565b60008167ffffffffffffffff811115610de557610de5611893565b6040519080825280601f01601f191660200182016040528015610e0f576020820181803683370190505b5090505b8415610e7a57610e24600183611e0d565b9150610e31600a86611d54565b610e3c906030611e24565b60f81b818381518110610e5157610e51611dca565b60200101906001600160f81b031916908160001a905350610e73600a86611df9565b9450610e13565b949350505050565b6001600160a01b038416610ee25760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161041d565b8151835114610f035760405162461bcd60e51b815260040161041d90611e3c565b33610f138160008787878761141e565b60005b8451811015610fae57838181518110610f3157610f31611dca565b6020026020010151600080878481518110610f4e57610f4e611dca565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254610f969190611e24565b90915550819050610fa681611de0565b915050610f16565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610fff929190611e84565b60405180910390a461081f8160008787878761152a565b81518351146110375760405162461bcd60e51b815260040161041d90611e3c565b6001600160a01b03841661105d5760405162461bcd60e51b815260040161041d90611eb2565b3361106c81878787878761141e565b60005b845181101561115257600085828151811061108c5761108c611dca565b6020026020010151905060008583815181106110aa576110aa611dca565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156110fa5760405162461bcd60e51b815260040161041d90611ef7565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611137908490611e24565b925050819055505050508061114b90611de0565b905061106f565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516111a2929190611e84565b60405180910390a46111b881878787878761152a565b505050505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036112855760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161041d565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166113185760405162461bcd60e51b815260040161041d90611eb2565b3361133781878761132888611685565b61133188611685565b8761141e565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156113785760405162461bcd60e51b815260040161041d90611ef7565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906113b5908490611e24565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46114158288888888886116d0565b50505050505050565b6001600160a01b0385166114a55760005b83518110156114a35782818151811061144a5761144a611dca565b60200260200101516003600086848151811061146857611468611dca565b60200260200101518152602001908152602001600020600082825461148d9190611e24565b9091555061149c905081611de0565b905061142f565b505b6001600160a01b0384166111b85760005b8351811015611415578281815181106114d1576114d1611dca565b6020026020010151600360008684815181106114ef576114ef611dca565b6020026020010151815260200190815260200160002060008282546115149190611e0d565b90915550611523905081611de0565b90506114b6565b6001600160a01b0384163b156111b85760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061156e9089908990889088908890600401611f41565b6020604051808303816000875af19250505080156115a9575060408051601f3d908101601f191682019092526115a691810190611f9f565b60015b611655576115b5611fbc565b806308c379a0036115ee57506115c9611fd8565b806115d457506115f0565b8060405162461bcd60e51b815260040161041d9190611867565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161041d565b6001600160e01b0319811663bc197c8160e01b146114155760405162461bcd60e51b815260040161041d90612062565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106116bf576116bf611dca565b602090810291909101015292915050565b6001600160a01b0384163b156111b85760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061171490899089908890889088906004016120aa565b6020604051808303816000875af192505050801561174f575060408051601f3d908101601f1916820190925261174c91810190611f9f565b60015b61175b576115b5611fbc565b6001600160e01b0319811663f23a6e6160e01b146114155760405162461bcd60e51b815260040161041d90612062565b80356001600160a01b03811681146117a257600080fd5b919050565b600080604083850312156117ba57600080fd5b6117c38361178b565b946020939093013593505050565b6001600160e01b031981168114610d7657600080fd5b6000602082840312156117f957600080fd5b8135611804816117d1565b9392505050565b60005b8381101561182657818101518382015260200161180e565b83811115611835576000848401525b50505050565b6000815180845261185381602086016020860161180b565b601f01601f19169290920160200192915050565b602081526000611804602083018461183b565b60006020828403121561188c57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156118cf576118cf611893565b6040525050565b600067ffffffffffffffff8211156118f0576118f0611893565b5060051b60200190565b600082601f83011261190b57600080fd5b81356020611918826118d6565b60405161192582826118a9565b83815260059390931b850182019282810191508684111561194557600080fd5b8286015b848110156119605780358352918301918301611949565b509695505050505050565b600082601f83011261197c57600080fd5b813567ffffffffffffffff81111561199657611996611893565b6040516119ad601f8301601f1916602001826118a9565b8181528460208386010111156119c257600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a086880312156119f757600080fd5b611a008661178b565b9450611a0e6020870161178b565b9350604086013567ffffffffffffffff80821115611a2b57600080fd5b611a3789838a016118fa565b94506060880135915080821115611a4d57600080fd5b611a5989838a016118fa565b93506080880135915080821115611a6f57600080fd5b50611a7c8882890161196b565b9150509295509295909350565b60008060408385031215611a9c57600080fd5b823567ffffffffffffffff80821115611ab457600080fd5b818501915085601f830112611ac857600080fd5b81356020611ad5826118d6565b604051611ae282826118a9565b83815260059390931b8501820192828101915089841115611b0257600080fd5b948201945b83861015611b2757611b188661178b565b82529482019490820190611b07565b96505086013592505080821115611b3d57600080fd5b50611b4a858286016118fa565b9150509250929050565b600081518084526020808501945080840160005b83811015611b8457815187529582019590820190600101611b68565b509495945050505050565b6020815260006118046020830184611b54565b60008060408385031215611bb557600080fd5b611bbe8361178b565b915060208301358015158114611bd357600080fd5b809150509250929050565b600060208284031215611bf057600080fd5b6118048261178b565b60008060408385031215611c0c57600080fd5b611c158361178b565b9150611c236020840161178b565b90509250929050565b600080600080600060a08688031215611c4457600080fd5b611c4d8661178b565b9450611c5b6020870161178b565b93506040860135925060608601359150608086013567ffffffffffffffff811115611c8557600080fd5b611a7c8882890161196b565b600181811c90821680611ca557607f821691505b602082108103611cc557634e487b7160e01b600052602260045260246000fd5b50919050565b7f68747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f6e8152756272732e696f2f646561642d6e65696768626f72732f60501b602082015260008251611d2281603685016020870161180b565b64173539b7b760d91b6036939091019283015250603b01919050565b634e487b7160e01b600052601260045260246000fd5b600082611d6357611d63611d3e565b500690565b634e487b7160e01b600052601160045260246000fd5b600081611d8d57611d8d611d68565b506000190190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060018201611df257611df2611d68565b5060010190565b600082611e0857611e08611d3e565b500490565b600082821015611e1f57611e1f611d68565b500390565b60008219821115611e3757611e37611d68565b500190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b604081526000611e976040830185611b54565b8281036020840152611ea98185611b54565b95945050505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090611f6d90830186611b54565b8281036060840152611f7f8186611b54565b90508281036080840152611f93818561183b565b98975050505050505050565b600060208284031215611fb157600080fd5b8151611804816117d1565b600060033d1115611fd55760046000803e5060005160e01c5b90565b600060443d1015611fe65790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561201657505050505090565b828501915081518181111561202e5750505050505090565b843d87010160208285010111156120485750505050505090565b612057602082860101876118a9565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906120e49083018461183b565b97965050505050505056fe68747470733a2f2f6e6272732e696f2f6f70656e7365612f646561645f6e65696768626f72732e6a736f6ea2646970667358221220b78acb4be642f590e21e8178c9d3d79f49737eddb64396929393a9afe98e9f9e64736f6c634300080d0033

Deployed Bytecode Sourcemap

169:1842:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2115:228:3;;;;;;;;;;-1:-1:-1;2115:228:3;;;;;:::i;:::-;;:::i;:::-;;;597:25:14;;;585:2;570:18;2115:228:3;;;;;;;;1166:305;;;;;;;;;;-1:-1:-1;1166:305:3;;;;;:::i;:::-;;:::i;:::-;;;1184:14:14;;1177:22;1159:41;;1147:2;1132:18;1166:305:3;1019:187:14;260:37:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1715:293::-;;;;;;;;;;-1:-1:-1;1715:293:2;;;;;:::i;:::-;;:::i;1030:389::-;;;:::i;:::-;;3990:430:3;;;;;;;;;;-1:-1:-1;3990:430:3;;;;;:::i;:::-;;:::i;1427:142:2:-;;;;;;;;;;;;;:::i;2500:508:3:-;;;;;;;;;;-1:-1:-1;2500:508:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;885:120:5:-;;;;;;;;;;-1:-1:-1;885:120:5;;;;;:::i;:::-;942:4;769:16;;;:12;:16;;;;;;-1:-1:-1;;;885:120:5;1661:101:11;;;;;;;;;;;;;:::i;1029:85::-;;;;;;;;;;-1:-1:-1;1101:6:11;;1029:85;;-1:-1:-1;;;;;1101:6:11;;;7023:51:14;;7011:2;6996:18;1029:85:11;6877:203:14;3076:153:3;;;;;;;;;;-1:-1:-1;3076:153:3;;;;;:::i;:::-;;:::i;681:111:5:-;;;;;;;;;;-1:-1:-1;681:111:5;;;;;:::i;:::-;743:7;769:16;;;:12;:16;;;;;;;681:111;631:106:2;;;;;;;;;;;;;:::i;745:277::-;;;;;;;;;;-1:-1:-1;745:277:2;;;;;:::i;:::-;;:::i;1577:130::-;;;;;;;;;;;;;:::i;3296:166:3:-;;;;;;;;;;-1:-1:-1;3296:166:3;;;;;:::i;:::-;-1:-1:-1;;;;;3418:27:3;;;3395:4;3418:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;3296:166;3529:389;;;;;;;;;;-1:-1:-1;3529:389:3;;;;;:::i;:::-;;:::i;1911:198:11:-;;;;;;;;;;-1:-1:-1;1911:198:11;;;;;:::i;:::-;;:::i;2115:228:3:-;2201:7;-1:-1:-1;;;;;2228:21:3;;2220:77;;;;-1:-1:-1;;;2220:77:3;;8706:2:14;2220:77:3;;;8688:21:14;8745:2;8725:18;;;8718:30;8784:34;8764:18;;;8757:62;-1:-1:-1;;;8835:18:14;;;8828:41;8886:19;;2220:77:3;;;;;;;;;-1:-1:-1;2314:9:3;:13;;;;;;;;;;;-1:-1:-1;;;;;2314:22:3;;;;;;;;;;;;2115:228::o;1166:305::-;1268:4;-1:-1:-1;;;;;;1303:41:3;;-1:-1:-1;;;1303:41:3;;:109;;-1:-1:-1;;;;;;;1360:52:3;;-1:-1:-1;;;1360:52:3;1303:109;:161;;;-1:-1:-1;;;;;;;;;;937:40:6;;;1428:36:3;1284:180;1166:305;-1:-1:-1;;1166:305:3:o;260:37:2:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1715:293::-;1776:13;1940:26;1957:8;1940:16;:26::i;:::-;1830:159;;;;;;;;:::i;:::-;;;;;;;;;;;;;1802:198;;1715:293;;;:::o;1030:389::-;1082:18;;;;1074:50;;;;-1:-1:-1;;;1074:50:2;;10171:2:14;1074:50:2;;;10153:21:14;10210:2;10190:18;;;10183:30;-1:-1:-1;;;10229:18:14;;;10222:49;10288:18;;1074:50:2;9969:343:14;1074:50:2;1162:1;1143:16;;:20;1135:50;;;;-1:-1:-1;;;1135:50:2;;10519:2:14;1135:50:2;;;10501:21:14;10558:2;10538:18;;;10531:30;-1:-1:-1;;;10577:18:14;;;10570:47;10634:18;;1135:50:2;10317:341:14;1135:50:2;1221:1;1202:16;;:20;;;;:::i;:::-;1226:1;1202:25;1198:185;;1244:47;1255:10;1267:11;1244:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1280:6;1244:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;:47::i;:::-;1198:185;;;1324:47;1335:10;1347:11;1324:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1360:6;1324:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;:47::i;:::-;1393:16;:18;;;:16;:18;;;:::i;:::-;;;;;;1030:389::o;3990:430:3:-;-1:-1:-1;;;;;4215:20:3;;719:10:1;4215:20:3;;:60;;-1:-1:-1;4239:36:3;4256:4;719:10:1;3296:166:3;:::i;4239:36::-;4194:157;;;;-1:-1:-1;;;4194:157:3;;11387:2:14;4194:157:3;;;11369:21:14;11426:2;11406:18;;;11399:30;11465:34;11445:18;;;11438:62;-1:-1:-1;;;11516:18:14;;;11509:48;11574:19;;4194:157:3;11185:414:14;4194:157:3;4361:52;4384:4;4390:2;4394:3;4399:7;4408:4;4361:22;:52::i;:::-;3990:430;;;;;:::o;1427:142:2:-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1524:37:2::1;::::0;1492:21:::1;::::0;1532:10:::1;::::0;1524:37;::::1;;;::::0;1492:21;;1477:12:::1;1524:37:::0;1477:12;1524:37;1492:21;1532:10;1524:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1466:103;1427:142::o:0;2500:508:3:-;2651:16;2710:3;:10;2691:8;:15;:29;2683:83;;;;-1:-1:-1;;;2683:83:3;;12167:2:14;2683:83:3;;;12149:21:14;12206:2;12186:18;;;12179:30;12245:34;12225:18;;;12218:62;-1:-1:-1;;;12296:18:14;;;12289:39;12345:19;;2683:83:3;11965:405:14;2683:83:3;2777:30;2824:8;:15;2810:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2810:30:3;;2777:63;;2856:9;2851:120;2875:8;:15;2871:1;:19;2851:120;;;2930:30;2940:8;2949:1;2940:11;;;;;;;;:::i;:::-;;;;;;;2953:3;2957:1;2953:6;;;;;;;;:::i;:::-;;;;;;;2930:9;:30::i;:::-;2911:13;2925:1;2911:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;2892:3;;;:::i;:::-;;;2851:120;;;-1:-1:-1;2988:13:3;2500:508;-1:-1:-1;;;2500:508:3:o;1661:101:11:-;1101:6;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;3076:153:3:-;3170:52;719:10:1;3203:8:3;3213;3170:18;:52::i;631:106:2:-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;711:18:2::1;::::0;;-1:-1:-1;;689:40:2;::::1;711:18;::::0;;::::1;710:19;689:40;::::0;;631:106::o;745:277::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;831:1:2::1;812:16;;:20;804:50;;;::::0;-1:-1:-1;;;804:50:2;;10519:2:14;804:50:2::1;::::0;::::1;10501:21:14::0;10558:2;10538:18;;;10531:30;-1:-1:-1;;;10577:18:14;;;10570:47;10634:18;;804:50:2::1;10317:341:14::0;804:50:2::1;867:39;878:2;882:11;867:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;895:6;867:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;:10:::1;:39::i;:::-;917:16;:18:::0;;;:16:::1;:18;::::0;::::1;:::i;:::-;;;;;;946:39;957:2;961:11;946:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;974:6;946:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;:10:::1;:39::i;:::-;996:16;:18:::0;;;:16:::1;:18;::::0;::::1;:::i;:::-;;;;;;745:277:::0;:::o;1577:130::-;1621:13;1647:52;;;;;;;;;;;;;;;;;;;1577:130;:::o;3529:389:3:-;-1:-1:-1;;;;;3729:20:3;;719:10:1;3729:20:3;;:60;;-1:-1:-1;3753:36:3;3770:4;719:10:1;3296:166:3;:::i;3753:36::-;3708:148;;;;-1:-1:-1;;;3708:148:3;;12849:2:14;3708:148:3;;;12831:21:14;12888:2;12868:18;;;12861:30;12927:34;12907:18;;;12900:62;-1:-1:-1;;;12978:18:14;;;12971:39;13027:19;;3708:148:3;12647:405:14;3708:148:3;3866:45;3884:4;3890:2;3894;3898:6;3906:4;3866:17;:45::i;1911:198:11:-;1101:6;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:11;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:11;;13259:2:14;1991:73:11::1;::::0;::::1;13241:21:14::0;13298:2;13278:18;;;13271:30;13337:34;13317:18;;;13310:62;-1:-1:-1;;;13388:18:14;;;13381:36;13434:19;;1991:73:11::1;13057:402:14::0;1991:73:11::1;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;328:703:13:-;384:13;601:5;610:1;601:10;597:51;;-1:-1:-1;;627:10:13;;;;;;;;;;;;-1:-1:-1;;;627:10:13;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:13;;-1:-1:-1;773:2:13;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:13;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:13;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:13;;;;;;;;-1:-1:-1;972:11:13;981:2;972:11;;:::i;:::-;;;844:150;;;1017:6;328:703;-1:-1:-1;;;;328:703:13:o;9238:715:3:-;-1:-1:-1;;;;;9410:16:3;;9402:62;;;;-1:-1:-1;;;9402:62:3;;14054:2:14;9402:62:3;;;14036:21:14;14093:2;14073:18;;;14066:30;14132:34;14112:18;;;14105:62;-1:-1:-1;;;14183:18:14;;;14176:31;14224:19;;9402:62:3;13852:397:14;9402:62:3;9496:7;:14;9482:3;:10;:28;9474:81;;;;-1:-1:-1;;;9474:81:3;;;;;;;:::i;:::-;719:10:1;9608:66:3;719:10:1;9566:16:3;9651:2;9655:3;9660:7;9669:4;9608:20;:66::i;:::-;9690:9;9685:101;9709:3;:10;9705:1;:14;9685:101;;;9765:7;9773:1;9765:10;;;;;;;;:::i;:::-;;;;;;;9740:9;:17;9750:3;9754:1;9750:6;;;;;;;;:::i;:::-;;;;;;;9740:17;;;;;;;;;;;:21;9758:2;-1:-1:-1;;;;;9740:21:3;-1:-1:-1;;;;;9740:21:3;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;9721:3:3;;-1:-1:-1;9721:3:3;;;:::i;:::-;;;;9685:101;;;;9837:2;-1:-1:-1;;;;;9801:53:3;9833:1;-1:-1:-1;;;;;9801:53:3;9815:8;-1:-1:-1;;;;;9801:53:3;;9841:3;9846:7;9801:53;;;;;;;:::i;:::-;;;;;;;;9865:81;9901:8;9919:1;9923:2;9927:3;9932:7;9941:4;9865:35;:81::i;6013:1045::-;6233:7;:14;6219:3;:10;:28;6211:81;;;;-1:-1:-1;;;6211:81:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;6310:16:3;;6302:66;;;;-1:-1:-1;;;6302:66:3;;;;;;;:::i;:::-;719:10:1;6421:60:3;719:10:1;6452:4:3;6458:2;6462:3;6467:7;6476:4;6421:20;:60::i;:::-;6497:9;6492:411;6516:3;:10;6512:1;:14;6492:411;;;6547:10;6560:3;6564:1;6560:6;;;;;;;;:::i;:::-;;;;;;;6547:19;;6580:14;6597:7;6605:1;6597:10;;;;;;;;:::i;:::-;;;;;;;;;;;;6622:19;6644:13;;;;;;;;;;-1:-1:-1;;;;;6644:19:3;;;;;;;;;;;;6597:10;;-1:-1:-1;6685:21:3;;;;6677:76;;;;-1:-1:-1;;;6677:76:3;;;;;;;:::i;:::-;6795:9;:13;;;;;;;;;;;-1:-1:-1;;;;;6795:19:3;;;;;;;;;;6817:20;;;6795:42;;6865:17;;;;;;;:27;;6817:20;;6795:9;6865:27;;6817:20;;6865:27;:::i;:::-;;;;;;;;6533:370;;;6528:3;;;;:::i;:::-;;;6492:411;;;;6948:2;-1:-1:-1;;;;;6918:47:3;6942:4;-1:-1:-1;;;;;6918:47:3;6932:8;-1:-1:-1;;;;;6918:47:3;;6952:3;6957:7;6918:47;;;;;;;:::i;:::-;;;;;;;;6976:75;7012:8;7022:4;7028:2;7032:3;7037:7;7046:4;6976:35;:75::i;:::-;6201:857;6013:1045;;;;;:::o;2263:187:11:-;2355:6;;;-1:-1:-1;;;;;2371:17:11;;;-1:-1:-1;;;;;;2371:17:11;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;12019:323:3:-;12169:8;-1:-1:-1;;;;;12160:17:3;:5;-1:-1:-1;;;;;12160:17:3;;12152:71;;;;-1:-1:-1;;;12152:71:3;;16152:2:14;12152:71:3;;;16134:21:14;16191:2;16171:18;;;16164:30;16230:34;16210:18;;;16203:62;-1:-1:-1;;;16281:18:14;;;16274:39;16330:19;;12152:71:3;15950:405:14;12152:71:3;-1:-1:-1;;;;;12233:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;12233:46:3;;;;;;;;;;12294:41;;1159::14;;;12294::3;;1132:18:14;12294:41:3;;;;;;;12019:323;;;:::o;4870:797::-;-1:-1:-1;;;;;5051:16:3;;5043:66;;;;-1:-1:-1;;;5043:66:3;;;;;;;:::i;:::-;719:10:1;5162:96:3;719:10:1;5193:4:3;5199:2;5203:21;5221:2;5203:17;:21::i;:::-;5226:25;5244:6;5226:17;:25::i;:::-;5253:4;5162:20;:96::i;:::-;5269:19;5291:13;;;;;;;;;;;-1:-1:-1;;;;;5291:19:3;;;;;;;;;;5328:21;;;;5320:76;;;;-1:-1:-1;;;5320:76:3;;;;;;;:::i;:::-;5430:9;:13;;;;;;;;;;;-1:-1:-1;;;;;5430:19:3;;;;;;;;;;5452:20;;;5430:42;;5492:17;;;;;;;:27;;5452:20;;5430:9;5492:27;;5452:20;;5492:27;:::i;:::-;;;;-1:-1:-1;;5535:46:3;;;16534:25:14;;;16590:2;16575:18;;16568:34;;;-1:-1:-1;;;;;5535:46:3;;;;;;;;;;;;;;16507:18:14;5535:46:3;;;;;;;5592:68;5623:8;5633:4;5639:2;5643;5647:6;5655:4;5592:30;:68::i;:::-;5033:634;;4870:797;;;;;:::o;1075:634:5:-;-1:-1:-1;;;;;1387:18:5;;1383:156;;1426:9;1421:108;1445:3;:10;1441:1;:14;1421:108;;;1504:7;1512:1;1504:10;;;;;;;;:::i;:::-;;;;;;;1480:12;:20;1493:3;1497:1;1493:6;;;;;;;;:::i;:::-;;;;;;;1480:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;1457:3:5;;-1:-1:-1;1457:3:5;;:::i;:::-;;;1421:108;;;;1383:156;-1:-1:-1;;;;;1553:16:5;;1549:154;;1590:9;1585:108;1609:3;:10;1605:1;:14;1585:108;;;1668:7;1676:1;1668:10;;;;;;;;:::i;:::-;;;;;;;1644:12;:20;1657:3;1661:1;1657:6;;;;;;;;:::i;:::-;;;;;;;1644:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;1621:3:5;;-1:-1:-1;1621:3:5;;:::i;:::-;;;1585:108;;14227:792:3;-1:-1:-1;;;;;14459:13:3;;1087:20:0;1133:8;14455:558:3;;14494:79;;-1:-1:-1;;;14494:79:3;;-1:-1:-1;;;;;14494:43:3;;;;;:79;;14538:8;;14548:4;;14554:3;;14559:7;;14568:4;;14494:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14494:79:3;;;;;;;;-1:-1:-1;;14494:79:3;;;;;;;;;;;;:::i;:::-;;;14490:513;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;14879:6;14872:14;;-1:-1:-1;;;14872:14:3;;;;;;;;:::i;14490:513::-;;;14926:62;;-1:-1:-1;;;14926:62:3;;18761:2:14;14926:62:3;;;18743:21:14;18800:2;18780:18;;;18773:30;18839:34;18819:18;;;18812:62;-1:-1:-1;;;18890:18:14;;;18883:50;18950:19;;14926:62:3;18559:416:14;14490:513:3;-1:-1:-1;;;;;;14652:60:3;;-1:-1:-1;;;14652:60:3;14648:157;;14736:50;;-1:-1:-1;;;14736:50:3;;;;;;;:::i;15025:193::-;15144:16;;;15158:1;15144:16;;;;;;;;;15091;;15119:22;;15144:16;;;;;;;;;;;;-1:-1:-1;15144:16:3;15119:41;;15181:7;15170:5;15176:1;15170:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;15206:5;15025:193;-1:-1:-1;;15025:193:3:o;13496:725::-;-1:-1:-1;;;;;13703:13:3;;1087:20:0;1133:8;13699:516:3;;13738:72;;-1:-1:-1;;;13738:72:3;;-1:-1:-1;;;;;13738:38:3;;;;;:72;;13777:8;;13787:4;;13793:2;;13797:6;;13805:4;;13738:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13738:72:3;;;;;;;;-1:-1:-1;;13738:72:3;;;;;;;;;;;;:::i;:::-;;;13734:471;;;;:::i;:::-;-1:-1:-1;;;;;;13859:55:3;;-1:-1:-1;;;13859:55:3;13855:152;;13938:50;;-1:-1:-1;;;13938:50:3;;;;;;;:::i;14:173:14:-;82:20;;-1:-1:-1;;;;;131:31:14;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:14:o;633:131::-;-1:-1:-1;;;;;;707:32:14;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:14:o;1211:258::-;1283:1;1293:113;1307:6;1304:1;1301:13;1293:113;;;1383:11;;;1377:18;1364:11;;;1357:39;1329:2;1322:10;1293:113;;;1424:6;1421:1;1418:13;1415:48;;;1459:1;1450:6;1445:3;1441:16;1434:27;1415:48;;1211:258;;;:::o;1474:::-;1516:3;1554:5;1548:12;1581:6;1576:3;1569:19;1597:63;1653:6;1646:4;1641:3;1637:14;1630:4;1623:5;1619:16;1597:63;:::i;:::-;1714:2;1693:15;-1:-1:-1;;1689:29:14;1680:39;;;;1721:4;1676:50;;1474:258;-1:-1:-1;;1474:258:14:o;1737:220::-;1886:2;1875:9;1868:21;1849:4;1906:45;1947:2;1936:9;1932:18;1924:6;1906:45;:::i;1962:180::-;2021:6;2074:2;2062:9;2053:7;2049:23;2045:32;2042:52;;;2090:1;2087;2080:12;2042:52;-1:-1:-1;2113:23:14;;1962:180;-1:-1:-1;1962:180:14:o;2147:127::-;2208:10;2203:3;2199:20;2196:1;2189:31;2239:4;2236:1;2229:15;2263:4;2260:1;2253:15;2279:249;2389:2;2370:13;;-1:-1:-1;;2366:27:14;2354:40;;2424:18;2409:34;;2445:22;;;2406:62;2403:88;;;2471:18;;:::i;:::-;2507:2;2500:22;-1:-1:-1;;2279:249:14:o;2533:183::-;2593:4;2626:18;2618:6;2615:30;2612:56;;;2648:18;;:::i;:::-;-1:-1:-1;2693:1:14;2689:14;2705:4;2685:25;;2533:183::o;2721:724::-;2775:5;2828:3;2821:4;2813:6;2809:17;2805:27;2795:55;;2846:1;2843;2836:12;2795:55;2882:6;2869:20;2908:4;2931:43;2971:2;2931:43;:::i;:::-;3003:2;2997:9;3015:31;3043:2;3035:6;3015:31;:::i;:::-;3081:18;;;3173:1;3169:10;;;;3157:23;;3153:32;;;3115:15;;;;-1:-1:-1;3197:15:14;;;3194:35;;;3225:1;3222;3215:12;3194:35;3261:2;3253:6;3249:15;3273:142;3289:6;3284:3;3281:15;3273:142;;;3355:17;;3343:30;;3393:12;;;;3306;;3273:142;;;-1:-1:-1;3433:6:14;2721:724;-1:-1:-1;;;;;;2721:724:14:o;3450:555::-;3492:5;3545:3;3538:4;3530:6;3526:17;3522:27;3512:55;;3563:1;3560;3553:12;3512:55;3599:6;3586:20;3625:18;3621:2;3618:26;3615:52;;;3647:18;;:::i;:::-;3696:2;3690:9;3708:67;3763:2;3744:13;;-1:-1:-1;;3740:27:14;3769:4;3736:38;3690:9;3708:67;:::i;:::-;3799:2;3791:6;3784:18;3845:3;3838:4;3833:2;3825:6;3821:15;3817:26;3814:35;3811:55;;;3862:1;3859;3852:12;3811:55;3926:2;3919:4;3911:6;3907:17;3900:4;3892:6;3888:17;3875:54;3973:1;3949:15;;;3966:4;3945:26;3938:37;;;;3953:6;3450:555;-1:-1:-1;;;3450:555:14:o;4010:943::-;4164:6;4172;4180;4188;4196;4249:3;4237:9;4228:7;4224:23;4220:33;4217:53;;;4266:1;4263;4256:12;4217:53;4289:29;4308:9;4289:29;:::i;:::-;4279:39;;4337:38;4371:2;4360:9;4356:18;4337:38;:::i;:::-;4327:48;;4426:2;4415:9;4411:18;4398:32;4449:18;4490:2;4482:6;4479:14;4476:34;;;4506:1;4503;4496:12;4476:34;4529:61;4582:7;4573:6;4562:9;4558:22;4529:61;:::i;:::-;4519:71;;4643:2;4632:9;4628:18;4615:32;4599:48;;4672:2;4662:8;4659:16;4656:36;;;4688:1;4685;4678:12;4656:36;4711:63;4766:7;4755:8;4744:9;4740:24;4711:63;:::i;:::-;4701:73;;4827:3;4816:9;4812:19;4799:33;4783:49;;4857:2;4847:8;4844:16;4841:36;;;4873:1;4870;4863:12;4841:36;;4896:51;4939:7;4928:8;4917:9;4913:24;4896:51;:::i;:::-;4886:61;;;4010:943;;;;;;;;:::o;4958:1208::-;5076:6;5084;5137:2;5125:9;5116:7;5112:23;5108:32;5105:52;;;5153:1;5150;5143:12;5105:52;5193:9;5180:23;5222:18;5263:2;5255:6;5252:14;5249:34;;;5279:1;5276;5269:12;5249:34;5317:6;5306:9;5302:22;5292:32;;5362:7;5355:4;5351:2;5347:13;5343:27;5333:55;;5384:1;5381;5374:12;5333:55;5420:2;5407:16;5442:4;5465:43;5505:2;5465:43;:::i;:::-;5537:2;5531:9;5549:31;5577:2;5569:6;5549:31;:::i;:::-;5615:18;;;5703:1;5699:10;;;;5691:19;;5687:28;;;5649:15;;;;-1:-1:-1;5727:19:14;;;5724:39;;;5759:1;5756;5749:12;5724:39;5783:11;;;;5803:148;5819:6;5814:3;5811:15;5803:148;;;5885:23;5904:3;5885:23;:::i;:::-;5873:36;;5836:12;;;;5929;;;;5803:148;;;5970:6;-1:-1:-1;;6014:18:14;;6001:32;;-1:-1:-1;;6045:16:14;;;6042:36;;;6074:1;6071;6064:12;6042:36;;6097:63;6152:7;6141:8;6130:9;6126:24;6097:63;:::i;:::-;6087:73;;;4958:1208;;;;;:::o;6171:435::-;6224:3;6262:5;6256:12;6289:6;6284:3;6277:19;6315:4;6344:2;6339:3;6335:12;6328:19;;6381:2;6374:5;6370:14;6402:1;6412:169;6426:6;6423:1;6420:13;6412:169;;;6487:13;;6475:26;;6521:12;;;;6556:15;;;;6448:1;6441:9;6412:169;;;-1:-1:-1;6597:3:14;;6171:435;-1:-1:-1;;;;;6171:435:14:o;6611:261::-;6790:2;6779:9;6772:21;6753:4;6810:56;6862:2;6851:9;6847:18;6839:6;6810:56;:::i;7085:347::-;7150:6;7158;7211:2;7199:9;7190:7;7186:23;7182:32;7179:52;;;7227:1;7224;7217:12;7179:52;7250:29;7269:9;7250:29;:::i;:::-;7240:39;;7329:2;7318:9;7314:18;7301:32;7376:5;7369:13;7362:21;7355:5;7352:32;7342:60;;7398:1;7395;7388:12;7342:60;7421:5;7411:15;;;7085:347;;;;;:::o;7437:186::-;7496:6;7549:2;7537:9;7528:7;7524:23;7520:32;7517:52;;;7565:1;7562;7555:12;7517:52;7588:29;7607:9;7588:29;:::i;7628:260::-;7696:6;7704;7757:2;7745:9;7736:7;7732:23;7728:32;7725:52;;;7773:1;7770;7763:12;7725:52;7796:29;7815:9;7796:29;:::i;:::-;7786:39;;7844:38;7878:2;7867:9;7863:18;7844:38;:::i;:::-;7834:48;;7628:260;;;;;:::o;7893:606::-;7997:6;8005;8013;8021;8029;8082:3;8070:9;8061:7;8057:23;8053:33;8050:53;;;8099:1;8096;8089:12;8050:53;8122:29;8141:9;8122:29;:::i;:::-;8112:39;;8170:38;8204:2;8193:9;8189:18;8170:38;:::i;:::-;8160:48;;8255:2;8244:9;8240:18;8227:32;8217:42;;8306:2;8295:9;8291:18;8278:32;8268:42;;8361:3;8350:9;8346:19;8333:33;8389:18;8381:6;8378:30;8375:50;;;8421:1;8418;8411:12;8375:50;8444:49;8485:7;8476:6;8465:9;8461:22;8444:49;:::i;8916:380::-;8995:1;8991:12;;;;9038;;;9059:61;;9113:4;9105:6;9101:17;9091:27;;9059:61;9166:2;9158:6;9155:14;9135:18;9132:38;9129:161;;9212:10;9207:3;9203:20;9200:1;9193:31;9247:4;9244:1;9237:15;9275:4;9272:1;9265:15;9129:161;;8916:380;;;:::o;9301:663::-;9664:34;9659:3;9652:47;-1:-1:-1;;;9724:2:14;9719:3;9715:12;9708:46;9634:3;9783:6;9777:13;9799:60;9852:6;9847:2;9842:3;9838:12;9833:2;9825:6;9821:15;9799:60;:::i;:::-;-1:-1:-1;;;9918:2:14;9878:16;;;;9910:11;;;9903:28;-1:-1:-1;9955:2:14;9947:11;;9301:663;-1:-1:-1;9301:663:14:o;10663:127::-;10724:10;10719:3;10715:20;10712:1;10705:31;10755:4;10752:1;10745:15;10779:4;10776:1;10769:15;10795:112;10827:1;10853;10843:35;;10858:18;;:::i;:::-;-1:-1:-1;10892:9:14;;10795:112::o;10912:127::-;10973:10;10968:3;10964:20;10961:1;10954:31;11004:4;11001:1;10994:15;11028:4;11025:1;11018:15;11044:136;11083:3;11111:5;11101:39;;11120:18;;:::i;:::-;-1:-1:-1;;;11156:18:14;;11044:136::o;11604:356::-;11806:2;11788:21;;;11825:18;;;11818:30;11884:34;11879:2;11864:18;;11857:62;11951:2;11936:18;;11604:356::o;12375:127::-;12436:10;12431:3;12427:20;12424:1;12417:31;12467:4;12464:1;12457:15;12491:4;12488:1;12481:15;12507:135;12546:3;12567:17;;;12564:43;;12587:18;;:::i;:::-;-1:-1:-1;12634:1:14;12623:13;;12507:135::o;13464:120::-;13504:1;13530;13520:35;;13535:18;;:::i;:::-;-1:-1:-1;13569:9:14;;13464:120::o;13589:125::-;13629:4;13657:1;13654;13651:8;13648:34;;;13662:18;;:::i;:::-;-1:-1:-1;13699:9:14;;13589:125::o;13719:128::-;13759:3;13790:1;13786:6;13783:1;13780:13;13777:39;;;13796:18;;:::i;:::-;-1:-1:-1;13832:9:14;;13719:128::o;14254:404::-;14456:2;14438:21;;;14495:2;14475:18;;;14468:30;14534:34;14529:2;14514:18;;14507:62;-1:-1:-1;;;14600:2:14;14585:18;;14578:38;14648:3;14633:19;;14254:404::o;14663:465::-;14920:2;14909:9;14902:21;14883:4;14946:56;14998:2;14987:9;14983:18;14975:6;14946:56;:::i;:::-;15050:9;15042:6;15038:22;15033:2;15022:9;15018:18;15011:50;15078:44;15115:6;15107;15078:44;:::i;:::-;15070:52;14663:465;-1:-1:-1;;;;;14663:465:14:o;15133:401::-;15335:2;15317:21;;;15374:2;15354:18;;;15347:30;15413:34;15408:2;15393:18;;15386:62;-1:-1:-1;;;15479:2:14;15464:18;;15457:35;15524:3;15509:19;;15133:401::o;15539:406::-;15741:2;15723:21;;;15780:2;15760:18;;;15753:30;15819:34;15814:2;15799:18;;15792:62;-1:-1:-1;;;15885:2:14;15870:18;;15863:40;15935:3;15920:19;;15539:406::o;16613:827::-;-1:-1:-1;;;;;17010:15:14;;;16992:34;;17062:15;;17057:2;17042:18;;17035:43;16972:3;17109:2;17094:18;;17087:31;;;16935:4;;17141:57;;17178:19;;17170:6;17141:57;:::i;:::-;17246:9;17238:6;17234:22;17229:2;17218:9;17214:18;17207:50;17280:44;17317:6;17309;17280:44;:::i;:::-;17266:58;;17373:9;17365:6;17361:22;17355:3;17344:9;17340:19;17333:51;17401:33;17427:6;17419;17401:33;:::i;:::-;17393:41;16613:827;-1:-1:-1;;;;;;;;16613:827:14:o;17445:249::-;17514:6;17567:2;17555:9;17546:7;17542:23;17538:32;17535:52;;;17583:1;17580;17573:12;17535:52;17615:9;17609:16;17634:30;17658:5;17634:30;:::i;17699:179::-;17734:3;17776:1;17758:16;17755:23;17752:120;;;17822:1;17819;17816;17801:23;-1:-1:-1;17859:1:14;17853:8;17848:3;17844:18;17752:120;17699:179;:::o;17883:671::-;17922:3;17964:4;17946:16;17943:26;17940:39;;;17883:671;:::o;17940:39::-;18006:2;18000:9;-1:-1:-1;;18071:16:14;18067:25;;18064:1;18000:9;18043:50;18122:4;18116:11;18146:16;18181:18;18252:2;18245:4;18237:6;18233:17;18230:25;18225:2;18217:6;18214:14;18211:45;18208:58;;;18259:5;;;;;17883:671;:::o;18208:58::-;18296:6;18290:4;18286:17;18275:28;;18332:3;18326:10;18359:2;18351:6;18348:14;18345:27;;;18365:5;;;;;;17883:671;:::o;18345:27::-;18449:2;18430:16;18424:4;18420:27;18416:36;18409:4;18400:6;18395:3;18391:16;18387:27;18384:69;18381:82;;;18456:5;;;;;;17883:671;:::o;18381:82::-;18472:57;18523:4;18514:6;18506;18502:19;18498:30;18492:4;18472:57;:::i;:::-;-1:-1:-1;18545:3:14;;17883:671;-1:-1:-1;;;;;17883:671:14:o;18980:404::-;19182:2;19164:21;;;19221:2;19201:18;;;19194:30;19260:34;19255:2;19240:18;;19233:62;-1:-1:-1;;;19326:2:14;19311:18;;19304:38;19374:3;19359:19;;18980:404::o;19389:561::-;-1:-1:-1;;;;;19686:15:14;;;19668:34;;19738:15;;19733:2;19718:18;;19711:43;19785:2;19770:18;;19763:34;;;19828:2;19813:18;;19806:34;;;19648:3;19871;19856:19;;19849:32;;;19611:4;;19898:46;;19924:19;;19916:6;19898:46;:::i;:::-;19890:54;19389:561;-1:-1:-1;;;;;;;19389:561:14:o

Swarm Source

ipfs://b78acb4be642f590e21e8178c9d3d79f49737eddb64396929393a9afe98e9f9e
Loading...
Loading
Loading...
Loading
[ 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.