ETH Price: $3,165.09 (-7.43%)
Gas: 4 Gwei

Token

House of Warlords Gallery (HOWLG)
 

Overview

Max Total Supply

0 HOWLG

Holders

75

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vechknightvault.eth
Balance
7 HOWLG
0x27013982436c909a685c4e33a768ea0bb671fd73
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HowlGallery

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-27
*/

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol



pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/HowlGallery.sol


pragma solidity ^0.8.2;




interface ISoul {
    function collectAndBurn(address _address, uint256 _amount) external;
}

contract HowlGallery is ERC721, Ownable {
    using ECDSA for bytes32;

    constructor(address _soulContractAddress)
        ERC721("House of Warlords Gallery", "HOWLG")
        Ownable()
    {
        soulContractAddress = _soulContractAddress;
    }

    string public baseURI;
    address public signer;
    address public soulContractAddress;

    struct StoreItem {
        uint128 tokenId;
        uint128 soulPrice;
    }

    mapping(uint256 => StoreItem) public store;

    event StorePurchase(
        uint128 indexed _tokenId,
        address indexed _address,
        uint256 _slot,
        uint128 soulPrice
    );

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function setSoulContractAddress(address _address) external onlyOwner {
        soulContractAddress = _address;
    }

    function setSigner(address _signer) external onlyOwner {
        signer = _signer;
    }

    function setBaseURI(string calldata _uri) external onlyOwner {
        baseURI = _uri;
    }

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function addStoreItem(
        uint256 _slot,
        uint128 _tokenId,
        uint128 _soulPrice
    ) external onlyOwner {
        store[_slot] = StoreItem(_tokenId, _soulPrice);
    }

    function deleteStoreItems(uint256[] calldata _slotsToDelete)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < _slotsToDelete.length; i++) {
            delete store[_slotsToDelete[i]];
        }
    }

    function mintToAddress(address _address, uint256[] calldata _tokenIds)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            _safeMint(_address, _tokenIds[i]);
        }
    }

    function redeemVoucher(
        address _address,
        uint256[] calldata _tokenIds,
        uint256 _price,
        uint256 _nonce,
        bytes calldata _voucher
    ) external payable {
        bytes32 hash = keccak256(
            abi.encodePacked(_address, _tokenIds, _price, _nonce)
        );

        require(
            _verifySignature(signer, hash, _voucher),
            "HOWL Gallery: invalid signature"
        );

        require(msg.value >= _price, "HOWL Gallery: not enough funds sent");

        // no need to store how many were minted from a voucher
        // _safeMint will throw if this is called a second time
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            _safeMint(_address, _tokenIds[i]);
        }
    }

    function buyStoreItem(uint256 _slot, uint128 _tokenId) external {
        StoreItem memory item = store[_slot];
        require(
            item.tokenId != 0 && item.tokenId == _tokenId,
            "HOWL Gallery: requested item is not available"
        );

        delete store[_slot];
        ISoul(soulContractAddress).collectAndBurn(msg.sender, item.soulPrice);

        _safeMint(msg.sender, _tokenId);
        emit StorePurchase(_tokenId, msg.sender, _slot, item.soulPrice);
    }

    function _verifySignature(
        address _signer,
        bytes32 _hash,
        bytes memory _signature
    ) private pure returns (bool) {
        return
            _signer ==
            ECDSA.recover(ECDSA.toEthSignedMessageHash(_hash), _signature);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_soulContractAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"uint128","name":"_tokenId","type":"uint128"},{"indexed":true,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"uint256","name":"_slot","type":"uint256"},{"indexed":false,"internalType":"uint128","name":"soulPrice","type":"uint128"}],"name":"StorePurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_slot","type":"uint256"},{"internalType":"uint128","name":"_tokenId","type":"uint128"},{"internalType":"uint128","name":"_soulPrice","type":"uint128"}],"name":"addStoreItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_slot","type":"uint256"},{"internalType":"uint128","name":"_tokenId","type":"uint128"}],"name":"buyStoreItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_slotsToDelete","type":"uint256[]"}],"name":"deleteStoreItems","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"mintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes","name":"_voucher","type":"bytes"}],"name":"redeemVoucher","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","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":"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":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setSoulContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"soulContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"store","outputs":[{"internalType":"uint128","name":"tokenId","type":"uint128"},{"internalType":"uint128","name":"soulPrice","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620028bc380380620028bc8339810160408190526200003491620001eb565b604080518082018252601981527f486f757365206f66205761726c6f7264732047616c6c65727900000000000000602080830191825283518085019094526005845264484f574c4760d81b908401528151919291620000969160009162000145565b508051620000ac90600190602084019062000145565b505050620000c9620000c3620000ef60201b60201c565b620000f3565b600980546001600160a01b0319166001600160a01b03929092169190911790556200025a565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000153906200021d565b90600052602060002090601f016020900481019282620001775760008555620001c2565b82601f106200019257805160ff1916838001178555620001c2565b82800160010185558215620001c2579182015b82811115620001c2578251825591602001919060010190620001a5565b50620001d0929150620001d4565b5090565b5b80821115620001d05760008155600101620001d5565b600060208284031215620001fe57600080fd5b81516001600160a01b03811681146200021657600080fd5b9392505050565b600181811c908216806200023257607f821691505b602082108114156200025457634e487b7160e01b600052602260045260246000fd5b50919050565b612652806200026a6000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd1461052c578063e985e9c51461054c578063ee3abc6f14610595578063f2fde38b146105b557600080fd5b8063a22cb465146104b9578063abfa1984146104d9578063b88d4fde146104ec578063c175f96b1461050c57600080fd5b806370a08231116100d157806370a0823114610443578063715018a6146104715780638da5cb5b1461048657806395d89b41146104a457600080fd5b80636352211e146103ee5780636c0360eb1461040e5780636c19e7831461042357600080fd5b80633548d0d21161016457806355f804b31161013e57806355f804b31461032d5780635629b66f1461034d578063601c58081461036d5780636057361d1461038d57600080fd5b80633548d0d2146102d85780633ccfd60b146102f857806342842e0e1461030d57600080fd5b8063095ea7b3116101a0578063095ea7b3146102565780631de010a714610278578063238ac9331461029857806323b872dd146102b857600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004612202565b6105d5565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610627565b6040516101f391906123d4565b34801561022a57600080fd5b5061023e610239366004612272565b6106b9565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004612196565b610753565b005b34801561028457600080fd5b5060095461023e906001600160a01b031681565b3480156102a457600080fd5b5060085461023e906001600160a01b031681565b3480156102c457600080fd5b506102766102d3366004611f5b565b610869565b3480156102e457600080fd5b506102766102f3366004611f0d565b61089a565b34801561030457600080fd5b506102766108e6565b34801561031957600080fd5b50610276610328366004611f5b565b61094c565b34801561033957600080fd5b5061027661034836600461223c565b610967565b34801561035957600080fd5b50610276610368366004612073565b61099d565b34801561037957600080fd5b5061027661038836600461228b565b610a0c565b34801561039957600080fd5b506103ce6103a8366004612272565b600a602052600090815260409020546001600160801b0380821691600160801b90041682565b604080516001600160801b039384168152929091166020830152016101f3565b3480156103fa57600080fd5b5061023e610409366004612272565b610bc8565b34801561041a57600080fd5b50610211610c3f565b34801561042f57600080fd5b5061027661043e366004611f0d565b610ccd565b34801561044f57600080fd5b5061046361045e366004611f0d565b610d19565b6040519081526020016101f3565b34801561047d57600080fd5b50610276610da0565b34801561049257600080fd5b506006546001600160a01b031661023e565b3480156104b057600080fd5b50610211610dd6565b3480156104c557600080fd5b506102766104d436600461215a565b610de5565b6102766104e73660046120c6565b610eaa565b3480156104f857600080fd5b50610276610507366004611f97565b61100d565b34801561051857600080fd5b506102766105273660046122ae565b61103f565b34801561053857600080fd5b50610211610547366004612272565b6110ad565b34801561055857600080fd5b506101e7610567366004611f28565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105a157600080fd5b506102766105b03660046121c0565b611188565b3480156105c157600080fd5b506102766105d0366004611f0d565b611201565b60006001600160e01b031982166380ac58cd60e01b148061060657506001600160e01b03198216635b5e139f60e01b145b8061062157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106369061252e565b80601f01602080910402602001604051908101604052809291908181526020018280546106629061252e565b80156106af5780601f10610684576101008083540402835291602001916106af565b820191906000526020600020905b81548152906001019060200180831161069257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061075e82610bc8565b9050806001600160a01b0316836001600160a01b031614156107cc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161072e565b336001600160a01b03821614806107e857506107e88133610567565b61085a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161072e565b6108648383611299565b505050565b6108733382611307565b61088f5760405162461bcd60e51b815260040161072e9061246e565b6108648383836113fe565b6006546001600160a01b031633146108c45760405162461bcd60e51b815260040161072e90612439565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146109105760405162461bcd60e51b815260040161072e90612439565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610949573d6000803e3d6000fd5b50565b6108648383836040518060200160405280600081525061100d565b6006546001600160a01b031633146109915760405162461bcd60e51b815260040161072e90612439565b61086460078383611dba565b6006546001600160a01b031633146109c75760405162461bcd60e51b815260040161072e90612439565b60005b81811015610a06576109f4848484848181106109e8576109e86125da565b9050602002013561159e565b806109fe81612569565b9150506109ca565b50505050565b6000828152600a60209081526040918290208251808401909352546001600160801b03808216808552600160801b909204169183019190915215801590610a685750816001600160801b031681600001516001600160801b0316145b610aca5760405162461bcd60e51b815260206004820152602d60248201527f484f574c2047616c6c6572793a20726571756573746564206974656d2069732060448201526c6e6f7420617661696c61626c6560981b606482015260840161072e565b6000838152600a602090815260408083209290925560095490830151915163b4638cc160e01b81523360048201526001600160801b0390921660248301526001600160a01b03169063b4638cc190604401600060405180830381600087803b158015610b3557600080fd5b505af1158015610b49573d6000803e3d6000fd5b50505050610b6033836001600160801b031661159e565b336001600160a01b0316826001600160801b03167f810fb9b3618f35c36b758ff91f9549b055534c79e015254829292611eda8d97d858460200151604051610bbb9291909182526001600160801b0316602082015260400190565b60405180910390a3505050565b6000818152600260205260408120546001600160a01b0316806106215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161072e565b60078054610c4c9061252e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c789061252e565b8015610cc55780601f10610c9a57610100808354040283529160200191610cc5565b820191906000526020600020905b815481529060010190602001808311610ca857829003601f168201915b505050505081565b6006546001600160a01b03163314610cf75760405162461bcd60e51b815260040161072e90612439565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610d845760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161072e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610dca5760405162461bcd60e51b815260040161072e90612439565b610dd460006115bc565b565b6060600180546106369061252e565b6001600160a01b038216331415610e3e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161072e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60008787878787604051602001610ec5959493929190612316565b60408051601f198184030181528282528051602091820120600854601f87018390048302850183019093528584529350610f27926001600160a01b03909216918491879087908190840183828082843760009201919091525061160e92505050565b610f735760405162461bcd60e51b815260206004820152601f60248201527f484f574c2047616c6c6572793a20696e76616c6964207369676e617475726500604482015260640161072e565b84341015610fcf5760405162461bcd60e51b815260206004820152602360248201527f484f574c2047616c6c6572793a206e6f7420656e6f7567682066756e64732073604482015262195b9d60ea1b606482015260840161072e565b60005b8681101561100257610ff0898989848181106109e8576109e86125da565b80610ffa81612569565b915050610fd2565b505050505050505050565b6110173383611307565b6110335760405162461bcd60e51b815260040161072e9061246e565b610a068484848461168d565b6006546001600160a01b031633146110695760405162461bcd60e51b815260040161072e90612439565b6040805180820182526001600160801b03938416815291831660208084019182526000958652600a90529320905192518216600160801b0292909116919091179055565b6000818152600260205260409020546060906001600160a01b031661112c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161072e565b60006111366116c0565b905060008151116111565760405180602001604052806000815250611181565b80611160846116cf565b604051602001611171929190612368565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146111b25760405162461bcd60e51b815260040161072e90612439565b60005b8181101561086457600a60008484848181106111d3576111d36125da565b60209081029290920135835250810191909152604001600090812055806111f981612569565b9150506111b5565b6006546001600160a01b0316331461122b5760405162461bcd60e51b815260040161072e90612439565b6001600160a01b0381166112905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072e565b610949816115bc565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112ce82610bc8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161072e565b600061138b83610bc8565b9050806001600160a01b0316846001600160a01b031614806113c65750836001600160a01b03166113bb846106b9565b6001600160a01b0316145b806113f657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661141182610bc8565b6001600160a01b0316146114795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161072e565b6001600160a01b0382166114db5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161072e565b6114e6600082611299565b6001600160a01b038316600090815260036020526040812080546001929061150f9084906124eb565b90915550506001600160a01b038216600090815260036020526040812080546001929061153d9084906124bf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6115b88282604051806020016040528060008152506117cd565b5050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061167061166a846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b83611800565b6001600160a01b0316846001600160a01b03161490509392505050565b6116988484846113fe565b6116a484848484611824565b610a065760405162461bcd60e51b815260040161072e906123e7565b6060600780546106369061252e565b6060816116f35750506040805180820190915260018152600360fc1b602082015290565b8160005b811561171d578061170781612569565b91506117169050600a836124d7565b91506116f7565b60008167ffffffffffffffff811115611738576117386125f0565b6040519080825280601f01601f191660200182016040528015611762576020820181803683370190505b5090505b84156113f6576117776001836124eb565b9150611784600a86612584565b61178f9060306124bf565b60f81b8183815181106117a4576117a46125da565b60200101906001600160f81b031916908160001a9053506117c6600a866124d7565b9450611766565b6117d78383611931565b6117e46000848484611824565b6108645760405162461bcd60e51b815260040161072e906123e7565b600080600061180f8585611a73565b9150915061181c81611ae3565b509392505050565b60006001600160a01b0384163b1561192657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611868903390899088908890600401612397565b602060405180830381600087803b15801561188257600080fd5b505af19250505080156118b2575060408051601f3d908101601f191682019092526118af9181019061221f565b60015b61190c573d8080156118e0576040519150601f19603f3d011682016040523d82523d6000602084013e6118e5565b606091505b5080516119045760405162461bcd60e51b815260040161072e906123e7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113f6565b506001949350505050565b6001600160a01b0382166119875760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161072e565b6000818152600260205260409020546001600160a01b0316156119ec5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161072e565b6001600160a01b0382166000908152600360205260408120805460019290611a159084906124bf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080825160411415611aaa5760208301516040840151606085015160001a611a9e87828585611c9e565b94509450505050611adc565b825160401415611ad45760208301516040840151611ac9868383611d8b565b935093505050611adc565b506000905060025b9250929050565b6000816004811115611af757611af76125c4565b1415611b005750565b6001816004811115611b1457611b146125c4565b1415611b625760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161072e565b6002816004811115611b7657611b766125c4565b1415611bc45760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161072e565b6003816004811115611bd857611bd86125c4565b1415611c315760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161072e565b6004816004811115611c4557611c456125c4565b14156109495760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161072e565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611cd55750600090506003611d82565b8460ff16601b14158015611ced57508460ff16601c14155b15611cfe5750600090506004611d82565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611d52573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611d7b57600060019250925050611d82565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01611dac87828885611c9e565b935093505050935093915050565b828054611dc69061252e565b90600052602060002090601f016020900481019282611de85760008555611e2e565b82601f10611e015782800160ff19823516178555611e2e565b82800160010185558215611e2e579182015b82811115611e2e578235825591602001919060010190611e13565b50611e3a929150611e3e565b5090565b5b80821115611e3a5760008155600101611e3f565b80356001600160a01b0381168114611e6a57600080fd5b919050565b60008083601f840112611e8157600080fd5b50813567ffffffffffffffff811115611e9957600080fd5b6020830191508360208260051b8501011115611adc57600080fd5b60008083601f840112611ec657600080fd5b50813567ffffffffffffffff811115611ede57600080fd5b602083019150836020828501011115611adc57600080fd5b80356001600160801b0381168114611e6a57600080fd5b600060208284031215611f1f57600080fd5b61118182611e53565b60008060408385031215611f3b57600080fd5b611f4483611e53565b9150611f5260208401611e53565b90509250929050565b600080600060608486031215611f7057600080fd5b611f7984611e53565b9250611f8760208501611e53565b9150604084013590509250925092565b60008060008060808587031215611fad57600080fd5b611fb685611e53565b9350611fc460208601611e53565b925060408501359150606085013567ffffffffffffffff80821115611fe857600080fd5b818701915087601f830112611ffc57600080fd5b81358181111561200e5761200e6125f0565b604051601f8201601f19908116603f01168101908382118183101715612036576120366125f0565b816040528281528a602084870101111561204f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060006040848603121561208857600080fd5b61209184611e53565b9250602084013567ffffffffffffffff8111156120ad57600080fd5b6120b986828701611e6f565b9497909650939450505050565b600080600080600080600060a0888a0312156120e157600080fd5b6120ea88611e53565b9650602088013567ffffffffffffffff8082111561210757600080fd5b6121138b838c01611e6f565b909850965060408a0135955060608a0135945060808a013591508082111561213a57600080fd5b506121478a828b01611eb4565b989b979a50959850939692959293505050565b6000806040838503121561216d57600080fd5b61217683611e53565b91506020830135801515811461218b57600080fd5b809150509250929050565b600080604083850312156121a957600080fd5b6121b283611e53565b946020939093013593505050565b600080602083850312156121d357600080fd5b823567ffffffffffffffff8111156121ea57600080fd5b6121f685828601611e6f565b90969095509350505050565b60006020828403121561221457600080fd5b813561118181612606565b60006020828403121561223157600080fd5b815161118181612606565b6000806020838503121561224f57600080fd5b823567ffffffffffffffff81111561226657600080fd5b6121f685828601611eb4565b60006020828403121561228457600080fd5b5035919050565b6000806040838503121561229e57600080fd5b82359150611f5260208401611ef6565b6000806000606084860312156122c357600080fd5b833592506122d360208501611ef6565b91506122e160408501611ef6565b90509250925092565b60008151808452612302816020860160208601612502565b601f01601f19169290920160200192915050565b606086901b6bffffffffffffffffffffffff1916815260006001600160fb1b0385111561234257600080fd5b8460051b8087601485013790910160148101939093525060348201526054019392505050565b6000835161237a818460208801612502565b83519083019061238e818360208801612502565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123ca908301846122ea565b9695505050505050565b60208152600061118160208301846122ea565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124d2576124d2612598565b500190565b6000826124e6576124e66125ae565b500490565b6000828210156124fd576124fd612598565b500390565b60005b8381101561251d578181015183820152602001612505565b83811115610a065750506000910152565b600181811c9082168061254257607f821691505b6020821081141561256357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561257d5761257d612598565b5060010190565b600082612593576125936125ae565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461094957600080fdfea26469706673582212202045b05364dacb99cc9673eb8dcf65bc8e1531ff4db8c80d58b4cd2c076bf52a64736f6c634300080700330000000000000000000000009c4e2efce0ef12b9a9f18eb66590b861bb5e9774

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd1461052c578063e985e9c51461054c578063ee3abc6f14610595578063f2fde38b146105b557600080fd5b8063a22cb465146104b9578063abfa1984146104d9578063b88d4fde146104ec578063c175f96b1461050c57600080fd5b806370a08231116100d157806370a0823114610443578063715018a6146104715780638da5cb5b1461048657806395d89b41146104a457600080fd5b80636352211e146103ee5780636c0360eb1461040e5780636c19e7831461042357600080fd5b80633548d0d21161016457806355f804b31161013e57806355f804b31461032d5780635629b66f1461034d578063601c58081461036d5780636057361d1461038d57600080fd5b80633548d0d2146102d85780633ccfd60b146102f857806342842e0e1461030d57600080fd5b8063095ea7b3116101a0578063095ea7b3146102565780631de010a714610278578063238ac9331461029857806323b872dd146102b857600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004612202565b6105d5565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610627565b6040516101f391906123d4565b34801561022a57600080fd5b5061023e610239366004612272565b6106b9565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004612196565b610753565b005b34801561028457600080fd5b5060095461023e906001600160a01b031681565b3480156102a457600080fd5b5060085461023e906001600160a01b031681565b3480156102c457600080fd5b506102766102d3366004611f5b565b610869565b3480156102e457600080fd5b506102766102f3366004611f0d565b61089a565b34801561030457600080fd5b506102766108e6565b34801561031957600080fd5b50610276610328366004611f5b565b61094c565b34801561033957600080fd5b5061027661034836600461223c565b610967565b34801561035957600080fd5b50610276610368366004612073565b61099d565b34801561037957600080fd5b5061027661038836600461228b565b610a0c565b34801561039957600080fd5b506103ce6103a8366004612272565b600a602052600090815260409020546001600160801b0380821691600160801b90041682565b604080516001600160801b039384168152929091166020830152016101f3565b3480156103fa57600080fd5b5061023e610409366004612272565b610bc8565b34801561041a57600080fd5b50610211610c3f565b34801561042f57600080fd5b5061027661043e366004611f0d565b610ccd565b34801561044f57600080fd5b5061046361045e366004611f0d565b610d19565b6040519081526020016101f3565b34801561047d57600080fd5b50610276610da0565b34801561049257600080fd5b506006546001600160a01b031661023e565b3480156104b057600080fd5b50610211610dd6565b3480156104c557600080fd5b506102766104d436600461215a565b610de5565b6102766104e73660046120c6565b610eaa565b3480156104f857600080fd5b50610276610507366004611f97565b61100d565b34801561051857600080fd5b506102766105273660046122ae565b61103f565b34801561053857600080fd5b50610211610547366004612272565b6110ad565b34801561055857600080fd5b506101e7610567366004611f28565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105a157600080fd5b506102766105b03660046121c0565b611188565b3480156105c157600080fd5b506102766105d0366004611f0d565b611201565b60006001600160e01b031982166380ac58cd60e01b148061060657506001600160e01b03198216635b5e139f60e01b145b8061062157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106369061252e565b80601f01602080910402602001604051908101604052809291908181526020018280546106629061252e565b80156106af5780601f10610684576101008083540402835291602001916106af565b820191906000526020600020905b81548152906001019060200180831161069257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061075e82610bc8565b9050806001600160a01b0316836001600160a01b031614156107cc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161072e565b336001600160a01b03821614806107e857506107e88133610567565b61085a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161072e565b6108648383611299565b505050565b6108733382611307565b61088f5760405162461bcd60e51b815260040161072e9061246e565b6108648383836113fe565b6006546001600160a01b031633146108c45760405162461bcd60e51b815260040161072e90612439565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146109105760405162461bcd60e51b815260040161072e90612439565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610949573d6000803e3d6000fd5b50565b6108648383836040518060200160405280600081525061100d565b6006546001600160a01b031633146109915760405162461bcd60e51b815260040161072e90612439565b61086460078383611dba565b6006546001600160a01b031633146109c75760405162461bcd60e51b815260040161072e90612439565b60005b81811015610a06576109f4848484848181106109e8576109e86125da565b9050602002013561159e565b806109fe81612569565b9150506109ca565b50505050565b6000828152600a60209081526040918290208251808401909352546001600160801b03808216808552600160801b909204169183019190915215801590610a685750816001600160801b031681600001516001600160801b0316145b610aca5760405162461bcd60e51b815260206004820152602d60248201527f484f574c2047616c6c6572793a20726571756573746564206974656d2069732060448201526c6e6f7420617661696c61626c6560981b606482015260840161072e565b6000838152600a602090815260408083209290925560095490830151915163b4638cc160e01b81523360048201526001600160801b0390921660248301526001600160a01b03169063b4638cc190604401600060405180830381600087803b158015610b3557600080fd5b505af1158015610b49573d6000803e3d6000fd5b50505050610b6033836001600160801b031661159e565b336001600160a01b0316826001600160801b03167f810fb9b3618f35c36b758ff91f9549b055534c79e015254829292611eda8d97d858460200151604051610bbb9291909182526001600160801b0316602082015260400190565b60405180910390a3505050565b6000818152600260205260408120546001600160a01b0316806106215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161072e565b60078054610c4c9061252e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c789061252e565b8015610cc55780601f10610c9a57610100808354040283529160200191610cc5565b820191906000526020600020905b815481529060010190602001808311610ca857829003601f168201915b505050505081565b6006546001600160a01b03163314610cf75760405162461bcd60e51b815260040161072e90612439565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610d845760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161072e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610dca5760405162461bcd60e51b815260040161072e90612439565b610dd460006115bc565b565b6060600180546106369061252e565b6001600160a01b038216331415610e3e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161072e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60008787878787604051602001610ec5959493929190612316565b60408051601f198184030181528282528051602091820120600854601f87018390048302850183019093528584529350610f27926001600160a01b03909216918491879087908190840183828082843760009201919091525061160e92505050565b610f735760405162461bcd60e51b815260206004820152601f60248201527f484f574c2047616c6c6572793a20696e76616c6964207369676e617475726500604482015260640161072e565b84341015610fcf5760405162461bcd60e51b815260206004820152602360248201527f484f574c2047616c6c6572793a206e6f7420656e6f7567682066756e64732073604482015262195b9d60ea1b606482015260840161072e565b60005b8681101561100257610ff0898989848181106109e8576109e86125da565b80610ffa81612569565b915050610fd2565b505050505050505050565b6110173383611307565b6110335760405162461bcd60e51b815260040161072e9061246e565b610a068484848461168d565b6006546001600160a01b031633146110695760405162461bcd60e51b815260040161072e90612439565b6040805180820182526001600160801b03938416815291831660208084019182526000958652600a90529320905192518216600160801b0292909116919091179055565b6000818152600260205260409020546060906001600160a01b031661112c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161072e565b60006111366116c0565b905060008151116111565760405180602001604052806000815250611181565b80611160846116cf565b604051602001611171929190612368565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146111b25760405162461bcd60e51b815260040161072e90612439565b60005b8181101561086457600a60008484848181106111d3576111d36125da565b60209081029290920135835250810191909152604001600090812055806111f981612569565b9150506111b5565b6006546001600160a01b0316331461122b5760405162461bcd60e51b815260040161072e90612439565b6001600160a01b0381166112905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072e565b610949816115bc565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112ce82610bc8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161072e565b600061138b83610bc8565b9050806001600160a01b0316846001600160a01b031614806113c65750836001600160a01b03166113bb846106b9565b6001600160a01b0316145b806113f657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661141182610bc8565b6001600160a01b0316146114795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161072e565b6001600160a01b0382166114db5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161072e565b6114e6600082611299565b6001600160a01b038316600090815260036020526040812080546001929061150f9084906124eb565b90915550506001600160a01b038216600090815260036020526040812080546001929061153d9084906124bf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6115b88282604051806020016040528060008152506117cd565b5050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061167061166a846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b83611800565b6001600160a01b0316846001600160a01b03161490509392505050565b6116988484846113fe565b6116a484848484611824565b610a065760405162461bcd60e51b815260040161072e906123e7565b6060600780546106369061252e565b6060816116f35750506040805180820190915260018152600360fc1b602082015290565b8160005b811561171d578061170781612569565b91506117169050600a836124d7565b91506116f7565b60008167ffffffffffffffff811115611738576117386125f0565b6040519080825280601f01601f191660200182016040528015611762576020820181803683370190505b5090505b84156113f6576117776001836124eb565b9150611784600a86612584565b61178f9060306124bf565b60f81b8183815181106117a4576117a46125da565b60200101906001600160f81b031916908160001a9053506117c6600a866124d7565b9450611766565b6117d78383611931565b6117e46000848484611824565b6108645760405162461bcd60e51b815260040161072e906123e7565b600080600061180f8585611a73565b9150915061181c81611ae3565b509392505050565b60006001600160a01b0384163b1561192657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611868903390899088908890600401612397565b602060405180830381600087803b15801561188257600080fd5b505af19250505080156118b2575060408051601f3d908101601f191682019092526118af9181019061221f565b60015b61190c573d8080156118e0576040519150601f19603f3d011682016040523d82523d6000602084013e6118e5565b606091505b5080516119045760405162461bcd60e51b815260040161072e906123e7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113f6565b506001949350505050565b6001600160a01b0382166119875760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161072e565b6000818152600260205260409020546001600160a01b0316156119ec5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161072e565b6001600160a01b0382166000908152600360205260408120805460019290611a159084906124bf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080825160411415611aaa5760208301516040840151606085015160001a611a9e87828585611c9e565b94509450505050611adc565b825160401415611ad45760208301516040840151611ac9868383611d8b565b935093505050611adc565b506000905060025b9250929050565b6000816004811115611af757611af76125c4565b1415611b005750565b6001816004811115611b1457611b146125c4565b1415611b625760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161072e565b6002816004811115611b7657611b766125c4565b1415611bc45760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161072e565b6003816004811115611bd857611bd86125c4565b1415611c315760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161072e565b6004816004811115611c4557611c456125c4565b14156109495760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161072e565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611cd55750600090506003611d82565b8460ff16601b14158015611ced57508460ff16601c14155b15611cfe5750600090506004611d82565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611d52573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611d7b57600060019250925050611d82565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01611dac87828885611c9e565b935093505050935093915050565b828054611dc69061252e565b90600052602060002090601f016020900481019282611de85760008555611e2e565b82601f10611e015782800160ff19823516178555611e2e565b82800160010185558215611e2e579182015b82811115611e2e578235825591602001919060010190611e13565b50611e3a929150611e3e565b5090565b5b80821115611e3a5760008155600101611e3f565b80356001600160a01b0381168114611e6a57600080fd5b919050565b60008083601f840112611e8157600080fd5b50813567ffffffffffffffff811115611e9957600080fd5b6020830191508360208260051b8501011115611adc57600080fd5b60008083601f840112611ec657600080fd5b50813567ffffffffffffffff811115611ede57600080fd5b602083019150836020828501011115611adc57600080fd5b80356001600160801b0381168114611e6a57600080fd5b600060208284031215611f1f57600080fd5b61118182611e53565b60008060408385031215611f3b57600080fd5b611f4483611e53565b9150611f5260208401611e53565b90509250929050565b600080600060608486031215611f7057600080fd5b611f7984611e53565b9250611f8760208501611e53565b9150604084013590509250925092565b60008060008060808587031215611fad57600080fd5b611fb685611e53565b9350611fc460208601611e53565b925060408501359150606085013567ffffffffffffffff80821115611fe857600080fd5b818701915087601f830112611ffc57600080fd5b81358181111561200e5761200e6125f0565b604051601f8201601f19908116603f01168101908382118183101715612036576120366125f0565b816040528281528a602084870101111561204f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060006040848603121561208857600080fd5b61209184611e53565b9250602084013567ffffffffffffffff8111156120ad57600080fd5b6120b986828701611e6f565b9497909650939450505050565b600080600080600080600060a0888a0312156120e157600080fd5b6120ea88611e53565b9650602088013567ffffffffffffffff8082111561210757600080fd5b6121138b838c01611e6f565b909850965060408a0135955060608a0135945060808a013591508082111561213a57600080fd5b506121478a828b01611eb4565b989b979a50959850939692959293505050565b6000806040838503121561216d57600080fd5b61217683611e53565b91506020830135801515811461218b57600080fd5b809150509250929050565b600080604083850312156121a957600080fd5b6121b283611e53565b946020939093013593505050565b600080602083850312156121d357600080fd5b823567ffffffffffffffff8111156121ea57600080fd5b6121f685828601611e6f565b90969095509350505050565b60006020828403121561221457600080fd5b813561118181612606565b60006020828403121561223157600080fd5b815161118181612606565b6000806020838503121561224f57600080fd5b823567ffffffffffffffff81111561226657600080fd5b6121f685828601611eb4565b60006020828403121561228457600080fd5b5035919050565b6000806040838503121561229e57600080fd5b82359150611f5260208401611ef6565b6000806000606084860312156122c357600080fd5b833592506122d360208501611ef6565b91506122e160408501611ef6565b90509250925092565b60008151808452612302816020860160208601612502565b601f01601f19169290920160200192915050565b606086901b6bffffffffffffffffffffffff1916815260006001600160fb1b0385111561234257600080fd5b8460051b8087601485013790910160148101939093525060348201526054019392505050565b6000835161237a818460208801612502565b83519083019061238e818360208801612502565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123ca908301846122ea565b9695505050505050565b60208152600061118160208301846122ea565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124d2576124d2612598565b500190565b6000826124e6576124e66125ae565b500490565b6000828210156124fd576124fd612598565b500390565b60005b8381101561251d578181015183820152602001612505565b83811115610a065750506000910152565b600181811c9082168061254257607f821691505b6020821081141561256357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561257d5761257d612598565b5060010190565b600082612593576125936125ae565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461094957600080fdfea26469706673582212202045b05364dacb99cc9673eb8dcf65bc8e1531ff4db8c80d58b4cd2c076bf52a64736f6c63430008070033

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

0000000000000000000000009c4e2efce0ef12b9a9f18eb66590b861bb5e9774

-----Decoded View---------------
Arg [0] : _soulContractAddress (address): 0x9c4e2efCe0Ef12B9A9f18Eb66590b861Bb5e9774

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009c4e2efce0ef12b9a9f18eb66590b861bb5e9774


Deployed Bytecode Sourcemap

44223:3467:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31929:305;;;;;;;;;;-1:-1:-1;31929:305:0;;;;;:::i;:::-;;:::i;:::-;;;10251:14:1;;10244:22;10226:41;;10214:2;10199:18;31929:305:0;;;;;;;;32874:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34433:221::-;;;;;;;;;;-1:-1:-1;34433:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9229:32:1;;;9211:51;;9199:2;9184:18;34433:221:0;9065:203:1;33956:411:0;;;;;;;;;;-1:-1:-1;33956:411:0;;;;;:::i;:::-;;:::i;:::-;;44547:34;;;;;;;;;;-1:-1:-1;44547:34:0;;;;-1:-1:-1;;;;;44547:34:0;;;44519:21;;;;;;;;;;-1:-1:-1;44519:21:0;;;;-1:-1:-1;;;;;44519:21:0;;;35323:339;;;;;;;;;;-1:-1:-1;35323:339:0;;;;;:::i;:::-;;:::i;44999:118::-;;;;;;;;;;-1:-1:-1;44999:118:0;;;;;:::i;:::-;;:::i;44885:106::-;;;;;;;;;;;;;:::i;35733:185::-;;;;;;;;;;-1:-1:-1;35733:185:0;;;;;:::i;:::-;;:::i;45223:94::-;;;;;;;;;;-1:-1:-1;45223:94:0;;;;;:::i;:::-;;:::i;45873:238::-;;;;;;;;;;-1:-1:-1;45873:238:0;;;;;:::i;:::-;;:::i;46909:500::-;;;;;;;;;;-1:-1:-1;46909:500:0;;;;;:::i;:::-;;:::i;44677:42::-;;;;;;;;;;-1:-1:-1;44677:42:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;44677:42:0;;;;-1:-1:-1;;;44677:42:0;;;;;;;;;-1:-1:-1;;;;;20229:15:1;;;20211:34;;20281:15;;;;20276:2;20261:18;;20254:43;20131:18;44677:42:0;19984:319:1;32568:239:0;;;;;;;;;;-1:-1:-1;32568:239:0;;;;;:::i;:::-;;:::i;44491:21::-;;;;;;;;;;;;;:::i;45125:90::-;;;;;;;;;;-1:-1:-1;45125:90:0;;;;;:::i;:::-;;:::i;32298:208::-;;;;;;;;;;-1:-1:-1;32298:208:0;;;;;:::i;:::-;;:::i;:::-;;;20454:25:1;;;20442:2;20427:18;32298:208:0;20308:177:1;13564:94:0;;;;;;;;;;;;;:::i;12913:87::-;;;;;;;;;;-1:-1:-1;12986:6:0;;-1:-1:-1;;;;;12986:6:0;12913:87;;33043:104;;;;;;;;;;;;;:::i;34726:295::-;;;;;;;;;;-1:-1:-1;34726:295:0;;;;;:::i;:::-;;:::i;46119:782::-;;;;;;:::i;:::-;;:::i;35989:328::-;;;;;;;;;;-1:-1:-1;35989:328:0;;;;;:::i;:::-;;:::i;45433:193::-;;;;;;;;;;-1:-1:-1;45433:193:0;;;;;:::i;:::-;;:::i;33218:334::-;;;;;;;;;;-1:-1:-1;33218:334:0;;;;;:::i;:::-;;:::i;35092:164::-;;;;;;;;;;-1:-1:-1;35092:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35213:25:0;;;35189:4;35213:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35092:164;45634:231;;;;;;;;;;-1:-1:-1;45634:231:0;;;;;:::i;:::-;;:::i;13813:192::-;;;;;;;;;;-1:-1:-1;13813:192:0;;;;;:::i;:::-;;:::i;31929:305::-;32031:4;-1:-1:-1;;;;;;32068:40:0;;-1:-1:-1;;;32068:40:0;;:105;;-1:-1:-1;;;;;;;32125:48:0;;-1:-1:-1;;;32125:48:0;32068:105;:158;;;-1:-1:-1;;;;;;;;;;25008:40:0;;;32190:36;32048:178;31929:305;-1:-1:-1;;31929:305:0:o;32874:100::-;32928:13;32961:5;32954:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32874:100;:::o;34433:221::-;34509:7;37916:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37916:16:0;34529:73;;;;-1:-1:-1;;;34529:73:0;;16992:2:1;34529:73:0;;;16974:21:1;17031:2;17011:18;;;17004:30;17070:34;17050:18;;;17043:62;-1:-1:-1;;;17121:18:1;;;17114:42;17173:19;;34529:73:0;;;;;;;;;-1:-1:-1;34622:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34622:24:0;;34433:221::o;33956:411::-;34037:13;34053:23;34068:7;34053:14;:23::i;:::-;34037:39;;34101:5;-1:-1:-1;;;;;34095:11:0;:2;-1:-1:-1;;;;;34095:11:0;;;34087:57;;;;-1:-1:-1;;;34087:57:0;;18592:2:1;34087:57:0;;;18574:21:1;18631:2;18611:18;;;18604:30;18670:34;18650:18;;;18643:62;-1:-1:-1;;;18721:18:1;;;18714:31;18762:19;;34087:57:0;18390:397:1;34087:57:0;11781:10;-1:-1:-1;;;;;34179:21:0;;;;:62;;-1:-1:-1;34204:37:0;34221:5;11781:10;35092:164;:::i;34204:37::-;34157:168;;;;-1:-1:-1;;;34157:168:0;;14578:2:1;34157:168:0;;;14560:21:1;14617:2;14597:18;;;14590:30;14656:34;14636:18;;;14629:62;14727:26;14707:18;;;14700:54;14771:19;;34157:168:0;14376:420:1;34157:168:0;34338:21;34347:2;34351:7;34338:8;:21::i;:::-;34026:341;33956:411;;:::o;35323:339::-;35518:41;11781:10;35551:7;35518:18;:41::i;:::-;35510:103;;;;-1:-1:-1;;;35510:103:0;;;;;;;:::i;:::-;35626:28;35636:4;35642:2;35646:7;35626:9;:28::i;44999:118::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;45079:19:::1;:30:::0;;-1:-1:-1;;;;;;45079:30:0::1;-1:-1:-1::0;;;;;45079:30:0;;;::::1;::::0;;;::::1;::::0;;44999:118::o;44885:106::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;12986:6;;44935:48:::1;::::0;-1:-1:-1;;;;;12986:6:0;;;;44961:21:::1;44935:48:::0;::::1;;;::::0;::::1;::::0;;;44961:21;12986:6;44935:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44885:106::o:0;35733:185::-;35871:39;35888:4;35894:2;35898:7;35871:39;;;;;;;;;;;;:16;:39::i;45223:94::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;45295:14:::1;:7;45305:4:::0;;45295:14:::1;:::i;45873:238::-:0;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;46002:9:::1;45997:107;46017:20:::0;;::::1;45997:107;;;46059:33;46069:8;46079:9;;46089:1;46079:12;;;;;;;:::i;:::-;;;;;;;46059:9;:33::i;:::-;46039:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45997:107;;;;45873:238:::0;;;:::o;46909:500::-;46984:21;47008:12;;;:5;:12;;;;;;;;;46984:36;;;;;;;;;-1:-1:-1;;;;;46984:36:0;;;;;;-1:-1:-1;;;46984:36:0;;;;;;;;;;;47053:17;;;;:45;;;47090:8;-1:-1:-1;;;;;47074:24:0;:4;:12;;;-1:-1:-1;;;;;47074:24:0;;47053:45;47031:140;;;;-1:-1:-1;;;47031:140:0;;19354:2:1;47031:140:0;;;19336:21:1;19393:2;19373:18;;;19366:30;19432:34;19412:18;;;19405:62;-1:-1:-1;;;19483:18:1;;;19476:43;19536:19;;47031:140:0;19152:409:1;47031:140:0;47191:12;;;;:5;:12;;;;;;;;47184:19;;;;47220;;47268:14;;;;47214:69;;-1:-1:-1;;;47214:69:0;;47256:10;47214:69;;;9940:51:1;-1:-1:-1;;;;;10027:47:1;;;10007:18;;;10000:75;-1:-1:-1;;;;;47220:19:0;;47214:41;;9913:18:1;;47214:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47296:31;47306:10;47318:8;-1:-1:-1;;;;;47296:31:0;:9;:31::i;:::-;47367:10;-1:-1:-1;;;;;47343:58:0;47357:8;-1:-1:-1;;;;;47343:58:0;;47379:5;47386:4;:14;;;47343:58;;;;;;20664:25:1;;;-1:-1:-1;;;;;20725:47:1;20720:2;20705:18;;20698:75;20652:2;20637:18;;20490:289;47343:58:0;;;;;;;;46973:436;46909:500;;:::o;32568:239::-;32640:7;32676:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32676:16:0;32711:19;32703:73;;;;-1:-1:-1;;;32703:73:0;;15414:2:1;32703:73:0;;;15396:21:1;15453:2;15433:18;;;15426:30;15492:34;15472:18;;;15465:62;-1:-1:-1;;;15543:18:1;;;15536:39;15592:19;;32703:73:0;15212:405:1;44491:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45125:90::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;45191:6:::1;:16:::0;;-1:-1:-1;;;;;;45191:16:0::1;-1:-1:-1::0;;;;;45191:16:0;;;::::1;::::0;;;::::1;::::0;;45125:90::o;32298:208::-;32370:7;-1:-1:-1;;;;;32398:19:0;;32390:74;;;;-1:-1:-1;;;32390:74:0;;15003:2:1;32390:74:0;;;14985:21:1;15042:2;15022:18;;;15015:30;15081:34;15061:18;;;15054:62;-1:-1:-1;;;15132:18:1;;;15125:40;15182:19;;32390:74:0;14801:406:1;32390:74:0;-1:-1:-1;;;;;;32482:16:0;;;;;:9;:16;;;;;;;32298:208::o;13564:94::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;13629:21:::1;13647:1;13629:9;:21::i;:::-;13564:94::o:0;33043:104::-;33099:13;33132:7;33125:14;;;;;:::i;34726:295::-;-1:-1:-1;;;;;34829:24:0;;11781:10;34829:24;;34821:62;;;;-1:-1:-1;;;34821:62:0;;13408:2:1;34821:62:0;;;13390:21:1;13447:2;13427:18;;;13420:30;13486:27;13466:18;;;13459:55;13531:18;;34821:62:0;13206:349:1;34821:62:0;11781:10;34896:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34896:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34896:53:0;;;;;;;;;;34965:48;;10226:41:1;;;34896:42:0;;11781:10;34965:48;;10199:18:1;34965:48:0;;;;;;;34726:295;;:::o;46119:782::-;46327:12;46383:8;46393:9;;46404:6;46412;46366:53;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;46366:53:0;;;;;;;;;46342:88;;46366:53;46342:88;;;;46482:6;;46465:40;;;;;;;;;;;;;;;;;;46342:88;-1:-1:-1;46465:40:0;;-1:-1:-1;;;;;46482:6:0;;;;46342:88;;46496:8;;;;;;46465:40;;46496:8;;;;46465:40;;;;;;;;;-1:-1:-1;46465:16:0;;-1:-1:-1;;;46465:40:0:i;:::-;46443:121;;;;-1:-1:-1;;;46443:121:0;;18994:2:1;46443:121:0;;;18976:21:1;19033:2;19013:18;;;19006:30;19072:33;19052:18;;;19045:61;19123:18;;46443:121:0;18792:355:1;46443:121:0;46598:6;46585:9;:19;;46577:67;;;;-1:-1:-1;;;46577:67:0;;15824:2:1;46577:67:0;;;15806:21:1;15863:2;15843:18;;;15836:30;15902:34;15882:18;;;15875:62;-1:-1:-1;;;15953:18:1;;;15946:33;15996:19;;46577:67:0;15622:399:1;46577:67:0;46792:9;46787:107;46807:20;;;46787:107;;;46849:33;46859:8;46869:9;;46879:1;46869:12;;;;;;;:::i;46849:33::-;46829:3;;;;:::i;:::-;;;;46787:107;;;;46316:585;46119:782;;;;;;;:::o;35989:328::-;36164:41;11781:10;36197:7;36164:18;:41::i;:::-;36156:103;;;;-1:-1:-1;;;36156:103:0;;;;;;;:::i;:::-;36270:39;36284:4;36290:2;36294:7;36303:5;36270:13;:39::i;45433:193::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;45587:31:::1;::::0;;;;::::1;::::0;;-1:-1:-1;;;;;45587:31:0;;::::1;::::0;;;;::::1;;::::0;;::::1;::::0;;;-1:-1:-1;45572:12:0;;;:5:::1;:12:::0;;;;:46;;;;;::::1;-1:-1:-1::0;;;45572:46:0::1;::::0;;;::::1;::::0;;;::::1;::::0;;45433:193::o;33218:334::-;37892:4;37916:16;;;:7;:16;;;;;;33291:13;;-1:-1:-1;;;;;37916:16:0;33317:76;;;;-1:-1:-1;;;33317:76:0;;18176:2:1;33317:76:0;;;18158:21:1;18215:2;18195:18;;;18188:30;18254:34;18234:18;;;18227:62;-1:-1:-1;;;18305:18:1;;;18298:45;18360:19;;33317:76:0;17974:411:1;33317:76:0;33406:21;33430:10;:8;:10::i;:::-;33406:34;;33482:1;33464:7;33458:21;:25;:86;;;;;;;;;;;;;;;;;33510:7;33519:18;:7;:16;:18::i;:::-;33493:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33458:86;33451:93;33218:334;-1:-1:-1;;;33218:334:0:o;45634:231::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;45753:9:::1;45748:110;45768:25:::0;;::::1;45748:110;;;45822:5;:24;45828:14;;45843:1;45828:17;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;::::1;;45822:24:::0;;-1:-1:-1;45822:24:0;::::1;::::0;;;;;;-1:-1:-1;45822:24:0;;;45815:31;45795:3;::::1;::::0;::::1;:::i;:::-;;;;45748:110;;13813:192:::0;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13902:22:0;::::1;13894:73;;;::::0;-1:-1:-1;;;13894:73:0;;12239:2:1;13894:73:0::1;::::0;::::1;12221:21:1::0;12278:2;12258:18;;;12251:30;12317:34;12297:18;;;12290:62;-1:-1:-1;;;12368:18:1;;;12361:36;12414:19;;13894:73:0::1;12037:402:1::0;13894:73:0::1;13978:19;13988:8;13978:9;:19::i;41809:174::-:0;41884:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41884:29:0;-1:-1:-1;;;;;41884:29:0;;;;;;;;:24;;41938:23;41884:24;41938:14;:23::i;:::-;-1:-1:-1;;;;;41929:46:0;;;;;;;;;;;41809:174;;:::o;38121:348::-;38214:4;37916:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37916:16:0;38231:73;;;;-1:-1:-1;;;38231:73:0;;14165:2:1;38231:73:0;;;14147:21:1;14204:2;14184:18;;;14177:30;14243:34;14223:18;;;14216:62;-1:-1:-1;;;14294:18:1;;;14287:42;14346:19;;38231:73:0;13963:408:1;38231:73:0;38315:13;38331:23;38346:7;38331:14;:23::i;:::-;38315:39;;38384:5;-1:-1:-1;;;;;38373:16:0;:7;-1:-1:-1;;;;;38373:16:0;;:51;;;;38417:7;-1:-1:-1;;;;;38393:31:0;:20;38405:7;38393:11;:20::i;:::-;-1:-1:-1;;;;;38393:31:0;;38373:51;:87;;;-1:-1:-1;;;;;;35213:25:0;;;35189:4;35213:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38428:32;38365:96;38121:348;-1:-1:-1;;;;38121:348:0:o;41113:578::-;41272:4;-1:-1:-1;;;;;41245:31:0;:23;41260:7;41245:14;:23::i;:::-;-1:-1:-1;;;;;41245:31:0;;41237:85;;;;-1:-1:-1;;;41237:85:0;;17766:2:1;41237:85:0;;;17748:21:1;17805:2;17785:18;;;17778:30;17844:34;17824:18;;;17817:62;-1:-1:-1;;;17895:18:1;;;17888:39;17944:19;;41237:85:0;17564:405:1;41237:85:0;-1:-1:-1;;;;;41341:16:0;;41333:65;;;;-1:-1:-1;;;41333:65:0;;13003:2:1;41333:65:0;;;12985:21:1;13042:2;13022:18;;;13015:30;13081:34;13061:18;;;13054:62;-1:-1:-1;;;13132:18:1;;;13125:34;13176:19;;41333:65:0;12801:400:1;41333:65:0;41515:29;41532:1;41536:7;41515:8;:29::i;:::-;-1:-1:-1;;;;;41557:15:0;;;;;;:9;:15;;;;;:20;;41576:1;;41557:15;:20;;41576:1;;41557:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41588:13:0;;;;;;:9;:13;;;;;:18;;41605:1;;41588:13;:18;;41605:1;;41588:18;:::i;:::-;;;;-1:-1:-1;;41617:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41617:21:0;-1:-1:-1;;;;;41617:21:0;;;;;;;;;41656:27;;41617:16;;41656:27;;;;;;;41113:578;;;:::o;38811:110::-;38887:26;38897:2;38901:7;38887:26;;;;;;;;;;;;:9;:26::i;:::-;38811:110;;:::o;14013:173::-;14088:6;;;-1:-1:-1;;;;;14105:17:0;;;-1:-1:-1;;;;;;14105:17:0;;;;;;;14138:40;;14088:6;;;14105:17;14088:6;;14138:40;;14069:16;;14138:40;14058:128;14013:173;:::o;47417:270::-;47556:4;47617:62;47631:35;47660:5;8386:58;;8922:66:1;8386:58:0;;;8910:79:1;9005:12;;;8998:28;;;8253:7:0;;9042:12:1;;8386:58:0;;;;;;;;;;;;8376:69;;;;;;8369:76;;8184:269;;;;47631:35;47668:10;47617:13;:62::i;:::-;-1:-1:-1;;;;;47593:86:0;:7;-1:-1:-1;;;;;47593:86:0;;47573:106;;47417:270;;;;;:::o;37199:315::-;37356:28;37366:4;37372:2;37376:7;37356:9;:28::i;:::-;37403:48;37426:4;37432:2;37436:7;37445:5;37403:22;:48::i;:::-;37395:111;;;;-1:-1:-1;;;37395:111:0;;;;;;;:::i;45325:100::-;45377:13;45410:7;45403:14;;;;;:::i;9317:723::-;9373:13;9594:10;9590:53;;-1:-1:-1;;9621:10:0;;;;;;;;;;;;-1:-1:-1;;;9621:10:0;;;;;9317:723::o;9590:53::-;9668:5;9653:12;9709:78;9716:9;;9709:78;;9742:8;;;;:::i;:::-;;-1:-1:-1;9765:10:0;;-1:-1:-1;9773:2:0;9765:10;;:::i;:::-;;;9709:78;;;9797:19;9829:6;9819:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9819:17:0;;9797:39;;9847:154;9854:10;;9847:154;;9881:11;9891:1;9881:11;;:::i;:::-;;-1:-1:-1;9950:10:0;9958:2;9950:5;:10;:::i;:::-;9937:24;;:2;:24;:::i;:::-;9924:39;;9907:6;9914;9907:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9907:56:0;;;;;;;;-1:-1:-1;9978:11:0;9987:2;9978:11;;:::i;:::-;;;9847:154;;39148:321;39278:18;39284:2;39288:7;39278:5;:18::i;:::-;39329:54;39360:1;39364:2;39368:7;39377:5;39329:22;:54::i;:::-;39307:154;;;;-1:-1:-1;;;39307:154:0;;;;;;;:::i;4335:231::-;4413:7;4434:17;4453:18;4475:27;4486:4;4492:9;4475:10;:27::i;:::-;4433:69;;;;4513:18;4525:5;4513:11;:18::i;:::-;-1:-1:-1;4549:9:0;4335:231;-1:-1:-1;;;4335:231:0:o;42548:799::-;42703:4;-1:-1:-1;;;;;42724:13:0;;15282:20;15330:8;42720:620;;42760:72;;-1:-1:-1;;;42760:72:0;;-1:-1:-1;;;;;42760:36:0;;;;;:72;;11781:10;;42811:4;;42817:7;;42826:5;;42760:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42760:72:0;;;;;;;;-1:-1:-1;;42760:72:0;;;;;;;;;;;;:::i;:::-;;;42756:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43002:13:0;;42998:272;;43045:60;;-1:-1:-1;;;43045:60:0;;;;;;;:::i;42998:272::-;43220:6;43214:13;43205:6;43201:2;43197:15;43190:38;42756:529;-1:-1:-1;;;;;;42883:51:0;-1:-1:-1;;;42883:51:0;;-1:-1:-1;42876:58:0;;42720:620;-1:-1:-1;43324:4:0;42548:799;;;;;;:::o;39805:382::-;-1:-1:-1;;;;;39885:16:0;;39877:61;;;;-1:-1:-1;;;39877:61:0;;16631:2:1;39877:61:0;;;16613:21:1;;;16650:18;;;16643:30;16709:34;16689:18;;;16682:62;16761:18;;39877:61:0;16429:356:1;39877:61:0;37892:4;37916:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37916:16:0;:30;39949:58;;;;-1:-1:-1;;;39949:58:0;;12646:2:1;39949:58:0;;;12628:21:1;12685:2;12665:18;;;12658:30;12724;12704:18;;;12697:58;12772:18;;39949:58:0;12444:352:1;39949:58:0;-1:-1:-1;;;;;40078:13:0;;;;;;:9;:13;;;;;:18;;40095:1;;40078:13;:18;;40095:1;;40078:18;:::i;:::-;;;;-1:-1:-1;;40107:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40107:21:0;-1:-1:-1;;;;;40107:21:0;;;;;;;;40146:33;;40107:16;;;40146:33;;40107:16;;40146:33;39805:382;;:::o;2225:1308::-;2306:7;2315:12;2540:9;:16;2560:2;2540:22;2536:990;;;2836:4;2821:20;;2815:27;2886:4;2871:20;;2865:27;2944:4;2929:20;;2923:27;2579:9;2915:36;2987:25;2998:4;2915:36;2815:27;2865;2987:10;:25::i;:::-;2980:32;;;;;;;;;2536:990;3034:9;:16;3054:2;3034:22;3030:496;;;3309:4;3294:20;;3288:27;3360:4;3345:20;;3339:27;3402:23;3413:4;3288:27;3339;3402:10;:23::i;:::-;3395:30;;;;;;;;3030:496;-1:-1:-1;3474:1:0;;-1:-1:-1;3478:35:0;3030:496;2225:1308;;;;;:::o;496:643::-;574:20;565:5;:29;;;;;;;;:::i;:::-;;561:571;;;496:643;:::o;561:571::-;672:29;663:5;:38;;;;;;;;:::i;:::-;;659:473;;;718:34;;-1:-1:-1;;;718:34:0;;11107:2:1;718:34:0;;;11089:21:1;11146:2;11126:18;;;11119:30;11185:26;11165:18;;;11158:54;11229:18;;718:34:0;10905:348:1;659:473:0;783:35;774:5;:44;;;;;;;;:::i;:::-;;770:362;;;835:41;;-1:-1:-1;;;835:41:0;;11460:2:1;835:41:0;;;11442:21:1;11499:2;11479:18;;;11472:30;11538:33;11518:18;;;11511:61;11589:18;;835:41:0;11258:355:1;770:362:0;907:30;898:5;:39;;;;;;;;:::i;:::-;;894:238;;;954:44;;-1:-1:-1;;;954:44:0;;13762:2:1;954:44:0;;;13744:21:1;13801:2;13781:18;;;13774:30;13840:34;13820:18;;;13813:62;-1:-1:-1;;;13891:18:1;;;13884:32;13933:19;;954:44:0;13560:398:1;894:238:0;1029:30;1020:5;:39;;;;;;;;:::i;:::-;;1016:116;;;1076:44;;-1:-1:-1;;;1076:44:0;;16228:2:1;1076:44:0;;;16210:21:1;16267:2;16247:18;;;16240:30;16306:34;16286:18;;;16279:62;-1:-1:-1;;;16357:18:1;;;16350:32;16399:19;;1076:44:0;16026:398:1;5834:1632:0;5965:7;;6899:66;6886:79;;6882:163;;;-1:-1:-1;6998:1:0;;-1:-1:-1;7002:30:0;6982:51;;6882:163;7059:1;:7;;7064:2;7059:7;;:18;;;;;7070:1;:7;;7075:2;7070:7;;7059:18;7055:102;;;-1:-1:-1;7110:1:0;;-1:-1:-1;7114:30:0;7094:51;;7055:102;7271:24;;;7254:14;7271:24;;;;;;;;;10505:25:1;;;10578:4;10566:17;;10546:18;;;10539:45;;;;10600:18;;;10593:34;;;10643:18;;;10636:34;;;7271:24:0;;10477:19:1;;7271:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7271:24:0;;-1:-1:-1;;7271:24:0;;;-1:-1:-1;;;;;;;7310:20:0;;7306:103;;7363:1;7367:29;7347:50;;;;;;;7306:103;7429:6;-1:-1:-1;7437:20:0;;-1:-1:-1;5834:1632:0;;;;;;;;:::o;4829:391::-;4943:7;;-1:-1:-1;;;;;5044:75:0;;5146:3;5142:12;;;5156:2;5138:21;5187:25;5198:4;5138:21;5207:1;5044:75;5187:10;:25::i;:::-;5180:32;;;;;;4829:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:367::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:55;;337:1;334;327:12;286:55;-1:-1:-1;360:20:1;;403:18;392:30;;389:50;;;435:1;432;425:12;389:50;472:4;464:6;460:17;448:29;;532:3;525:4;515:6;512:1;508:14;500:6;496:27;492:38;489:47;486:67;;;549:1;546;539:12;564:347;615:8;625:6;679:3;672:4;664:6;660:17;656:27;646:55;;697:1;694;687:12;646:55;-1:-1:-1;720:20:1;;763:18;752:30;;749:50;;;795:1;792;785:12;749:50;832:4;824:6;820:17;808:29;;884:3;877:4;868:6;860;856:19;852:30;849:39;846:59;;;901:1;898;891:12;916:188;984:20;;-1:-1:-1;;;;;1033:46:1;;1023:57;;1013:85;;1094:1;1091;1084:12;1109:186;1168:6;1221:2;1209:9;1200:7;1196:23;1192:32;1189:52;;;1237:1;1234;1227:12;1189:52;1260:29;1279:9;1260:29;:::i;1300:260::-;1368:6;1376;1429:2;1417:9;1408:7;1404:23;1400:32;1397:52;;;1445:1;1442;1435:12;1397:52;1468:29;1487:9;1468:29;:::i;:::-;1458:39;;1516:38;1550:2;1539:9;1535:18;1516:38;:::i;:::-;1506:48;;1300:260;;;;;:::o;1565:328::-;1642:6;1650;1658;1711:2;1699:9;1690:7;1686:23;1682:32;1679:52;;;1727:1;1724;1717:12;1679:52;1750:29;1769:9;1750:29;:::i;:::-;1740:39;;1798:38;1832:2;1821:9;1817:18;1798:38;:::i;:::-;1788:48;;1883:2;1872:9;1868:18;1855:32;1845:42;;1565:328;;;;;:::o;1898:1138::-;1993:6;2001;2009;2017;2070:3;2058:9;2049:7;2045:23;2041:33;2038:53;;;2087:1;2084;2077:12;2038:53;2110:29;2129:9;2110:29;:::i;:::-;2100:39;;2158:38;2192:2;2181:9;2177:18;2158:38;:::i;:::-;2148:48;;2243:2;2232:9;2228:18;2215:32;2205:42;;2298:2;2287:9;2283:18;2270:32;2321:18;2362:2;2354:6;2351:14;2348:34;;;2378:1;2375;2368:12;2348:34;2416:6;2405:9;2401:22;2391:32;;2461:7;2454:4;2450:2;2446:13;2442:27;2432:55;;2483:1;2480;2473:12;2432:55;2519:2;2506:16;2541:2;2537;2534:10;2531:36;;;2547:18;;:::i;:::-;2622:2;2616:9;2590:2;2676:13;;-1:-1:-1;;2672:22:1;;;2696:2;2668:31;2664:40;2652:53;;;2720:18;;;2740:22;;;2717:46;2714:72;;;2766:18;;:::i;:::-;2806:10;2802:2;2795:22;2841:2;2833:6;2826:18;2881:7;2876:2;2871;2867;2863:11;2859:20;2856:33;2853:53;;;2902:1;2899;2892:12;2853:53;2958:2;2953;2949;2945:11;2940:2;2932:6;2928:15;2915:46;3003:1;2998:2;2993;2985:6;2981:15;2977:24;2970:35;3024:6;3014:16;;;;;;;1898:1138;;;;;;;:::o;3041:511::-;3136:6;3144;3152;3205:2;3193:9;3184:7;3180:23;3176:32;3173:52;;;3221:1;3218;3211:12;3173:52;3244:29;3263:9;3244:29;:::i;:::-;3234:39;;3324:2;3313:9;3309:18;3296:32;3351:18;3343:6;3340:30;3337:50;;;3383:1;3380;3373:12;3337:50;3422:70;3484:7;3475:6;3464:9;3460:22;3422:70;:::i;:::-;3041:511;;3511:8;;-1:-1:-1;3396:96:1;;-1:-1:-1;;;;3041:511:1:o;3557:957::-;3690:6;3698;3706;3714;3722;3730;3738;3791:3;3779:9;3770:7;3766:23;3762:33;3759:53;;;3808:1;3805;3798:12;3759:53;3831:29;3850:9;3831:29;:::i;:::-;3821:39;;3911:2;3900:9;3896:18;3883:32;3934:18;3975:2;3967:6;3964:14;3961:34;;;3991:1;3988;3981:12;3961:34;4030:70;4092:7;4083:6;4072:9;4068:22;4030:70;:::i;:::-;4119:8;;-1:-1:-1;4004:96:1;-1:-1:-1;4201:2:1;4186:18;;4173:32;;-1:-1:-1;4252:2:1;4237:18;;4224:32;;-1:-1:-1;4309:3:1;4294:19;;4281:33;;-1:-1:-1;4326:16:1;;;4323:36;;;4355:1;4352;4345:12;4323:36;;4394:60;4446:7;4435:8;4424:9;4420:24;4394:60;:::i;:::-;3557:957;;;;-1:-1:-1;3557:957:1;;-1:-1:-1;3557:957:1;;;;4368:86;;-1:-1:-1;;;3557:957:1:o;4519:347::-;4584:6;4592;4645:2;4633:9;4624:7;4620:23;4616:32;4613:52;;;4661:1;4658;4651:12;4613:52;4684:29;4703:9;4684:29;:::i;:::-;4674:39;;4763:2;4752:9;4748:18;4735:32;4810:5;4803:13;4796:21;4789:5;4786:32;4776:60;;4832:1;4829;4822:12;4776:60;4855:5;4845:15;;;4519:347;;;;;:::o;4871:254::-;4939:6;4947;5000:2;4988:9;4979:7;4975:23;4971:32;4968:52;;;5016:1;5013;5006:12;4968:52;5039:29;5058:9;5039:29;:::i;:::-;5029:39;5115:2;5100:18;;;;5087:32;;-1:-1:-1;;;4871:254:1:o;5130:437::-;5216:6;5224;5277:2;5265:9;5256:7;5252:23;5248:32;5245:52;;;5293:1;5290;5283:12;5245:52;5333:9;5320:23;5366:18;5358:6;5355:30;5352:50;;;5398:1;5395;5388:12;5352:50;5437:70;5499:7;5490:6;5479:9;5475:22;5437:70;:::i;:::-;5526:8;;5411:96;;-1:-1:-1;5130:437:1;-1:-1:-1;;;;5130:437:1:o;5572:245::-;5630:6;5683:2;5671:9;5662:7;5658:23;5654:32;5651:52;;;5699:1;5696;5689:12;5651:52;5738:9;5725:23;5757:30;5781:5;5757:30;:::i;5822:249::-;5891:6;5944:2;5932:9;5923:7;5919:23;5915:32;5912:52;;;5960:1;5957;5950:12;5912:52;5992:9;5986:16;6011:30;6035:5;6011:30;:::i;6076:410::-;6147:6;6155;6208:2;6196:9;6187:7;6183:23;6179:32;6176:52;;;6224:1;6221;6214:12;6176:52;6264:9;6251:23;6297:18;6289:6;6286:30;6283:50;;;6329:1;6326;6319:12;6283:50;6368:58;6418:7;6409:6;6398:9;6394:22;6368:58;:::i;6491:180::-;6550:6;6603:2;6591:9;6582:7;6578:23;6574:32;6571:52;;;6619:1;6616;6609:12;6571:52;-1:-1:-1;6642:23:1;;6491:180;-1:-1:-1;6491:180:1:o;6676:254::-;6744:6;6752;6805:2;6793:9;6784:7;6780:23;6776:32;6773:52;;;6821:1;6818;6811:12;6773:52;6857:9;6844:23;6834:33;;6886:38;6920:2;6909:9;6905:18;6886:38;:::i;6935:328::-;7012:6;7020;7028;7081:2;7069:9;7060:7;7056:23;7052:32;7049:52;;;7097:1;7094;7087:12;7049:52;7133:9;7120:23;7110:33;;7162:38;7196:2;7185:9;7181:18;7162:38;:::i;:::-;7152:48;;7219:38;7253:2;7242:9;7238:18;7219:38;:::i;:::-;7209:48;;6935:328;;;;;:::o;7268:257::-;7309:3;7347:5;7341:12;7374:6;7369:3;7362:19;7390:63;7446:6;7439:4;7434:3;7430:14;7423:4;7416:5;7412:16;7390:63;:::i;:::-;7507:2;7486:15;-1:-1:-1;;7482:29:1;7473:39;;;;7514:4;7469:50;;7268:257;-1:-1:-1;;7268:257:1:o;7530:670::-;7823:2;7819:15;;;-1:-1:-1;;7815:53:1;7803:66;;7785:3;-1:-1:-1;;;;;7881:31:1;;7878:51;;;7925:1;7922;7915:12;7878:51;7959:6;7956:1;7952:14;8010:6;8002;7997:2;7992:3;7988:12;7975:42;8036:16;;;8079:2;8071:11;;8113:18;;;;-1:-1:-1;8155:2:1;8147:11;;8140:27;8191:2;8183:11;;;-1:-1:-1;;;7530:670:1:o;8205:470::-;8384:3;8422:6;8416:13;8438:53;8484:6;8479:3;8472:4;8464:6;8460:17;8438:53;:::i;:::-;8554:13;;8513:16;;;;8576:57;8554:13;8513:16;8610:4;8598:17;;8576:57;:::i;:::-;8649:20;;8205:470;-1:-1:-1;;;;8205:470:1:o;9273:488::-;-1:-1:-1;;;;;9542:15:1;;;9524:34;;9594:15;;9589:2;9574:18;;9567:43;9641:2;9626:18;;9619:34;;;9689:3;9684:2;9669:18;;9662:31;;;9467:4;;9710:45;;9735:19;;9727:6;9710:45;:::i;:::-;9702:53;9273:488;-1:-1:-1;;;;;;9273:488:1:o;10681:219::-;10830:2;10819:9;10812:21;10793:4;10850:44;10890:2;10879:9;10875:18;10867:6;10850:44;:::i;11618:414::-;11820:2;11802:21;;;11859:2;11839:18;;;11832:30;11898:34;11893:2;11878:18;;11871:62;-1:-1:-1;;;11964:2:1;11949:18;;11942:48;12022:3;12007:19;;11618:414::o;17203:356::-;17405:2;17387:21;;;17424:18;;;17417:30;17483:34;17478:2;17463:18;;17456:62;17550:2;17535:18;;17203:356::o;19566:413::-;19768:2;19750:21;;;19807:2;19787:18;;;19780:30;19846:34;19841:2;19826:18;;19819:62;-1:-1:-1;;;19912:2:1;19897:18;;19890:47;19969:3;19954:19;;19566:413::o;20784:128::-;20824:3;20855:1;20851:6;20848:1;20845:13;20842:39;;;20861:18;;:::i;:::-;-1:-1:-1;20897:9:1;;20784:128::o;20917:120::-;20957:1;20983;20973:35;;20988:18;;:::i;:::-;-1:-1:-1;21022:9:1;;20917:120::o;21042:125::-;21082:4;21110:1;21107;21104:8;21101:34;;;21115:18;;:::i;:::-;-1:-1:-1;21152:9:1;;21042:125::o;21172:258::-;21244:1;21254:113;21268:6;21265:1;21262:13;21254:113;;;21344:11;;;21338:18;21325:11;;;21318:39;21290:2;21283:10;21254:113;;;21385:6;21382:1;21379:13;21376:48;;;-1:-1:-1;;21420:1:1;21402:16;;21395:27;21172:258::o;21435:380::-;21514:1;21510:12;;;;21557;;;21578:61;;21632:4;21624:6;21620:17;21610:27;;21578:61;21685:2;21677:6;21674:14;21654:18;21651:38;21648:161;;;21731:10;21726:3;21722:20;21719:1;21712:31;21766:4;21763:1;21756:15;21794:4;21791:1;21784:15;21648:161;;21435:380;;;:::o;21820:135::-;21859:3;-1:-1:-1;;21880:17:1;;21877:43;;;21900:18;;:::i;:::-;-1:-1:-1;21947:1:1;21936:13;;21820:135::o;21960:112::-;21992:1;22018;22008:35;;22023:18;;:::i;:::-;-1:-1:-1;22057:9:1;;21960:112::o;22077:127::-;22138:10;22133:3;22129:20;22126:1;22119:31;22169:4;22166:1;22159:15;22193:4;22190:1;22183:15;22209:127;22270:10;22265:3;22261:20;22258:1;22251:31;22301:4;22298:1;22291:15;22325:4;22322:1;22315:15;22341:127;22402:10;22397:3;22393:20;22390:1;22383:31;22433:4;22430:1;22423:15;22457:4;22454:1;22447:15;22473:127;22534:10;22529:3;22525:20;22522:1;22515:31;22565:4;22562:1;22555:15;22589:4;22586:1;22579:15;22605:127;22666:10;22661:3;22657:20;22654:1;22647:31;22697:4;22694:1;22687:15;22721:4;22718:1;22711:15;22737:131;-1:-1:-1;;;;;;22811:32:1;;22801:43;;22791:71;;22858:1;22855;22848:12

Swarm Source

ipfs://2045b05364dacb99cc9673eb8dcf65bc8e1531ff4db8c80d58b4cd2c076bf52a
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.