ETH Price: $2,470.64 (-8.02%)
Gas: 0.73 Gwei

Token

(0x118aed2606d02c2545c6d7d2d1021e567cc08922)
 

Overview

Max Total Supply

0

Holders

1,915

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x3e916f6df5cd2adfb70679aab3dc01f74a726ed1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Orthoverse is the largest NFT collection in existence, with over 1.4 quindecillion tokens. Every Ethereum address already has an NFT representing something in the Orthoverse. Visit https://orthoverse.io to reveal your NFT and to learn more about the project.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Orthoverse

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : Orthoverse.sol
// SPDX-License-Identifier: MIT
/*
 *   Orthoverse V2 - How to mint an insane number of NFTs in one go!
 *
 *  Brought to you by:
 *
 *       Keir Finlow-Bates - https://www.linkedin.com/in/keirf/
 *                      &
 *       Richard Piacentini - https://www.linkedin.com/in/richardpiacentini/
 *
 */

pragma solidity 0.8.13;

import "./ERC1155.sol";
import "./ERC1155Supply.sol";
import "./Ownable.sol";
import "./IERC2981.sol";

contract Orthoverse is ERC1155, Ownable, ERC1155Supply, IERC2981 {
    constructor(
        string memory uri_,
        address W0_,
        address W1_
    ) ERC1155(uri_, W0_, W1_) {}

    function name() external pure returns (string memory) {
        return "Orthoverse";
    }

    function symbol() external pure returns (string memory) {
        return "ORTH";
    }

    function setURI(string memory newURI_) external onlyOwner {
        _setURI(newURI_);
    }

    function setVoidURI(string memory newVoidURI_) external onlyOwner {
        _setVoidURI(newVoidURI_);
    }

    function castleLevel(uint256 tokenId_) external view returns (uint256) {
        return tokenCastleLevel[tokenId_];
    }

    function castlePrice(uint256 tokenId_) public view returns (uint256) {
        return (CASTLE_BASE_PRICE * (2**(tokenCastleLevel[tokenId_] % 8)));
    }

    function upgradeCastleLevel(address account_) external payable {
        require(account_ != address(0), "No zero address");
        uint256 tokenId = uint256(uint160(account_));

        require(
            tokenCastleLevel[tokenId] != 7 && tokenCastleLevel[tokenId] != 15,
            "At max level"
        );

        if (msg.sender != W0 && msg.sender != W1) {
            require(msg.value >= castlePrice(tokenId), "Not enough ETH");
        }
        tokenCastleLevel[tokenId]++;
    }

    function withdraw() external {
        uint256 balance = address(this).balance;
        require(balance > 0, "No funds");

        uint256 half = (balance * 5) / 10;
        Address.sendValue(payable(W0), half);
        Address.sendValue(payable(W1), half);
    }

    function royaltyInfo(uint256, uint256 _salePrice)
        public
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        return (owner(), (_salePrice * 250) / 10000);
    }

    // Required after "Panic at the Orthoverse V1"
    function migrator(
        address[] calldata from_,
        address[] calldata to_,
        uint256[] calldata tokenId_,
        uint256[] calldata level_
    ) external onlyOwner {
        _migrator(from_, to_, tokenId_, level_);
    }

    // Never go back...
    function killMigrator() external onlyOwner {
        _killMigrator();
    }

    // The following functions are overrides required by Solidity.

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

    /**
     * @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 ||
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }
}

File 2 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";
import "./Strings.sol";
//
import "hardhat/console.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;
    mapping(uint256 => uint256) public tokenCastleLevel;
    // Track revealed tokend Ids
    mapping(uint256 => bool) public revealedTokenIds;
    uint256 public constant REVEALED_TOKENS_LIMIT = 10000;
    uint256 public revealedTokensCounter = 0;
    string private _voidURI;
    bool private _killedMigrator = false;

    // ORTH NFT price, just over 1$ (ETH @ 3100$)
    // !! Prices for Ethereum, for Polygon use: 0.6, 11.5, 1.45
    uint256 public constant REVEAL_PRICE = 0.0004 ether;
    uint256 public constant CASTLE_BASE_PRICE = 0.008 ether;
    uint256 public constant FLIP_REALM_PRICE = 0.001 ether;

    address public W0 = 0x2830B5a3b5242BC2c64C390594ED971E7deD47D2;
    address public W1 = 0x2cdE3C309EF95411f78b338A7de85c4454316208;

    // 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_,
        address W0_,
        address W1_
    ) {
        _setURI(uri_);
        _setVoidURI(uri_);
        W0 = W0_;
        W1 = W1_;
    }

    /// @notice Public function to retrieve the contract description for OpenSea
    function contractURI() external view returns (string memory) {
        return string(abi.encodePacked(_uri, "contract.json"));
    }

    /**
     * @dev Create the NFT by emitting the event and setting the token ID to the
     * sender's address.
     */
    function reveal() external payable {
        require(
            revealedTokensCounter < REVEALED_TOKENS_LIMIT,
            "We're revealed out!"
        );
        require(msg.value >= REVEAL_PRICE, "Please send 0.0004 ETH");

        address tokenOwner = msg.sender;

        uint256 tokenId = uint256(uint160(tokenOwner));
        require(_balances[tokenId][tokenOwner] == 0, "NFT already revealed");

        _balances[tokenId][tokenOwner] = 1;
        revealedTokensCounter++;
        revealedTokenIds[tokenId] = true;

        address operator = _msgSender();
        emit TransferSingle(operator, address(0), tokenOwner, tokenId, 1);
    }

    /**
     * @dev Make the gift of Orthoverse and spread the joy around you.
     */
    function gift(address account) external payable {
        require(account != address(0), "No gift for 0x0");
        require(
            revealedTokensCounter < REVEALED_TOKENS_LIMIT,
            "We're revealed out!"
        );

        if (msg.sender != W0 && msg.sender != W1) {
            require(msg.value >= REVEAL_PRICE, "Gift: Please send 0.0004 ETH");
        }
        address tokenOwner = account;

        uint256 tokenId = uint256(uint160(tokenOwner));
        require(_balances[tokenId][tokenOwner] == 0, "NFT already revealed");

        _balances[tokenId][tokenOwner] = 1;
        revealedTokensCounter++;
        revealedTokenIds[tokenId] = true;

        address operator = _msgSender();
        emit TransferSingle(operator, address(0), tokenOwner, tokenId, 1);
    }

    // Required after "Panic at the Orthoverse V1"
    function _migrator(
        address[] calldata from_,
        address[] calldata to_,
        uint256[] calldata tokenId_,
        uint256[] calldata level_
    ) internal {
        require(!_killedMigrator, "killed!");
        for (uint256 i = 0; i < from_.length; i++) {
            tokenCastleLevel[tokenId_[i]] = level_[i];
            revealedTokenIds[tokenId_[i]] = true;
            address operator = from_[i];
            if (from_[i] == address(0)) {
                // we have a mint
                operator = to_[i];
                revealedTokensCounter++;
                // but if the tokenId doesn't equal the to_ address, we have to set balance of tokenId address to 2
                // because it's a panic bug mint. This will cause problems if the tokenId is bigger than a uint160()
                // except it's easier to do this in the calldata list than in a smart contract so we check and edit that.
            } else {
                // we have a transfer
                _balances[tokenId_[i]][from_[i]]++;
            }
            _balances[tokenId_[i]][to_[i]]++;
            emit TransferSingle(operator, from_[i], to_[i], tokenId_[i], 1);
        }
    }

    // Never go back...
    function _killMigrator() internal {
        _killedMigrator = true;
    }

    /**
     * @dev Returns 0 if the token has not been revealed
     */
    function isRevealed() external view returns (uint256) {
        address account = msg.sender;
        uint256 id = uint256(uint160(account));
        return _balances[id][account];
    }

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

    /// @notice  Returns the metadata URI for tokenId
    function uri(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        // Return the void URI if the token is not revealed
        string memory tokenURI = revealedTokenIds[tokenId] ? _uri : _voidURI;

        return
            string(
                abi.encodePacked(
                    tokenURI,
                    Strings.toHexString(tokenId),
                    "-",
                    Strings.toString(tokenCastleLevel[tokenId]),
                    ".json"
                )
            );
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be 0x0.
     */
    function balanceOf(address account, uint256 id)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(account != address(0), "balance query for 0x0");
        if (id == uint256(uint160(account)) && (_balances[id][account] == 0)) {
            return 1;
        } else {
            return _balances[id][account] % 2;
        }
    }

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

    function flipRealm(uint256 tokenId_) external payable {
        require(
            _balances[tokenId_][msg.sender] % 2 == 1,
            "only owner of revealed token can flip"
        );

        if (msg.sender != W0 && msg.sender != W1) {
            require(msg.value >= FLIP_REALM_PRICE, "Not enough ETH");
        }

        if (tokenCastleLevel[tokenId_] > 7) {
            tokenCastleLevel[tokenId_] = tokenCastleLevel[tokenId_] - 8;
        } else {
            tokenCastleLevel[tokenId_] = tokenCastleLevel[tokenId_] + 8;
        }
    }

    /**
     * @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()),
            "must be owner or 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()),
            "must be owner or 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 0x0.
     * - `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,
        // we just ignore amount, because it's always one
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "transfer to 0x0");

        address operator = _msgSender();

        if (id != uint256(uint160(from))) {
            require(_balances[id][from] % 2 == 1, "Not owner!");
        }

        if (_balances[id][from] == 0) {
            // this actually makes the NFT
            _balances[id][from] = 1;

            if (revealedTokensCounter < REVEALED_TOKENS_LIMIT) {
                revealedTokenIds[id] = true;
                revealedTokensCounter++;
            }
            emit TransferSingle(operator, address(0), from, id, 1);
        }
        _beforeTokenTransfer(
            operator,
            from,
            to,
            _asSingletonArray(id),
            _asSingletonArray(amount),
            data
        );

        uint256 fromBalance = _balances[id][from];

        require(fromBalance % 2 == 1, "insufficient balance for transfer");

        unchecked {
            _balances[id][from] += 1;
        }

        _balances[id][to] += 1;

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

        _doSafeTransferAcceptanceCheck(operator, from, to, id, 1, 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,
            "ids and amounts length mismatch"
        );
        require(to != address(0), "transfer to 0x0");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);
        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            if (id != uint256(uint160(from))) {
                require(_balances[id][from] % 2 == 1, "Not owner!");
            }

            if (_balances[id][from] == 0) {
                // this actually makes the NFT
                _balances[id][from] = 1;

                if (revealedTokensCounter < REVEALED_TOKENS_LIMIT) {
                    revealedTokenIds[id] = true;
                    revealedTokensCounter++;
                }
            }
            uint256 fromBalance = _balances[id][from];
            require(
                (fromBalance % 2 == 1),
                "insufficient balance for transfer batch"
            );

            unchecked {
                _balances[id][from] = fromBalance + 1;
            }
            _balances[id][to] += 1;
        }

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

    function _setVoidURI(string memory newVoidURI) internal virtual {
        _voidURI = newVoidURI;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be 0x0.
     * - 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), "mint to 0x0");

        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), "mint to 0x0");
        require(
            ids.length == amounts.length,
            "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 0x0.
     * - `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), "burn from 0x0");

        address operator = _msgSender();

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

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "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), "burn from 0x0");
        require(
            ids.length == amounts.length,
            "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, "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, "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("ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("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("ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("transfer to non ERC1155Receiver implementer");
            }
        }
    }

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

        return array;
    }
}

File 3 of 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) {
        delete id;
        return 1;
    }

    /**
     * @dev In Orthoverse every token exists already, you just have to reveal it.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        delete id;
        return true;
    }

    /**
     * @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 4 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 5 of 14 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 6 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 7 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.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 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 11 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 12 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);
    }
}

File 13 of 14 : console.sol
// SPDX-License-Identifier: MIT
pragma solidity >= 0.4.22 <0.9.0;

library console {
	address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67);

	function _sendLogPayload(bytes memory payload) private view {
		uint256 payloadLength = payload.length;
		address consoleAddress = CONSOLE_ADDRESS;
		assembly {
			let payloadStart := add(payload, 32)
			let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0)
		}
	}

	function log() internal view {
		_sendLogPayload(abi.encodeWithSignature("log()"));
	}

	function logInt(int p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(int)", p0));
	}

	function logUint(uint p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint)", p0));
	}

	function logString(string memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
	}

	function logBool(bool p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
	}

	function logAddress(address p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
	}

	function logBytes(bytes memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes)", p0));
	}

	function logBytes1(bytes1 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0));
	}

	function logBytes2(bytes2 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0));
	}

	function logBytes3(bytes3 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0));
	}

	function logBytes4(bytes4 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0));
	}

	function logBytes5(bytes5 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0));
	}

	function logBytes6(bytes6 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0));
	}

	function logBytes7(bytes7 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0));
	}

	function logBytes8(bytes8 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0));
	}

	function logBytes9(bytes9 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0));
	}

	function logBytes10(bytes10 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0));
	}

	function logBytes11(bytes11 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0));
	}

	function logBytes12(bytes12 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0));
	}

	function logBytes13(bytes13 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0));
	}

	function logBytes14(bytes14 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0));
	}

	function logBytes15(bytes15 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0));
	}

	function logBytes16(bytes16 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0));
	}

	function logBytes17(bytes17 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0));
	}

	function logBytes18(bytes18 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0));
	}

	function logBytes19(bytes19 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0));
	}

	function logBytes20(bytes20 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0));
	}

	function logBytes21(bytes21 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0));
	}

	function logBytes22(bytes22 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0));
	}

	function logBytes23(bytes23 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0));
	}

	function logBytes24(bytes24 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0));
	}

	function logBytes25(bytes25 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0));
	}

	function logBytes26(bytes26 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0));
	}

	function logBytes27(bytes27 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0));
	}

	function logBytes28(bytes28 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0));
	}

	function logBytes29(bytes29 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0));
	}

	function logBytes30(bytes30 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0));
	}

	function logBytes31(bytes31 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0));
	}

	function logBytes32(bytes32 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0));
	}

	function log(uint p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint)", p0));
	}

	function log(string memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
	}

	function log(bool p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
	}

	function log(address p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
	}

	function log(uint p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint)", p0, p1));
	}

	function log(uint p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string)", p0, p1));
	}

	function log(uint p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool)", p0, p1));
	}

	function log(uint p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address)", p0, p1));
	}

	function log(string memory p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint)", p0, p1));
	}

	function log(string memory p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1));
	}

	function log(string memory p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1));
	}

	function log(string memory p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1));
	}

	function log(bool p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint)", p0, p1));
	}

	function log(bool p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1));
	}

	function log(bool p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1));
	}

	function log(bool p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1));
	}

	function log(address p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint)", p0, p1));
	}

	function log(address p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1));
	}

	function log(address p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1));
	}

	function log(address p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1));
	}

	function log(uint p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint)", p0, p1, p2));
	}

	function log(uint p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string)", p0, p1, p2));
	}

	function log(uint p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool)", p0, p1, p2));
	}

	function log(uint p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address)", p0, p1, p2));
	}

	function log(uint p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint)", p0, p1, p2));
	}

	function log(uint p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string)", p0, p1, p2));
	}

	function log(uint p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool)", p0, p1, p2));
	}

	function log(uint p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address)", p0, p1, p2));
	}

	function log(uint p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint)", p0, p1, p2));
	}

	function log(uint p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string)", p0, p1, p2));
	}

	function log(uint p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool)", p0, p1, p2));
	}

	function log(uint p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2));
	}

	function log(string memory p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint)", p0, p1, p2));
	}

	function log(string memory p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2));
	}

	function log(string memory p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2));
	}

	function log(string memory p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2));
	}

	function log(bool p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint)", p0, p1, p2));
	}

	function log(bool p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string)", p0, p1, p2));
	}

	function log(bool p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool)", p0, p1, p2));
	}

	function log(bool p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2));
	}

	function log(bool p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint)", p0, p1, p2));
	}

	function log(bool p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2));
	}

	function log(bool p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2));
	}

	function log(bool p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2));
	}

	function log(bool p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint)", p0, p1, p2));
	}

	function log(bool p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2));
	}

	function log(bool p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2));
	}

	function log(bool p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2));
	}

	function log(address p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint)", p0, p1, p2));
	}

	function log(address p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string)", p0, p1, p2));
	}

	function log(address p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool)", p0, p1, p2));
	}

	function log(address p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address)", p0, p1, p2));
	}

	function log(address p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint)", p0, p1, p2));
	}

	function log(address p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2));
	}

	function log(address p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2));
	}

	function log(address p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2));
	}

	function log(address p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint)", p0, p1, p2));
	}

	function log(address p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2));
	}

	function log(address p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2));
	}

	function log(address p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2));
	}

	function log(address p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint)", p0, p1, p2));
	}

	function log(address p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2));
	}

	function log(address p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2));
	}

	function log(address p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2));
	}

	function log(uint p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3));
	}

}

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri_","type":"string"},{"internalType":"address","name":"W0_","type":"address"},{"internalType":"address","name":"W1_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"CASTLE_BASE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FLIP_REALM_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEALED_TOKENS_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"W0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"W1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"castleLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"castlePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"flipRealm","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"gift","outputs":[],"stateMutability":"payable","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":"isRevealed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"killMigrator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"from_","type":"address[]"},{"internalType":"address[]","name":"to_","type":"address[]"},{"internalType":"uint256[]","name":"tokenId_","type":"uint256[]"},{"internalType":"uint256[]","name":"level_","type":"uint256[]"}],"name":"migrator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"revealedTokenIds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealedTokensCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI_","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newVoidURI_","type":"string"}],"name":"setVoidURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenCastleLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"account_","type":"address"}],"name":"upgradeCastleLevel","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006004556000600660006101000a81548160ff021916908315150217905550732830b5a3b5242bc2c64c390594ed971e7ded47d2600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732cde3c309ef95411f78b338a7de85c4454316208600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000db57600080fd5b50604051620065663803806200656683398181016040528101906200010191906200058c565b8282826200011583620001d460201b60201c565b6200012683620001f060201b60201c565b81600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050620001cb620001bf6200020c60201b60201c565b6200021460201b60201c565b5050506200066b565b8060089080519060200190620001ec929190620002da565b5050565b806005908051906020019062000208929190620002da565b5050565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002e89062000636565b90600052602060002090601f0160209004810192826200030c576000855562000358565b82601f106200032757805160ff191683800117855562000358565b8280016001018555821562000358579182015b82811115620003575782518255916020019190600101906200033a565b5b5090506200036791906200036b565b5090565b5b80821115620003865760008160009055506001016200036c565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003f382620003a8565b810181811067ffffffffffffffff82111715620004155762000414620003b9565b5b80604052505050565b60006200042a6200038a565b9050620004388282620003e8565b919050565b600067ffffffffffffffff8211156200045b576200045a620003b9565b5b6200046682620003a8565b9050602081019050919050565b60005b838110156200049357808201518184015260208101905062000476565b83811115620004a3576000848401525b50505050565b6000620004c0620004ba846200043d565b6200041e565b905082815260208101848484011115620004df57620004de620003a3565b5b620004ec84828562000473565b509392505050565b600082601f8301126200050c576200050b6200039e565b5b81516200051e848260208601620004a9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005548262000527565b9050919050565b620005668162000547565b81146200057257600080fd5b50565b60008151905062000586816200055b565b92915050565b600080600060608486031215620005a857620005a762000394565b5b600084015167ffffffffffffffff811115620005c957620005c862000399565b5b620005d786828701620004f4565b9350506020620005ea8682870162000575565b9250506040620005fd8682870162000575565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200064f57607f821691505b60208210810362000665576200066462000607565b5b50919050565b615eeb806200067b6000396000f3fe6080604052600436106102245760003560e01c806383146eab11610123578063c53b23f2116100ab578063e985e9c51161006f578063e985e9c5146107fb578063ef42130d14610838578063f242432a1461084f578063f2fde38b14610878578063f7320375146108a157610224565b8063c53b23f214610730578063cbfc4bce1461074c578063d269fe6a14610768578063e04813e214610793578063e8a3d485146107d057610224565b8063a22cb465116100f2578063a22cb46514610658578063a475b5dd14610681578063bd85b0391461068b578063bf88c14b146106c8578063c08db79d146106f357610224565b806383146eab146105ae57806389cc7aed146105d75780638da5cb5b1461060257806395d89b411461062d57610224565b80633ccfd60b116101b15780635fcf37e9116101755780635fcf37e9146104c9578063715018a614610506578063756495ca1461051d5780637744adc21461055a57806379a5c44d1461058557610224565b80633ccfd60b146103f15780634e1273f4146104085780634f558e791461044557806354214f6914610482578063548edcee146104ad57610224565b80630e89341c116101f85780630e89341c146102f757806329ba8f9c146103345780632a55205a1461035f5780632eb2c2d61461039d5780633a145777146103c657610224565b8062fdd58e1461022957806301ffc9a71461026657806302fe5305146102a357806306fdde03146102cc575b600080fd5b34801561023557600080fd5b50610250600480360381019061024b9190613db0565b6108cc565b60405161025d9190613dff565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190613e72565b610a23565b60405161029a9190613eba565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c5919061401b565b610b6d565b005b3480156102d857600080fd5b506102e1610bf5565b6040516102ee91906140ec565b60405180910390f35b34801561030357600080fd5b5061031e6004803603810190610319919061410e565b610c32565b60405161032b91906140ec565b60405180910390f35b34801561034057600080fd5b50610349610d3f565b6040516103569190613dff565b60405180910390f35b34801561036b57600080fd5b506103866004803603810190610381919061413b565b610d4a565b60405161039492919061418a565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf919061431c565b610d7a565b005b3480156103d257600080fd5b506103db610e1b565b6040516103e89190613dff565b60405180910390f35b3480156103fd57600080fd5b50610406610e26565b005b34801561041457600080fd5b5061042f600480360381019061042a91906144ae565b610ee7565b60405161043c91906145e4565b60405180910390f35b34801561045157600080fd5b5061046c6004803603810190610467919061410e565b611000565b6040516104799190613eba565b60405180910390f35b34801561048e57600080fd5b5061049761100e565b6040516104a49190613dff565b60405180910390f35b6104c760048036038101906104c2919061410e565b611086565b005b3480156104d557600080fd5b506104f060048036038101906104eb919061410e565b6112b3565b6040516104fd9190613dff565b60405180910390f35b34801561051257600080fd5b5061051b6112fa565b005b34801561052957600080fd5b50610544600480360381019061053f919061410e565b611382565b6040516105519190613dff565b60405180910390f35b34801561056657600080fd5b5061056f61139a565b60405161057c9190613dff565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a791906146b7565b6113a5565b005b3480156105ba57600080fd5b506105d560048036038101906105d0919061401b565b61143b565b005b3480156105e357600080fd5b506105ec6114c3565b6040516105f99190613dff565b60405180910390f35b34801561060e57600080fd5b506106176114c9565b60405161062491906147a0565b60405180910390f35b34801561063957600080fd5b506106426114f3565b60405161064f91906140ec565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a91906147e7565b611530565b005b610689611546565b005b34801561069757600080fd5b506106b260048036038101906106ad919061410e565b6117b2565b6040516106bf9190613dff565b60405180910390f35b3480156106d457600080fd5b506106dd6117c0565b6040516106ea9190613dff565b60405180910390f35b3480156106ff57600080fd5b5061071a6004803603810190610715919061410e565b6117c6565b6040516107279190613dff565b60405180910390f35b61074a60048036038101906107459190614827565b6117e3565b005b61076660048036038101906107619190614827565b611a0e565b005b34801561077457600080fd5b5061077d611d9c565b60405161078a91906147a0565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b5919061410e565b611dc2565b6040516107c79190613eba565b60405180910390f35b3480156107dc57600080fd5b506107e5611de2565b6040516107f291906140ec565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d9190614854565b611e0a565b60405161082f9190613eba565b60405180910390f35b34801561084457600080fd5b5061084d611e9e565b005b34801561085b57600080fd5b5061087660048036038101906108719190614894565b611f24565b005b34801561088457600080fd5b5061089f600480360381019061089a9190614827565b611fc5565b005b3480156108ad57600080fd5b506108b66120bc565b6040516108c391906147a0565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361093c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093390614977565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16821480156109b05750600080600084815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b156109be5760019050610a1d565b600260008084815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a1a91906149c6565b90505b92915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aee57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5657507f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b665750610b65826120e2565b5b9050919050565b610b7561214c565b73ffffffffffffffffffffffffffffffffffffffff16610b936114c9565b73ffffffffffffffffffffffffffffffffffffffff1614610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090614a43565b60405180910390fd5b610bf281612154565b50565b60606040518060400160405280600a81526020017f4f7274686f766572736500000000000000000000000000000000000000000000815250905090565b606060006003600084815260200190815260200160002060009054906101000a900460ff16610c62576005610c65565b60085b8054610c7090614a92565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9c90614a92565b8015610ce95780601f10610cbe57610100808354040283529160200191610ce9565b820191906000526020600020905b815481529060010190602001808311610ccc57829003601f168201915b5050505050905080610cfa8461216e565b610d1660026000878152602001908152602001600020546121f3565b604051602001610d2893929190614b97565b604051602081830303815290604052915050919050565b66016bcc41e9000081565b600080610d556114c9565b61271060fa85610d659190614c0d565b610d6f9190614c67565b915091509250929050565b610d8261214c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610dc85750610dc785610dc261214c565b611e0a565b5b610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe90614ce4565b60405180910390fd5b610e148585858585612353565b5050505050565b661c6bf52634000081565b600047905060008111610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590614d50565b60405180910390fd5b6000600a600583610e7f9190614c0d565b610e899190614c67565b9050610eb7600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261280e565b610ee3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261280e565b5050565b60608151835114610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490614dbc565b60405180910390fd5b6000835167ffffffffffffffff811115610f4a57610f49613ef0565b5b604051908082528060200260200182016040528015610f785781602001602082028036833780820191505090505b50905060005b8451811015610ff557610fc5858281518110610f9d57610f9c614ddc565b5b6020026020010151858381518110610fb857610fb7614ddc565b5b60200260200101516108cc565b828281518110610fd857610fd7614ddc565b5b60200260200101818152505080610fee90614e0b565b9050610f7e565b508091505092915050565b600080915060019050919050565b60008033905060008173ffffffffffffffffffffffffffffffffffffffff16905060008082815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549250505090565b6001600260008084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110e491906149c6565b14611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90614ec5565b60405180910390fd5b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156111d05750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b156112205766038d7ea4c6800034101561121f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121690614f31565b60405180910390fd5b5b600760026000838152602001908152602001600020541115611278576008600260008381526020019081526020016000205461125c9190614f51565b60026000838152602001908152602001600020819055506112b0565b600860026000838152602001908152602001600020546112989190614f85565b60026000838152602001908152602001600020819055505b50565b6000600860026000848152602001908152602001600020546112d591906149c6565b60026112e1919061510e565b661c6bf5263400006112f39190614c0d565b9050919050565b61130261214c565b73ffffffffffffffffffffffffffffffffffffffff166113206114c9565b73ffffffffffffffffffffffffffffffffffffffff1614611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d90614a43565b60405180910390fd5b6113806000612902565b565b60026020528060005260406000206000915090505481565b66038d7ea4c6800081565b6113ad61214c565b73ffffffffffffffffffffffffffffffffffffffff166113cb6114c9565b73ffffffffffffffffffffffffffffffffffffffff1614611421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141890614a43565b60405180910390fd5b61143188888888888888886129c8565b5050505050505050565b61144361214c565b73ffffffffffffffffffffffffffffffffffffffff166114616114c9565b73ffffffffffffffffffffffffffffffffffffffff16146114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae90614a43565b60405180910390fd5b6114c081612dd3565b50565b61271081565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f4f52544800000000000000000000000000000000000000000000000000000000815250905090565b61154261153b61214c565b8383612ded565b5050565b6127106004541061158c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611583906151a5565b60405180910390fd5b66016bcc41e900003410156115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd90615211565b60405180910390fd5b600033905060008173ffffffffffffffffffffffffffffffffffffffff169050600080600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f9061527d565b60405180910390fd5b600160008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600460008154809291906116f090614e0b565b919050555060016003600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600061172b61214c565b90508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628560016040516117a59291906152e2565b60405180910390a4505050565b600080915060019050919050565b60045481565b600060026000838152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184990615357565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff16905060076002600083815260200190815260200160002054141580156118a55750600f600260008381526020019081526020016000205414155b6118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db906153c3565b60405180910390fd5b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156119905750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b156119e15761199e816112b3565b3410156119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790614f31565b60405180910390fd5b5b600260008281526020019081526020016000206000815480929190611a0590614e0b565b91905055505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a749061542f565b60405180910390fd5b61271060045410611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba906151a5565b60405180910390fd5b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015611b6f5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15611bbf5766016bcc41e90000341015611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb59061549b565b60405180910390fd5b5b600081905060008173ffffffffffffffffffffffffffffffffffffffff169050600080600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c689061527d565b60405180910390fd5b600160008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060046000815480929190611cd990614e0b565b919050555060016003600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506000611d1461214c565b90508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62856001604051611d8e9291906152e2565b60405180910390a450505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60036020528060005260406000206000915054906101000a900460ff1681565b60606008604051602001611df6919061559b565b604051602081830303815290604052905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ea661214c565b73ffffffffffffffffffffffffffffffffffffffff16611ec46114c9565b73ffffffffffffffffffffffffffffffffffffffff1614611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1190614a43565b60405180910390fd5b611f22612f59565b565b611f2c61214c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611f725750611f7185611f6c61214c565b611e0a565b5b611fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa890614ce4565b60405180910390fd5b611fbe8585858585612f76565b5050505050565b611fcd61214c565b73ffffffffffffffffffffffffffffffffffffffff16611feb6114c9565b73ffffffffffffffffffffffffffffffffffffffff1614612041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203890614a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a79061562f565b60405180910390fd5b6120b981612902565b50565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806008908051906020019061216a929190613c65565b5050565b6060600082036121b5576040518060400160405280600481526020017f307830300000000000000000000000000000000000000000000000000000000081525090506121ee565b600082905060005b600082146121df5780806121d090614e0b565b915050600882901c91506121bd565b6121e98482613448565b925050505b919050565b60606000820361223a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061234e565b600082905060005b6000821461226c57808061225590614e0b565b915050600a826122659190614c67565b9150612242565b60008167ffffffffffffffff81111561228857612287613ef0565b5b6040519080825280601f01601f1916602001820160405280156122ba5781602001600182028036833780820191505090505b5090505b60008514612347576001826122d39190614f51565b9150600a856122e291906149c6565b60306122ee9190614f85565b60f81b81838151811061230457612303614ddc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123409190614c67565b94506122be565b8093505050505b919050565b8151835114612397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238e9061569b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fd90615707565b60405180910390fd5b600061241061214c565b9050612420818787878787613684565b60005b845181101561277957600085828151811061244157612440614ddc565b5b602002602001015190508773ffffffffffffffffffffffffffffffffffffffff168114612507576001600260008084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c691906149c6565b14612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fd90615773565b60405180910390fd5b5b600080600083815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540361260557600160008083815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061271060045410156126045760016003600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600460008154809291906125fe90614e0b565b91905055505b5b600080600083815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600160028261266891906149c6565b146126a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269f90615805565b60405180910390fd5b6001810160008084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160008084815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461275f9190614f85565b9250508190555050508061277290614e0b565b9050612423565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516127f0929190615825565b60405180910390a461280681878787878761369a565b505050505050565b80471015612851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612848906158a8565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612877906158f9565b60006040518083038185875af1925050503d80600081146128b4576040519150601f19603f3d011682016040523d82523d6000602084013e6128b9565b606091505b50509050806128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f490615980565b60405180910390fd5b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600660009054906101000a900460ff1615612a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0f906159ec565b60405180910390fd5b60005b88889050811015612dc857828282818110612a3957612a38614ddc565b5b9050602002013560026000878785818110612a5757612a56614ddc565b5b90506020020135815260200190815260200160002081905550600160036000878785818110612a8957612a88614ddc565b5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055506000898983818110612aca57612ac9614ddc565b5b9050602002016020810190612adf9190614827565b9050600073ffffffffffffffffffffffffffffffffffffffff168a8a84818110612b0c57612b0b614ddc565b5b9050602002016020810190612b219190614827565b73ffffffffffffffffffffffffffffffffffffffff1603612b8357878783818110612b4f57612b4e614ddc565b5b9050602002016020810190612b649190614827565b905060046000815480929190612b7990614e0b565b9190505550612c29565b600080878785818110612b9957612b98614ddc565b5b90506020020135815260200190815260200160002060008b8b85818110612bc357612bc2614ddc565b5b9050602002016020810190612bd89190614827565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612c2390614e0b565b91905055505b600080878785818110612c3f57612c3e614ddc565b5b9050602002013581526020019081526020016000206000898985818110612c6957612c68614ddc565b5b9050602002016020810190612c7e9190614827565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612cc990614e0b565b9190505550878783818110612ce157612ce0614ddc565b5b9050602002016020810190612cf69190614827565b73ffffffffffffffffffffffffffffffffffffffff168a8a84818110612d1f57612d1e614ddc565b5b9050602002016020810190612d349190614827565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62898987818110612d9557612d94614ddc565b5b905060200201356001604051612dac9291906152e2565b60405180910390a4508080612dc090614e0b565b915050612a1b565b505050505050505050565b8060059080519060200190612de9929190613c65565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5290615a58565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f4c9190613eba565b60405180910390a3505050565b6001600660006101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdc90615707565b60405180910390fd5b6000612fef61214c565b90508573ffffffffffffffffffffffffffffffffffffffff1684146130ad576001600260008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461306c91906149c6565b146130ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a390615773565b60405180910390fd5b5b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540361322b57600160008086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061271060045410156131aa5760016003600086815260200190815260200160002060006101000a81548160ff021916908315150217905550600460008154809291906131a490614e0b565b91905055505b8573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628760016040516132229291906152e2565b60405180910390a45b61324981878761323a88613871565b61324388613871565b87613684565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060016002826132ac91906149c6565b146132ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e390615aea565b60405180910390fd5b600160008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600160008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133aa9190614f85565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628860016040516134289291906152e2565b60405180910390a461343f828888886001886138eb565b50505050505050565b60606000600283600261345b9190614c0d565b6134659190614f85565b67ffffffffffffffff81111561347e5761347d613ef0565b5b6040519080825280601f01601f1916602001820160405280156134b05781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106134e8576134e7614ddc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061354c5761354b614ddc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261358c9190614c0d565b6135969190614f85565b90505b6001811115613636577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106135d8576135d7614ddc565b5b1a60f81b8282815181106135ef576135ee614ddc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061362f90615b0a565b9050613599565b506000841461367a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367190615b7f565b60405180910390fd5b8091505092915050565b613692868686868686613ac2565b505050505050565b6136b98473ffffffffffffffffffffffffffffffffffffffff16613c3a565b15613869578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016136ff959493929190615bf4565b6020604051808303816000875af192505050801561373b57506040513d601f19601f820116820180604052508101906137389190615c71565b60015b6137e057613747615cab565b806308c379a0036137a3575061375b615ccd565b8061376657506137a5565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379a91906140ec565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d790615dcf565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385e90615e3b565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156138905761388f613ef0565b5b6040519080825280602002602001820160405280156138be5781602001602082028036833780820191505090505b50905082816000815181106138d6576138d5614ddc565b5b60200260200101818152505080915050919050565b61390a8473ffffffffffffffffffffffffffffffffffffffff16613c3a565b15613aba578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613950959493929190615e5b565b6020604051808303816000875af192505050801561398c57506040513d601f19601f820116820180604052508101906139899190615c71565b60015b613a3157613998615cab565b806308c379a0036139f457506139ac615ccd565b806139b757506139f6565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139eb91906140ec565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2890615dcf565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aaf90615e3b565b60405180910390fd5b505b505050505050565b613ad0868686868686613c5d565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613b815760005b8351811015613b7f57828181518110613b2357613b22614ddc565b5b6020026020010151600a6000868481518110613b4257613b41614ddc565b5b602002602001015181526020019081526020016000206000828254613b679190614f85565b9250508190555080613b7890614e0b565b9050613b07565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613c325760005b8351811015613c3057828181518110613bd457613bd3614ddc565b5b6020026020010151600a6000868481518110613bf357613bf2614ddc565b5b602002602001015181526020019081526020016000206000828254613c189190614f51565b9250508190555080613c2990614e0b565b9050613bb8565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b828054613c7190614a92565b90600052602060002090601f016020900481019282613c935760008555613cda565b82601f10613cac57805160ff1916838001178555613cda565b82800160010185558215613cda579182015b82811115613cd9578251825591602001919060010190613cbe565b5b509050613ce79190613ceb565b5090565b5b80821115613d04576000816000905550600101613cec565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4782613d1c565b9050919050565b613d5781613d3c565b8114613d6257600080fd5b50565b600081359050613d7481613d4e565b92915050565b6000819050919050565b613d8d81613d7a565b8114613d9857600080fd5b50565b600081359050613daa81613d84565b92915050565b60008060408385031215613dc757613dc6613d12565b5b6000613dd585828601613d65565b9250506020613de685828601613d9b565b9150509250929050565b613df981613d7a565b82525050565b6000602082019050613e146000830184613df0565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e4f81613e1a565b8114613e5a57600080fd5b50565b600081359050613e6c81613e46565b92915050565b600060208284031215613e8857613e87613d12565b5b6000613e9684828501613e5d565b91505092915050565b60008115159050919050565b613eb481613e9f565b82525050565b6000602082019050613ecf6000830184613eab565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f2882613edf565b810181811067ffffffffffffffff82111715613f4757613f46613ef0565b5b80604052505050565b6000613f5a613d08565b9050613f668282613f1f565b919050565b600067ffffffffffffffff821115613f8657613f85613ef0565b5b613f8f82613edf565b9050602081019050919050565b82818337600083830152505050565b6000613fbe613fb984613f6b565b613f50565b905082815260208101848484011115613fda57613fd9613eda565b5b613fe5848285613f9c565b509392505050565b600082601f83011261400257614001613ed5565b5b8135614012848260208601613fab565b91505092915050565b60006020828403121561403157614030613d12565b5b600082013567ffffffffffffffff81111561404f5761404e613d17565b5b61405b84828501613fed565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561409e578082015181840152602081019050614083565b838111156140ad576000848401525b50505050565b60006140be82614064565b6140c8818561406f565b93506140d8818560208601614080565b6140e181613edf565b840191505092915050565b6000602082019050818103600083015261410681846140b3565b905092915050565b60006020828403121561412457614123613d12565b5b600061413284828501613d9b565b91505092915050565b6000806040838503121561415257614151613d12565b5b600061416085828601613d9b565b925050602061417185828601613d9b565b9150509250929050565b61418481613d3c565b82525050565b600060408201905061419f600083018561417b565b6141ac6020830184613df0565b9392505050565b600067ffffffffffffffff8211156141ce576141cd613ef0565b5b602082029050602081019050919050565b600080fd5b60006141f76141f2846141b3565b613f50565b9050808382526020820190506020840283018581111561421a576142196141df565b5b835b81811015614243578061422f8882613d9b565b84526020840193505060208101905061421c565b5050509392505050565b600082601f83011261426257614261613ed5565b5b81356142728482602086016141e4565b91505092915050565b600067ffffffffffffffff82111561429657614295613ef0565b5b61429f82613edf565b9050602081019050919050565b60006142bf6142ba8461427b565b613f50565b9050828152602081018484840111156142db576142da613eda565b5b6142e6848285613f9c565b509392505050565b600082601f83011261430357614302613ed5565b5b81356143138482602086016142ac565b91505092915050565b600080600080600060a0868803121561433857614337613d12565b5b600061434688828901613d65565b955050602061435788828901613d65565b945050604086013567ffffffffffffffff81111561437857614377613d17565b5b6143848882890161424d565b935050606086013567ffffffffffffffff8111156143a5576143a4613d17565b5b6143b18882890161424d565b925050608086013567ffffffffffffffff8111156143d2576143d1613d17565b5b6143de888289016142ee565b9150509295509295909350565b600067ffffffffffffffff82111561440657614405613ef0565b5b602082029050602081019050919050565b600061442a614425846143eb565b613f50565b9050808382526020820190506020840283018581111561444d5761444c6141df565b5b835b8181101561447657806144628882613d65565b84526020840193505060208101905061444f565b5050509392505050565b600082601f83011261449557614494613ed5565b5b81356144a5848260208601614417565b91505092915050565b600080604083850312156144c5576144c4613d12565b5b600083013567ffffffffffffffff8111156144e3576144e2613d17565b5b6144ef85828601614480565b925050602083013567ffffffffffffffff8111156145105761450f613d17565b5b61451c8582860161424d565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61455b81613d7a565b82525050565b600061456d8383614552565b60208301905092915050565b6000602082019050919050565b600061459182614526565b61459b8185614531565b93506145a683614542565b8060005b838110156145d75781516145be8882614561565b97506145c983614579565b9250506001810190506145aa565b5085935050505092915050565b600060208201905081810360008301526145fe8184614586565b905092915050565b600080fd5b60008083601f84011261462157614620613ed5565b5b8235905067ffffffffffffffff81111561463e5761463d614606565b5b60208301915083602082028301111561465a576146596141df565b5b9250929050565b60008083601f84011261467757614676613ed5565b5b8235905067ffffffffffffffff81111561469457614693614606565b5b6020830191508360208202830111156146b0576146af6141df565b5b9250929050565b6000806000806000806000806080898b0312156146d7576146d6613d12565b5b600089013567ffffffffffffffff8111156146f5576146f4613d17565b5b6147018b828c0161460b565b9850985050602089013567ffffffffffffffff81111561472457614723613d17565b5b6147308b828c0161460b565b9650965050604089013567ffffffffffffffff81111561475357614752613d17565b5b61475f8b828c01614661565b9450945050606089013567ffffffffffffffff81111561478257614781613d17565b5b61478e8b828c01614661565b92509250509295985092959890939650565b60006020820190506147b5600083018461417b565b92915050565b6147c481613e9f565b81146147cf57600080fd5b50565b6000813590506147e1816147bb565b92915050565b600080604083850312156147fe576147fd613d12565b5b600061480c85828601613d65565b925050602061481d858286016147d2565b9150509250929050565b60006020828403121561483d5761483c613d12565b5b600061484b84828501613d65565b91505092915050565b6000806040838503121561486b5761486a613d12565b5b600061487985828601613d65565b925050602061488a85828601613d65565b9150509250929050565b600080600080600060a086880312156148b0576148af613d12565b5b60006148be88828901613d65565b95505060206148cf88828901613d65565b94505060406148e088828901613d9b565b93505060606148f188828901613d9b565b925050608086013567ffffffffffffffff81111561491257614911613d17565b5b61491e888289016142ee565b9150509295509295909350565b7f62616c616e636520717565727920666f72203078300000000000000000000000600082015250565b600061496160158361406f565b915061496c8261492b565b602082019050919050565b6000602082019050818103600083015261499081614954565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006149d182613d7a565b91506149dc83613d7a565b9250826149ec576149eb614997565b5b828206905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a2d60208361406f565b9150614a38826149f7565b602082019050919050565b60006020820190508181036000830152614a5c81614a20565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614aaa57607f821691505b602082108103614abd57614abc614a63565b5b50919050565b600081905092915050565b6000614ad982614064565b614ae38185614ac3565b9350614af3818560208601614080565b80840191505092915050565b7f2d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614b35600183614ac3565b9150614b4082614aff565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614b81600583614ac3565b9150614b8c82614b4b565b600582019050919050565b6000614ba38286614ace565b9150614baf8285614ace565b9150614bba82614b28565b9150614bc68284614ace565b9150614bd182614b74565b9150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c1882613d7a565b9150614c2383613d7a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c5c57614c5b614bde565b5b828202905092915050565b6000614c7282613d7a565b9150614c7d83613d7a565b925082614c8d57614c8c614997565b5b828204905092915050565b7f6d757374206265206f776e6572206f7220617070726f76656400000000000000600082015250565b6000614cce60198361406f565b9150614cd982614c98565b602082019050919050565b60006020820190508181036000830152614cfd81614cc1565b9050919050565b7f4e6f2066756e6473000000000000000000000000000000000000000000000000600082015250565b6000614d3a60088361406f565b9150614d4582614d04565b602082019050919050565b60006020820190508181036000830152614d6981614d2d565b9050919050565b7f6163636f756e747320616e6420696473206c656e677468206d69736d61746368600082015250565b6000614da660208361406f565b9150614db182614d70565b602082019050919050565b60006020820190508181036000830152614dd581614d99565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614e1682613d7a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614e4857614e47614bde565b5b600182019050919050565b7f6f6e6c79206f776e6572206f662072657665616c656420746f6b656e2063616e60008201527f20666c6970000000000000000000000000000000000000000000000000000000602082015250565b6000614eaf60258361406f565b9150614eba82614e53565b604082019050919050565b60006020820190508181036000830152614ede81614ea2565b9050919050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b6000614f1b600e8361406f565b9150614f2682614ee5565b602082019050919050565b60006020820190508181036000830152614f4a81614f0e565b9050919050565b6000614f5c82613d7a565b9150614f6783613d7a565b925082821015614f7a57614f79614bde565b5b828203905092915050565b6000614f9082613d7a565b9150614f9b83613d7a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614fd057614fcf614bde565b5b828201905092915050565b60008160011c9050919050565b6000808291508390505b60018511156150325780860481111561500e5761500d614bde565b5b600185161561501d5780820291505b808102905061502b85614fdb565b9450614ff2565b94509492505050565b60008261504b5760019050615107565b816150595760009050615107565b816001811461506f5760028114615079576150a8565b6001915050615107565b60ff84111561508b5761508a614bde565b5b8360020a9150848211156150a2576150a1614bde565b5b50615107565b5060208310610133831016604e8410600b84101617156150dd5782820a9050838111156150d8576150d7614bde565b5b615107565b6150ea8484846001614fe8565b9250905081840481111561510157615100614bde565b5b81810290505b9392505050565b600061511982613d7a565b915061512483613d7a565b92506151517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461503b565b905092915050565b7f57652772652072657665616c6564206f75742100000000000000000000000000600082015250565b600061518f60138361406f565b915061519a82615159565b602082019050919050565b600060208201905081810360008301526151be81615182565b9050919050565b7f506c656173652073656e6420302e303030342045544800000000000000000000600082015250565b60006151fb60168361406f565b9150615206826151c5565b602082019050919050565b6000602082019050818103600083015261522a816151ee565b9050919050565b7f4e465420616c72656164792072657665616c6564000000000000000000000000600082015250565b600061526760148361406f565b915061527282615231565b602082019050919050565b600060208201905081810360008301526152968161525a565b9050919050565b6000819050919050565b6000819050919050565b60006152cc6152c76152c28461529d565b6152a7565b613d7a565b9050919050565b6152dc816152b1565b82525050565b60006040820190506152f76000830185613df0565b61530460208301846152d3565b9392505050565b7f4e6f207a65726f20616464726573730000000000000000000000000000000000600082015250565b6000615341600f8361406f565b915061534c8261530b565b602082019050919050565b6000602082019050818103600083015261537081615334565b9050919050565b7f4174206d6178206c6576656c0000000000000000000000000000000000000000600082015250565b60006153ad600c8361406f565b91506153b882615377565b602082019050919050565b600060208201905081810360008301526153dc816153a0565b9050919050565b7f4e6f206769667420666f72203078300000000000000000000000000000000000600082015250565b6000615419600f8361406f565b9150615424826153e3565b602082019050919050565b600060208201905081810360008301526154488161540c565b9050919050565b7f476966743a20506c656173652073656e6420302e303030342045544800000000600082015250565b6000615485601c8361406f565b91506154908261544f565b602082019050919050565b600060208201905081810360008301526154b481615478565b9050919050565b60008190508160005260206000209050919050565b600081546154dd81614a92565b6154e78186614ac3565b94506001821660008114615502576001811461551357615546565b60ff19831686528186019350615546565b61551c856154bb565b60005b8381101561553e5781548189015260018201915060208101905061551f565b838801955050505b50505092915050565b7f636f6e74726163742e6a736f6e00000000000000000000000000000000000000600082015250565b6000615585600d83614ac3565b91506155908261554f565b600d82019050919050565b60006155a782846154d0565b91506155b282615578565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061561960268361406f565b9150615624826155bd565b604082019050919050565b600060208201905081810360008301526156488161560c565b9050919050565b7f69647320616e6420616d6f756e7473206c656e677468206d69736d6174636800600082015250565b6000615685601f8361406f565b91506156908261564f565b602082019050919050565b600060208201905081810360008301526156b481615678565b9050919050565b7f7472616e7366657220746f203078300000000000000000000000000000000000600082015250565b60006156f1600f8361406f565b91506156fc826156bb565b602082019050919050565b60006020820190508181036000830152615720816156e4565b9050919050565b7f4e6f74206f776e65722100000000000000000000000000000000000000000000600082015250565b600061575d600a8361406f565b915061576882615727565b602082019050919050565b6000602082019050818103600083015261578c81615750565b9050919050565b7f696e73756666696369656e742062616c616e636520666f72207472616e73666560008201527f7220626174636800000000000000000000000000000000000000000000000000602082015250565b60006157ef60278361406f565b91506157fa82615793565b604082019050919050565b6000602082019050818103600083015261581e816157e2565b9050919050565b6000604082019050818103600083015261583f8185614586565b905081810360208301526158538184614586565b90509392505050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000615892601d8361406f565b915061589d8261585c565b602082019050919050565b600060208201905081810360008301526158c181615885565b9050919050565b600081905092915050565b50565b60006158e36000836158c8565b91506158ee826158d3565b600082019050919050565b6000615904826158d6565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061596a603a8361406f565b91506159758261590e565b604082019050919050565b600060208201905081810360008301526159998161595d565b9050919050565b7f6b696c6c65642100000000000000000000000000000000000000000000000000600082015250565b60006159d660078361406f565b91506159e1826159a0565b602082019050919050565b60006020820190508181036000830152615a05816159c9565b9050919050565b7f73657474696e6720617070726f76616c2073746174757320666f722073656c66600082015250565b6000615a4260208361406f565b9150615a4d82615a0c565b602082019050919050565b60006020820190508181036000830152615a7181615a35565b9050919050565b7f696e73756666696369656e742062616c616e636520666f72207472616e73666560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000615ad460218361406f565b9150615adf82615a78565b604082019050919050565b60006020820190508181036000830152615b0381615ac7565b9050919050565b6000615b1582613d7a565b915060008203615b2857615b27614bde565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000615b6960208361406f565b9150615b7482615b33565b602082019050919050565b60006020820190508181036000830152615b9881615b5c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615bc682615b9f565b615bd08185615baa565b9350615be0818560208601614080565b615be981613edf565b840191505092915050565b600060a082019050615c09600083018861417b565b615c16602083018761417b565b8181036040830152615c288186614586565b90508181036060830152615c3c8185614586565b90508181036080830152615c508184615bbb565b90509695505050505050565b600081519050615c6b81613e46565b92915050565b600060208284031215615c8757615c86613d12565b5b6000615c9584828501615c5c565b91505092915050565b60008160e01c9050919050565b600060033d1115615cca5760046000803e615cc7600051615c9e565b90505b90565b600060443d10615d5a57615cdf613d08565b60043d036004823e80513d602482011167ffffffffffffffff82111715615d07575050615d5a565b808201805167ffffffffffffffff811115615d255750505050615d5a565b80602083010160043d038501811115615d42575050505050615d5a565b615d5182602001850186613f1f565b82955050505050505b90565b7f7472616e7366657220746f206e6f6e204552433131353552656365697665722060008201527f696d706c656d656e746572000000000000000000000000000000000000000000602082015250565b6000615db9602b8361406f565b9150615dc482615d5d565b604082019050919050565b60006020820190508181036000830152615de881615dac565b9050919050565b7f4552433131353552656365697665722072656a656374656420746f6b656e7300600082015250565b6000615e25601f8361406f565b9150615e3082615def565b602082019050919050565b60006020820190508181036000830152615e5481615e18565b9050919050565b600060a082019050615e70600083018861417b565b615e7d602083018761417b565b615e8a6040830186613df0565b615e976060830185613df0565b8181036080830152615ea98184615bbb565b9050969550505050505056fea264697066735822122034a385606e67a94e98e52c69d9976d4f1f94c4e516bd05b865442b45458d255c64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000600000000000000000000000002830b5a3b5242bc2c64c390594ed971e7ded47d20000000000000000000000002cde3c309ef95411f78b338a7de85c4454316208000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f6f7274686f76657273652e696f2f6170692f6d657461646174612f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102245760003560e01c806383146eab11610123578063c53b23f2116100ab578063e985e9c51161006f578063e985e9c5146107fb578063ef42130d14610838578063f242432a1461084f578063f2fde38b14610878578063f7320375146108a157610224565b8063c53b23f214610730578063cbfc4bce1461074c578063d269fe6a14610768578063e04813e214610793578063e8a3d485146107d057610224565b8063a22cb465116100f2578063a22cb46514610658578063a475b5dd14610681578063bd85b0391461068b578063bf88c14b146106c8578063c08db79d146106f357610224565b806383146eab146105ae57806389cc7aed146105d75780638da5cb5b1461060257806395d89b411461062d57610224565b80633ccfd60b116101b15780635fcf37e9116101755780635fcf37e9146104c9578063715018a614610506578063756495ca1461051d5780637744adc21461055a57806379a5c44d1461058557610224565b80633ccfd60b146103f15780634e1273f4146104085780634f558e791461044557806354214f6914610482578063548edcee146104ad57610224565b80630e89341c116101f85780630e89341c146102f757806329ba8f9c146103345780632a55205a1461035f5780632eb2c2d61461039d5780633a145777146103c657610224565b8062fdd58e1461022957806301ffc9a71461026657806302fe5305146102a357806306fdde03146102cc575b600080fd5b34801561023557600080fd5b50610250600480360381019061024b9190613db0565b6108cc565b60405161025d9190613dff565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190613e72565b610a23565b60405161029a9190613eba565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c5919061401b565b610b6d565b005b3480156102d857600080fd5b506102e1610bf5565b6040516102ee91906140ec565b60405180910390f35b34801561030357600080fd5b5061031e6004803603810190610319919061410e565b610c32565b60405161032b91906140ec565b60405180910390f35b34801561034057600080fd5b50610349610d3f565b6040516103569190613dff565b60405180910390f35b34801561036b57600080fd5b506103866004803603810190610381919061413b565b610d4a565b60405161039492919061418a565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf919061431c565b610d7a565b005b3480156103d257600080fd5b506103db610e1b565b6040516103e89190613dff565b60405180910390f35b3480156103fd57600080fd5b50610406610e26565b005b34801561041457600080fd5b5061042f600480360381019061042a91906144ae565b610ee7565b60405161043c91906145e4565b60405180910390f35b34801561045157600080fd5b5061046c6004803603810190610467919061410e565b611000565b6040516104799190613eba565b60405180910390f35b34801561048e57600080fd5b5061049761100e565b6040516104a49190613dff565b60405180910390f35b6104c760048036038101906104c2919061410e565b611086565b005b3480156104d557600080fd5b506104f060048036038101906104eb919061410e565b6112b3565b6040516104fd9190613dff565b60405180910390f35b34801561051257600080fd5b5061051b6112fa565b005b34801561052957600080fd5b50610544600480360381019061053f919061410e565b611382565b6040516105519190613dff565b60405180910390f35b34801561056657600080fd5b5061056f61139a565b60405161057c9190613dff565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a791906146b7565b6113a5565b005b3480156105ba57600080fd5b506105d560048036038101906105d0919061401b565b61143b565b005b3480156105e357600080fd5b506105ec6114c3565b6040516105f99190613dff565b60405180910390f35b34801561060e57600080fd5b506106176114c9565b60405161062491906147a0565b60405180910390f35b34801561063957600080fd5b506106426114f3565b60405161064f91906140ec565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a91906147e7565b611530565b005b610689611546565b005b34801561069757600080fd5b506106b260048036038101906106ad919061410e565b6117b2565b6040516106bf9190613dff565b60405180910390f35b3480156106d457600080fd5b506106dd6117c0565b6040516106ea9190613dff565b60405180910390f35b3480156106ff57600080fd5b5061071a6004803603810190610715919061410e565b6117c6565b6040516107279190613dff565b60405180910390f35b61074a60048036038101906107459190614827565b6117e3565b005b61076660048036038101906107619190614827565b611a0e565b005b34801561077457600080fd5b5061077d611d9c565b60405161078a91906147a0565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b5919061410e565b611dc2565b6040516107c79190613eba565b60405180910390f35b3480156107dc57600080fd5b506107e5611de2565b6040516107f291906140ec565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d9190614854565b611e0a565b60405161082f9190613eba565b60405180910390f35b34801561084457600080fd5b5061084d611e9e565b005b34801561085b57600080fd5b5061087660048036038101906108719190614894565b611f24565b005b34801561088457600080fd5b5061089f600480360381019061089a9190614827565b611fc5565b005b3480156108ad57600080fd5b506108b66120bc565b6040516108c391906147a0565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361093c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093390614977565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16821480156109b05750600080600084815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b156109be5760019050610a1d565b600260008084815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a1a91906149c6565b90505b92915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aee57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5657507f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b665750610b65826120e2565b5b9050919050565b610b7561214c565b73ffffffffffffffffffffffffffffffffffffffff16610b936114c9565b73ffffffffffffffffffffffffffffffffffffffff1614610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090614a43565b60405180910390fd5b610bf281612154565b50565b60606040518060400160405280600a81526020017f4f7274686f766572736500000000000000000000000000000000000000000000815250905090565b606060006003600084815260200190815260200160002060009054906101000a900460ff16610c62576005610c65565b60085b8054610c7090614a92565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9c90614a92565b8015610ce95780601f10610cbe57610100808354040283529160200191610ce9565b820191906000526020600020905b815481529060010190602001808311610ccc57829003601f168201915b5050505050905080610cfa8461216e565b610d1660026000878152602001908152602001600020546121f3565b604051602001610d2893929190614b97565b604051602081830303815290604052915050919050565b66016bcc41e9000081565b600080610d556114c9565b61271060fa85610d659190614c0d565b610d6f9190614c67565b915091509250929050565b610d8261214c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610dc85750610dc785610dc261214c565b611e0a565b5b610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe90614ce4565b60405180910390fd5b610e148585858585612353565b5050505050565b661c6bf52634000081565b600047905060008111610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590614d50565b60405180910390fd5b6000600a600583610e7f9190614c0d565b610e899190614c67565b9050610eb7600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261280e565b610ee3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261280e565b5050565b60608151835114610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490614dbc565b60405180910390fd5b6000835167ffffffffffffffff811115610f4a57610f49613ef0565b5b604051908082528060200260200182016040528015610f785781602001602082028036833780820191505090505b50905060005b8451811015610ff557610fc5858281518110610f9d57610f9c614ddc565b5b6020026020010151858381518110610fb857610fb7614ddc565b5b60200260200101516108cc565b828281518110610fd857610fd7614ddc565b5b60200260200101818152505080610fee90614e0b565b9050610f7e565b508091505092915050565b600080915060019050919050565b60008033905060008173ffffffffffffffffffffffffffffffffffffffff16905060008082815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549250505090565b6001600260008084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110e491906149c6565b14611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90614ec5565b60405180910390fd5b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156111d05750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b156112205766038d7ea4c6800034101561121f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121690614f31565b60405180910390fd5b5b600760026000838152602001908152602001600020541115611278576008600260008381526020019081526020016000205461125c9190614f51565b60026000838152602001908152602001600020819055506112b0565b600860026000838152602001908152602001600020546112989190614f85565b60026000838152602001908152602001600020819055505b50565b6000600860026000848152602001908152602001600020546112d591906149c6565b60026112e1919061510e565b661c6bf5263400006112f39190614c0d565b9050919050565b61130261214c565b73ffffffffffffffffffffffffffffffffffffffff166113206114c9565b73ffffffffffffffffffffffffffffffffffffffff1614611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d90614a43565b60405180910390fd5b6113806000612902565b565b60026020528060005260406000206000915090505481565b66038d7ea4c6800081565b6113ad61214c565b73ffffffffffffffffffffffffffffffffffffffff166113cb6114c9565b73ffffffffffffffffffffffffffffffffffffffff1614611421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141890614a43565b60405180910390fd5b61143188888888888888886129c8565b5050505050505050565b61144361214c565b73ffffffffffffffffffffffffffffffffffffffff166114616114c9565b73ffffffffffffffffffffffffffffffffffffffff16146114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae90614a43565b60405180910390fd5b6114c081612dd3565b50565b61271081565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f4f52544800000000000000000000000000000000000000000000000000000000815250905090565b61154261153b61214c565b8383612ded565b5050565b6127106004541061158c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611583906151a5565b60405180910390fd5b66016bcc41e900003410156115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd90615211565b60405180910390fd5b600033905060008173ffffffffffffffffffffffffffffffffffffffff169050600080600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f9061527d565b60405180910390fd5b600160008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600460008154809291906116f090614e0b565b919050555060016003600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600061172b61214c565b90508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628560016040516117a59291906152e2565b60405180910390a4505050565b600080915060019050919050565b60045481565b600060026000838152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184990615357565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff16905060076002600083815260200190815260200160002054141580156118a55750600f600260008381526020019081526020016000205414155b6118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db906153c3565b60405180910390fd5b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156119905750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b156119e15761199e816112b3565b3410156119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790614f31565b60405180910390fd5b5b600260008281526020019081526020016000206000815480929190611a0590614e0b565b91905055505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a749061542f565b60405180910390fd5b61271060045410611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba906151a5565b60405180910390fd5b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015611b6f5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15611bbf5766016bcc41e90000341015611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb59061549b565b60405180910390fd5b5b600081905060008173ffffffffffffffffffffffffffffffffffffffff169050600080600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c689061527d565b60405180910390fd5b600160008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060046000815480929190611cd990614e0b565b919050555060016003600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506000611d1461214c565b90508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62856001604051611d8e9291906152e2565b60405180910390a450505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60036020528060005260406000206000915054906101000a900460ff1681565b60606008604051602001611df6919061559b565b604051602081830303815290604052905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ea661214c565b73ffffffffffffffffffffffffffffffffffffffff16611ec46114c9565b73ffffffffffffffffffffffffffffffffffffffff1614611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1190614a43565b60405180910390fd5b611f22612f59565b565b611f2c61214c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611f725750611f7185611f6c61214c565b611e0a565b5b611fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa890614ce4565b60405180910390fd5b611fbe8585858585612f76565b5050505050565b611fcd61214c565b73ffffffffffffffffffffffffffffffffffffffff16611feb6114c9565b73ffffffffffffffffffffffffffffffffffffffff1614612041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203890614a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a79061562f565b60405180910390fd5b6120b981612902565b50565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806008908051906020019061216a929190613c65565b5050565b6060600082036121b5576040518060400160405280600481526020017f307830300000000000000000000000000000000000000000000000000000000081525090506121ee565b600082905060005b600082146121df5780806121d090614e0b565b915050600882901c91506121bd565b6121e98482613448565b925050505b919050565b60606000820361223a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061234e565b600082905060005b6000821461226c57808061225590614e0b565b915050600a826122659190614c67565b9150612242565b60008167ffffffffffffffff81111561228857612287613ef0565b5b6040519080825280601f01601f1916602001820160405280156122ba5781602001600182028036833780820191505090505b5090505b60008514612347576001826122d39190614f51565b9150600a856122e291906149c6565b60306122ee9190614f85565b60f81b81838151811061230457612303614ddc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123409190614c67565b94506122be565b8093505050505b919050565b8151835114612397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238e9061569b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fd90615707565b60405180910390fd5b600061241061214c565b9050612420818787878787613684565b60005b845181101561277957600085828151811061244157612440614ddc565b5b602002602001015190508773ffffffffffffffffffffffffffffffffffffffff168114612507576001600260008084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c691906149c6565b14612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fd90615773565b60405180910390fd5b5b600080600083815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540361260557600160008083815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061271060045410156126045760016003600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600460008154809291906125fe90614e0b565b91905055505b5b600080600083815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600160028261266891906149c6565b146126a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269f90615805565b60405180910390fd5b6001810160008084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160008084815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461275f9190614f85565b9250508190555050508061277290614e0b565b9050612423565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516127f0929190615825565b60405180910390a461280681878787878761369a565b505050505050565b80471015612851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612848906158a8565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612877906158f9565b60006040518083038185875af1925050503d80600081146128b4576040519150601f19603f3d011682016040523d82523d6000602084013e6128b9565b606091505b50509050806128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f490615980565b60405180910390fd5b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600660009054906101000a900460ff1615612a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0f906159ec565b60405180910390fd5b60005b88889050811015612dc857828282818110612a3957612a38614ddc565b5b9050602002013560026000878785818110612a5757612a56614ddc565b5b90506020020135815260200190815260200160002081905550600160036000878785818110612a8957612a88614ddc565b5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055506000898983818110612aca57612ac9614ddc565b5b9050602002016020810190612adf9190614827565b9050600073ffffffffffffffffffffffffffffffffffffffff168a8a84818110612b0c57612b0b614ddc565b5b9050602002016020810190612b219190614827565b73ffffffffffffffffffffffffffffffffffffffff1603612b8357878783818110612b4f57612b4e614ddc565b5b9050602002016020810190612b649190614827565b905060046000815480929190612b7990614e0b565b9190505550612c29565b600080878785818110612b9957612b98614ddc565b5b90506020020135815260200190815260200160002060008b8b85818110612bc357612bc2614ddc565b5b9050602002016020810190612bd89190614827565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612c2390614e0b565b91905055505b600080878785818110612c3f57612c3e614ddc565b5b9050602002013581526020019081526020016000206000898985818110612c6957612c68614ddc565b5b9050602002016020810190612c7e9190614827565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612cc990614e0b565b9190505550878783818110612ce157612ce0614ddc565b5b9050602002016020810190612cf69190614827565b73ffffffffffffffffffffffffffffffffffffffff168a8a84818110612d1f57612d1e614ddc565b5b9050602002016020810190612d349190614827565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62898987818110612d9557612d94614ddc565b5b905060200201356001604051612dac9291906152e2565b60405180910390a4508080612dc090614e0b565b915050612a1b565b505050505050505050565b8060059080519060200190612de9929190613c65565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5290615a58565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f4c9190613eba565b60405180910390a3505050565b6001600660006101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdc90615707565b60405180910390fd5b6000612fef61214c565b90508573ffffffffffffffffffffffffffffffffffffffff1684146130ad576001600260008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461306c91906149c6565b146130ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a390615773565b60405180910390fd5b5b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540361322b57600160008086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061271060045410156131aa5760016003600086815260200190815260200160002060006101000a81548160ff021916908315150217905550600460008154809291906131a490614e0b565b91905055505b8573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628760016040516132229291906152e2565b60405180910390a45b61324981878761323a88613871565b61324388613871565b87613684565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060016002826132ac91906149c6565b146132ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e390615aea565b60405180910390fd5b600160008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600160008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133aa9190614f85565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628860016040516134289291906152e2565b60405180910390a461343f828888886001886138eb565b50505050505050565b60606000600283600261345b9190614c0d565b6134659190614f85565b67ffffffffffffffff81111561347e5761347d613ef0565b5b6040519080825280601f01601f1916602001820160405280156134b05781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106134e8576134e7614ddc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061354c5761354b614ddc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261358c9190614c0d565b6135969190614f85565b90505b6001811115613636577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106135d8576135d7614ddc565b5b1a60f81b8282815181106135ef576135ee614ddc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061362f90615b0a565b9050613599565b506000841461367a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367190615b7f565b60405180910390fd5b8091505092915050565b613692868686868686613ac2565b505050505050565b6136b98473ffffffffffffffffffffffffffffffffffffffff16613c3a565b15613869578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016136ff959493929190615bf4565b6020604051808303816000875af192505050801561373b57506040513d601f19601f820116820180604052508101906137389190615c71565b60015b6137e057613747615cab565b806308c379a0036137a3575061375b615ccd565b8061376657506137a5565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379a91906140ec565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d790615dcf565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385e90615e3b565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156138905761388f613ef0565b5b6040519080825280602002602001820160405280156138be5781602001602082028036833780820191505090505b50905082816000815181106138d6576138d5614ddc565b5b60200260200101818152505080915050919050565b61390a8473ffffffffffffffffffffffffffffffffffffffff16613c3a565b15613aba578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613950959493929190615e5b565b6020604051808303816000875af192505050801561398c57506040513d601f19601f820116820180604052508101906139899190615c71565b60015b613a3157613998615cab565b806308c379a0036139f457506139ac615ccd565b806139b757506139f6565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139eb91906140ec565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2890615dcf565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aaf90615e3b565b60405180910390fd5b505b505050505050565b613ad0868686868686613c5d565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613b815760005b8351811015613b7f57828181518110613b2357613b22614ddc565b5b6020026020010151600a6000868481518110613b4257613b41614ddc565b5b602002602001015181526020019081526020016000206000828254613b679190614f85565b9250508190555080613b7890614e0b565b9050613b07565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613c325760005b8351811015613c3057828181518110613bd457613bd3614ddc565b5b6020026020010151600a6000868481518110613bf357613bf2614ddc565b5b602002602001015181526020019081526020016000206000828254613c189190614f51565b9250508190555080613c2990614e0b565b9050613bb8565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b828054613c7190614a92565b90600052602060002090601f016020900481019282613c935760008555613cda565b82601f10613cac57805160ff1916838001178555613cda565b82800160010185558215613cda579182015b82811115613cd9578251825591602001919060010190613cbe565b5b509050613ce79190613ceb565b5090565b5b80821115613d04576000816000905550600101613cec565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4782613d1c565b9050919050565b613d5781613d3c565b8114613d6257600080fd5b50565b600081359050613d7481613d4e565b92915050565b6000819050919050565b613d8d81613d7a565b8114613d9857600080fd5b50565b600081359050613daa81613d84565b92915050565b60008060408385031215613dc757613dc6613d12565b5b6000613dd585828601613d65565b9250506020613de685828601613d9b565b9150509250929050565b613df981613d7a565b82525050565b6000602082019050613e146000830184613df0565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e4f81613e1a565b8114613e5a57600080fd5b50565b600081359050613e6c81613e46565b92915050565b600060208284031215613e8857613e87613d12565b5b6000613e9684828501613e5d565b91505092915050565b60008115159050919050565b613eb481613e9f565b82525050565b6000602082019050613ecf6000830184613eab565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f2882613edf565b810181811067ffffffffffffffff82111715613f4757613f46613ef0565b5b80604052505050565b6000613f5a613d08565b9050613f668282613f1f565b919050565b600067ffffffffffffffff821115613f8657613f85613ef0565b5b613f8f82613edf565b9050602081019050919050565b82818337600083830152505050565b6000613fbe613fb984613f6b565b613f50565b905082815260208101848484011115613fda57613fd9613eda565b5b613fe5848285613f9c565b509392505050565b600082601f83011261400257614001613ed5565b5b8135614012848260208601613fab565b91505092915050565b60006020828403121561403157614030613d12565b5b600082013567ffffffffffffffff81111561404f5761404e613d17565b5b61405b84828501613fed565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561409e578082015181840152602081019050614083565b838111156140ad576000848401525b50505050565b60006140be82614064565b6140c8818561406f565b93506140d8818560208601614080565b6140e181613edf565b840191505092915050565b6000602082019050818103600083015261410681846140b3565b905092915050565b60006020828403121561412457614123613d12565b5b600061413284828501613d9b565b91505092915050565b6000806040838503121561415257614151613d12565b5b600061416085828601613d9b565b925050602061417185828601613d9b565b9150509250929050565b61418481613d3c565b82525050565b600060408201905061419f600083018561417b565b6141ac6020830184613df0565b9392505050565b600067ffffffffffffffff8211156141ce576141cd613ef0565b5b602082029050602081019050919050565b600080fd5b60006141f76141f2846141b3565b613f50565b9050808382526020820190506020840283018581111561421a576142196141df565b5b835b81811015614243578061422f8882613d9b565b84526020840193505060208101905061421c565b5050509392505050565b600082601f83011261426257614261613ed5565b5b81356142728482602086016141e4565b91505092915050565b600067ffffffffffffffff82111561429657614295613ef0565b5b61429f82613edf565b9050602081019050919050565b60006142bf6142ba8461427b565b613f50565b9050828152602081018484840111156142db576142da613eda565b5b6142e6848285613f9c565b509392505050565b600082601f83011261430357614302613ed5565b5b81356143138482602086016142ac565b91505092915050565b600080600080600060a0868803121561433857614337613d12565b5b600061434688828901613d65565b955050602061435788828901613d65565b945050604086013567ffffffffffffffff81111561437857614377613d17565b5b6143848882890161424d565b935050606086013567ffffffffffffffff8111156143a5576143a4613d17565b5b6143b18882890161424d565b925050608086013567ffffffffffffffff8111156143d2576143d1613d17565b5b6143de888289016142ee565b9150509295509295909350565b600067ffffffffffffffff82111561440657614405613ef0565b5b602082029050602081019050919050565b600061442a614425846143eb565b613f50565b9050808382526020820190506020840283018581111561444d5761444c6141df565b5b835b8181101561447657806144628882613d65565b84526020840193505060208101905061444f565b5050509392505050565b600082601f83011261449557614494613ed5565b5b81356144a5848260208601614417565b91505092915050565b600080604083850312156144c5576144c4613d12565b5b600083013567ffffffffffffffff8111156144e3576144e2613d17565b5b6144ef85828601614480565b925050602083013567ffffffffffffffff8111156145105761450f613d17565b5b61451c8582860161424d565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61455b81613d7a565b82525050565b600061456d8383614552565b60208301905092915050565b6000602082019050919050565b600061459182614526565b61459b8185614531565b93506145a683614542565b8060005b838110156145d75781516145be8882614561565b97506145c983614579565b9250506001810190506145aa565b5085935050505092915050565b600060208201905081810360008301526145fe8184614586565b905092915050565b600080fd5b60008083601f84011261462157614620613ed5565b5b8235905067ffffffffffffffff81111561463e5761463d614606565b5b60208301915083602082028301111561465a576146596141df565b5b9250929050565b60008083601f84011261467757614676613ed5565b5b8235905067ffffffffffffffff81111561469457614693614606565b5b6020830191508360208202830111156146b0576146af6141df565b5b9250929050565b6000806000806000806000806080898b0312156146d7576146d6613d12565b5b600089013567ffffffffffffffff8111156146f5576146f4613d17565b5b6147018b828c0161460b565b9850985050602089013567ffffffffffffffff81111561472457614723613d17565b5b6147308b828c0161460b565b9650965050604089013567ffffffffffffffff81111561475357614752613d17565b5b61475f8b828c01614661565b9450945050606089013567ffffffffffffffff81111561478257614781613d17565b5b61478e8b828c01614661565b92509250509295985092959890939650565b60006020820190506147b5600083018461417b565b92915050565b6147c481613e9f565b81146147cf57600080fd5b50565b6000813590506147e1816147bb565b92915050565b600080604083850312156147fe576147fd613d12565b5b600061480c85828601613d65565b925050602061481d858286016147d2565b9150509250929050565b60006020828403121561483d5761483c613d12565b5b600061484b84828501613d65565b91505092915050565b6000806040838503121561486b5761486a613d12565b5b600061487985828601613d65565b925050602061488a85828601613d65565b9150509250929050565b600080600080600060a086880312156148b0576148af613d12565b5b60006148be88828901613d65565b95505060206148cf88828901613d65565b94505060406148e088828901613d9b565b93505060606148f188828901613d9b565b925050608086013567ffffffffffffffff81111561491257614911613d17565b5b61491e888289016142ee565b9150509295509295909350565b7f62616c616e636520717565727920666f72203078300000000000000000000000600082015250565b600061496160158361406f565b915061496c8261492b565b602082019050919050565b6000602082019050818103600083015261499081614954565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006149d182613d7a565b91506149dc83613d7a565b9250826149ec576149eb614997565b5b828206905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a2d60208361406f565b9150614a38826149f7565b602082019050919050565b60006020820190508181036000830152614a5c81614a20565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614aaa57607f821691505b602082108103614abd57614abc614a63565b5b50919050565b600081905092915050565b6000614ad982614064565b614ae38185614ac3565b9350614af3818560208601614080565b80840191505092915050565b7f2d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614b35600183614ac3565b9150614b4082614aff565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614b81600583614ac3565b9150614b8c82614b4b565b600582019050919050565b6000614ba38286614ace565b9150614baf8285614ace565b9150614bba82614b28565b9150614bc68284614ace565b9150614bd182614b74565b9150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c1882613d7a565b9150614c2383613d7a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c5c57614c5b614bde565b5b828202905092915050565b6000614c7282613d7a565b9150614c7d83613d7a565b925082614c8d57614c8c614997565b5b828204905092915050565b7f6d757374206265206f776e6572206f7220617070726f76656400000000000000600082015250565b6000614cce60198361406f565b9150614cd982614c98565b602082019050919050565b60006020820190508181036000830152614cfd81614cc1565b9050919050565b7f4e6f2066756e6473000000000000000000000000000000000000000000000000600082015250565b6000614d3a60088361406f565b9150614d4582614d04565b602082019050919050565b60006020820190508181036000830152614d6981614d2d565b9050919050565b7f6163636f756e747320616e6420696473206c656e677468206d69736d61746368600082015250565b6000614da660208361406f565b9150614db182614d70565b602082019050919050565b60006020820190508181036000830152614dd581614d99565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614e1682613d7a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614e4857614e47614bde565b5b600182019050919050565b7f6f6e6c79206f776e6572206f662072657665616c656420746f6b656e2063616e60008201527f20666c6970000000000000000000000000000000000000000000000000000000602082015250565b6000614eaf60258361406f565b9150614eba82614e53565b604082019050919050565b60006020820190508181036000830152614ede81614ea2565b9050919050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b6000614f1b600e8361406f565b9150614f2682614ee5565b602082019050919050565b60006020820190508181036000830152614f4a81614f0e565b9050919050565b6000614f5c82613d7a565b9150614f6783613d7a565b925082821015614f7a57614f79614bde565b5b828203905092915050565b6000614f9082613d7a565b9150614f9b83613d7a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614fd057614fcf614bde565b5b828201905092915050565b60008160011c9050919050565b6000808291508390505b60018511156150325780860481111561500e5761500d614bde565b5b600185161561501d5780820291505b808102905061502b85614fdb565b9450614ff2565b94509492505050565b60008261504b5760019050615107565b816150595760009050615107565b816001811461506f5760028114615079576150a8565b6001915050615107565b60ff84111561508b5761508a614bde565b5b8360020a9150848211156150a2576150a1614bde565b5b50615107565b5060208310610133831016604e8410600b84101617156150dd5782820a9050838111156150d8576150d7614bde565b5b615107565b6150ea8484846001614fe8565b9250905081840481111561510157615100614bde565b5b81810290505b9392505050565b600061511982613d7a565b915061512483613d7a565b92506151517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461503b565b905092915050565b7f57652772652072657665616c6564206f75742100000000000000000000000000600082015250565b600061518f60138361406f565b915061519a82615159565b602082019050919050565b600060208201905081810360008301526151be81615182565b9050919050565b7f506c656173652073656e6420302e303030342045544800000000000000000000600082015250565b60006151fb60168361406f565b9150615206826151c5565b602082019050919050565b6000602082019050818103600083015261522a816151ee565b9050919050565b7f4e465420616c72656164792072657665616c6564000000000000000000000000600082015250565b600061526760148361406f565b915061527282615231565b602082019050919050565b600060208201905081810360008301526152968161525a565b9050919050565b6000819050919050565b6000819050919050565b60006152cc6152c76152c28461529d565b6152a7565b613d7a565b9050919050565b6152dc816152b1565b82525050565b60006040820190506152f76000830185613df0565b61530460208301846152d3565b9392505050565b7f4e6f207a65726f20616464726573730000000000000000000000000000000000600082015250565b6000615341600f8361406f565b915061534c8261530b565b602082019050919050565b6000602082019050818103600083015261537081615334565b9050919050565b7f4174206d6178206c6576656c0000000000000000000000000000000000000000600082015250565b60006153ad600c8361406f565b91506153b882615377565b602082019050919050565b600060208201905081810360008301526153dc816153a0565b9050919050565b7f4e6f206769667420666f72203078300000000000000000000000000000000000600082015250565b6000615419600f8361406f565b9150615424826153e3565b602082019050919050565b600060208201905081810360008301526154488161540c565b9050919050565b7f476966743a20506c656173652073656e6420302e303030342045544800000000600082015250565b6000615485601c8361406f565b91506154908261544f565b602082019050919050565b600060208201905081810360008301526154b481615478565b9050919050565b60008190508160005260206000209050919050565b600081546154dd81614a92565b6154e78186614ac3565b94506001821660008114615502576001811461551357615546565b60ff19831686528186019350615546565b61551c856154bb565b60005b8381101561553e5781548189015260018201915060208101905061551f565b838801955050505b50505092915050565b7f636f6e74726163742e6a736f6e00000000000000000000000000000000000000600082015250565b6000615585600d83614ac3565b91506155908261554f565b600d82019050919050565b60006155a782846154d0565b91506155b282615578565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061561960268361406f565b9150615624826155bd565b604082019050919050565b600060208201905081810360008301526156488161560c565b9050919050565b7f69647320616e6420616d6f756e7473206c656e677468206d69736d6174636800600082015250565b6000615685601f8361406f565b91506156908261564f565b602082019050919050565b600060208201905081810360008301526156b481615678565b9050919050565b7f7472616e7366657220746f203078300000000000000000000000000000000000600082015250565b60006156f1600f8361406f565b91506156fc826156bb565b602082019050919050565b60006020820190508181036000830152615720816156e4565b9050919050565b7f4e6f74206f776e65722100000000000000000000000000000000000000000000600082015250565b600061575d600a8361406f565b915061576882615727565b602082019050919050565b6000602082019050818103600083015261578c81615750565b9050919050565b7f696e73756666696369656e742062616c616e636520666f72207472616e73666560008201527f7220626174636800000000000000000000000000000000000000000000000000602082015250565b60006157ef60278361406f565b91506157fa82615793565b604082019050919050565b6000602082019050818103600083015261581e816157e2565b9050919050565b6000604082019050818103600083015261583f8185614586565b905081810360208301526158538184614586565b90509392505050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000615892601d8361406f565b915061589d8261585c565b602082019050919050565b600060208201905081810360008301526158c181615885565b9050919050565b600081905092915050565b50565b60006158e36000836158c8565b91506158ee826158d3565b600082019050919050565b6000615904826158d6565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061596a603a8361406f565b91506159758261590e565b604082019050919050565b600060208201905081810360008301526159998161595d565b9050919050565b7f6b696c6c65642100000000000000000000000000000000000000000000000000600082015250565b60006159d660078361406f565b91506159e1826159a0565b602082019050919050565b60006020820190508181036000830152615a05816159c9565b9050919050565b7f73657474696e6720617070726f76616c2073746174757320666f722073656c66600082015250565b6000615a4260208361406f565b9150615a4d82615a0c565b602082019050919050565b60006020820190508181036000830152615a7181615a35565b9050919050565b7f696e73756666696369656e742062616c616e636520666f72207472616e73666560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000615ad460218361406f565b9150615adf82615a78565b604082019050919050565b60006020820190508181036000830152615b0381615ac7565b9050919050565b6000615b1582613d7a565b915060008203615b2857615b27614bde565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000615b6960208361406f565b9150615b7482615b33565b602082019050919050565b60006020820190508181036000830152615b9881615b5c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615bc682615b9f565b615bd08185615baa565b9350615be0818560208601614080565b615be981613edf565b840191505092915050565b600060a082019050615c09600083018861417b565b615c16602083018761417b565b8181036040830152615c288186614586565b90508181036060830152615c3c8185614586565b90508181036080830152615c508184615bbb565b90509695505050505050565b600081519050615c6b81613e46565b92915050565b600060208284031215615c8757615c86613d12565b5b6000615c9584828501615c5c565b91505092915050565b60008160e01c9050919050565b600060033d1115615cca5760046000803e615cc7600051615c9e565b90505b90565b600060443d10615d5a57615cdf613d08565b60043d036004823e80513d602482011167ffffffffffffffff82111715615d07575050615d5a565b808201805167ffffffffffffffff811115615d255750505050615d5a565b80602083010160043d038501811115615d42575050505050615d5a565b615d5182602001850186613f1f565b82955050505050505b90565b7f7472616e7366657220746f206e6f6e204552433131353552656365697665722060008201527f696d706c656d656e746572000000000000000000000000000000000000000000602082015250565b6000615db9602b8361406f565b9150615dc482615d5d565b604082019050919050565b60006020820190508181036000830152615de881615dac565b9050919050565b7f4552433131353552656365697665722072656a656374656420746f6b656e7300600082015250565b6000615e25601f8361406f565b9150615e3082615def565b602082019050919050565b60006020820190508181036000830152615e5481615e18565b9050919050565b600060a082019050615e70600083018861417b565b615e7d602083018761417b565b615e8a6040830186613df0565b615e976060830185613df0565b8181036080830152615ea98184615bbb565b9050969550505050505056fea264697066735822122034a385606e67a94e98e52c69d9976d4f1f94c4e516bd05b865442b45458d255c64736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000600000000000000000000000002830b5a3b5242bc2c64c390594ed971e7ded47d20000000000000000000000002cde3c309ef95411f78b338a7de85c4454316208000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f6f7274686f76657273652e696f2f6170692f6d657461646174612f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : uri_ (string): https://orthoverse.io/api/metadata/
Arg [1] : W0_ (address): 0x2830B5a3b5242BC2c64C390594ED971E7deD47D2
Arg [2] : W1_ (address): 0x2cdE3C309EF95411f78b338A7de85c4454316208

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000002830b5a3b5242bc2c64c390594ed971e7ded47d2
Arg [2] : 0000000000000000000000002cde3c309ef95411f78b338a7de85c4454316208
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [4] : 68747470733a2f2f6f7274686f76657273652e696f2f6170692f6d6574616461
Arg [5] : 74612f0000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.