ETH Price: $3,399.97 (+1.01%)

Token

Twilight Cats (TC)
 

Overview

Max Total Supply

0 TC

Holders

167

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
11 TC
0xE01202874fDf8bf066e8273FFe65d32842BdeC83
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TwilightCats

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-08
*/

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

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

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

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

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

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

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

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

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

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

// File: TERC721.sol

pragma solidity ^0.8.0;



contract TwilightCats is ERC721 {
    address public owner = msg.sender;

    uint256 public supply = 1111;
    uint256 public free_supply = 10;
    uint256 public price = 2220000000000000;
    string public base_uri = "https://twilightcatsnft.s3.amazonaws.com/";

    uint256 latest_token_id = 0;

    modifier only_owner() {
        require(msg.sender == owner, "This function is restricted to the owner");
        _;
    }

    constructor() ERC721("Twilight Cats", "TC") {
        owner = msg.sender;
    }

    function set_price(uint256 _price) external only_owner {
        price = _price;
    }

    function mint(address wallet, uint256 n_items) internal {
        require(latest_token_id + n_items <= supply, "Can't mint requested amount!");
        // require(n_items * price >= msg.value, "Not enough eth supplied");
        for (uint256 i = 0; i < n_items; i++) {
            latest_token_id++;
            _mint(wallet, latest_token_id);
        }
    }

    function free_mint() public {
        require(latest_token_id < free_supply, "No more free mints!");
        mint(msg.sender, 1);
    }

    function public_mint(uint256 n_items) external payable {
        require(msg.value >= price * n_items, "Not enough eth sent!");
        mint(msg.sender, n_items);
    }

    function admin_mint(address wallet, uint256 n_items) external only_owner {
        mint(wallet, n_items);
    }

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

    function set_base_uri(string memory new_uri) external only_owner {
        base_uri = new_uri;
    }

    function contractURI() public pure returns (string memory) {
        return "http://twilightcatsnft.com";
    }

    function withdraw(address payable wallet) public only_owner {
         uint256 amount = address(this).balance;
         wallet.transfer(amount);
         emit Transfer(address(this), wallet, amount);
     }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"n_items","type":"uint256"}],"name":"admin_mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"base_uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"free_mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"free_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"n_items","type":"uint256"}],"name":"public_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"new_uri","type":"string"}],"name":"set_base_uri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"set_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405233600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610457600755600a6008556607e3140766c0006009556040518060600160405280602981526020016200363260299139600a90805190602001906200008c92919062000187565b506000600b553480156200009f57600080fd5b506040518060400160405280600d81526020017f5477696c696768742043617473000000000000000000000000000000000000008152506040518060400160405280600281526020017f544300000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200012492919062000187565b5080600190805190602001906200013d92919062000187565b50505033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200029c565b828054620001959062000237565b90600052602060002090601f016020900481019282620001b9576000855562000205565b82601f10620001d457805160ff191683800117855562000205565b8280016001018555821562000205579182015b8281111562000204578251825591602001919060010190620001e7565b5b50905062000214919062000218565b5090565b5b808211156200023357600081600090555060010162000219565b5090565b600060028204905060018216806200025057607f821691505b602082108114156200026757620002666200026d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61338680620002ac6000396000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063a4c19a9f1161008a578063c87b56dd11610064578063c87b56dd14610507578063e8a3d48514610544578063e985e9c51461056f578063f21a0c0d146105ac57610166565b8063a4c19a9f1461049e578063af1c5211146104b5578063b88d4fde146104de57610166565b806370a082311461038c578063786f2910146103c95780638da5cb5b146103f457806395d89b411461041f578063a035b1fe1461044a578063a22cb4651461047557610166565b806328bf794d1161012357806328bf794d1461028d57806342842e0e146102b65780634bbcd31c146102df57806351cff8d9146102fb5780636352211e1461032457806366fe513a1461036157610166565b806301ffc9a71461016b578063047fc9aa146101a857806306fdde03146101d3578063081812fc146101fe578063095ea7b31461023b57806323b872dd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d91906124d3565b6105d5565b60405161019f919061290b565b60405180910390f35b3480156101b457600080fd5b506101bd6106b7565b6040516101ca9190612b28565b60405180910390f35b3480156101df57600080fd5b506101e86106bd565b6040516101f59190612926565b60405180910390f35b34801561020a57600080fd5b5061022560048036038101906102209190612576565b61074f565b60405161023291906128a4565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612493565b610795565b005b34801561027057600080fd5b5061028b6004803603810190610286919061237d565b6108ad565b005b34801561029957600080fd5b506102b460048036038101906102af9190612576565b61090d565b005b3480156102c257600080fd5b506102dd60048036038101906102d8919061237d565b6109a7565b005b6102f960048036038101906102f49190612576565b6109c7565b005b34801561030757600080fd5b50610322600480360381019061031d9190612310565b610a24565b005b34801561033057600080fd5b5061034b60048036038101906103469190612576565b610b5f565b60405161035891906128a4565b60405180910390f35b34801561036d57600080fd5b50610376610be6565b6040516103839190612b28565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae91906122e3565b610bec565b6040516103c09190612b28565b60405180910390f35b3480156103d557600080fd5b506103de610ca4565b6040516103eb9190612926565b60405180910390f35b34801561040057600080fd5b50610409610d32565b60405161041691906128a4565b60405180910390f35b34801561042b57600080fd5b50610434610d58565b6040516104419190612926565b60405180910390f35b34801561045657600080fd5b5061045f610dea565b60405161046c9190612b28565b60405180910390f35b34801561048157600080fd5b5061049c60048036038101906104979190612453565b610df0565b005b3480156104aa57600080fd5b506104b3610e06565b005b3480156104c157600080fd5b506104dc60048036038101906104d7919061252d565b610e59565b005b3480156104ea57600080fd5b50610505600480360381019061050091906123d0565b610f03565b005b34801561051357600080fd5b5061052e60048036038101906105299190612576565b610f65565b60405161053b9190612926565b60405180910390f35b34801561055057600080fd5b50610559610fcd565b6040516105669190612926565b60405180910390f35b34801561057b57600080fd5b506105966004803603810190610591919061233d565b61100a565b6040516105a3919061290b565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190612493565b61109e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106b057506106af8261113c565b5b9050919050565b60075481565b6060600080546106cc90612db9565b80601f01602080910402602001604051908101604052809291908181526020018280546106f890612db9565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b600061075a826111a6565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a082610b5f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080890612aa8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108306111f1565b73ffffffffffffffffffffffffffffffffffffffff16148061085f575061085e816108596111f1565b61100a565b5b61089e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089590612ac8565b60405180910390fd5b6108a883836111f9565b505050565b6108be6108b86111f1565b826112b2565b6108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f490612948565b60405180910390fd5b610908838383611347565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490612ae8565b60405180910390fd5b8060098190555050565b6109c283838360405180602001604052806000815250610f03565b505050565b806009546109d59190612c63565b341015610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e90612b08565b60405180910390fd5b610a213382611641565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aab90612ae8565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610aff573d6000803e3d6000fd5b50808273ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080610b6b836116da565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490612a88565b60405180910390fd5b80915050919050565b60085481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5490612a28565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a8054610cb190612db9565b80601f0160208091040260200160405190810160405280929190818152602001828054610cdd90612db9565b8015610d2a5780601f10610cff57610100808354040283529160200191610d2a565b820191906000526020600020905b815481529060010190602001808311610d0d57829003601f168201915b505050505081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054610d6790612db9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9390612db9565b8015610de05780601f10610db557610100808354040283529160200191610de0565b820191906000526020600020905b815481529060010190602001808311610dc357829003601f168201915b5050505050905090565b60095481565b610e02610dfb6111f1565b8383611717565b5050565b600854600b5410610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390612a68565b60405180910390fd5b610e57336001611641565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee090612ae8565b60405180910390fd5b80600a9080519060200190610eff9291906120e2565b5050565b610f14610f0e6111f1565b836112b2565b610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90612948565b60405180910390fd5b610f5f84848484611884565b50505050565b6060610f70826111a6565b6000610f7a6118e0565b90506000815111610f9a5760405180602001604052806000815250610fc5565b80610fa484611972565b604051602001610fb5929190612880565b6040516020818303038152906040525b915050919050565b60606040518060400160405280601a81526020017f687474703a2f2f7477696c69676874636174736e66742e636f6d000000000000815250905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590612ae8565b60405180910390fd5b6111388282611641565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6111af81611a4a565b6111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590612a88565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661126c83610b5f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806112be83610b5f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061130057506112ff818561100a565b5b8061133e57508373ffffffffffffffffffffffffffffffffffffffff166113268461074f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661136782610b5f565b73ffffffffffffffffffffffffffffffffffffffff16146113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b490612988565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611424906129c8565b60405180910390fd5b61143a8383836001611a8b565b8273ffffffffffffffffffffffffffffffffffffffff1661145a82610b5f565b73ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790612988565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461163c8383836001611bb1565b505050565b60075481600b546116529190612c0d565b1115611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90612a08565b60405180910390fd5b60005b818110156116d557600b60008154809291906116b190612e1c565b91905055506116c283600b54611bb7565b80806116cd90612e1c565b915050611696565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d906129e8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611877919061290b565b60405180910390a3505050565b61188f848484611347565b61189b84848484611dd5565b6118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190612968565b60405180910390fd5b50505050565b6060600a80546118ef90612db9565b80601f016020809104026020016040519081016040528092919081815260200182805461191b90612db9565b80156119685780601f1061193d57610100808354040283529160200191611968565b820191906000526020600020905b81548152906001019060200180831161194b57829003601f168201915b5050505050905090565b60606000600161198184611f6c565b01905060008167ffffffffffffffff8111156119a05761199f612ef2565b5b6040519080825280601f01601f1916602001820160405280156119d25781602001600182028036833780820191505090505b509050600082602001820190505b600115611a3f578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611a2957611a28612e94565b5b0494506000851415611a3a57611a3f565b6119e0565b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611a6c836116da565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6001811115611bab57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611b1f5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b179190612cbd565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611baa5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba29190612c0d565b925050819055505b5b50505050565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e90612a48565b60405180910390fd5b611c3081611a4a565b15611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c67906129a8565b60405180910390fd5b611c7e600083836001611a8b565b611c8781611a4a565b15611cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbe906129a8565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dd1600083836001611bb1565b5050565b6000611df68473ffffffffffffffffffffffffffffffffffffffff166120bf565b15611f5f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e1f6111f1565b8786866040518563ffffffff1660e01b8152600401611e4194939291906128bf565b602060405180830381600087803b158015611e5b57600080fd5b505af1925050508015611e8c57506040513d601f19601f82011682018060405250810190611e899190612500565b60015b611f0f573d8060008114611ebc576040519150601f19603f3d011682016040523d82523d6000602084013e611ec1565b606091505b50600081511415611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90612968565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f64565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611fca577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611fc057611fbf612e94565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612007576d04ee2d6d415b85acef81000000008381611ffd57611ffc612e94565b5b0492506020810190505b662386f26fc10000831061203657662386f26fc10000838161202c5761202b612e94565b5b0492506010810190505b6305f5e100831061205f576305f5e100838161205557612054612e94565b5b0492506008810190505b612710831061208457612710838161207a57612079612e94565b5b0492506004810190505b606483106120a7576064838161209d5761209c612e94565b5b0492506002810190505b600a83106120b6576001810190505b80915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546120ee90612db9565b90600052602060002090601f0160209004810192826121105760008555612157565b82601f1061212957805160ff1916838001178555612157565b82800160010185558215612157579182015b8281111561215657825182559160200191906001019061213b565b5b5090506121649190612168565b5090565b5b80821115612181576000816000905550600101612169565b5090565b600061219861219384612b68565b612b43565b9050828152602081018484840111156121b4576121b3612f26565b5b6121bf848285612d77565b509392505050565b60006121da6121d584612b99565b612b43565b9050828152602081018484840111156121f6576121f5612f26565b5b612201848285612d77565b509392505050565b600081359050612218816132dd565b92915050565b60008135905061222d816132f4565b92915050565b6000813590506122428161330b565b92915050565b60008135905061225781613322565b92915050565b60008151905061226c81613322565b92915050565b600082601f83011261228757612286612f21565b5b8135612297848260208601612185565b91505092915050565b600082601f8301126122b5576122b4612f21565b5b81356122c58482602086016121c7565b91505092915050565b6000813590506122dd81613339565b92915050565b6000602082840312156122f9576122f8612f30565b5b600061230784828501612209565b91505092915050565b60006020828403121561232657612325612f30565b5b60006123348482850161221e565b91505092915050565b6000806040838503121561235457612353612f30565b5b600061236285828601612209565b925050602061237385828601612209565b9150509250929050565b60008060006060848603121561239657612395612f30565b5b60006123a486828701612209565b93505060206123b586828701612209565b92505060406123c6868287016122ce565b9150509250925092565b600080600080608085870312156123ea576123e9612f30565b5b60006123f887828801612209565b945050602061240987828801612209565b935050604061241a878288016122ce565b925050606085013567ffffffffffffffff81111561243b5761243a612f2b565b5b61244787828801612272565b91505092959194509250565b6000806040838503121561246a57612469612f30565b5b600061247885828601612209565b925050602061248985828601612233565b9150509250929050565b600080604083850312156124aa576124a9612f30565b5b60006124b885828601612209565b92505060206124c9858286016122ce565b9150509250929050565b6000602082840312156124e9576124e8612f30565b5b60006124f784828501612248565b91505092915050565b60006020828403121561251657612515612f30565b5b60006125248482850161225d565b91505092915050565b60006020828403121561254357612542612f30565b5b600082013567ffffffffffffffff81111561256157612560612f2b565b5b61256d848285016122a0565b91505092915050565b60006020828403121561258c5761258b612f30565b5b600061259a848285016122ce565b91505092915050565b6125ac81612cf1565b82525050565b6125bb81612d15565b82525050565b60006125cc82612bca565b6125d68185612be0565b93506125e6818560208601612d86565b6125ef81612f35565b840191505092915050565b600061260582612bd5565b61260f8185612bf1565b935061261f818560208601612d86565b61262881612f35565b840191505092915050565b600061263e82612bd5565b6126488185612c02565b9350612658818560208601612d86565b80840191505092915050565b6000612671602d83612bf1565b915061267c82612f46565b604082019050919050565b6000612694603283612bf1565b915061269f82612f95565b604082019050919050565b60006126b7602583612bf1565b91506126c282612fe4565b604082019050919050565b60006126da601c83612bf1565b91506126e582613033565b602082019050919050565b60006126fd602483612bf1565b91506127088261305c565b604082019050919050565b6000612720601983612bf1565b915061272b826130ab565b602082019050919050565b6000612743601c83612bf1565b915061274e826130d4565b602082019050919050565b6000612766602983612bf1565b9150612771826130fd565b604082019050919050565b6000612789602083612bf1565b91506127948261314c565b602082019050919050565b60006127ac601383612bf1565b91506127b782613175565b602082019050919050565b60006127cf601883612bf1565b91506127da8261319e565b602082019050919050565b60006127f2602183612bf1565b91506127fd826131c7565b604082019050919050565b6000612815603d83612bf1565b915061282082613216565b604082019050919050565b6000612838602883612bf1565b915061284382613265565b604082019050919050565b600061285b601483612bf1565b9150612866826132b4565b602082019050919050565b61287a81612d6d565b82525050565b600061288c8285612633565b91506128988284612633565b91508190509392505050565b60006020820190506128b960008301846125a3565b92915050565b60006080820190506128d460008301876125a3565b6128e160208301866125a3565b6128ee6040830185612871565b818103606083015261290081846125c1565b905095945050505050565b600060208201905061292060008301846125b2565b92915050565b6000602082019050818103600083015261294081846125fa565b905092915050565b6000602082019050818103600083015261296181612664565b9050919050565b6000602082019050818103600083015261298181612687565b9050919050565b600060208201905081810360008301526129a1816126aa565b9050919050565b600060208201905081810360008301526129c1816126cd565b9050919050565b600060208201905081810360008301526129e1816126f0565b9050919050565b60006020820190508181036000830152612a0181612713565b9050919050565b60006020820190508181036000830152612a2181612736565b9050919050565b60006020820190508181036000830152612a4181612759565b9050919050565b60006020820190508181036000830152612a618161277c565b9050919050565b60006020820190508181036000830152612a818161279f565b9050919050565b60006020820190508181036000830152612aa1816127c2565b9050919050565b60006020820190508181036000830152612ac1816127e5565b9050919050565b60006020820190508181036000830152612ae181612808565b9050919050565b60006020820190508181036000830152612b018161282b565b9050919050565b60006020820190508181036000830152612b218161284e565b9050919050565b6000602082019050612b3d6000830184612871565b92915050565b6000612b4d612b5e565b9050612b598282612deb565b919050565b6000604051905090565b600067ffffffffffffffff821115612b8357612b82612ef2565b5b612b8c82612f35565b9050602081019050919050565b600067ffffffffffffffff821115612bb457612bb3612ef2565b5b612bbd82612f35565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c1882612d6d565b9150612c2383612d6d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c5857612c57612e65565b5b828201905092915050565b6000612c6e82612d6d565b9150612c7983612d6d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cb257612cb1612e65565b5b828202905092915050565b6000612cc882612d6d565b9150612cd383612d6d565b925082821015612ce657612ce5612e65565b5b828203905092915050565b6000612cfc82612d4d565b9050919050565b6000612d0e82612d4d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612da4578082015181840152602081019050612d89565b83811115612db3576000848401525b50505050565b60006002820490506001821680612dd157607f821691505b60208210811415612de557612de4612ec3565b5b50919050565b612df482612f35565b810181811067ffffffffffffffff82111715612e1357612e12612ef2565b5b80604052505050565b6000612e2782612d6d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e5a57612e59612e65565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43616e2774206d696e742072657175657374656420616d6f756e742100000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f206d6f72652066726565206d696e74732100000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f546869732066756e6374696f6e206973207265737472696374656420746f207460008201527f6865206f776e6572000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206574682073656e7421000000000000000000000000600082015250565b6132e681612cf1565b81146132f157600080fd5b50565b6132fd81612d03565b811461330857600080fd5b50565b61331481612d15565b811461331f57600080fd5b50565b61332b81612d21565b811461333657600080fd5b50565b61334281612d6d565b811461334d57600080fd5b5056fea26469706673582212207ab65ac93481885858a562c340307e7383156e201d6d1b90ff7e206c3586d7f064736f6c6343000807003368747470733a2f2f7477696c69676874636174736e66742e73332e616d617a6f6e6177732e636f6d2f

