ETH Price: $3,101.29 (+1.34%)
Gas: 7 Gwei

Token

Wasted Whales: Blackout (BO)
 

Overview

Max Total Supply

2,399 BO

Holders

316

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
11 BO
0xbacf190b02b6f6f494489c8b4b29b06ba4cb3873
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Blackout marks the first collection minted in the native token of Wasted World - $BLUB - and the third generation of characters in the Wasted Whales series.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WWBlackout

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-08
*/

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

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

// SPDX-License-Identifier: MIT
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);
}

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

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

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

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

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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 Message, created from `s`. 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(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

/**
 * @dev Interface for required in-game BLUB functions.
 */
interface IGameBlub {
    function spendBlub(address user, uint256 amount) external;
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Gas-optimized to allow batch mints at essentially the same gas as minting just one.
 */
contract WWBlackout is Context, ERC721A, Ownable, ReentrancyGuard  {
    using SafeMath for uint256;
    using Strings for uint256;
    using ECDSA for bytes32;

    // In-game blub contract
    IGameBlub public inGameBlub;

    // Provenance hash
    string public PROVENANCE_HASH;

    // Signer address
    address public signerAddress;

    // Base URI
    string public _baseTokenURI;

    // Mint info
    uint256 public constant MAX_SUPPLY = 2400;
    uint256 public RESERVED = 50;
    uint256 public MINT_PRICE_ETH = 0.05 ether;
    uint256 public MINT_PRICE_BLUB = 8000 ether;
    uint256 public WALLET_CAP = 6;

    bool public saleIsActive;
    bool public WLSaleIsActive;
    bool public BlubSaleIsActive;

    constructor(address signer, address _inGameBlubAddr) ERC721A("Wasted Whales: Blackout", "BO") {
        signerAddress = signer;
        inGameBlub = IGameBlub(_inGameBlubAddr);
    }

    function mintBlackoutEth(uint256 amount) public payable nonReentrant {
        uint256 supply = totalSupply();
        require( saleIsActive, "Sale paused" );
        require( supply + amount <= MAX_SUPPLY - RESERVED, "Exceeds maximum supply" );
        require( msg.value >= MINT_PRICE_ETH * amount, "Incorrect ether amount" );
        _safeMint(msg.sender, amount);
    }

    function mintBlackoutEthWL(uint256 amount, bytes calldata signature) public payable nonReentrant {
        uint256 supply = totalSupply();
        address sender = msg.sender;
        require( WLSaleIsActive, "Whitelist sale paused" );
        require( supply + amount <= MAX_SUPPLY - RESERVED, "Exceeds maximum supply" );
        require( balanceOf(sender) + amount <= WALLET_CAP, "Exceeds wallet cap");
        require( msg.value >= MINT_PRICE_ETH * amount, "Incorrect ether amount" );
        require(_validateSignature(
          signature,
          sender
        ), "Invalid data provided");
        _safeMint(sender, amount);
    }

    function mintBlackoutBlub(uint256 amount) public nonReentrant {
        uint256 supply = totalSupply();
        address sender = msg.sender;
        require( BlubSaleIsActive, "Blub sale paused" );
        require( supply + amount <= MAX_SUPPLY - RESERVED, "Exceeds maximum supply" );
        require( balanceOf(sender) + amount <= WALLET_CAP, "Exceeds wallet cap");
        inGameBlub.spendBlub(sender, MINT_PRICE_BLUB * amount);
        _safeMint(sender, amount);
    }

    function mintBlackoutBlubPublic(uint256 amount) public nonReentrant {
        uint256 supply = totalSupply();
        address sender = msg.sender;
        require( saleIsActive, "Public blub sale paused" );
        require( supply + amount <= MAX_SUPPLY - RESERVED, "Exceeds maximum supply" );
        inGameBlub.spendBlub(sender, MINT_PRICE_BLUB * amount);
        _safeMint(sender, amount);
    }

    function emergencyMint(uint256 amount) public payable onlyOwner {
        require(totalSupply().add(amount) <= MAX_SUPPLY - RESERVED, "Exceeds maximum supply");
        _safeMint(msg.sender, amount);
    }

    function giveAway(address _to, uint256 amount) external onlyOwner {
        require( amount <= RESERVED, "Amount exceeds reserved amount for giveaways" );
        _safeMint(_to, amount);
        RESERVED -= amount;
    }

    function updateSaleStatus(bool status) public onlyOwner {
        saleIsActive = status;
    }

    function updateWLSaleStatus(bool status) public onlyOwner {
        WLSaleIsActive = status;
    }

    function updateBlubSaleStatus(bool status) public onlyOwner {
        BlubSaleIsActive = status;
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        require(bytes(PROVENANCE_HASH).length == 0, "Provenance hash has already been set");
        PROVENANCE_HASH = provenanceHash;
    }

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

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        _baseTokenURI = newBaseURI;
    }

    function setPriceEth(uint256 newPrice) public onlyOwner {
        MINT_PRICE_ETH = newPrice;
    }

    function getPriceEth() public view returns (uint256) {
        return MINT_PRICE_ETH;
    }

    function setPriceBlub(uint256 newPrice) public onlyOwner {
        MINT_PRICE_BLUB = newPrice;
    }

    function getPriceBlub() public view returns (uint256) {
        return MINT_PRICE_BLUB;
    }

    function setWalletCap(uint256 newWalletCap) public onlyOwner {
        WALLET_CAP = newWalletCap;
    }

    function changeInGameBlubContract(address _newInGameBlub) public onlyOwner {
      inGameBlub = IGameBlub(_newInGameBlub);
    }

    function setSignerAddress(address _signer) public onlyOwner {
        signerAddress = _signer;
    }

    function _validateSignature(
        bytes calldata signature,
        address senderAddress
        ) internal view returns (bool) {
        bytes32 dataHash = keccak256(abi.encodePacked(senderAddress));
        bytes32 message = ECDSA.toEthSignedMessageHash(dataHash);

        address receivedAddress = ECDSA.recover(message, signature);
        return (receivedAddress != address(0) && receivedAddress == signerAddress);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"_inGameBlubAddr","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":"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":[],"name":"BlubSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE_BLUB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE_ETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WALLET_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":[{"internalType":"address","name":"_newInGameBlub","type":"address"}],"name":"changeInGameBlubContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emergencyMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPriceBlub","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPriceEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"inGameBlub","outputs":[{"internalType":"contract IGameBlub","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":"uint256","name":"amount","type":"uint256"}],"name":"mintBlackoutBlub","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintBlackoutBlubPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintBlackoutEth","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintBlackoutEthWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPriceBlub","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPriceEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newWalletCap","type":"uint256"}],"name":"setWalletCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bool","name":"status","type":"bool"}],"name":"updateBlubSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"updateSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"updateWLSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526032600d5566b1a2bc2ec50000600e556901b1ae4d6e2ef5000000600f5560066010553480156200003457600080fd5b506040516200352c3803806200352c833981016040819052620000579162000239565b604080518082018252601781527f576173746564205768616c65733a20426c61636b6f7574000000000000000000602080830191825283518085019094526002845261424f60f01b908401528151919291620000b69160019162000176565b508051620000cc90600290602084019062000176565b505050620000e9620000e36200012060201b60201c565b62000124565b6001600855600b80546001600160a01b039384166001600160a01b03199182161790915560098054929093169116179055620002ad565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001849062000270565b90600052602060002090601f016020900481019282620001a85760008555620001f3565b82601f10620001c357805160ff1916838001178555620001f3565b82800160010185558215620001f3579182015b82811115620001f3578251825591602001919060010190620001d6565b506200020192915062000205565b5090565b5b8082111562000201576000815560010162000206565b80516001600160a01b03811681146200023457600080fd5b919050565b600080604083850312156200024c578182fd5b62000257836200021c565b915062000267602084016200021c565b90509250929050565b6002810460018216806200028557607f821691505b60208210811415620002a757634e487b7160e01b600052602260045260246000fd5b50919050565b61326f80620002bd6000396000f3fe6080604052600436106102c95760003560e01c806365a6466811610175578063c0a86a4a116100dc578063e666812711610095578063f29b7ab01161006f578063f29b7ab0146107e2578063f2fde38b14610802578063ff1b655614610822578063ffcc66dc14610837576102c9565b8063e666812714610798578063e985e9c5146107ad578063eb8d2444146107cd576102c9565b8063c0a86a4a146106f9578063c87b56dd1461070e578063ca8001441461072e578063cfc86f7b1461074e578063d4d93e2414610763578063e3b3674914610778576102c9565b80638da5cb5b1161012e5780638da5cb5b1461065a57806395d89b411461066f578063a22cb46514610684578063a9eb2a12146106a4578063aa592f25146106c4578063b88d4fde146106d9576102c9565b806365a64668146105bb5780636b07bf1a146105db57806370a08231146105f0578063715018a61461061057806375c3f3f4146106255780638c1db36114610645576102c9565b806323b872dd1161023457806340a8d7f1116101ed5780634f6ccce7116101c75780634f6ccce71461054657806355f804b3146105665780635b7633d0146105865780636352211e1461059b576102c9565b806340a8d7f1146104fc57806342842e0e146105115780634aa82d6d14610531576102c9565b806323b872dd1461045f5780632e5b2db11461047f5780632f745c591461049f57806332cb6b0c146104bf578063358a8d33146104d45780633ccfd60b146104e7576102c9565b8063095ea7b311610286578063095ea7b3146103b55780630a088949146103d55780630ef6d8d3146103f5578063109695231461040a57806318160ddd1461042a5780631aad0ed31461044c576102c9565b806301ffc9a7146102ce5780630249d6241461030457806303f32f0814610326578063046dc1661461034657806306fdde0314610366578063081812fc14610388575b600080fd5b3480156102da57600080fd5b506102ee6102e936600461264d565b61084a565b6040516102fb919061286d565b60405180910390f35b34801561031057600080fd5b5061032461031f3660046126cb565b6108ad565b005b34801561033257600080fd5b506103246103413660046126cb565b6108fa565b34801561035257600080fd5b506103246103613660046124e1565b61093e565b34801561037257600080fd5b5061037b61099f565b6040516102fb9190612896565b34801561039457600080fd5b506103a86103a33660046126cb565b610a31565b6040516102fb9190612803565b3480156103c157600080fd5b506103246103d036600461260a565b610a74565b3480156103e157600080fd5b506103246103f0366004612633565b610b0d565b34801561040157600080fd5b506103a8610b5f565b34801561041657600080fd5b50610324610425366004612685565b610b6e565b34801561043657600080fd5b5061043f610bf0565b6040516102fb91906130e0565b61032461045a3660046126cb565b610bf6565b34801561046b57600080fd5b5061032461047a36600461252d565b610cc4565b34801561048b57600080fd5b5061032461049a3660046124e1565b610ccf565b3480156104ab57600080fd5b5061043f6104ba36600461260a565b610d30565b3480156104cb57600080fd5b5061043f610e1b565b6103246104e23660046126e3565b610e21565b3480156104f357600080fd5b50610324610f55565b34801561050857600080fd5b506102ee610fd5565b34801561051d57600080fd5b5061032461052c36600461252d565b610fe4565b34801561053d57600080fd5b5061043f610fff565b34801561055257600080fd5b5061043f6105613660046126cb565b611005565b34801561057257600080fd5b50610324610581366004612685565b611031565b34801561059257600080fd5b506103a8611083565b3480156105a757600080fd5b506103a86105b63660046126cb565b611092565b3480156105c757600080fd5b506103246105d63660046126cb565b6110a4565b3480156105e757600080fd5b5061043f6110e8565b3480156105fc57600080fd5b5061043f61060b3660046124e1565b6110ee565b34801561061c57600080fd5b5061032461113b565b34801561063157600080fd5b50610324610640366004612633565b611186565b34801561065157600080fd5b5061043f6111e1565b34801561066657600080fd5b506103a86111e7565b34801561067b57600080fd5b5061037b6111f6565b34801561069057600080fd5b5061032461069f3660046125e1565b611205565b3480156106b057600080fd5b506103246106bf366004612633565b6112d3565b3480156106d057600080fd5b5061043f61132c565b3480156106e557600080fd5b506103246106f4366004612568565b611332565b34801561070557600080fd5b5061043f61136b565b34801561071a57600080fd5b5061037b6107293660046126cb565b611371565b34801561073a57600080fd5b5061032461074936600461260a565b6113f5565b34801561075a57600080fd5b5061037b61147b565b34801561076f57600080fd5b506102ee611509565b34801561078457600080fd5b506103246107933660046126cb565b611517565b3480156107a457600080fd5b5061043f61162f565b3480156107b957600080fd5b506102ee6107c83660046124fb565b611635565b3480156107d957600080fd5b506102ee611663565b3480156107ee57600080fd5b506103246107fd3660046126cb565b61166c565b34801561080e57600080fd5b5061032461081d3660046124e1565b611737565b34801561082e57600080fd5b5061037b6117a8565b6103246108453660046126cb565b6117b5565b60006001600160e01b031982166380ac58cd60e01b148061087b57506001600160e01b03198216635b5e139f60e01b145b8061089657506001600160e01b0319821663780e9d6360e01b145b806108a557506108a58261183d565b90505b919050565b6108b5611856565b6001600160a01b03166108c66111e7565b6001600160a01b0316146108f55760405162461bcd60e51b81526004016108ec90612cc4565b60405180910390fd5b600e55565b610902611856565b6001600160a01b03166109136111e7565b6001600160a01b0316146109395760405162461bcd60e51b81526004016108ec90612cc4565b600f55565b610946611856565b6001600160a01b03166109576111e7565b6001600160a01b03161461097d5760405162461bcd60e51b81526004016108ec90612cc4565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546109ae90613177565b80601f01602080910402602001604051908101604052809291908181526020018280546109da90613177565b8015610a275780601f106109fc57610100808354040283529160200191610a27565b820191906000526020600020905b815481529060010190602001808311610a0a57829003601f168201915b5050505050905090565b6000610a3c8261185a565b610a585760405162461bcd60e51b81526004016108ec90613034565b506000908152600560205260409020546001600160a01b031690565b6000610a7f82611092565b9050806001600160a01b0316836001600160a01b03161415610ab35760405162461bcd60e51b81526004016108ec90612e5a565b806001600160a01b0316610ac5611856565b6001600160a01b03161480610ae15750610ae1816107c8611856565b610afd5760405162461bcd60e51b81526004016108ec90612b48565b610b08838383611861565b505050565b610b15611856565b6001600160a01b0316610b266111e7565b6001600160a01b031614610b4c5760405162461bcd60e51b81526004016108ec90612cc4565b6011805460ff1916911515919091179055565b6009546001600160a01b031681565b610b76611856565b6001600160a01b0316610b876111e7565b6001600160a01b031614610bad5760405162461bcd60e51b81526004016108ec90612cc4565b600a8054610bba90613177565b159050610bd95760405162461bcd60e51b81526004016108ec90612947565b8051610bec90600a90602084019061239e565b5050565b60005490565b60026008541415610c195760405162461bcd60e51b81526004016108ec90612fc6565b60026008556000610c28610bf0565b60115490915060ff16610c4d5760405162461bcd60e51b81526004016108ec90612922565b600d54610c5c90610960613134565b610c6683836130e9565b1115610c845760405162461bcd60e51b81526004016108ec90612e00565b81600e54610c929190613115565b341015610cb15760405162461bcd60e51b81526004016108ec906130b0565b610cbb33836118bd565b50506001600855565b610b088383836118d7565b610cd7611856565b6001600160a01b0316610ce86111e7565b6001600160a01b031614610d0e5760405162461bcd60e51b81526004016108ec90612cc4565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000610d3b836110ee565b8210610d595760405162461bcd60e51b81526004016108ec906128e0565b6000610d63610bf0565b905060008060005b83811015610dfc576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610dbe57805192505b876001600160a01b0316836001600160a01b03161415610df35786841415610dec57509350610e1592505050565b6001909301925b50600101610d6b565b5060405162461bcd60e51b81526004016108ec90612f78565b92915050565b61096081565b60026008541415610e445760405162461bcd60e51b81526004016108ec90612fc6565b60026008556000610e53610bf0565b6011549091503390610100900460ff16610e7f5760405162461bcd60e51b81526004016108ec90612dd1565b600d54610e8e90610960613134565b610e9886846130e9565b1115610eb65760405162461bcd60e51b81526004016108ec90612e00565b60105485610ec3836110ee565b610ecd91906130e9565b1115610eeb5760405162461bcd60e51b81526004016108ec90612b1c565b84600e54610ef99190613115565b341015610f185760405162461bcd60e51b81526004016108ec906130b0565b610f23848483611b44565b610f3f5760405162461bcd60e51b81526004016108ec90613081565b610f4981866118bd565b50506001600855505050565b610f5d611856565b6001600160a01b0316610f6e6111e7565b6001600160a01b031614610f945760405162461bcd60e51b81526004016108ec90612cc4565b47610f9d6111e7565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610bec573d6000803e3d6000fd5b60115462010000900460ff1681565b610b0883838360405180602001604052806000815250611332565b600e5481565b600061100f610bf0565b821061102d5760405162461bcd60e51b81526004016108ec90612a52565b5090565b611039611856565b6001600160a01b031661104a6111e7565b6001600160a01b0316146110705760405162461bcd60e51b81526004016108ec90612cc4565b8051610bec90600c90602084019061239e565b600b546001600160a01b031681565b600061109d82611bf1565b5192915050565b6110ac611856565b6001600160a01b03166110bd6111e7565b6001600160a01b0316146110e35760405162461bcd60e51b81526004016108ec90612cc4565b601055565b600f5490565b60006001600160a01b0382166111165760405162461bcd60e51b81526004016108ec90612bf1565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b611143611856565b6001600160a01b03166111546111e7565b6001600160a01b03161461117a5760405162461bcd60e51b81526004016108ec90612cc4565b6111846000611c79565b565b61118e611856565b6001600160a01b031661119f6111e7565b6001600160a01b0316146111c55760405162461bcd60e51b81526004016108ec90612cc4565b60118054911515620100000262ff000019909216919091179055565b60105481565b6007546001600160a01b031690565b6060600280546109ae90613177565b61120d611856565b6001600160a01b0316826001600160a01b0316141561123e5760405162461bcd60e51b81526004016108ec90612d48565b806006600061124b611856565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561128f611856565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112c7919061286d565b60405180910390a35050565b6112db611856565b6001600160a01b03166112ec6111e7565b6001600160a01b0316146113125760405162461bcd60e51b81526004016108ec90612cc4565b601180549115156101000261ff0019909216919091179055565b600d5481565b61133d8484846118d7565b61134984848484611ccb565b6113655760405162461bcd60e51b81526004016108ec90612e9c565b50505050565b600e5490565b606061137c8261185a565b6113985760405162461bcd60e51b81526004016108ec90612cf9565b60006113a2611de7565b90508051600014156113c357604051806020016040528060008152506113ee565b806113cd84611df6565b6040516020016113de9291906127a3565b6040516020818303038152906040525b9392505050565b6113fd611856565b6001600160a01b031661140e6111e7565b6001600160a01b0316146114345760405162461bcd60e51b81526004016108ec90612cc4565b600d548111156114565760405162461bcd60e51b81526004016108ec90612ba5565b61146082826118bd565b80600d60008282546114729190613134565b90915550505050565b600c805461148890613177565b80601f01602080910402602001604051908101604052809291908181526020018280546114b490613177565b80156115015780601f106114d657610100808354040283529160200191611501565b820191906000526020600020905b8154815290600101906020018083116114e457829003601f168201915b505050505081565b601154610100900460ff1681565b6002600854141561153a5760405162461bcd60e51b81526004016108ec90612fc6565b60026008556000611549610bf0565b601154909150339060ff166115705760405162461bcd60e51b81526004016108ec90612ffd565b600d5461157f90610960613134565b61158984846130e9565b11156115a75760405162461bcd60e51b81526004016108ec90612e00565b600954600f546001600160a01b0390911690636d70099e9083906115cc908790613115565b6040518363ffffffff1660e01b81526004016115e9929190612854565b600060405180830381600087803b15801561160357600080fd5b505af1158015611617573d6000803e3d6000fd5b5050505061162581846118bd565b5050600160085550565b600f5481565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60115460ff1681565b6002600854141561168f5760405162461bcd60e51b81526004016108ec90612fc6565b6002600855600061169e610bf0565b601154909150339062010000900460ff166116cb5760405162461bcd60e51b81526004016108ec90612e30565b600d546116da90610960613134565b6116e484846130e9565b11156117025760405162461bcd60e51b81526004016108ec90612e00565b6010548361170f836110ee565b61171991906130e9565b11156115a75760405162461bcd60e51b81526004016108ec90612b1c565b61173f611856565b6001600160a01b03166117506111e7565b6001600160a01b0316146117765760405162461bcd60e51b81526004016108ec90612cc4565b6001600160a01b03811661179c5760405162461bcd60e51b81526004016108ec906129c2565b6117a581611c79565b50565b600a805461148890613177565b6117bd611856565b6001600160a01b03166117ce6111e7565b6001600160a01b0316146117f45760405162461bcd60e51b81526004016108ec90612cc4565b600d5461180390610960613134565b6118158261180f610bf0565b90611f11565b11156118335760405162461bcd60e51b81526004016108ec90612e00565b6117a533826118bd565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6000541190565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610bec828260405180602001604052806000815250611f1d565b60006118e282611bf1565b9050600081600001516001600160a01b03166118fc611856565b6001600160a01b031614806119315750611914611856565b6001600160a01b031661192684610a31565b6001600160a01b0316145b8061194557508151611945906107c8611856565b9050806119645760405162461bcd60e51b81526004016108ec90612d7f565b846001600160a01b031682600001516001600160a01b0316146119995760405162461bcd60e51b81526004016108ec90612c7e565b6001600160a01b0384166119bf5760405162461bcd60e51b81526004016108ec90612a95565b6119cc8585856001611365565b6119dc6000848460000151611861565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff1602179055908601808352912054909116611aee57611a908161185a565b15611aee578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b3d8585856001611365565b5050505050565b60008082604051602001611b589190612786565b6040516020818303038152906040528051906020012090506000611b7b82611f2a565b90506000611bbf8288888080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611f5a92505050565b90506001600160a01b03811615801590611be65750600b546001600160a01b038281169116145b979650505050505050565b611bf961241e565b611c028261185a565b611c1e5760405162461bcd60e51b81526004016108ec90612a08565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c6f5791506108a89050565b5060001901611c20565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611cdf846001600160a01b0316611f7e565b15611ddb57836001600160a01b031663150b7a02611cfb611856565b8786866040518563ffffffff1660e01b8152600401611d1d9493929190612817565b602060405180830381600087803b158015611d3757600080fd5b505af1925050508015611d67575060408051601f3d908101601f19168201909252611d6491810190612669565b60015b611dc1573d808015611d95576040519150601f19603f3d011682016040523d82523d6000602084013e611d9a565b606091505b508051611db95760405162461bcd60e51b81526004016108ec90612e9c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ddf565b5060015b949350505050565b6060600c80546109ae90613177565b606081611e1b57506040805180820190915260018152600360fc1b60208201526108a8565b8160005b8115611e455780611e2f816131b2565b9150611e3e9050600a83613101565b9150611e1f565b60008167ffffffffffffffff811115611e6e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e98576020820181803683370190505b5090505b8415611ddf57611ead600183613134565b9150611eba600a866131cd565b611ec59060306130e9565b60f81b818381518110611ee857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f0a600a86613101565b9450611e9c565b60006113ee82846130e9565b610b088383836001611f84565b600081604051602001611f3d91906127d2565b604051602081830303815290604052805190602001209050919050565b6000806000611f6985856120f2565b91509150611f7681612162565b509392505050565b3b151590565b6000546001600160a01b038516611fad5760405162461bcd60e51b81526004016108ec90612eef565b83611fca5760405162461bcd60e51b81526004016108ec90612f30565b611fd76000868387611365565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b858110156120e05760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156120d4576120b86000888488611ccb565b6120d45760405162461bcd60e51b81526004016108ec90612e9c565b60019182019101612065565b506000908155611b3d90868387611365565b6000808251604114156121295760208301516040840151606085015160001a61211d8782858561228f565b9450945050505061215b565b825160401415612153576020830151604084015161214886838361236f565b93509350505061215b565b506000905060025b9250929050565b600081600481111561218457634e487b7160e01b600052602160045260246000fd5b141561218f576117a5565b60018160048111156121b157634e487b7160e01b600052602160045260246000fd5b14156121cf5760405162461bcd60e51b81526004016108ec906128a9565b60028160048111156121f157634e487b7160e01b600052602160045260246000fd5b141561220f5760405162461bcd60e51b81526004016108ec9061298b565b600381600481111561223157634e487b7160e01b600052602160045260246000fd5b141561224f5760405162461bcd60e51b81526004016108ec90612ada565b600481600481111561227157634e487b7160e01b600052602160045260246000fd5b14156117a55760405162461bcd60e51b81526004016108ec90612c3c565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156122c65750600090506003612366565b8460ff16601b141580156122de57508460ff16601c14155b156122ef5750600090506004612366565b6000600187878787604051600081526020016040526040516123149493929190612878565b6020604051602081039080840390855afa158015612336573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661235f57600060019250925050612366565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016123908782888561228f565b935093505050935093915050565b8280546123aa90613177565b90600052602060002090601f0160209004810192826123cc5760008555612412565b82601f106123e557805160ff1916838001178555612412565b82800160010185558215612412579182015b828111156124125782518255916020019190600101906123f7565b5061102d929150612435565b604080518082019091526000808252602082015290565b5b8082111561102d5760008155600101612436565b600067ffffffffffffffff808411156124655761246561320d565b604051601f8501601f1916810160200182811182821017156124895761248961320d565b6040528481529150818385018610156124a157600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146108a857600080fd5b803580151581146108a857600080fd5b6000602082840312156124f2578081fd5b6113ee826124ba565b6000806040838503121561250d578081fd5b612516836124ba565b9150612524602084016124ba565b90509250929050565b600080600060608486031215612541578081fd5b61254a846124ba565b9250612558602085016124ba565b9150604084013590509250925092565b6000806000806080858703121561257d578081fd5b612586856124ba565b9350612594602086016124ba565b925060408501359150606085013567ffffffffffffffff8111156125b6578182fd5b8501601f810187136125c6578182fd5b6125d58782356020840161244a565b91505092959194509250565b600080604083850312156125f3578182fd5b6125fc836124ba565b9150612524602084016124d1565b6000806040838503121561261c578182fd5b612625836124ba565b946020939093013593505050565b600060208284031215612644578081fd5b6113ee826124d1565b60006020828403121561265e578081fd5b81356113ee81613223565b60006020828403121561267a578081fd5b81516113ee81613223565b600060208284031215612696578081fd5b813567ffffffffffffffff8111156126ac578182fd5b8201601f810184136126bc578182fd5b611ddf8482356020840161244a565b6000602082840312156126dc578081fd5b5035919050565b6000806000604084860312156126f7578283fd5b83359250602084013567ffffffffffffffff80821115612715578384fd5b818601915086601f830112612728578384fd5b813581811115612736578485fd5b876020828501011115612747578485fd5b6020830194508093505050509250925092565b6000815180845261277281602086016020860161314b565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b600083516127b581846020880161314b565b8351908301906127c981836020880161314b565b01949350505050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061284a9083018461275a565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b93845260ff9290921660208401526040830152606082015260800190565b6000602082526113ee602083018461275a565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b60208082526024908201527f50726f76656e616e636520686173682068617320616c7265616479206265656e604082015263081cd95d60e21b606082015260800190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b6020808252601290820152710457863656564732077616c6c6574206361760741b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602c908201527f416d6f756e74206578636565647320726573657276656420616d6f756e74206660408201526b6f722067697665617761797360a01b606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526015908201527415da1a5d195b1a5cdd081cd85b19481c185d5cd959605a1b604082015260600190565b60208082526016908201527545786365656473206d6178696d756d20737570706c7960501b604082015260600190565b60208082526010908201526f109b1d58881cd85b19481c185d5cd95960821b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526017908201527f5075626c696320626c75622073616c6520706175736564000000000000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b602080825260159082015274125b9d985b1a590819185d18481c1c9bdd9a591959605a1b604082015260600190565b602080825260169082015275125b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b604082015260600190565b90815260200190565b600082198211156130fc576130fc6131e1565b500190565b600082613110576131106131f7565b500490565b600081600019048311821515161561312f5761312f6131e1565b500290565b600082821015613146576131466131e1565b500390565b60005b8381101561316657818101518382015260200161314e565b838111156113655750506000910152565b60028104600182168061318b57607f821691505b602082108114156131ac57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131c6576131c66131e1565b5060010190565b6000826131dc576131dc6131f7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117a557600080fdfea26469706673582212204b775259f532a93595dcac040cc1a1c5d46f295316eebd4860d57679877cc98c64736f6c634300080000330000000000000000000000006d73fd9a4a89234f9fa7f48f341c353dd01842ea00000000000000000000000002e2e8b040492831b44d64a61605554880a70136

Deployed Bytecode

0x6080604052600436106102c95760003560e01c806365a6466811610175578063c0a86a4a116100dc578063e666812711610095578063f29b7ab01161006f578063f29b7ab0146107e2578063f2fde38b14610802578063ff1b655614610822578063ffcc66dc14610837576102c9565b8063e666812714610798578063e985e9c5146107ad578063eb8d2444146107cd576102c9565b8063c0a86a4a146106f9578063c87b56dd1461070e578063ca8001441461072e578063cfc86f7b1461074e578063d4d93e2414610763578063e3b3674914610778576102c9565b80638da5cb5b1161012e5780638da5cb5b1461065a57806395d89b411461066f578063a22cb46514610684578063a9eb2a12146106a4578063aa592f25146106c4578063b88d4fde146106d9576102c9565b806365a64668146105bb5780636b07bf1a146105db57806370a08231146105f0578063715018a61461061057806375c3f3f4146106255780638c1db36114610645576102c9565b806323b872dd1161023457806340a8d7f1116101ed5780634f6ccce7116101c75780634f6ccce71461054657806355f804b3146105665780635b7633d0146105865780636352211e1461059b576102c9565b806340a8d7f1146104fc57806342842e0e146105115780634aa82d6d14610531576102c9565b806323b872dd1461045f5780632e5b2db11461047f5780632f745c591461049f57806332cb6b0c146104bf578063358a8d33146104d45780633ccfd60b146104e7576102c9565b8063095ea7b311610286578063095ea7b3146103b55780630a088949146103d55780630ef6d8d3146103f5578063109695231461040a57806318160ddd1461042a5780631aad0ed31461044c576102c9565b806301ffc9a7146102ce5780630249d6241461030457806303f32f0814610326578063046dc1661461034657806306fdde0314610366578063081812fc14610388575b600080fd5b3480156102da57600080fd5b506102ee6102e936600461264d565b61084a565b6040516102fb919061286d565b60405180910390f35b34801561031057600080fd5b5061032461031f3660046126cb565b6108ad565b005b34801561033257600080fd5b506103246103413660046126cb565b6108fa565b34801561035257600080fd5b506103246103613660046124e1565b61093e565b34801561037257600080fd5b5061037b61099f565b6040516102fb9190612896565b34801561039457600080fd5b506103a86103a33660046126cb565b610a31565b6040516102fb9190612803565b3480156103c157600080fd5b506103246103d036600461260a565b610a74565b3480156103e157600080fd5b506103246103f0366004612633565b610b0d565b34801561040157600080fd5b506103a8610b5f565b34801561041657600080fd5b50610324610425366004612685565b610b6e565b34801561043657600080fd5b5061043f610bf0565b6040516102fb91906130e0565b61032461045a3660046126cb565b610bf6565b34801561046b57600080fd5b5061032461047a36600461252d565b610cc4565b34801561048b57600080fd5b5061032461049a3660046124e1565b610ccf565b3480156104ab57600080fd5b5061043f6104ba36600461260a565b610d30565b3480156104cb57600080fd5b5061043f610e1b565b6103246104e23660046126e3565b610e21565b3480156104f357600080fd5b50610324610f55565b34801561050857600080fd5b506102ee610fd5565b34801561051d57600080fd5b5061032461052c36600461252d565b610fe4565b34801561053d57600080fd5b5061043f610fff565b34801561055257600080fd5b5061043f6105613660046126cb565b611005565b34801561057257600080fd5b50610324610581366004612685565b611031565b34801561059257600080fd5b506103a8611083565b3480156105a757600080fd5b506103a86105b63660046126cb565b611092565b3480156105c757600080fd5b506103246105d63660046126cb565b6110a4565b3480156105e757600080fd5b5061043f6110e8565b3480156105fc57600080fd5b5061043f61060b3660046124e1565b6110ee565b34801561061c57600080fd5b5061032461113b565b34801561063157600080fd5b50610324610640366004612633565b611186565b34801561065157600080fd5b5061043f6111e1565b34801561066657600080fd5b506103a86111e7565b34801561067b57600080fd5b5061037b6111f6565b34801561069057600080fd5b5061032461069f3660046125e1565b611205565b3480156106b057600080fd5b506103246106bf366004612633565b6112d3565b3480156106d057600080fd5b5061043f61132c565b3480156106e557600080fd5b506103246106f4366004612568565b611332565b34801561070557600080fd5b5061043f61136b565b34801561071a57600080fd5b5061037b6107293660046126cb565b611371565b34801561073a57600080fd5b5061032461074936600461260a565b6113f5565b34801561075a57600080fd5b5061037b61147b565b34801561076f57600080fd5b506102ee611509565b34801561078457600080fd5b506103246107933660046126cb565b611517565b3480156107a457600080fd5b5061043f61162f565b3480156107b957600080fd5b506102ee6107c83660046124fb565b611635565b3480156107d957600080fd5b506102ee611663565b3480156107ee57600080fd5b506103246107fd3660046126cb565b61166c565b34801561080e57600080fd5b5061032461081d3660046124e1565b611737565b34801561082e57600080fd5b5061037b6117a8565b6103246108453660046126cb565b6117b5565b60006001600160e01b031982166380ac58cd60e01b148061087b57506001600160e01b03198216635b5e139f60e01b145b8061089657506001600160e01b0319821663780e9d6360e01b145b806108a557506108a58261183d565b90505b919050565b6108b5611856565b6001600160a01b03166108c66111e7565b6001600160a01b0316146108f55760405162461bcd60e51b81526004016108ec90612cc4565b60405180910390fd5b600e55565b610902611856565b6001600160a01b03166109136111e7565b6001600160a01b0316146109395760405162461bcd60e51b81526004016108ec90612cc4565b600f55565b610946611856565b6001600160a01b03166109576111e7565b6001600160a01b03161461097d5760405162461bcd60e51b81526004016108ec90612cc4565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546109ae90613177565b80601f01602080910402602001604051908101604052809291908181526020018280546109da90613177565b8015610a275780601f106109fc57610100808354040283529160200191610a27565b820191906000526020600020905b815481529060010190602001808311610a0a57829003601f168201915b5050505050905090565b6000610a3c8261185a565b610a585760405162461bcd60e51b81526004016108ec90613034565b506000908152600560205260409020546001600160a01b031690565b6000610a7f82611092565b9050806001600160a01b0316836001600160a01b03161415610ab35760405162461bcd60e51b81526004016108ec90612e5a565b806001600160a01b0316610ac5611856565b6001600160a01b03161480610ae15750610ae1816107c8611856565b610afd5760405162461bcd60e51b81526004016108ec90612b48565b610b08838383611861565b505050565b610b15611856565b6001600160a01b0316610b266111e7565b6001600160a01b031614610b4c5760405162461bcd60e51b81526004016108ec90612cc4565b6011805460ff1916911515919091179055565b6009546001600160a01b031681565b610b76611856565b6001600160a01b0316610b876111e7565b6001600160a01b031614610bad5760405162461bcd60e51b81526004016108ec90612cc4565b600a8054610bba90613177565b159050610bd95760405162461bcd60e51b81526004016108ec90612947565b8051610bec90600a90602084019061239e565b5050565b60005490565b60026008541415610c195760405162461bcd60e51b81526004016108ec90612fc6565b60026008556000610c28610bf0565b60115490915060ff16610c4d5760405162461bcd60e51b81526004016108ec90612922565b600d54610c5c90610960613134565b610c6683836130e9565b1115610c845760405162461bcd60e51b81526004016108ec90612e00565b81600e54610c929190613115565b341015610cb15760405162461bcd60e51b81526004016108ec906130b0565b610cbb33836118bd565b50506001600855565b610b088383836118d7565b610cd7611856565b6001600160a01b0316610ce86111e7565b6001600160a01b031614610d0e5760405162461bcd60e51b81526004016108ec90612cc4565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000610d3b836110ee565b8210610d595760405162461bcd60e51b81526004016108ec906128e0565b6000610d63610bf0565b905060008060005b83811015610dfc576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610dbe57805192505b876001600160a01b0316836001600160a01b03161415610df35786841415610dec57509350610e1592505050565b6001909301925b50600101610d6b565b5060405162461bcd60e51b81526004016108ec90612f78565b92915050565b61096081565b60026008541415610e445760405162461bcd60e51b81526004016108ec90612fc6565b60026008556000610e53610bf0565b6011549091503390610100900460ff16610e7f5760405162461bcd60e51b81526004016108ec90612dd1565b600d54610e8e90610960613134565b610e9886846130e9565b1115610eb65760405162461bcd60e51b81526004016108ec90612e00565b60105485610ec3836110ee565b610ecd91906130e9565b1115610eeb5760405162461bcd60e51b81526004016108ec90612b1c565b84600e54610ef99190613115565b341015610f185760405162461bcd60e51b81526004016108ec906130b0565b610f23848483611b44565b610f3f5760405162461bcd60e51b81526004016108ec90613081565b610f4981866118bd565b50506001600855505050565b610f5d611856565b6001600160a01b0316610f6e6111e7565b6001600160a01b031614610f945760405162461bcd60e51b81526004016108ec90612cc4565b47610f9d6111e7565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610bec573d6000803e3d6000fd5b60115462010000900460ff1681565b610b0883838360405180602001604052806000815250611332565b600e5481565b600061100f610bf0565b821061102d5760405162461bcd60e51b81526004016108ec90612a52565b5090565b611039611856565b6001600160a01b031661104a6111e7565b6001600160a01b0316146110705760405162461bcd60e51b81526004016108ec90612cc4565b8051610bec90600c90602084019061239e565b600b546001600160a01b031681565b600061109d82611bf1565b5192915050565b6110ac611856565b6001600160a01b03166110bd6111e7565b6001600160a01b0316146110e35760405162461bcd60e51b81526004016108ec90612cc4565b601055565b600f5490565b60006001600160a01b0382166111165760405162461bcd60e51b81526004016108ec90612bf1565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b611143611856565b6001600160a01b03166111546111e7565b6001600160a01b03161461117a5760405162461bcd60e51b81526004016108ec90612cc4565b6111846000611c79565b565b61118e611856565b6001600160a01b031661119f6111e7565b6001600160a01b0316146111c55760405162461bcd60e51b81526004016108ec90612cc4565b60118054911515620100000262ff000019909216919091179055565b60105481565b6007546001600160a01b031690565b6060600280546109ae90613177565b61120d611856565b6001600160a01b0316826001600160a01b0316141561123e5760405162461bcd60e51b81526004016108ec90612d48565b806006600061124b611856565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561128f611856565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112c7919061286d565b60405180910390a35050565b6112db611856565b6001600160a01b03166112ec6111e7565b6001600160a01b0316146113125760405162461bcd60e51b81526004016108ec90612cc4565b601180549115156101000261ff0019909216919091179055565b600d5481565b61133d8484846118d7565b61134984848484611ccb565b6113655760405162461bcd60e51b81526004016108ec90612e9c565b50505050565b600e5490565b606061137c8261185a565b6113985760405162461bcd60e51b81526004016108ec90612cf9565b60006113a2611de7565b90508051600014156113c357604051806020016040528060008152506113ee565b806113cd84611df6565b6040516020016113de9291906127a3565b6040516020818303038152906040525b9392505050565b6113fd611856565b6001600160a01b031661140e6111e7565b6001600160a01b0316146114345760405162461bcd60e51b81526004016108ec90612cc4565b600d548111156114565760405162461bcd60e51b81526004016108ec90612ba5565b61146082826118bd565b80600d60008282546114729190613134565b90915550505050565b600c805461148890613177565b80601f01602080910402602001604051908101604052809291908181526020018280546114b490613177565b80156115015780601f106114d657610100808354040283529160200191611501565b820191906000526020600020905b8154815290600101906020018083116114e457829003601f168201915b505050505081565b601154610100900460ff1681565b6002600854141561153a5760405162461bcd60e51b81526004016108ec90612fc6565b60026008556000611549610bf0565b601154909150339060ff166115705760405162461bcd60e51b81526004016108ec90612ffd565b600d5461157f90610960613134565b61158984846130e9565b11156115a75760405162461bcd60e51b81526004016108ec90612e00565b600954600f546001600160a01b0390911690636d70099e9083906115cc908790613115565b6040518363ffffffff1660e01b81526004016115e9929190612854565b600060405180830381600087803b15801561160357600080fd5b505af1158015611617573d6000803e3d6000fd5b5050505061162581846118bd565b5050600160085550565b600f5481565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60115460ff1681565b6002600854141561168f5760405162461bcd60e51b81526004016108ec90612fc6565b6002600855600061169e610bf0565b601154909150339062010000900460ff166116cb5760405162461bcd60e51b81526004016108ec90612e30565b600d546116da90610960613134565b6116e484846130e9565b11156117025760405162461bcd60e51b81526004016108ec90612e00565b6010548361170f836110ee565b61171991906130e9565b11156115a75760405162461bcd60e51b81526004016108ec90612b1c565b61173f611856565b6001600160a01b03166117506111e7565b6001600160a01b0316146117765760405162461bcd60e51b81526004016108ec90612cc4565b6001600160a01b03811661179c5760405162461bcd60e51b81526004016108ec906129c2565b6117a581611c79565b50565b600a805461148890613177565b6117bd611856565b6001600160a01b03166117ce6111e7565b6001600160a01b0316146117f45760405162461bcd60e51b81526004016108ec90612cc4565b600d5461180390610960613134565b6118158261180f610bf0565b90611f11565b11156118335760405162461bcd60e51b81526004016108ec90612e00565b6117a533826118bd565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6000541190565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610bec828260405180602001604052806000815250611f1d565b60006118e282611bf1565b9050600081600001516001600160a01b03166118fc611856565b6001600160a01b031614806119315750611914611856565b6001600160a01b031661192684610a31565b6001600160a01b0316145b8061194557508151611945906107c8611856565b9050806119645760405162461bcd60e51b81526004016108ec90612d7f565b846001600160a01b031682600001516001600160a01b0316146119995760405162461bcd60e51b81526004016108ec90612c7e565b6001600160a01b0384166119bf5760405162461bcd60e51b81526004016108ec90612a95565b6119cc8585856001611365565b6119dc6000848460000151611861565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff1602179055908601808352912054909116611aee57611a908161185a565b15611aee578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b3d8585856001611365565b5050505050565b60008082604051602001611b589190612786565b6040516020818303038152906040528051906020012090506000611b7b82611f2a565b90506000611bbf8288888080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611f5a92505050565b90506001600160a01b03811615801590611be65750600b546001600160a01b038281169116145b979650505050505050565b611bf961241e565b611c028261185a565b611c1e5760405162461bcd60e51b81526004016108ec90612a08565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c6f5791506108a89050565b5060001901611c20565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611cdf846001600160a01b0316611f7e565b15611ddb57836001600160a01b031663150b7a02611cfb611856565b8786866040518563ffffffff1660e01b8152600401611d1d9493929190612817565b602060405180830381600087803b158015611d3757600080fd5b505af1925050508015611d67575060408051601f3d908101601f19168201909252611d6491810190612669565b60015b611dc1573d808015611d95576040519150601f19603f3d011682016040523d82523d6000602084013e611d9a565b606091505b508051611db95760405162461bcd60e51b81526004016108ec90612e9c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ddf565b5060015b949350505050565b6060600c80546109ae90613177565b606081611e1b57506040805180820190915260018152600360fc1b60208201526108a8565b8160005b8115611e455780611e2f816131b2565b9150611e3e9050600a83613101565b9150611e1f565b60008167ffffffffffffffff811115611e6e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e98576020820181803683370190505b5090505b8415611ddf57611ead600183613134565b9150611eba600a866131cd565b611ec59060306130e9565b60f81b818381518110611ee857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f0a600a86613101565b9450611e9c565b60006113ee82846130e9565b610b088383836001611f84565b600081604051602001611f3d91906127d2565b604051602081830303815290604052805190602001209050919050565b6000806000611f6985856120f2565b91509150611f7681612162565b509392505050565b3b151590565b6000546001600160a01b038516611fad5760405162461bcd60e51b81526004016108ec90612eef565b83611fca5760405162461bcd60e51b81526004016108ec90612f30565b611fd76000868387611365565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b858110156120e05760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156120d4576120b86000888488611ccb565b6120d45760405162461bcd60e51b81526004016108ec90612e9c565b60019182019101612065565b506000908155611b3d90868387611365565b6000808251604114156121295760208301516040840151606085015160001a61211d8782858561228f565b9450945050505061215b565b825160401415612153576020830151604084015161214886838361236f565b93509350505061215b565b506000905060025b9250929050565b600081600481111561218457634e487b7160e01b600052602160045260246000fd5b141561218f576117a5565b60018160048111156121b157634e487b7160e01b600052602160045260246000fd5b14156121cf5760405162461bcd60e51b81526004016108ec906128a9565b60028160048111156121f157634e487b7160e01b600052602160045260246000fd5b141561220f5760405162461bcd60e51b81526004016108ec9061298b565b600381600481111561223157634e487b7160e01b600052602160045260246000fd5b141561224f5760405162461bcd60e51b81526004016108ec90612ada565b600481600481111561227157634e487b7160e01b600052602160045260246000fd5b14156117a55760405162461bcd60e51b81526004016108ec90612c3c565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156122c65750600090506003612366565b8460ff16601b141580156122de57508460ff16601c14155b156122ef5750600090506004612366565b6000600187878787604051600081526020016040526040516123149493929190612878565b6020604051602081039080840390855afa158015612336573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661235f57600060019250925050612366565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016123908782888561228f565b935093505050935093915050565b8280546123aa90613177565b90600052602060002090601f0160209004810192826123cc5760008555612412565b82601f106123e557805160ff1916838001178555612412565b82800160010185558215612412579182015b828111156124125782518255916020019190600101906123f7565b5061102d929150612435565b604080518082019091526000808252602082015290565b5b8082111561102d5760008155600101612436565b600067ffffffffffffffff808411156124655761246561320d565b604051601f8501601f1916810160200182811182821017156124895761248961320d565b6040528481529150818385018610156124a157600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146108a857600080fd5b803580151581146108a857600080fd5b6000602082840312156124f2578081fd5b6113ee826124ba565b6000806040838503121561250d578081fd5b612516836124ba565b9150612524602084016124ba565b90509250929050565b600080600060608486031215612541578081fd5b61254a846124ba565b9250612558602085016124ba565b9150604084013590509250925092565b6000806000806080858703121561257d578081fd5b612586856124ba565b9350612594602086016124ba565b925060408501359150606085013567ffffffffffffffff8111156125b6578182fd5b8501601f810187136125c6578182fd5b6125d58782356020840161244a565b91505092959194509250565b600080604083850312156125f3578182fd5b6125fc836124ba565b9150612524602084016124d1565b6000806040838503121561261c578182fd5b612625836124ba565b946020939093013593505050565b600060208284031215612644578081fd5b6113ee826124d1565b60006020828403121561265e578081fd5b81356113ee81613223565b60006020828403121561267a578081fd5b81516113ee81613223565b600060208284031215612696578081fd5b813567ffffffffffffffff8111156126ac578182fd5b8201601f810184136126bc578182fd5b611ddf8482356020840161244a565b6000602082840312156126dc578081fd5b5035919050565b6000806000604084860312156126f7578283fd5b83359250602084013567ffffffffffffffff80821115612715578384fd5b818601915086601f830112612728578384fd5b813581811115612736578485fd5b876020828501011115612747578485fd5b6020830194508093505050509250925092565b6000815180845261277281602086016020860161314b565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b600083516127b581846020880161314b565b8351908301906127c981836020880161314b565b01949350505050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061284a9083018461275a565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b93845260ff9290921660208401526040830152606082015260800190565b6000602082526113ee602083018461275a565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b60208082526024908201527f50726f76656e616e636520686173682068617320616c7265616479206265656e604082015263081cd95d60e21b606082015260800190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b6020808252601290820152710457863656564732077616c6c6574206361760741b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602c908201527f416d6f756e74206578636565647320726573657276656420616d6f756e74206660408201526b6f722067697665617761797360a01b606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526015908201527415da1a5d195b1a5cdd081cd85b19481c185d5cd959605a1b604082015260600190565b60208082526016908201527545786365656473206d6178696d756d20737570706c7960501b604082015260600190565b60208082526010908201526f109b1d58881cd85b19481c185d5cd95960821b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526017908201527f5075626c696320626c75622073616c6520706175736564000000000000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b602080825260159082015274125b9d985b1a590819185d18481c1c9bdd9a591959605a1b604082015260600190565b602080825260169082015275125b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b604082015260600190565b90815260200190565b600082198211156130fc576130fc6131e1565b500190565b600082613110576131106131f7565b500490565b600081600019048311821515161561312f5761312f6131e1565b500290565b600082821015613146576131466131e1565b500390565b60005b8381101561316657818101518382015260200161314e565b838111156113655750506000910152565b60028104600182168061318b57607f821691505b602082108114156131ac57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131c6576131c66131e1565b5060010190565b6000826131dc576131dc6131f7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117a557600080fdfea26469706673582212204b775259f532a93595dcac040cc1a1c5d46f295316eebd4860d57679877cc98c64736f6c63430008000033

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

0000000000000000000000006d73fd9a4a89234f9fa7f48f341c353dd01842ea00000000000000000000000002e2e8b040492831b44d64a61605554880a70136

-----Decoded View---------------
Arg [0] : signer (address): 0x6d73fD9a4A89234F9fa7F48F341C353DD01842EA
Arg [1] : _inGameBlubAddr (address): 0x02e2E8b040492831b44D64a61605554880a70136

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000006d73fd9a4a89234f9fa7f48f341c353dd01842ea
Arg [1] : 00000000000000000000000002e2e8b040492831b44d64a61605554880a70136


Deployed Bytecode Sourcemap

50089:5502:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36556:372;;;;;;;;;;-1:-1:-1;36556:372:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54216:100;;;;;;;;;;-1:-1:-1;54216:100:0;;;;;:::i;:::-;;:::i;:::-;;54425:102;;;;;;;;;;-1:-1:-1;54425:102:0;;;;;:::i;:::-;;:::i;54889:::-;;;;;;;;;;-1:-1:-1;54889:102:0;;;;;:::i;:::-;;:::i;38442:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40004:214::-;;;;;;;;;;-1:-1:-1;40004:214:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39525:413::-;;;;;;;;;;-1:-1:-1;39525:413:0;;;;;:::i;:::-;;:::i;53427:96::-;;;;;;;;;;-1:-1:-1;53427:96:0;;;;;:::i;:::-;;:::i;50290:27::-;;;;;;;;;;;;;:::i;53751:219::-;;;;;;;;;;-1:-1:-1;53751:219:0;;;;;:::i;:::-;;:::i;34813:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;51033:379::-;;;;;;:::i;:::-;;:::i;40880:170::-;;;;;;;;;;-1:-1:-1;40880:170:0;;;;;:::i;:::-;;:::i;54751:130::-;;;;;;;;;;-1:-1:-1;54751:130:0;;;;;:::i;:::-;;:::i;35477:1007::-;;;;;;;;;;-1:-1:-1;35477:1007:0;;;;;:::i;:::-;;:::i;50519:41::-;;;;;;;;;;;;;:::i;51420:651::-;;;;;;:::i;:::-;;:::i;55446:142::-;;;;;;;;;;;;;:::i;50803:28::-;;;;;;;;;;;;;:::i;41121:185::-;;;;;;;;;;-1:-1:-1;41121:185:0;;;;;:::i;:::-;;:::i;50602:42::-;;;;;;;;;;;;;:::i;34990:187::-;;;;;;;;;;-1:-1:-1;34990:187:0;;;;;:::i;:::-;;:::i;54100:108::-;;;;;;;;;;-1:-1:-1;54100:108:0;;;;;:::i;:::-;;:::i;50411:28::-;;;;;;;;;;;;;:::i;38251:124::-;;;;;;;;;;-1:-1:-1;38251:124:0;;;;;:::i;:::-;;:::i;54638:105::-;;;;;;;;;;-1:-1:-1;54638:105:0;;;;;:::i;:::-;;:::i;54535:95::-;;;;;;;;;;;;;:::i;36992:221::-;;;;;;;;;;-1:-1:-1;36992:221:0;;;;;:::i;:::-;;:::i;29690:103::-;;;;;;;;;;;;;:::i;53639:104::-;;;;;;;;;;-1:-1:-1;53639:104:0;;;;;:::i;:::-;;:::i;50701:29::-;;;;;;;;;;;;;:::i;29039:87::-;;;;;;;;;;;;;:::i;38611:104::-;;;;;;;;;;;;;:::i;40290:288::-;;;;;;;;;;-1:-1:-1;40290:288:0;;;;;:::i;:::-;;:::i;53531:100::-;;;;;;;;;;-1:-1:-1;53531:100:0;;;;;:::i;:::-;;:::i;50567:28::-;;;;;;;;;;;;;:::i;41377:355::-;;;;;;;;;;-1:-1:-1;41377:355:0;;;;;:::i;:::-;;:::i;54324:93::-;;;;;;;;;;;;;:::i;38786:335::-;;;;;;;;;;-1:-1:-1;38786:335:0;;;;;:::i;:::-;;:::i;53195:224::-;;;;;;;;;;-1:-1:-1;53195:224:0;;;;;:::i;:::-;;:::i;50465:27::-;;;;;;;;;;;;;:::i;50770:26::-;;;;;;;;;;;;;:::i;52566:405::-;;;;;;;;;;-1:-1:-1;52566:405:0;;;;;:::i;:::-;;:::i;50651:43::-;;;;;;;;;;;;;:::i;40649:164::-;;;;;;;;;;-1:-1:-1;40649:164:0;;;;;:::i;:::-;;:::i;50739:24::-;;;;;;;;;;;;;:::i;52079:479::-;;;;;;;;;;-1:-1:-1;52079:479:0;;;;;:::i;:::-;;:::i;29948:201::-;;;;;;;;;;-1:-1:-1;29948:201:0;;;;;:::i;:::-;;:::i;50350:29::-;;;;;;;;;;;;;:::i;52979:208::-;;;;;;:::i;:::-;;:::i;36556:372::-;36658:4;-1:-1:-1;;;;;;36695:40:0;;-1:-1:-1;;;36695:40:0;;:105;;-1:-1:-1;;;;;;;36752:48:0;;-1:-1:-1;;;36752:48:0;36695:105;:172;;;-1:-1:-1;;;;;;;36817:50:0;;-1:-1:-1;;;36817:50:0;36695:172;:225;;;;36884:36;36908:11;36884:23;:36::i;:::-;36675:245;;36556:372;;;;:::o;54216:100::-;29270:12;:10;:12::i;:::-;-1:-1:-1;;;;;29259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29259:23:0;;29251:68;;;;-1:-1:-1;;;29251:68:0;;;;;;;:::i;:::-;;;;;;;;;54283:14:::1;:25:::0;54216:100::o;54425:102::-;29270:12;:10;:12::i;:::-;-1:-1:-1;;;;;29259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29259:23:0;;29251:68;;;;-1:-1:-1;;;29251:68:0;;;;;;;:::i;:::-;54493:15:::1;:26:::0;54425:102::o;54889:::-;29270:12;:10;:12::i;:::-;-1:-1:-1;;;;;29259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29259:23:0;;29251:68;;;;-1:-1:-1;;;29251:68:0;;;;;;;:::i;:::-;54960:13:::1;:23:::0;;-1:-1:-1;;;;;;54960:23:0::1;-1:-1:-1::0;;;;;54960:23:0;;;::::1;::::0;;;::::1;::::0;;54889:102::o;38442:100::-;38496:13;38529:5;38522:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38442:100;:::o;40004:214::-;40072:7;40100:16;40108:7;40100;:16::i;:::-;40092:74;;;;-1:-1:-1;;;40092:74:0;;;;;;;:::i;:::-;-1:-1:-1;40186:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40186:24:0;;40004:214::o;39525:413::-;39598:13;39614:24;39630:7;39614:15;:24::i;:::-;39598:40;;39663:5;-1:-1:-1;;;;;39657:11:0;:2;-1:-1:-1;;;;;39657:11:0;;;39649:58;;;;-1:-1:-1;;;39649:58:0;;;;;;;:::i;:::-;39758:5;-1:-1:-1;;;;;39742:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;39742:21:0;;:62;;;;39767:37;39784:5;39791:12;:10;:12::i;39767:37::-;39720:169;;;;-1:-1:-1;;;39720:169:0;;;;;;;:::i;:::-;39902:28;39911:2;39915:7;39924:5;39902:8;:28::i;:::-;39525:413;;;:::o;53427:96::-;29270:12;:10;:12::i;:::-;-1:-1:-1;;;;;29259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29259:23:0;;29251:68;;;;-1:-1:-1;;;29251:68:0;;;;;;;:::i;:::-;53494:12:::1;:21:::0;;-1:-1:-1;;53494:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53427:96::o;50290:27::-;;;-1:-1:-1;;;;;50290:27:0;;:::o;53751:219::-;29270:12;:10;:12::i;:::-;-1:-1:-1;;;;;29259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29259:23:0;;29251:68;;;;-1:-1:-1;;;29251:68:0;;;;;;;:::i;:::-;53850:15:::1;53844:29;;;;;:::i;:::-;:34:::0;;-1:-1:-1;53836:83:0::1;;;;-1:-1:-1::0;;;53836:83:0::1;;;;;;;:::i;:::-;53930:32:::0;;::::1;::::0;:15:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53751:219:::0;:::o;34813:100::-;34866:7;34893:12;34813:100;:::o;51033:379::-;32158:1;32756:7;;:19;;32748:63;;;;-1:-1:-1;;;32748:63:0;;;;;;;:::i;:::-;32158:1;32889:7;:18;51113:14:::1;51130:13;:11;:13::i;:::-;51163:12;::::0;51113:30;;-1:-1:-1;51163:12:0::1;;51154:38;;;;-1:-1:-1::0;;;51154:38:0::1;;;;;;;:::i;:::-;51244:8;::::0;51231:21:::1;::::0;50556:4:::1;51231:21;:::i;:::-;51212:15;51221:6:::0;51212;:15:::1;:::i;:::-;:40;;51203:77;;;;-1:-1:-1::0;;;51203:77:0::1;;;;;;;:::i;:::-;51330:6;51313:14;;:23;;;;:::i;:::-;51300:9;:36;;51291:73;;;;-1:-1:-1::0;;;51291:73:0::1;;;;;;;:::i;:::-;51375:29;51385:10;51397:6;51375:9;:29::i;:::-;-1:-1:-1::0;;32114:1:0;33068:7;:22;51033:379::o;40880:170::-;41014:28;41024:4;41030:2;41034:7;41014:9;:28::i;54751:130::-;29270:12;:10;:12::i;:::-;-1:-1:-1;;;;;29259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29259:23:0;;29251:68;;;;-1:-1:-1;;;29251:68:0;;;;;;;:::i;:::-;54835:10:::1;:38:::0;;-1:-1:-1;;;;;;54835:38:0::1;-1:-1:-1::0;;;;;54835:38:0;;;::::1;::::0;;;::::1;::::0;;54751:130::o;35477:1007::-;35566:7;35602:16;35612:5;35602:9;:16::i;:::-;35594:5;:24;35586:71;;;;-1:-1:-1;;;35586:71:0;;;;;;;:::i;:::-;35668:22;35693:13;:11;:13::i;:::-;35668:38;;35717:19;35747:25;35936:9;35931:466;35951:14;35947:1;:18;35931:466;;;35991:31;36025:14;;;:11;:14;;;;;;;;;35991:48;;;;;;;;;-1:-1:-1;;;;;35991:48:0;;;;;-1:-1:-1;;;35991:48:0;;;;;;;;;;;;36062:28;36058:111;;36135:14;;;-1:-1:-1;36058:111:0;36212:5;-1:-1:-1;;;;;36191:26:0;:17;-1:-1:-1;;;;;36191:26:0;;36187:195;;;36261:5;36246:11;:20;36242:85;;;-1:-1:-1;36302:1:0;-1:-1:-1;36295:8:0;;-1:-1:-1;;;36295:8:0;36242:85;36349:13;;;;;36187:195;-1:-1:-1;35967:3:0;;35931:466;;;;36420:56;;-1:-1:-1;;;36420:56:0;;;;;;;:::i;35477:1007::-;;;;;:::o;50519:41::-;50556:4;50519:41;:::o;51420:651::-;32158:1;32756:7;;:19;;32748:63;;;;-1:-1:-1;;;32748:63:0;;;;;;;:::i;:::-;32158:1;32889:7;:18;51528:14:::1;51545:13;:11;:13::i;:::-;51616:14;::::0;51528:30;;-1:-1:-1;51586:10:0::1;::::0;51616:14:::1;::::0;::::1;;;51607:50;;;;-1:-1:-1::0;;;51607:50:0::1;;;;;;;:::i;:::-;51709:8;::::0;51696:21:::1;::::0;50556:4:::1;51696:21;:::i;:::-;51677:15;51686:6:::0;51677;:15:::1;:::i;:::-;:40;;51668:77;;;;-1:-1:-1::0;;;51668:77:0::1;;;;;;;:::i;:::-;51795:10;;51785:6;51765:17;51775:6;51765:9;:17::i;:::-;:26;;;;:::i;:::-;:40;;51756:72;;;;-1:-1:-1::0;;;51756:72:0::1;;;;;;;:::i;:::-;51878:6;51861:14;;:23;;;;:::i;:::-;51848:9;:36;;51839:73;;;;-1:-1:-1::0;;;51839:73:0::1;;;;;;;:::i;:::-;51931:70;51962:9;;51984:6;51931:18;:70::i;:::-;51923:104;;;;-1:-1:-1::0;;;51923:104:0::1;;;;;;;:::i;:::-;52038:25;52048:6;52056;52038:9;:25::i;:::-;-1:-1:-1::0;;32114:1:0;33068:7;:22;-1:-1:-1;;;51420:651:0:o;55446:142::-;29270:12;:10;:12::i;:::-;-1:-1:-1;;;;;29259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29259:23:0;;29251:68;;;;-1:-1:-1;;;29251:68:0;;;;;;;:::i;:::-;55514:21:::1;55554:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;55546:25:0::1;:34;55572:7;55546:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;50803:28:::0;;;;;;;;;:::o;41121:185::-;41259:39;41276:4;41282:2;41286:7;41259:39;;;;;;;;;;;;:16;:39::i;50602:42::-;;;;:::o;34990:187::-;35057:7;35093:13;:11;:13::i;:::-;35085:5;:21;35077:69;;;;-1:-1:-1;;;35077:69:0;;;;;;;:::i;:::-;-1:-1:-1;35164:5:0;34990:187::o;54100:108::-;29270:12;:10;:12::i;:::-;-1:-1:-1;;;;;29259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29259:23:0;;29251:68;;;;-1:-1:-1;;;29251:68:0;;;;;;;:::i;:::-;54174:26;;::::1;::::0;:13:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;50411:28::-:0;;;-1:-1:-1;;;;;50411:28:0;;:::o;38251:124::-;38315:7;38342:20;38354:7;38342:11;:20::i;:::-;:25;;38251:124;-1:-1:-1;;38251:124:0:o;54638:105::-;29270:12;:10;:12::i;:::-;-1:-1:-1;;;;;29259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29259:23:0;;29251:68;;;;-1:-1:-1;;;29251:68:0;;;;;;;:::i;:::-;54710:10:::1;:25:::0;54638:105::o;54535:95::-;54607:15;;54535:95;:::o;36992:221::-;37056:7;-1:-1:-1;;;;;37084:19:0;;37076:75;;;;-1:-1:-1;;;37076:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;37177:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37177:27:0;;36992:221::o;29690:103::-;29270:12;:10;:12::i;:::-;-1:-1:-1;;;;;29259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29259:23:0;;29251:68;;;;-1:-1:-1;;;29251:68:0;;;;;;;:::i;:::-;29755:30:::1;29782:1;29755:18;:30::i;:::-;29690:103::o:0;53639:104::-;29270:12;:10;:12::i;:::-;-1:-1:-1;;;;;29259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29259:23:0;;29251:68;;;;-1:-1:-1;;;29251:68:0;;;;;;;:::i;:::-;53710:16:::1;:25:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;53710:25:0;;::::1;::::0;;;::::1;::::0;;53639:104::o;50701:29::-;;;;:::o;29039:87::-;29112:6;;-1:-1:-1;;;;;29112:6:0;29039:87;:::o;38611:104::-;38667:13;38700:7;38693:14;;;;;:::i;40290:288::-;40397:12;:10;:12::i;:::-;-1:-1:-1;;;;;40385:24:0;:8;-1:-1:-1;;;;;40385:24:0;;;40377:63;;;;-1:-1:-1;;;40377:63:0;;;;;;;:::i;:::-;40498:8;40453:18;:32;40472:12;:10;:12::i;:::-;-1:-1:-1;;;;;40453:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;40453:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;40453:53:0;;;;;;;;;;;40537:12;:10;:12::i;:::-;-1:-1:-1;;;;;40522:48:0;;40561:8;40522:48;;;;;;:::i;:::-;;;;;;;;40290:288;;:::o;53531:100::-;29270:12;:10;:12::i;:::-;-1:-1:-1;;;;;29259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29259:23:0;;29251:68;;;;-1:-1:-1;;;29251:68:0;;;;;;;:::i;:::-;53600:14:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;53600:23:0;;::::1;::::0;;;::::1;::::0;;53531:100::o;50567:28::-;;;;:::o;41377:355::-;41536:28;41546:4;41552:2;41556:7;41536:9;:28::i;:::-;41597:48;41620:4;41626:2;41630:7;41639:5;41597:22;:48::i;:::-;41575:149;;;;-1:-1:-1;;;41575:149:0;;;;;;;:::i;:::-;41377:355;;;;:::o;54324:93::-;54395:14;;54324:93;:::o;38786:335::-;38859:13;38893:16;38901:7;38893;:16::i;:::-;38885:76;;;;-1:-1:-1;;;38885:76:0;;;;;;;:::i;:::-;38974:21;38998:10;:8;:10::i;:::-;38974:34;;39032:7;39026:21;39051:1;39026:26;;:87;;;;;;;;;;;;;;;;;39079:7;39088:18;:7;:16;:18::i;:::-;39062:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39026:87;39019:94;38786:335;-1:-1:-1;;;38786:335:0:o;53195:224::-;29270:12;:10;:12::i;:::-;-1:-1:-1;;;;;29259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29259:23:0;;29251:68;;;;-1:-1:-1;;;29251:68:0;;;;;;;:::i;:::-;53291:8:::1;;53281:6;:18;;53272:77;;;;-1:-1:-1::0;;;53272:77:0::1;;;;;;;:::i;:::-;53360:22;53370:3;53375:6;53360:9;:22::i;:::-;53405:6;53393:8;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;53195:224:0:o;50465:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50770:26::-;;;;;;;;;:::o;52566:405::-;32158:1;32756:7;;:19;;32748:63;;;;-1:-1:-1;;;32748:63:0;;;;;;;:::i;:::-;32158:1;32889:7;:18;52645:14:::1;52662:13;:11;:13::i;:::-;52733:12;::::0;52645:30;;-1:-1:-1;52703:10:0::1;::::0;52733:12:::1;;52724:50;;;;-1:-1:-1::0;;;52724:50:0::1;;;;;;;:::i;:::-;52826:8;::::0;52813:21:::1;::::0;50556:4:::1;52813:21;:::i;:::-;52794:15;52803:6:::0;52794;:15:::1;:::i;:::-;:40;;52785:77;;;;-1:-1:-1::0;;;52785:77:0::1;;;;;;;:::i;:::-;52873:10;::::0;52902:15:::1;::::0;-1:-1:-1;;;;;52873:10:0;;::::1;::::0;:20:::1;::::0;52894:6;;52902:24:::1;::::0;52920:6;;52902:24:::1;:::i;:::-;52873:54;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52938:25;52948:6;52956;52938:9;:25::i;:::-;-1:-1:-1::0;;32114:1:0;33068:7;:22;-1:-1:-1;52566:405:0:o;50651:43::-;;;;:::o;40649:164::-;-1:-1:-1;;;;;40770:25:0;;;40746:4;40770:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40649:164::o;50739:24::-;;;;;;:::o;52079:479::-;32158:1;32756:7;;:19;;32748:63;;;;-1:-1:-1;;;32748:63:0;;;;;;;:::i;:::-;32158:1;32889:7;:18;52152:14:::1;52169:13;:11;:13::i;:::-;52240:16;::::0;52152:30;;-1:-1:-1;52210:10:0::1;::::0;52240:16;;::::1;;;52231:47;;;;-1:-1:-1::0;;;52231:47:0::1;;;;;;;:::i;:::-;52330:8;::::0;52317:21:::1;::::0;50556:4:::1;52317:21;:::i;:::-;52298:15;52307:6:::0;52298;:15:::1;:::i;:::-;:40;;52289:77;;;;-1:-1:-1::0;;;52289:77:0::1;;;;;;;:::i;:::-;52416:10;;52406:6;52386:17;52396:6;52386:9;:17::i;:::-;:26;;;;:::i;:::-;:40;;52377:72;;;;-1:-1:-1::0;;;52377:72:0::1;;;;;;;:::i;29948:201::-:0;29270:12;:10;:12::i;:::-;-1:-1:-1;;;;;29259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29259:23:0;;29251:68;;;;-1:-1:-1;;;29251:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30037:22:0;::::1;30029:73;;;;-1:-1:-1::0;;;30029:73:0::1;;;;;;;:::i;:::-;30113:28;30132:8;30113:18;:28::i;:::-;29948:201:::0;:::o;50350:29::-;;;;;;;:::i;52979:208::-;29270:12;:10;:12::i;:::-;-1:-1:-1;;;;;29259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29259:23:0;;29251:68;;;;-1:-1:-1;;;29251:68:0;;;;;;;:::i;:::-;53104:8:::1;::::0;53091:21:::1;::::0;50556:4:::1;53091:21;:::i;:::-;53062:25;53080:6;53062:13;:11;:13::i;:::-;:17:::0;::::1;:25::i;:::-;:50;;53054:85;;;;-1:-1:-1::0;;;53054:85:0::1;;;;;;;:::i;:::-;53150:29;53160:10;53172:6;53150:9;:29::i;10923:157::-:0;-1:-1:-1;;;;;;11032:40:0;;-1:-1:-1;;;11032:40:0;10923:157;;;:::o;27906:98::-;27986:10;27906:98;:::o;41987:111::-;42044:4;42078:12;-1:-1:-1;42068:22:0;41987:111::o;46907:196::-;47022:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47022:29:0;-1:-1:-1;;;;;47022:29:0;;;;;;;;;47067:28;;47022:24;;47067:28;;;;;;;46907:196;;;:::o;42106:104::-;42175:27;42185:2;42189:8;42175:27;;;;;;;;;;;;:9;:27::i;44787:2002::-;44902:35;44940:20;44952:7;44940:11;:20::i;:::-;44902:58;;44973:22;45015:13;:18;;;-1:-1:-1;;;;;44999:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;44999:34:0;;:87;;;;45074:12;:10;:12::i;:::-;-1:-1:-1;;;;;45050:36:0;:20;45062:7;45050:11;:20::i;:::-;-1:-1:-1;;;;;45050:36:0;;44999:87;:154;;;-1:-1:-1;45120:18:0;;45103:50;;45140:12;:10;:12::i;45103:50::-;44973:181;;45175:17;45167:80;;;;-1:-1:-1;;;45167:80:0;;;;;;;:::i;:::-;45290:4;-1:-1:-1;;;;;45268:26:0;:13;:18;;;-1:-1:-1;;;;;45268:26:0;;45260:77;;;;-1:-1:-1;;;45260:77:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45356:16:0;;45348:66;;;;-1:-1:-1;;;45348:66:0;;;;;;;:::i;:::-;45427:43;45449:4;45455:2;45459:7;45468:1;45427:21;:43::i;:::-;45535:49;45552:1;45556:7;45565:13;:18;;;45535:8;:49::i;:::-;-1:-1:-1;;;;;45880:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;45880:31:0;;;-1:-1:-1;;;;;45880:31:0;;;-1:-1:-1;;45880:31:0;;;;;;;45926:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45926:29:0;;;;;;;;;;;;;45972:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;45972:30:0;;;;-1:-1:-1;;;;46017:61:0;-1:-1:-1;;;46062:15:0;46017:61;;;;;;46352:11;;;46382:24;;;;;:29;46352:11;;46382:29;46378:295;;46450:20;46458:11;46450:7;:20::i;:::-;46446:212;;;46527:18;;;46495:24;;;:11;:24;;;;;;;;:50;;46610:28;;;;46568:70;;-1:-1:-1;;;46568:70:0;-1:-1:-1;;;;;;;;;46495:50:0;;;-1:-1:-1;;;;;;46495:50:0;;;;;;;46568:70;;;;;;;46446:212;44787:2002;46720:7;46716:2;-1:-1:-1;;;;;46701:27:0;46710:4;-1:-1:-1;;;;;46701:27:0;;;;;;;;;;;46739:42;46760:4;46766:2;46770:7;46779:1;46739:20;:42::i;:::-;44787:2002;;;;;:::o;54999:439::-;55128:4;55145:16;55191:13;55174:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;55164:42;;;;;;55145:61;;55217:15;55235:38;55264:8;55235:28;:38::i;:::-;55217:56;;55286:23;55312:33;55326:7;55335:9;;55312:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55312:13:0;;-1:-1:-1;;;55312:33:0:i;:::-;55286:59;-1:-1:-1;;;;;;55364:29:0;;;;;;:65;;-1:-1:-1;55416:13:0;;-1:-1:-1;;;;;55397:32:0;;;55416:13;;55397:32;55364:65;55356:74;54999:439;-1:-1:-1;;;;;;;54999:439:0:o;37652:537::-;37713:21;;:::i;:::-;37755:16;37763:7;37755;:16::i;:::-;37747:71;;;;-1:-1:-1;;;37747:71:0;;;;;;;:::i;:::-;37876:7;37856:245;37923:31;37957:17;;;:11;:17;;;;;;;;;37923:51;;;;;;;;;-1:-1:-1;;;;;37923:51:0;;;;;-1:-1:-1;;;37923:51:0;;;;;;;;;;;;37997:28;37993:93;;38057:9;-1:-1:-1;38050:16:0;;-1:-1:-1;38050:16:0;37993:93;-1:-1:-1;;;37896:6:0;37856:245;;30309:191;30402:6;;;-1:-1:-1;;;;;30419:17:0;;;-1:-1:-1;;;;;;30419:17:0;;;;;;;30452:40;;30402:6;;;30419:17;30402:6;;30452:40;;30383:16;;30452:40;30309:191;;:::o;47668:804::-;47823:4;47844:15;:2;-1:-1:-1;;;;;47844:13:0;;:15::i;:::-;47840:625;;;47896:2;-1:-1:-1;;;;;47880:36:0;;47917:12;:10;:12::i;:::-;47931:4;47937:7;47946:5;47880:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47880:72:0;;;;;;;;-1:-1:-1;;47880:72:0;;;;;;;;;;;;:::i;:::-;;;47876:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48126:13:0;;48122:273;;48169:61;;-1:-1:-1;;;48169:61:0;;;;;;;:::i;48122:273::-;48345:6;48339:13;48330:6;48326:2;48322:15;48315:38;47876:534;-1:-1:-1;;;;;;48003:55:0;-1:-1:-1;;;48003:55:0;;-1:-1:-1;47996:62:0;;47840:625;-1:-1:-1;48449:4:0;47840:625;47668:804;;;;;;:::o;53978:114::-;54038:13;54071;54064:20;;;;;:::i;1178:723::-;1234:13;1455:10;1451:53;;-1:-1:-1;1482:10:0;;;;;;;;;;;;-1:-1:-1;;;1482:10:0;;;;;;1451:53;1529:5;1514:12;1570:78;1577:9;;1570:78;;1603:8;;;;:::i;:::-;;-1:-1:-1;1626:10:0;;-1:-1:-1;1634:2:0;1626:10;;:::i;:::-;;;1570:78;;;1658:19;1690:6;1680:17;;;;;;-1:-1:-1;;;1680:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1680:17:0;;1658:39;;1708:154;1715:10;;1708:154;;1742:11;1752:1;1742:11;;:::i;:::-;;-1:-1:-1;1811:10:0;1819:2;1811:5;:10;:::i;:::-;1798:24;;:2;:24;:::i;:::-;1785:39;;1768:6;1775;1768:14;;;;;;-1:-1:-1;;;1768:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;1768:56:0;;;;;;;;-1:-1:-1;1839:11:0;1848:2;1839:11;;:::i;:::-;;;1708:154;;13798:98;13856:7;13883:5;13887:1;13883;:5;:::i;42573:163::-;42696:32;42702:2;42706:8;42716:5;42723:4;42696:5;:32::i;26051:269::-;26120:7;26306:4;26253:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;26243:69;;;;;;26236:76;;26051:269;;;:::o;22202:231::-;22280:7;22301:17;22320:18;22342:27;22353:4;22359:9;22342:10;:27::i;:::-;22300:69;;;;22380:18;22392:5;22380:11;:18::i;:::-;-1:-1:-1;22416:9:0;22202:231;-1:-1:-1;;;22202:231:0:o;10025:193::-;10154:20;10202:8;;;10025:193::o;42995:1538::-;43134:20;43157:12;-1:-1:-1;;;;;43188:16:0;;43180:62;;;;-1:-1:-1;;;43180:62:0;;;;;;;:::i;:::-;43261:13;43253:66;;;;-1:-1:-1;;;43253:66:0;;;;;;;:::i;:::-;43332:61;43362:1;43366:2;43370:12;43384:8;43332:21;:61::i;:::-;-1:-1:-1;;;;;43671:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;43671:45:0;;-1:-1:-1;;;;;43671:45:0;;;;;;;;43731:50;;;-1:-1:-1;;;43731:50:0;;;;;;;;;;;;;;;43798:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;43798:35:0;;;;-1:-1:-1;;;;43848:66:0;-1:-1:-1;;;43898:15:0;43848:66;;;;;;;43798:25;;43983:415;44003:8;43999:1;:12;43983:415;;;44042:38;;44067:12;;-1:-1:-1;;;;;44042:38:0;;;44059:1;;44042:38;;44059:1;;44042:38;44103:4;44099:249;;;44166:59;44197:1;44201:2;44205:12;44219:5;44166:22;:59::i;:::-;44132:196;;;;-1:-1:-1;;;44132:196:0;;;;;;;:::i;:::-;44368:14;;;;;44013:3;43983:415;;;-1:-1:-1;44414:12:0;:27;;;44465:60;;44498:2;44502:12;44516:8;44465:20;:60::i;20092:1308::-;20173:7;20182:12;20407:9;:16;20427:2;20407:22;20403:990;;;20703:4;20688:20;;20682:27;20753:4;20738:20;;20732:27;20811:4;20796:20;;20790:27;20446:9;20782:36;20854:25;20865:4;20782:36;20682:27;20732;20854:10;:25::i;:::-;20847:32;;;;;;;;;20403:990;20901:9;:16;20921:2;20901:22;20897:496;;;21176:4;21161:20;;21155:27;21227:4;21212:20;;21206:27;21269:23;21280:4;21155:27;21206;21269:10;:23::i;:::-;21262:30;;;;;;;;20897:496;-1:-1:-1;21341:1:0;;-1:-1:-1;21345:35:0;20897:496;20092:1308;;;;;:::o;18363:643::-;18441:20;18432:5;:29;;;;;;-1:-1:-1;;;18432:29:0;;;;;;;;;;18428:571;;;18478:7;;18428:571;18539:29;18530:5;:38;;;;;;-1:-1:-1;;;18530:38:0;;;;;;;;;;18526:473;;;18585:34;;-1:-1:-1;;;18585:34:0;;;;;;;:::i;18526:473::-;18650:35;18641:5;:44;;;;;;-1:-1:-1;;;18641:44:0;;;;;;;;;;18637:362;;;18702:41;;-1:-1:-1;;;18702:41:0;;;;;;;:::i;18637:362::-;18774:30;18765:5;:39;;;;;;-1:-1:-1;;;18765:39:0;;;;;;;;;;18761:238;;;18821:44;;-1:-1:-1;;;18821:44:0;;;;;;;:::i;18761:238::-;18896:30;18887:5;:39;;;;;;-1:-1:-1;;;18887:39:0;;;;;;;;;;18883:116;;;18943:44;;-1:-1:-1;;;18943:44:0;;;;;;;:::i;23701:1632::-;23832:7;;24766:66;24753:79;;24749:163;;;-1:-1:-1;24865:1:0;;-1:-1:-1;24869:30:0;24849:51;;24749:163;24926:1;:7;;24931:2;24926:7;;:18;;;;;24937:1;:7;;24942:2;24937:7;;24926:18;24922:102;;;-1:-1:-1;24977:1:0;;-1:-1:-1;24981:30:0;24961:51;;24922:102;25121:14;25138:24;25148:4;25154:1;25157;25160;25138:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25138:24:0;;-1:-1:-1;;25138:24:0;;;-1:-1:-1;;;;;;;25177:20:0;;25173:103;;25230:1;25234:29;25214:50;;;;;;;25173:103;25296:6;-1:-1:-1;25304:20:0;;-1:-1:-1;23701:1632:0;;;;;;;;:::o;22696:391::-;22810:7;;-1:-1:-1;;;;;22911:75:0;;23013:3;23009:12;;;23023:2;23005:21;23054:25;23065:4;23005:21;23074:1;22911:75;23054:10;:25::i;:::-;23047:32;;;;;;22696:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:709::-;;;;4608:2;4596:9;4587:7;4583:23;4579:32;4576:2;;;4629:6;4621;4614:22;4576:2;4670:9;4657:23;4647:33;;4731:2;4720:9;4716:18;4703:32;4754:18;4795:2;4787:6;4784:14;4781:2;;;4816:6;4808;4801:22;4781:2;4859:6;4848:9;4844:22;4834:32;;4904:7;4897:4;4893:2;4889:13;4885:27;4875:2;;4931:6;4923;4916:22;4875:2;4976;4963:16;5002:2;4994:6;4991:14;4988:2;;;5023:6;5015;5008:22;4988:2;5073:7;5068:2;5059:6;5055:2;5051:15;5047:24;5044:37;5041:2;;;5099:6;5091;5084:22;5041:2;5135;5131;5127:11;5117:21;;5157:6;5147:16;;;;;4566:603;;;;;:::o;5174:259::-;;5255:5;5249:12;5282:6;5277:3;5270:19;5298:63;5354:6;5347:4;5342:3;5338:14;5331:4;5324:5;5320:16;5298:63;:::i;:::-;5415:2;5394:15;-1:-1:-1;;5390:29:1;5381:39;;;;5422:4;5377:50;;5225:208;-1:-1:-1;;5225:208:1:o;5438:229::-;5587:2;5583:15;;;;-1:-1:-1;;5579:53:1;5567:66;;5658:2;5649:12;;5557:110::o;5672:470::-;;5889:6;5883:13;5905:53;5951:6;5946:3;5939:4;5931:6;5927:17;5905:53;:::i;:::-;6021:13;;5980:16;;;;6043:57;6021:13;5980:16;6077:4;6065:17;;6043:57;:::i;:::-;6116:20;;5859:283;-1:-1:-1;;;;5859:283:1:o;6147:380::-;6389:66;6377:79;;6481:2;6472:12;;6465:28;;;;6518:2;6509:12;;6367:160::o;6532:203::-;-1:-1:-1;;;;;6696:32:1;;;;6678:51;;6666:2;6651:18;;6633:102::o;6740:490::-;-1:-1:-1;;;;;7009:15:1;;;6991:34;;7061:15;;7056:2;7041:18;;7034:43;7108:2;7093:18;;7086:34;;;7156:3;7151:2;7136:18;;7129:31;;;6740:490;;7177:47;;7204:19;;7196:6;7177:47;:::i;:::-;7169:55;6943:287;-1:-1:-1;;;;;;6943:287:1:o;7235:274::-;-1:-1:-1;;;;;7427:32:1;;;;7409:51;;7491:2;7476:18;;7469:34;7397:2;7382:18;;7364:145::o;7514:187::-;7679:14;;7672:22;7654:41;;7642:2;7627:18;;7609:92::o;7706:398::-;7933:25;;;8006:4;7994:17;;;;7989:2;7974:18;;7967:45;8043:2;8028:18;;8021:34;8086:2;8071:18;;8064:34;7920:3;7905:19;;7887:217::o;8335:221::-;;8484:2;8473:9;8466:21;8504:46;8546:2;8535:9;8531:18;8523:6;8504:46;:::i;8561:348::-;8763:2;8745:21;;;8802:2;8782:18;;;8775:30;8841:26;8836:2;8821:18;;8814:54;8900:2;8885:18;;8735:174::o;8914:398::-;9116:2;9098:21;;;9155:2;9135:18;;;9128:30;9194:34;9189:2;9174:18;;9167:62;-1:-1:-1;;;9260:2:1;9245:18;;9238:32;9302:3;9287:19;;9088:224::o;9317:335::-;9519:2;9501:21;;;9558:2;9538:18;;;9531:30;-1:-1:-1;;;9592:2:1;9577:18;;9570:41;9643:2;9628:18;;9491:161::o;9657:400::-;9859:2;9841:21;;;9898:2;9878:18;;;9871:30;9937:34;9932:2;9917:18;;9910:62;-1:-1:-1;;;10003:2:1;9988:18;;9981:34;10047:3;10032:19;;9831:226::o;10062:355::-;10264:2;10246:21;;;10303:2;10283:18;;;10276:30;10342:33;10337:2;10322:18;;10315:61;10408:2;10393:18;;10236:181::o;10422:402::-;10624:2;10606:21;;;10663:2;10643:18;;;10636:30;10702:34;10697:2;10682:18;;10675:62;-1:-1:-1;;;10768:2:1;10753:18;;10746:36;10814:3;10799:19;;10596:228::o;10829:406::-;11031:2;11013:21;;;11070:2;11050:18;;;11043:30;11109:34;11104:2;11089:18;;11082:62;-1:-1:-1;;;11175:2:1;11160:18;;11153:40;11225:3;11210:19;;11003:232::o;11240:399::-;11442:2;11424:21;;;11481:2;11461:18;;;11454:30;11520:34;11515:2;11500:18;;11493:62;-1:-1:-1;;;11586:2:1;11571:18;;11564:33;11629:3;11614:19;;11414:225::o;11644:401::-;11846:2;11828:21;;;11885:2;11865:18;;;11858:30;11924:34;11919:2;11904:18;;11897:62;-1:-1:-1;;;11990:2:1;11975:18;;11968:35;12035:3;12020:19;;11818:227::o;12050:398::-;12252:2;12234:21;;;12291:2;12271:18;;;12264:30;12330:34;12325:2;12310:18;;12303:62;-1:-1:-1;;;12396:2:1;12381:18;;12374:32;12438:3;12423:19;;12224:224::o;12453:342::-;12655:2;12637:21;;;12694:2;12674:18;;;12667:30;-1:-1:-1;;;12728:2:1;12713:18;;12706:48;12786:2;12771:18;;12627:168::o;12800:421::-;13002:2;12984:21;;;13041:2;13021:18;;;13014:30;13080:34;13075:2;13060:18;;13053:62;13151:27;13146:2;13131:18;;13124:55;13211:3;13196:19;;12974:247::o;13226:408::-;13428:2;13410:21;;;13467:2;13447:18;;;13440:30;13506:34;13501:2;13486:18;;13479:62;-1:-1:-1;;;13572:2:1;13557:18;;13550:42;13624:3;13609:19;;13400:234::o;13639:407::-;13841:2;13823:21;;;13880:2;13860:18;;;13853:30;13919:34;13914:2;13899:18;;13892:62;-1:-1:-1;;;13985:2:1;13970:18;;13963:41;14036:3;14021:19;;13813:233::o;14051:398::-;14253:2;14235:21;;;14292:2;14272:18;;;14265:30;14331:34;14326:2;14311:18;;14304:62;-1:-1:-1;;;14397:2:1;14382:18;;14375:32;14439:3;14424:19;;14225:224::o;14454:402::-;14656:2;14638:21;;;14695:2;14675:18;;;14668:30;14734:34;14729:2;14714:18;;14707:62;-1:-1:-1;;;14800:2:1;14785:18;;14778:36;14846:3;14831:19;;14628:228::o;14861:356::-;15063:2;15045:21;;;15082:18;;;15075:30;15141:34;15136:2;15121:18;;15114:62;15208:2;15193:18;;15035:182::o;15222:411::-;15424:2;15406:21;;;15463:2;15443:18;;;15436:30;15502:34;15497:2;15482:18;;15475:62;-1:-1:-1;;;15568:2:1;15553:18;;15546:45;15623:3;15608:19;;15396:237::o;15638:350::-;15840:2;15822:21;;;15879:2;15859:18;;;15852:30;15918:28;15913:2;15898:18;;15891:56;15979:2;15964:18;;15812:176::o;15993:414::-;16195:2;16177:21;;;16234:2;16214:18;;;16207:30;16273:34;16268:2;16253:18;;16246:62;-1:-1:-1;;;16339:2:1;16324:18;;16317:48;16397:3;16382:19;;16167:240::o;16412:345::-;16614:2;16596:21;;;16653:2;16633:18;;;16626:30;-1:-1:-1;;;16687:2:1;16672:18;;16665:51;16748:2;16733:18;;16586:171::o;16762:346::-;16964:2;16946:21;;;17003:2;16983:18;;;16976:30;-1:-1:-1;;;17037:2:1;17022:18;;17015:52;17099:2;17084:18;;16936:172::o;17113:340::-;17315:2;17297:21;;;17354:2;17334:18;;;17327:30;-1:-1:-1;;;17388:2:1;17373:18;;17366:46;17444:2;17429:18;;17287:166::o;17458:398::-;17660:2;17642:21;;;17699:2;17679:18;;;17672:30;17738:34;17733:2;17718:18;;17711:62;-1:-1:-1;;;17804:2:1;17789:18;;17782:32;17846:3;17831:19;;17632:224::o;17861:415::-;18063:2;18045:21;;;18102:2;18082:18;;;18075:30;18141:34;18136:2;18121:18;;18114:62;-1:-1:-1;;;18207:2:1;18192:18;;18185:49;18266:3;18251:19;;18035:241::o;18281:397::-;18483:2;18465:21;;;18522:2;18502:18;;;18495:30;18561:34;18556:2;18541:18;;18534:62;-1:-1:-1;;;18627:2:1;18612:18;;18605:31;18668:3;18653:19;;18455:223::o;18683:404::-;18885:2;18867:21;;;18924:2;18904:18;;;18897:30;18963:34;18958:2;18943:18;;18936:62;-1:-1:-1;;;19029:2:1;19014:18;;19007:38;19077:3;19062:19;;18857:230::o;19092:410::-;19294:2;19276:21;;;19333:2;19313:18;;;19306:30;19372:34;19367:2;19352:18;;19345:62;-1:-1:-1;;;19438:2:1;19423:18;;19416:44;19492:3;19477:19;;19266:236::o;19507:355::-;19709:2;19691:21;;;19748:2;19728:18;;;19721:30;19787:33;19782:2;19767:18;;19760:61;19853:2;19838:18;;19681:181::o;20283:347::-;20485:2;20467:21;;;20524:2;20504:18;;;20497:30;20563:25;20558:2;20543:18;;20536:53;20621:2;20606:18;;20457:173::o;20635:409::-;20837:2;20819:21;;;20876:2;20856:18;;;20849:30;20915:34;20910:2;20895:18;;20888:62;-1:-1:-1;;;20981:2:1;20966:18;;20959:43;21034:3;21019:19;;20809:235::o;21049:345::-;21251:2;21233:21;;;21290:2;21270:18;;;21263:30;-1:-1:-1;;;21324:2:1;21309:18;;21302:51;21385:2;21370:18;;21223:171::o;21399:346::-;21601:2;21583:21;;;21640:2;21620:18;;;21613:30;-1:-1:-1;;;21674:2:1;21659:18;;21652:52;21736:2;21721:18;;21573:172::o;21750:177::-;21896:25;;;21884:2;21869:18;;21851:76::o;21932:128::-;;22003:1;21999:6;21996:1;21993:13;21990:2;;;22009:18;;:::i;:::-;-1:-1:-1;22045:9:1;;21980:80::o;22065:120::-;;22131:1;22121:2;;22136:18;;:::i;:::-;-1:-1:-1;22170:9:1;;22111:74::o;22190:168::-;;22296:1;22292;22288:6;22284:14;22281:1;22278:21;22273:1;22266:9;22259:17;22255:45;22252:2;;;22303:18;;:::i;:::-;-1:-1:-1;22343:9:1;;22242:116::o;22363:125::-;;22431:1;22428;22425:8;22422:2;;;22436:18;;:::i;:::-;-1:-1:-1;22473:9:1;;22412:76::o;22493:258::-;22565:1;22575:113;22589:6;22586:1;22583:13;22575:113;;;22665:11;;;22659:18;22646:11;;;22639:39;22611:2;22604:10;22575:113;;;22706:6;22703:1;22700:13;22697:2;;;-1:-1:-1;;22741:1:1;22723:16;;22716:27;22546:205::o;22756:380::-;22841:1;22831:12;;22888:1;22878:12;;;22899:2;;22953:4;22945:6;22941:17;22931:27;;22899:2;23006;22998:6;22995:14;22975:18;22972:38;22969:2;;;23052:10;23047:3;23043:20;23040:1;23033:31;23087:4;23084:1;23077:15;23115:4;23112:1;23105:15;22969:2;;22811:325;;;:::o;23141:135::-;;-1:-1:-1;;23201:17:1;;23198:2;;;23221:18;;:::i;:::-;-1:-1:-1;23268:1:1;23257:13;;23188:88::o;23281:112::-;;23339:1;23329:2;;23344:18;;:::i;:::-;-1:-1:-1;23378:9:1;;23319:74::o;23398:127::-;23459:10;23454:3;23450:20;23447:1;23440:31;23490:4;23487:1;23480:15;23514:4;23511:1;23504:15;23530:127;23591:10;23586:3;23582:20;23579:1;23572:31;23622:4;23619:1;23612:15;23646:4;23643:1;23636:15;23662:127;23723:10;23718:3;23714:20;23711:1;23704:31;23754:4;23751:1;23744:15;23778:4;23775:1;23768:15;23794:133;-1:-1:-1;;;;;;23870:32:1;;23860:43;;23850:2;;23917:1;23914;23907:12

Swarm Source

ipfs://4b775259f532a93595dcac040cc1a1c5d46f295316eebd4860d57679877cc98c
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.