Deployed Bytecode

0x6080604052600436106101665760003560e01c806370a08231116100d1578063a4c19a9f1161008a578063c87b56dd11610064578063c87b56dd14610507578063e8a3d48514610544578063e985e9c51461056f578063f21a0c0d146105ac57610166565b8063a4c19a9f1461049e578063af1c5211146104b5578063b88d4fde146104de57610166565b806370a082311461038c578063786f2910146103c95780638da5cb5b146103f457806395d89b411461041f578063a035b1fe1461044a578063a22cb4651461047557610166565b806328bf794d1161012357806328bf794d1461028d57806342842e0e146102b65780634bbcd31c146102df57806351cff8d9146102fb5780636352211e1461032457806366fe513a1461036157610166565b806301ffc9a71461016b578063047fc9aa146101a857806306fdde03146101d3578063081812fc146101fe578063095ea7b31461023b57806323b872dd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d91906124d3565b6105d5565b60405161019f919061290b565b60405180910390f35b3480156101b457600080fd5b506101bd6106b7565b6040516101ca9190612b28565b60405180910390f35b3480156101df57600080fd5b506101e86106bd565b6040516101f59190612926565b60405180910390f35b34801561020a57600080fd5b5061022560048036038101906102209190612576565b61074f565b60405161023291906128a4565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612493565b610795565b005b34801561027057600080fd5b5061028b6004803603810190610286919061237d565b6108ad565b005b34801561029957600080fd5b506102b460048036038101906102af9190612576565b61090d565b005b3480156102c257600080fd5b506102dd60048036038101906102d8919061237d565b6109a7565b005b6102f960048036038101906102f49190612576565b6109c7565b005b34801561030757600080fd5b50610322600480360381019061031d9190612310565b610a24565b005b34801561033057600080fd5b5061034b60048036038101906103469190612576565b610b5f565b60405161035891906128a4565b60405180910390f35b34801561036d57600080fd5b50610376610be6565b6040516103839190612b28565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae91906122e3565b610bec565b6040516103c09190612b28565b60405180910390f35b3480156103d557600080fd5b506103de610ca4565b6040516103eb9190612926565b60405180910390f35b34801561040057600080fd5b50610409610d32565b60405161041691906128a4565b60405180910390f35b34801561042b57600080fd5b50610434610d58565b6040516104419190612926565b60405180910390f35b34801561045657600080fd5b5061045f610dea565b60405161046c9190612b28565b60405180910390f35b34801561048157600080fd5b5061049c60048036038101906104979190612453565b610df0565b005b3480156104aa57600080fd5b506104b3610e06565b005b3480156104c157600080fd5b506104dc60048036038101906104d7919061252d565b610e59565b005b3480156104ea57600080fd5b50610505600480360381019061050091906123d0565b610f03565b005b34801561051357600080fd5b5061052e60048036038101906105299190612576565b610f65565b60405161053b9190612926565b60405180910390f35b34801561055057600080fd5b50610559610fcd565b6040516105669190612926565b60405180910390f35b34801561057b57600080fd5b506105966004803603810190610591919061233d565b61100a565b6040516105a3919061290b565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190612493565b61109e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106b057506106af8261113c565b5b9050919050565b60075481565b6060600080546106cc90612db9565b80601f01602080910402602001604051908101604052809291908181526020018280546106f890612db9565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b600061075a826111a6565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a082610b5f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080890612aa8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108306111f1565b73ffffffffffffffffffffffffffffffffffffffff16148061085f575061085e816108596111f1565b61100a565b5b61089e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089590612ac8565b60405180910390fd5b6108a883836111f9565b505050565b6108be6108b86111f1565b826112b2565b6108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f490612948565b60405180910390fd5b610908838383611347565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490612ae8565b60405180910390fd5b8060098190555050565b6109c283838360405180602001604052806000815250610f03565b505050565b806009546109d59190612c63565b341015610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e90612b08565b60405180910390fd5b610a213382611641565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aab90612ae8565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610aff573d6000803e3d6000fd5b50808273ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080610b6b836116da565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490612a88565b60405180910390fd5b80915050919050565b60085481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5490612a28565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a8054610cb190612db9565b80601f0160208091040260200160405190810160405280929190818152602001828054610cdd90612db9565b8015610d2a5780601f10610cff57610100808354040283529160200191610d2a565b820191906000526020600020905b815481529060010190602001808311610d0d57829003601f168201915b505050505081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054610d6790612db9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9390612db9565b8015610de05780601f10610db557610100808354040283529160200191610de0565b820191906000526020600020905b815481529060010190602001808311610dc357829003601f168201915b5050505050905090565b60095481565b610e02610dfb6111f1565b8383611717565b5050565b600854600b5410610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390612a68565b60405180910390fd5b610e57336001611641565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee090612ae8565b60405180910390fd5b80600a9080519060200190610eff9291906120e2565b5050565b610f14610f0e6111f1565b836112b2565b610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90612948565b60405180910390fd5b610f5f84848484611884565b50505050565b6060610f70826111a6565b6000610f7a6118e0565b90506000815111610f9a5760405180602001604052806000815250610fc5565b80610fa484611972565b604051602001610fb5929190612880565b6040516020818303038152906040525b915050919050565b60606040518060400160405280601a81526020017f687474703a2f2f7477696c69676874636174736e66742e636f6d000000000000815250905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590612ae8565b60405180910390fd5b6111388282611641565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6111af81611a4a565b6111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590612a88565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661126c83610b5f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806112be83610b5f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061130057506112ff818561100a565b5b8061133e57508373ffffffffffffffffffffffffffffffffffffffff166113268461074f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661136782610b5f565b73ffffffffffffffffffffffffffffffffffffffff16146113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b490612988565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611424906129c8565b60405180910390fd5b61143a8383836001611a8b565b8273ffffffffffffffffffffffffffffffffffffffff1661145a82610b5f565b73ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790612988565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461163c8383836001611bb1565b505050565b60075481600b546116529190612c0d565b1115611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90612a08565b60405180910390fd5b60005b818110156116d557600b60008154809291906116b190612e1c565b91905055506116c283600b54611bb7565b80806116cd90612e1c565b915050611696565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d906129e8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611877919061290b565b60405180910390a3505050565b61188f848484611347565b61189b84848484611dd5565b6118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190612968565b60405180910390fd5b50505050565b6060600a80546118ef90612db9565b80601f016020809104026020016040519081016040528092919081815260200182805461191b90612db9565b80156119685780601f1061193d57610100808354040283529160200191611968565b820191906000526020600020905b81548152906001019060200180831161194b57829003601f168201915b5050505050905090565b60606000600161198184611f6c565b01905060008167ffffffffffffffff8111156119a05761199f612ef2565b5b6040519080825280601f01601f1916602001820160405280156119d25781602001600182028036833780820191505090505b509050600082602001820190505b600115611a3f578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611a2957611a28612e94565b5b0494506000851415611a3a57611a3f565b6119e0565b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611a6c836116da565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6001811115611bab57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611b1f5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b179190612cbd565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611baa5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba29190612c0d565b925050819055505b5b50505050565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e90612a48565b60405180910390fd5b611c3081611a4a565b15611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c67906129a8565b60405180910390fd5b611c7e600083836001611a8b565b611c8781611a4a565b15611cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbe906129a8565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dd1600083836001611bb1565b5050565b6000611df68473ffffffffffffffffffffffffffffffffffffffff166120bf565b15611f5f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e1f6111f1565b8786866040518563ffffffff1660e01b8152600401611e4194939291906128bf565b602060405180830381600087803b158015611e5b57600080fd5b505af1925050508015611e8c57506040513d601f19601f82011682018060405250810190611e899190612500565b60015b611f0f573d8060008114611ebc576040519150601f19603f3d011682016040523d82523d6000602084013e611ec1565b606091505b50600081511415611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90612968565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f64565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611fca577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611fc057611fbf612e94565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612007576d04ee2d6d415b85acef81000000008381611ffd57611ffc612e94565b5b0492506020810190505b662386f26fc10000831061203657662386f26fc10000838161202c5761202b612e94565b5b0492506010810190505b6305f5e100831061205f576305f5e100838161205557612054612e94565b5b0492506008810190505b612710831061208457612710838161207a57612079612e94565b5b0492506004810190505b606483106120a7576064838161209d5761209c612e94565b5b0492506002810190505b600a83106120b6576001810190505b80915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546120ee90612db9565b90600052602060002090601f0160209004810192826121105760008555612157565b82601f1061212957805160ff1916838001178555612157565b82800160010185558215612157579182015b8281111561215657825182559160200191906001019061213b565b5b5090506121649190612168565b5090565b5b80821115612181576000816000905550600101612169565b5090565b600061219861219384612b68565b612b43565b9050828152602081018484840111156121b4576121b3612f26565b5b6121bf848285612d77565b509392505050565b60006121da6121d584612b99565b612b43565b9050828152602081018484840111156121f6576121f5612f26565b5b612201848285612d77565b509392505050565b600081359050612218816132dd565b92915050565b60008135905061222d816132f4565b92915050565b6000813590506122428161330b565b92915050565b60008135905061225781613322565b92915050565b60008151905061226c81613322565b92915050565b600082601f83011261228757612286612f21565b5b8135612297848260208601612185565b91505092915050565b600082601f8301126122b5576122b4612f21565b5b81356122c58482602086016121c7565b91505092915050565b6000813590506122dd81613339565b92915050565b6000602082840312156122f9576122f8612f30565b5b600061230784828501612209565b91505092915050565b60006020828403121561232657612325612f30565b5b60006123348482850161221e565b91505092915050565b6000806040838503121561235457612353612f30565b5b600061236285828601612209565b925050602061237385828601612209565b9150509250929050565b60008060006060848603121561239657612395612f30565b5b60006123a486828701612209565b93505060206123b586828701612209565b92505060406123c6868287016122ce565b9150509250925092565b600080600080608085870312156123ea576123e9612f30565b5b60006123f887828801612209565b945050602061240987828801612209565b935050604061241a878288016122ce565b925050606085013567ffffffffffffffff81111561243b5761243a612f2b565b5b61244787828801612272565b91505092959194509250565b6000806040838503121561246a57612469612f30565b5b600061247885828601612209565b925050602061248985828601612233565b9150509250929050565b600080604083850312156124aa576124a9612f30565b5b60006124b885828601612209565b92505060206124c9858286016122ce565b9150509250929050565b6000602082840312156124e9576124e8612f30565b5b60006124f784828501612248565b91505092915050565b60006020828403121561251657612515612f30565b5b60006125248482850161225d565b91505092915050565b60006020828403121561254357612542612f30565b5b600082013567ffffffffffffffff81111561256157612560612f2b565b5b61256d848285016122a0565b91505092915050565b60006020828403121561258c5761258b612f30565b5b600061259a848285016122ce565b91505092915050565b6125ac81612cf1565b82525050565b6125bb81612d15565b82525050565b60006125cc82612bca565b6125d68185612be0565b93506125e6818560208601612d86565b6125ef81612f35565b840191505092915050565b600061260582612bd5565b61260f8185612bf1565b935061261f818560208601612d86565b61262881612f35565b840191505092915050565b600061263e82612bd5565b6126488185612c02565b9350612658818560208601612d86565b80840191505092915050565b6000612671602d83612bf1565b915061267c82612f46565b604082019050919050565b6000612694603283612bf1565b915061269f82612f95565b604082019050919050565b60006126b7602583612bf1565b91506126c282612fe4565b604082019050919050565b60006126da601c83612bf1565b91506126e582613033565b602082019050919050565b60006126fd602483612bf1565b91506127088261305c565b604082019050919050565b6000612720601983612bf1565b915061272b826130ab565b602082019050919050565b6000612743601c83612bf1565b915061274e826130d4565b602082019050919050565b6000612766602983612bf1565b9150612771826130fd565b604082019050919050565b6000612789602083612bf1565b91506127948261314c565b602082019050919050565b60006127ac601383612bf1565b91506127b782613175565b602082019050919050565b60006127cf601883612bf1565b91506127da8261319e565b602082019050919050565b60006127f2602183612bf1565b91506127fd826131c7565b604082019050919050565b6000612815603d83612bf1565b915061282082613216565b604082019050919050565b6000612838602883612bf1565b915061284382613265565b604082019050919050565b600061285b601483612bf1565b9150612866826132b4565b602082019050919050565b61287a81612d6d565b82525050565b600061288c8285612633565b91506128988284612633565b91508190509392505050565b60006020820190506128b960008301846125a3565b92915050565b60006080820190506128d460008301876125a3565b6128e160208301866125a3565b6128ee6040830185612871565b818103606083015261290081846125c1565b905095945050505050565b600060208201905061292060008301846125b2565b92915050565b6000602082019050818103600083015261294081846125fa565b905092915050565b6000602082019050818103600083015261296181612664565b9050919050565b6000602082019050818103600083015261298181612687565b9050919050565b600060208201905081810360008301526129a1816126aa565b9050919050565b600060208201905081810360008301526129c1816126cd565b9050919050565b600060208201905081810360008301526129e1816126f0565b9050919050565b60006020820190508181036000830152612a0181612713565b9050919050565b60006020820190508181036000830152612a2181612736565b9050919050565b60006020820190508181036000830152612a4181612759565b9050919050565b60006020820190508181036000830152612a618161277c565b9050919050565b60006020820190508181036000830152612a818161279f565b9050919050565b60006020820190508181036000830152612aa1816127c2565b9050919050565b60006020820190508181036000830152612ac1816127e5565b9050919050565b60006020820190508181036000830152612ae181612808565b9050919050565b60006020820190508181036000830152612b018161282b565b9050919050565b60006020820190508181036000830152612b218161284e565b9050919050565b6000602082019050612b3d6000830184612871565b92915050565b6000612b4d612b5e565b9050612b598282612deb565b919050565b6000604051905090565b600067ffffffffffffffff821115612b8357612b82612ef2565b5b612b8c82612f35565b9050602081019050919050565b600067ffffffffffffffff821115612bb457612bb3612ef2565b5b612bbd82612f35565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c1882612d6d565b9150612c2383612d6d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c5857612c57612e65565b5b828201905092915050565b6000612c6e82612d6d565b9150612c7983612d6d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cb257612cb1612e65565b5b828202905092915050565b6000612cc882612d6d565b9150612cd383612d6d565b925082821015612ce657612ce5612e65565b5b828203905092915050565b6000612cfc82612d4d565b9050919050565b6000612d0e82612d4d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612da4578082015181840152602081019050612d89565b83811115612db3576000848401525b50505050565b60006002820490506001821680612dd157607f821691505b60208210811415612de557612de4612ec3565b5b50919050565b612df482612f35565b810181811067ffffffffffffffff82111715612e1357612e12612ef2565b5b80604052505050565b6000612e2782612d6d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e5a57612e59612e65565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43616e2774206d696e742072657175657374656420616d6f756e742100000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f206d6f72652066726565206d696e74732100000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f546869732066756e6374696f6e206973207265737472696374656420746f207460008201527f6865206f776e6572000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206574682073656e7421000000000000000000000000600082015250565b6132e681612cf1565b81146132f157600080fd5b50565b6132fd81612d03565b811461330857600080fd5b50565b61331481612d15565b811461331f57600080fd5b50565b61332b81612d21565b811461333657600080fd5b50565b61334281612d6d565b811461334d57600080fd5b5056fea26469706673582212207ab65ac93481885858a562c340307e7383156e201d6d1b90ff7e206c3586d7f064736f6c63430008070033

Deployed Bytecode Sourcemap

51739:2004:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35844:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51820:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36772:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38284:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37802:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38984:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52274:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39390:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52890:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53530:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36482:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51855:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36213:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51939:68;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51778:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36941:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51893:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38527:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52744:138;;;;;;;;;;;;;:::i;:::-;;53299:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39646:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37116:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53409:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38753:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53069:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35844:305;35946:4;35998:25;35983:40;;;:11;:40;;;;:105;;;;36055:33;36040:48;;;:11;:48;;;;35983:105;:158;;;;36105:36;36129:11;36105:23;:36::i;:::-;35983:158;35963:178;;35844:305;;;:::o;51820:28::-;;;;:::o;36772:100::-;36826:13;36859:5;36852:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36772:100;:::o;38284:171::-;38360:7;38380:23;38395:7;38380:14;:23::i;:::-;38423:15;:24;38439:7;38423:24;;;;;;;;;;;;;;;;;;;;;38416:31;;38284:171;;;:::o;37802:416::-;37883:13;37899:23;37914:7;37899:14;:23::i;:::-;37883:39;;37947:5;37941:11;;:2;:11;;;;37933:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38041:5;38025:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;38050:37;38067:5;38074:12;:10;:12::i;:::-;38050:16;:37::i;:::-;38025:62;38003:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;38189:21;38198:2;38202:7;38189:8;:21::i;:::-;37872:346;37802:416;;:::o;38984:335::-;39179:41;39198:12;:10;:12::i;:::-;39212:7;39179:18;:41::i;:::-;39171:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;39283:28;39293:4;39299:2;39303:7;39283:9;:28::i;:::-;38984:335;;;:::o;52274:88::-;52107:5;;;;;;;;;;;52093:19;;:10;:19;;;52085:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;52348:6:::1;52340:5;:14;;;;52274:88:::0;:::o;39390:185::-;39528:39;39545:4;39551:2;39555:7;39528:39;;;;;;;;;;;;:16;:39::i;:::-;39390:185;;;:::o;52890:171::-;52985:7;52977:5;;:15;;;;:::i;:::-;52964:9;:28;;52956:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;53028:25;53033:10;53045:7;53028:4;:25::i;:::-;52890:171;:::o;53530:210::-;52107:5;;;;;;;;;;;52093:19;;:10;:19;;;52085:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;53602:14:::1;53619:21;53602:38;;53652:6;:15;;:23;53668:6;53652:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;53724:6;53716;53692:39;;53709:4;53692:39;;;;;;;;;;;;53590:150;53530:210:::0;:::o;36482:223::-;36554:7;36574:13;36590:17;36599:7;36590:8;:17::i;:::-;36574:33;;36643:1;36626:19;;:5;:19;;;;36618:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;36692:5;36685:12;;;36482:223;;;:::o;51855:31::-;;;;:::o;36213:207::-;36285:7;36330:1;36313:19;;:5;:19;;;;36305:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36396:9;:16;36406:5;36396:16;;;;;;;;;;;;;;;;36389:23;;36213:207;;;:::o;51939:68::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51778:33::-;;;;;;;;;;;;;:::o;36941:104::-;36997:13;37030:7;37023:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36941:104;:::o;51893:39::-;;;;:::o;38527:155::-;38622:52;38641:12;:10;:12::i;:::-;38655:8;38665;38622:18;:52::i;:::-;38527:155;;:::o;52744:138::-;52809:11;;52791:15;;:29;52783:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;52855:19;52860:10;52872:1;52855:4;:19::i;:::-;52744:138::o;53299:102::-;52107:5;;;;;;;;;;;52093:19;;:10;:19;;;52085:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;53386:7:::1;53375:8;:18;;;;;;;;;;;;:::i;:::-;;53299:102:::0;:::o;39646:322::-;39820:41;39839:12;:10;:12::i;:::-;39853:7;39820:18;:41::i;:::-;39812:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;39922:38;39936:4;39942:2;39946:7;39955:4;39922:13;:38::i;:::-;39646:322;;;;:::o;37116:281::-;37189:13;37215:23;37230:7;37215:14;:23::i;:::-;37251:21;37275:10;:8;:10::i;:::-;37251:34;;37327:1;37309:7;37303:21;:25;:86;;;;;;;;;;;;;;;;;37355:7;37364:18;:7;:16;:18::i;:::-;37338:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37303:86;37296:93;;;37116:281;;;:::o;53409:113::-;53453:13;53479:35;;;;;;;;;;;;;;;;;;;53409:113;:::o;38753:164::-;38850:4;38874:18;:25;38893:5;38874:25;;;;;;;;;;;;;;;:35;38900:8;38874:35;;;;;;;;;;;;;;;;;;;;;;;;;38867:42;;38753:164;;;;:::o;53069:113::-;52107:5;;;;;;;;;;;52093:19;;:10;:19;;;52085:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;53153:21:::1;53158:6;53166:7;53153:4;:21::i;:::-;53069:113:::0;;:::o;28356:157::-;28441:4;28480:25;28465:40;;;:11;:40;;;;28458:47;;28356:157;;;:::o;48103:135::-;48185:16;48193:7;48185;:16::i;:::-;48177:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;48103:135;:::o;15878:98::-;15931:7;15958:10;15951:17;;15878:98;:::o;47382:174::-;47484:2;47457:15;:24;47473:7;47457:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47540:7;47536:2;47502:46;;47511:23;47526:7;47511:14;:23::i;:::-;47502:46;;;;;;;;;;;;47382:174;;:::o;42001:264::-;42094:4;42111:13;42127:23;42142:7;42127:14;:23::i;:::-;42111:39;;42180:5;42169:16;;:7;:16;;;:52;;;;42189:32;42206:5;42213:7;42189:16;:32::i;:::-;42169:52;:87;;;;42249:7;42225:31;;:20;42237:7;42225:11;:20::i;:::-;:31;;;42169:87;42161:96;;;42001:264;;;;:::o;46000:1263::-;46159:4;46132:31;;:23;46147:7;46132:14;:23::i;:::-;:31;;;46124:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46238:1;46224:16;;:2;:16;;;;46216:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46294:42;46315:4;46321:2;46325:7;46334:1;46294:20;:42::i;:::-;46466:4;46439:31;;:23;46454:7;46439:14;:23::i;:::-;:31;;;46431:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46584:15;:24;46600:7;46584:24;;;;;;;;;;;;46577:31;;;;;;;;;;;47079:1;47060:9;:15;47070:4;47060:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;47112:1;47095:9;:13;47105:2;47095:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;47154:2;47135:7;:16;47143:7;47135:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47193:7;47189:2;47174:27;;47183:4;47174:27;;;;;;;;;;;;47214:41;47234:4;47240:2;47244:7;47253:1;47214:19;:41::i;:::-;46000:1263;;;:::o;52370:366::-;52474:6;;52463:7;52445:15;;:25;;;;:::i;:::-;:35;;52437:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52607:9;52602:127;52626:7;52622:1;:11;52602:127;;;52655:15;;:17;;;;;;;;;:::i;:::-;;;;;;52687:30;52693:6;52701:15;;52687:5;:30::i;:::-;52635:3;;;;;:::i;:::-;;;;52602:127;;;;52370:366;;:::o;41276:117::-;41342:7;41369;:16;41377:7;41369:16;;;;;;;;;;;;;;;;;;;;;41362:23;;41276:117;;;:::o;47699:315::-;47854:8;47845:17;;:5;:17;;;;47837:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47941:8;47903:18;:25;47922:5;47903:25;;;;;;;;;;;;;;;:35;47929:8;47903:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;47987:8;47965:41;;47980:5;47965:41;;;47997:8;47965:41;;;;;;:::i;:::-;;;;;;;;47699:315;;;:::o;40849:313::-;41005:28;41015:4;41021:2;41025:7;41005:9;:28::i;:::-;41052:47;41075:4;41081:2;41085:7;41094:4;41052:22;:47::i;:::-;41044:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;40849:313;;;;:::o;53190:101::-;53242:13;53275:8;53268:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53190:101;:::o;13305:716::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13938:21;;;13954:5;;13938:21;13687:288;;;13996:6;13989:13;;;;;13305:716;;;:::o;41706:128::-;41771:4;41824:1;41795:31;;:17;41804:7;41795:8;:17::i;:::-;:31;;;;41788:38;;41706:128;;;:::o;50387:410::-;50577:1;50565:9;:13;50561:229;;;50615:1;50599:18;;:4;:18;;;50595:87;;50657:9;50638;:15;50648:4;50638:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;50595:87;50714:1;50700:16;;:2;:16;;;50696:83;;50754:9;50737;:13;50747:2;50737:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;50696:83;50561:229;50387:410;;;;:::o;51519:158::-;;;;;:::o;43599:942::-;43693:1;43679:16;;:2;:16;;;;43671:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;43752:16;43760:7;43752;:16::i;:::-;43751:17;43743:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43814:48;43843:1;43847:2;43851:7;43860:1;43814:20;:48::i;:::-;43961:16;43969:7;43961;:16::i;:::-;43960:17;43952:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44376:1;44359:9;:13;44369:2;44359:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;44420:2;44401:7;:16;44409:7;44401:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44465:7;44461:2;44440:33;;44457:1;44440:33;;;;;;;;;;;;44486:47;44514:1;44518:2;44522:7;44531:1;44486:19;:47::i;:::-;43599:942;;:::o;48802:853::-;48956:4;48977:15;:2;:13;;;:15::i;:::-;48973:675;;;49029:2;49013:36;;;49050:12;:10;:12::i;:::-;49064:4;49070:7;49079:4;49013:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49009:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49271:1;49254:6;:13;:18;49250:328;;;49297:60;;;;;;;;;;:::i;:::-;;;;;;;;49250:328;49528:6;49522:13;49513:6;49509:2;49505:15;49498:38;49009:584;49145:41;;;49135:51;;;:6;:51;;;;49128:58;;;;;48973:675;49632:4;49625:11;;48802:853;;;;;;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;17325:326::-;17385:4;17642:1;17620:7;:19;;;:23;17613:30;;17325:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:155::-;1040:5;1078:6;1065:20;1056:29;;1094:41;1129:5;1094:41;:::i;:::-;986:155;;;;:::o;1147:133::-;1190:5;1228:6;1215:20;1206:29;;1244:30;1268:5;1244:30;:::i;:::-;1147:133;;;;:::o;1286:137::-;1331:5;1369:6;1356:20;1347:29;;1385:32;1411:5;1385:32;:::i;:::-;1286:137;;;;:::o;1429:141::-;1485:5;1516:6;1510:13;1501:22;;1532:32;1558:5;1532:32;:::i;:::-;1429:141;;;;:::o;1589:338::-;1644:5;1693:3;1686:4;1678:6;1674:17;1670:27;1660:122;;1701:79;;:::i;:::-;1660:122;1818:6;1805:20;1843:78;1917:3;1909:6;1902:4;1894:6;1890:17;1843:78;:::i;:::-;1834:87;;1650:277;1589:338;;;;:::o;1947:340::-;2003:5;2052:3;2045:4;2037:6;2033:17;2029:27;2019:122;;2060:79;;:::i;:::-;2019:122;2177:6;2164:20;2202:79;2277:3;2269:6;2262:4;2254:6;2250:17;2202:79;:::i;:::-;2193:88;;2009:278;1947:340;;;;:::o;2293:139::-;2339:5;2377:6;2364:20;2355:29;;2393:33;2420:5;2393:33;:::i;:::-;2293:139;;;;:::o;2438:329::-;2497:6;2546:2;2534:9;2525:7;2521:23;2517:32;2514:119;;;2552:79;;:::i;:::-;2514:119;2672:1;2697:53;2742:7;2733:6;2722:9;2718:22;2697:53;:::i;:::-;2687:63;;2643:117;2438:329;;;;:::o;2773:345::-;2840:6;2889:2;2877:9;2868:7;2864:23;2860:32;2857:119;;;2895:79;;:::i;:::-;2857:119;3015:1;3040:61;3093:7;3084:6;3073:9;3069:22;3040:61;:::i;:::-;3030:71;;2986:125;2773:345;;;;:::o;3124:474::-;3192:6;3200;3249:2;3237:9;3228:7;3224:23;3220:32;3217:119;;;3255:79;;:::i;:::-;3217:119;3375:1;3400:53;3445:7;3436:6;3425:9;3421:22;3400:53;:::i;:::-;3390:63;;3346:117;3502:2;3528:53;3573:7;3564:6;3553:9;3549:22;3528:53;:::i;:::-;3518:63;;3473:118;3124:474;;;;;:::o;3604:619::-;3681:6;3689;3697;3746:2;3734:9;3725:7;3721:23;3717:32;3714:119;;;3752:79;;:::i;:::-;3714:119;3872:1;3897:53;3942:7;3933:6;3922:9;3918:22;3897:53;:::i;:::-;3887:63;;3843:117;3999:2;4025:53;4070:7;4061:6;4050:9;4046:22;4025:53;:::i;:::-;4015:63;;3970:118;4127:2;4153:53;4198:7;4189:6;4178:9;4174:22;4153:53;:::i;:::-;4143:63;;4098:118;3604:619;;;;;:::o;4229:943::-;4324:6;4332;4340;4348;4397:3;4385:9;4376:7;4372:23;4368:33;4365:120;;;4404:79;;:::i;:::-;4365:120;4524:1;4549:53;4594:7;4585:6;4574:9;4570:22;4549:53;:::i;:::-;4539:63;;4495:117;4651:2;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4622:118;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4935:2;4924:9;4920:18;4907:32;4966:18;4958:6;4955:30;4952:117;;;4988:79;;:::i;:::-;4952:117;5093:62;5147:7;5138:6;5127:9;5123:22;5093:62;:::i;:::-;5083:72;;4878:287;4229:943;;;;;;;:::o;5178:468::-;5243:6;5251;5300:2;5288:9;5279:7;5275:23;5271:32;5268:119;;;5306:79;;:::i;:::-;5268:119;5426:1;5451:53;5496:7;5487:6;5476:9;5472:22;5451:53;:::i;:::-;5441:63;;5397:117;5553:2;5579:50;5621:7;5612:6;5601:9;5597:22;5579:50;:::i;:::-;5569:60;;5524:115;5178:468;;;;;:::o;5652:474::-;5720:6;5728;5777:2;5765:9;5756:7;5752:23;5748:32;5745:119;;;5783:79;;:::i;:::-;5745:119;5903:1;5928:53;5973:7;5964:6;5953:9;5949:22;5928:53;:::i;:::-;5918:63;;5874:117;6030:2;6056:53;6101:7;6092:6;6081:9;6077:22;6056:53;:::i;:::-;6046:63;;6001:118;5652:474;;;;;:::o;6132:327::-;6190:6;6239:2;6227:9;6218:7;6214:23;6210:32;6207:119;;;6245:79;;:::i;:::-;6207:119;6365:1;6390:52;6434:7;6425:6;6414:9;6410:22;6390:52;:::i;:::-;6380:62;;6336:116;6132:327;;;;:::o;6465:349::-;6534:6;6583:2;6571:9;6562:7;6558:23;6554:32;6551:119;;;6589:79;;:::i;:::-;6551:119;6709:1;6734:63;6789:7;6780:6;6769:9;6765:22;6734:63;:::i;:::-;6724:73;;6680:127;6465:349;;;;:::o;6820:509::-;6889:6;6938:2;6926:9;6917:7;6913:23;6909:32;6906:119;;;6944:79;;:::i;:::-;6906:119;7092:1;7081:9;7077:17;7064:31;7122:18;7114:6;7111:30;7108:117;;;7144:79;;:::i;:::-;7108:117;7249:63;7304:7;7295:6;7284:9;7280:22;7249:63;:::i;:::-;7239:73;;7035:287;6820:509;;;;:::o;7335:329::-;7394:6;7443:2;7431:9;7422:7;7418:23;7414:32;7411:119;;;7449:79;;:::i;:::-;7411:119;7569:1;7594:53;7639:7;7630:6;7619:9;7615:22;7594:53;:::i;:::-;7584:63;;7540:117;7335:329;;;;:::o;7670:118::-;7757:24;7775:5;7757:24;:::i;:::-;7752:3;7745:37;7670:118;;:::o;7794:109::-;7875:21;7890:5;7875:21;:::i;:::-;7870:3;7863:34;7794:109;;:::o;7909:360::-;7995:3;8023:38;8055:5;8023:38;:::i;:::-;8077:70;8140:6;8135:3;8077:70;:::i;:::-;8070:77;;8156:52;8201:6;8196:3;8189:4;8182:5;8178:16;8156:52;:::i;:::-;8233:29;8255:6;8233:29;:::i;:::-;8228:3;8224:39;8217:46;;7999:270;7909:360;;;;:::o;8275:364::-;8363:3;8391:39;8424:5;8391:39;:::i;:::-;8446:71;8510:6;8505:3;8446:71;:::i;:::-;8439:78;;8526:52;8571:6;8566:3;8559:4;8552:5;8548:16;8526:52;:::i;:::-;8603:29;8625:6;8603:29;:::i;:::-;8598:3;8594:39;8587:46;;8367:272;8275:364;;;;:::o;8645:377::-;8751:3;8779:39;8812:5;8779:39;:::i;:::-;8834:89;8916:6;8911:3;8834:89;:::i;:::-;8827:96;;8932:52;8977:6;8972:3;8965:4;8958:5;8954:16;8932:52;:::i;:::-;9009:6;9004:3;9000:16;8993:23;;8755:267;8645:377;;;;:::o;9028:366::-;9170:3;9191:67;9255:2;9250:3;9191:67;:::i;:::-;9184:74;;9267:93;9356:3;9267:93;:::i;:::-;9385:2;9380:3;9376:12;9369:19;;9028:366;;;:::o;9400:::-;9542:3;9563:67;9627:2;9622:3;9563:67;:::i;:::-;9556:74;;9639:93;9728:3;9639:93;:::i;:::-;9757:2;9752:3;9748:12;9741:19;;9400:366;;;:::o;9772:::-;9914:3;9935:67;9999:2;9994:3;9935:67;:::i;:::-;9928:74;;10011:93;10100:3;10011:93;:::i;:::-;10129:2;10124:3;10120:12;10113:19;;9772:366;;;:::o;10144:::-;10286:3;10307:67;10371:2;10366:3;10307:67;:::i;:::-;10300:74;;10383:93;10472:3;10383:93;:::i;:::-;10501:2;10496:3;10492:12;10485:19;;10144:366;;;:::o;10516:::-;10658:3;10679:67;10743:2;10738:3;10679:67;:::i;:::-;10672:74;;10755:93;10844:3;10755:93;:::i;:::-;10873:2;10868:3;10864:12;10857:19;;10516:366;;;:::o;10888:::-;11030:3;11051:67;11115:2;11110:3;11051:67;:::i;:::-;11044:74;;11127:93;11216:3;11127:93;:::i;:::-;11245:2;11240:3;11236:12;11229:19;;10888:366;;;:::o;11260:::-;11402:3;11423:67;11487:2;11482:3;11423:67;:::i;:::-;11416:74;;11499:93;11588:3;11499:93;:::i;:::-;11617:2;11612:3;11608:12;11601:19;;11260:366;;;:::o;11632:::-;11774:3;11795:67;11859:2;11854:3;11795:67;:::i;:::-;11788:74;;11871:93;11960:3;11871:93;:::i;:::-;11989:2;11984:3;11980:12;11973:19;;11632:366;;;:::o;12004:::-;12146:3;12167:67;12231:2;12226:3;12167:67;:::i;:::-;12160:74;;12243:93;12332:3;12243:93;:::i;:::-;12361:2;12356:3;12352:12;12345:19;;12004:366;;;:::o;12376:::-;12518:3;12539:67;12603:2;12598:3;12539:67;:::i;:::-;12532:74;;12615:93;12704:3;12615:93;:::i;:::-;12733:2;12728:3;12724:12;12717:19;;12376:366;;;:::o;12748:::-;12890:3;12911:67;12975:2;12970:3;12911:67;:::i;:::-;12904:74;;12987:93;13076:3;12987:93;:::i;:::-;13105:2;13100:3;13096:12;13089:19;;12748:366;;;:::o;13120:::-;13262:3;13283:67;13347:2;13342:3;13283:67;:::i;:::-;13276:74;;13359:93;13448:3;13359:93;:::i;:::-;13477:2;13472:3;13468:12;13461:19;;13120:366;;;:::o;13492:::-;13634:3;13655:67;13719:2;13714:3;13655:67;:::i;:::-;13648:74;;13731:93;13820:3;13731:93;:::i;:::-;13849:2;13844:3;13840:12;13833:19;;13492:366;;;:::o;13864:::-;14006:3;14027:67;14091:2;14086:3;14027:67;:::i;:::-;14020:74;;14103:93;14192:3;14103:93;:::i;:::-;14221:2;14216:3;14212:12;14205:19;;13864:366;;;:::o;14236:::-;14378:3;14399:67;14463:2;14458:3;14399:67;:::i;:::-;14392:74;;14475:93;14564:3;14475:93;:::i;:::-;14593:2;14588:3;14584:12;14577:19;;14236:366;;;:::o;14608:118::-;14695:24;14713:5;14695:24;:::i;:::-;14690:3;14683:37;14608:118;;:::o;14732:435::-;14912:3;14934:95;15025:3;15016:6;14934:95;:::i;:::-;14927:102;;15046:95;15137:3;15128:6;15046:95;:::i;:::-;15039:102;;15158:3;15151:10;;14732:435;;;;;:::o;15173:222::-;15266:4;15304:2;15293:9;15289:18;15281:26;;15317:71;15385:1;15374:9;15370:17;15361:6;15317:71;:::i;:::-;15173:222;;;;:::o;15401:640::-;15596:4;15634:3;15623:9;15619:19;15611:27;;15648:71;15716:1;15705:9;15701:17;15692:6;15648:71;:::i;:::-;15729:72;15797:2;15786:9;15782:18;15773:6;15729:72;:::i;:::-;15811;15879:2;15868:9;15864:18;15855:6;15811:72;:::i;:::-;15930:9;15924:4;15920:20;15915:2;15904:9;15900:18;15893:48;15958:76;16029:4;16020:6;15958:76;:::i;:::-;15950:84;;15401:640;;;;;;;:::o;16047:210::-;16134:4;16172:2;16161:9;16157:18;16149:26;;16185:65;16247:1;16236:9;16232:17;16223:6;16185:65;:::i;:::-;16047:210;;;;:::o;16263:313::-;16376:4;16414:2;16403:9;16399:18;16391:26;;16463:9;16457:4;16453:20;16449:1;16438:9;16434:17;16427:47;16491:78;16564:4;16555:6;16491:78;:::i;:::-;16483:86;;16263:313;;;;:::o;16582:419::-;16748:4;16786:2;16775:9;16771:18;16763:26;;16835:9;16829:4;16825:20;16821:1;16810:9;16806:17;16799:47;16863:131;16989:4;16863:131;:::i;:::-;16855:139;;16582:419;;;:::o;17007:::-;17173:4;17211:2;17200:9;17196:18;17188:26;;17260:9;17254:4;17250:20;17246:1;17235:9;17231:17;17224:47;17288:131;17414:4;17288:131;:::i;:::-;17280:139;;17007:419;;;:::o;17432:::-;17598:4;17636:2;17625:9;17621:18;17613:26;;17685:9;17679:4;17675:20;17671:1;17660:9;17656:17;17649:47;17713:131;17839:4;17713:131;:::i;:::-;17705:139;;17432:419;;;:::o;17857:::-;18023:4;18061:2;18050:9;18046:18;18038:26;;18110:9;18104:4;18100:20;18096:1;18085:9;18081:17;18074:47;18138:131;18264:4;18138:131;:::i;:::-;18130:139;;17857:419;;;:::o;18282:::-;18448:4;18486:2;18475:9;18471:18;18463:26;;18535:9;18529:4;18525:20;18521:1;18510:9;18506:17;18499:47;18563:131;18689:4;18563:131;:::i;:::-;18555:139;;18282:419;;;:::o;18707:::-;18873:4;18911:2;18900:9;18896:18;18888:26;;18960:9;18954:4;18950:20;18946:1;18935:9;18931:17;18924:47;18988:131;19114:4;18988:131;:::i;:::-;18980:139;;18707:419;;;:::o;19132:::-;19298:4;19336:2;19325:9;19321:18;19313:26;;19385:9;19379:4;19375:20;19371:1;19360:9;19356:17;19349:47;19413:131;19539:4;19413:131;:::i;:::-;19405:139;;19132:419;;;:::o;19557:::-;19723:4;19761:2;19750:9;19746:18;19738:26;;19810:9;19804:4;19800:20;19796:1;19785:9;19781:17;19774:47;19838:131;19964:4;19838:131;:::i;:::-;19830:139;;19557:419;;;:::o;19982:::-;20148:4;20186:2;20175:9;20171:18;20163:26;;20235:9;20229:4;20225:20;20221:1;20210:9;20206:17;20199:47;20263:131;20389:4;20263:131;:::i;:::-;20255:139;;19982:419;;;:::o;20407:::-;20573:4;20611:2;20600:9;20596:18;20588:26;;20660:9;20654:4;20650:20;20646:1;20635:9;20631:17;20624:47;20688:131;20814:4;20688:131;:::i;:::-;20680:139;;20407:419;;;:::o;20832:::-;20998:4;21036:2;21025:9;21021:18;21013:26;;21085:9;21079:4;21075:20;21071:1;21060:9;21056:17;21049:47;21113:131;21239:4;21113:131;:::i;:::-;21105:139;;20832:419;;;:::o;21257:::-;21423:4;21461:2;21450:9;21446:18;21438:26;;21510:9;21504:4;21500:20;21496:1;21485:9;21481:17;21474:47;21538:131;21664:4;21538:131;:::i;:::-;21530:139;;21257:419;;;:::o;21682:::-;21848:4;21886:2;21875:9;21871:18;21863:26;;21935:9;21929:4;21925:20;21921:1;21910:9;21906:17;21899:47;21963:131;22089:4;21963:131;:::i;:::-;21955:139;;21682:419;;;:::o;22107:::-;22273:4;22311:2;22300:9;22296:18;22288:26;;22360:9;22354:4;22350:20;22346:1;22335:9;22331:17;22324:47;22388:131;22514:4;22388:131;:::i;:::-;22380:139;;22107:419;;;:::o;22532:::-;22698:4;22736:2;22725:9;22721:18;22713:26;;22785:9;22779:4;22775:20;22771:1;22760:9;22756:17;22749:47;22813:131;22939:4;22813:131;:::i;:::-;22805:139;;22532:419;;;:::o;22957:222::-;23050:4;23088:2;23077:9;23073:18;23065:26;;23101:71;23169:1;23158:9;23154:17;23145:6;23101:71;:::i;:::-;22957:222;;;;:::o;23185:129::-;23219:6;23246:20;;:::i;:::-;23236:30;;23275:33;23303:4;23295:6;23275:33;:::i;:::-;23185:129;;;:::o;23320:75::-;23353:6;23386:2;23380:9;23370:19;;23320:75;:::o;23401:307::-;23462:4;23552:18;23544:6;23541:30;23538:56;;;23574:18;;:::i;:::-;23538:56;23612:29;23634:6;23612:29;:::i;:::-;23604:37;;23696:4;23690;23686:15;23678:23;;23401:307;;;:::o;23714:308::-;23776:4;23866:18;23858:6;23855:30;23852:56;;;23888:18;;:::i;:::-;23852:56;23926:29;23948:6;23926:29;:::i;:::-;23918:37;;24010:4;24004;24000:15;23992:23;;23714:308;;;:::o;24028:98::-;24079:6;24113:5;24107:12;24097:22;;24028:98;;;:::o;24132:99::-;24184:6;24218:5;24212:12;24202:22;;24132:99;;;:::o;24237:168::-;24320:11;24354:6;24349:3;24342:19;24394:4;24389:3;24385:14;24370:29;;24237:168;;;;:::o;24411:169::-;24495:11;24529:6;24524:3;24517:19;24569:4;24564:3;24560:14;24545:29;;24411:169;;;;:::o;24586:148::-;24688:11;24725:3;24710:18;;24586:148;;;;:::o;24740:305::-;24780:3;24799:20;24817:1;24799:20;:::i;:::-;24794:25;;24833:20;24851:1;24833:20;:::i;:::-;24828:25;;24987:1;24919:66;24915:74;24912:1;24909:81;24906:107;;;24993:18;;:::i;:::-;24906:107;25037:1;25034;25030:9;25023:16;;24740:305;;;;:::o;25051:348::-;25091:7;25114:20;25132:1;25114:20;:::i;:::-;25109:25;;25148:20;25166:1;25148:20;:::i;:::-;25143:25;;25336:1;25268:66;25264:74;25261:1;25258:81;25253:1;25246:9;25239:17;25235:105;25232:131;;;25343:18;;:::i;:::-;25232:131;25391:1;25388;25384:9;25373:20;;25051:348;;;;:::o;25405:191::-;25445:4;25465:20;25483:1;25465:20;:::i;:::-;25460:25;;25499:20;25517:1;25499:20;:::i;:::-;25494:25;;25538:1;25535;25532:8;25529:34;;;25543:18;;:::i;:::-;25529:34;25588:1;25585;25581:9;25573:17;;25405:191;;;;:::o;25602:96::-;25639:7;25668:24;25686:5;25668:24;:::i;:::-;25657:35;;25602:96;;;:::o;25704:104::-;25749:7;25778:24;25796:5;25778:24;:::i;:::-;25767:35;;25704:104;;;:::o;25814:90::-;25848:7;25891:5;25884:13;25877:21;25866:32;;25814:90;;;:::o;25910:149::-;25946:7;25986:66;25979:5;25975:78;25964:89;;25910:149;;;:::o;26065:126::-;26102:7;26142:42;26135:5;26131:54;26120:65;;26065:126;;;:::o;26197:77::-;26234:7;26263:5;26252:16;;26197:77;;;:::o;26280:154::-;26364:6;26359:3;26354;26341:30;26426:1;26417:6;26412:3;26408:16;26401:27;26280:154;;;:::o;26440:307::-;26508:1;26518:113;26532:6;26529:1;26526:13;26518:113;;;26617:1;26612:3;26608:11;26602:18;26598:1;26593:3;26589:11;26582:39;26554:2;26551:1;26547:10;26542:15;;26518:113;;;26649:6;26646:1;26643:13;26640:101;;;26729:1;26720:6;26715:3;26711:16;26704:27;26640:101;26489:258;26440:307;;;:::o;26753:320::-;26797:6;26834:1;26828:4;26824:12;26814:22;;26881:1;26875:4;26871:12;26902:18;26892:81;;26958:4;26950:6;26946:17;26936:27;;26892:81;27020:2;27012:6;27009:14;26989:18;26986:38;26983:84;;;27039:18;;:::i;:::-;26983:84;26804:269;26753:320;;;:::o;27079:281::-;27162:27;27184:4;27162:27;:::i;:::-;27154:6;27150:40;27292:6;27280:10;27277:22;27256:18;27244:10;27241:34;27238:62;27235:88;;;27303:18;;:::i;:::-;27235:88;27343:10;27339:2;27332:22;27122:238;27079:281;;:::o;27366:233::-;27405:3;27428:24;27446:5;27428:24;:::i;:::-;27419:33;;27474:66;27467:5;27464:77;27461:103;;;27544:18;;:::i;:::-;27461:103;27591:1;27584:5;27580:13;27573:20;;27366:233;;;:::o;27605:180::-;27653:77;27650:1;27643:88;27750:4;27747:1;27740:15;27774:4;27771:1;27764:15;27791:180;27839:77;27836:1;27829:88;27936:4;27933:1;27926:15;27960:4;27957:1;27950:15;27977:180;28025:77;28022:1;28015:88;28122:4;28119:1;28112:15;28146:4;28143:1;28136:15;28163:180;28211:77;28208:1;28201:88;28308:4;28305:1;28298:15;28332:4;28329:1;28322:15;28349:117;28458:1;28455;28448:12;28472:117;28581:1;28578;28571:12;28595:117;28704:1;28701;28694:12;28718:117;28827:1;28824;28817:12;28841:102;28882:6;28933:2;28929:7;28924:2;28917:5;28913:14;28909:28;28899:38;;28841:102;;;:::o;28949:232::-;29089:34;29085:1;29077:6;29073:14;29066:58;29158:15;29153:2;29145:6;29141:15;29134:40;28949:232;:::o;29187:237::-;29327:34;29323:1;29315:6;29311:14;29304:58;29396:20;29391:2;29383:6;29379:15;29372:45;29187:237;:::o;29430:224::-;29570:34;29566:1;29558:6;29554:14;29547:58;29639:7;29634:2;29626:6;29622:15;29615:32;29430:224;:::o;29660:178::-;29800:30;29796:1;29788:6;29784:14;29777:54;29660:178;:::o;29844:223::-;29984:34;29980:1;29972:6;29968:14;29961:58;30053:6;30048:2;30040:6;30036:15;30029:31;29844:223;:::o;30073:175::-;30213:27;30209:1;30201:6;30197:14;30190:51;30073:175;:::o;30254:178::-;30394:30;30390:1;30382:6;30378:14;30371:54;30254:178;:::o;30438:228::-;30578:34;30574:1;30566:6;30562:14;30555:58;30647:11;30642:2;30634:6;30630:15;30623:36;30438:228;:::o;30672:182::-;30812:34;30808:1;30800:6;30796:14;30789:58;30672:182;:::o;30860:169::-;31000:21;30996:1;30988:6;30984:14;30977:45;30860:169;:::o;31035:174::-;31175:26;31171:1;31163:6;31159:14;31152:50;31035:174;:::o;31215:220::-;31355:34;31351:1;31343:6;31339:14;31332:58;31424:3;31419:2;31411:6;31407:15;31400:28;31215:220;:::o;31441:248::-;31581:34;31577:1;31569:6;31565:14;31558:58;31650:31;31645:2;31637:6;31633:15;31626:56;31441:248;:::o;31695:227::-;31835:34;31831:1;31823:6;31819:14;31812:58;31904:10;31899:2;31891:6;31887:15;31880:35;31695:227;:::o;31928:170::-;32068:22;32064:1;32056:6;32052:14;32045:46;31928:170;:::o;32104:122::-;32177:24;32195:5;32177:24;:::i;:::-;32170:5;32167:35;32157:63;;32216:1;32213;32206:12;32157:63;32104:122;:::o;32232:138::-;32313:32;32339:5;32313:32;:::i;:::-;32306:5;32303:43;32293:71;;32360:1;32357;32350:12;32293:71;32232:138;:::o;32376:116::-;32446:21;32461:5;32446:21;:::i;:::-;32439:5;32436:32;32426:60;;32482:1;32479;32472:12;32426:60;32376:116;:::o;32498:120::-;32570:23;32587:5;32570:23;:::i;:::-;32563:5;32560:34;32550:62;;32608:1;32605;32598:12;32550:62;32498:120;:::o;32624:122::-;32697:24;32715:5;32697:24;:::i;:::-;32690:5;32687:35;32677:63;;32736:1;32733;32726:12;32677:63;32624:122;:::o

Swarm Source

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