ETH Price: $3,481.17 (+1.69%)
Gas: 13 Gwei

Token

Neon Downtown #1 (STCT001)
 

Overview

Max Total Supply

333 STCT001

Holders

270

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 STCT001
0x857c4ed82af1cd727c36f7d9e42e940212582127
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:
NFT

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-21
*/

// 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/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/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/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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: contracts/satiama222.sol



pragma solidity ^0.8.9;




contract NFT is ERC721, Ownable {
    using Strings for uint256;

    uint public constant MAX_TOKENS = 333;
    uint private constant TOKENS_RESERVED = 1;
    uint public price = 1000000000000000;
    uint256 public constant MAX_MINT_PER_TX = 10;   

    bool public isSaleActive;
    uint256 public totalSupply;
    mapping(address => uint256) private mintedPerWallet;

    string public baseUri;
    string public baseExtension = ".json";

    constructor() ERC721("Neon Downtown #1", "STCT001") {
        baseUri = "ipfs://bafybeibw4geqbd4kqb23gpltz5qdmr3cj7zhg6xvkmdscsl4w6lwqixsfq/";
        for(uint256 i = 1; i <= TOKENS_RESERVED; ++i) {
            _safeMint(msg.sender, i);
        }
        totalSupply = TOKENS_RESERVED;
    }

    // Public Functions
    function mint(uint256 _numTokens) external payable {
        require(isSaleActive, "The sale is paused.");
        require(_numTokens <= MAX_MINT_PER_TX, "You cannot mint that many in one transaction.");
        require(mintedPerWallet[msg.sender] + _numTokens <= MAX_MINT_PER_TX, "You cannot mint that many total.");
        uint256 curTotalSupply = totalSupply;
        require(curTotalSupply + _numTokens <= MAX_TOKENS, "Exceeds total supply.");
        require(_numTokens * price <= msg.value, "Insufficient funds.");

        for(uint256 i = 1; i <= _numTokens; ++i) {
            _safeMint(msg.sender, curTotalSupply + i);
        }
        mintedPerWallet[msg.sender] += _numTokens;
        totalSupply += _numTokens;
    }

    // Owner-only functions
    function flipSaleState() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function setBaseUri(string memory _baseUri) external onlyOwner {
        baseUri = _baseUri;
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function withdrawAll() external payable onlyOwner {
        uint256 balance = address(this).balance;
        uint256 balanceOne = balance * 100 / 100;
        ( bool transferOne, ) = payable(0x7534C9eF0C8AA2c5A42548Ca5A18FEE6A089e36e).call{value: balanceOne}("");
        require(transferOne , "Transfer failed.");
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
 
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
            : "";
    }
 
    function _baseURI() internal view virtual override returns (string memory) {
        return baseUri;
    }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266038d7ea4c680006007556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005c929190620008e1565b503480156200006a57600080fd5b506040518060400160405280601081526020017f4e656f6e20446f776e746f776e202331000000000000000000000000000000008152506040518060400160405280600781526020017f53544354303031000000000000000000000000000000000000000000000000008152508160009080519060200190620000ef929190620008e1565b50806001908051906020019062000108929190620008e1565b5050506200012b6200011f620001a260201b60201c565b620001aa60201b60201c565b6040518060800160405280604381526020016200483260439139600b90805190602001906200015c929190620008e1565b506000600190505b6001811162000193576200017f33826200027060201b60201c565b806200018b90620009ca565b905062000164565b50600160098190555062000e84565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002928282604051806020016040528060008152506200029660201b60201c565b5050565b620002a883836200030460201b60201c565b620002bd60008484846200054b60201b60201c565b620002ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f69062000a9f565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000377576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036e9062000b11565b60405180910390fd5b62000388816200070560201b60201c565b15620003cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c29062000b83565b60405180910390fd5b620003e16000838360016200074e60201b60201c565b620003f2816200070560201b60201c565b1562000435576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042c9062000b83565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620005476000838360016200087b60201b60201c565b5050565b6000620005798473ffffffffffffffffffffffffffffffffffffffff166200088160201b6200131b1760201c565b15620006f8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005ab620001a260201b60201c565b8786866040518563ffffffff1660e01b8152600401620005cf949392919062000c9f565b602060405180830381600087803b158015620005ea57600080fd5b505af19250505080156200061e57506040513d601f19601f820116820180604052508101906200061b919062000d55565b60015b620006a7573d806000811462000651576040519150601f19603f3d011682016040523d82523d6000602084013e62000656565b606091505b506000815114156200069f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006969062000a9f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620006fd565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166200072f83620008a460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60018111156200087557600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614620007e65780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620007de919062000d87565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620008745780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200086c919062000dc2565b925050819055505b5b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b828054620008ef9062000e4e565b90600052602060002090601f0160209004810192826200091357600085556200095f565b82601f106200092e57805160ff19168380011785556200095f565b828001600101855582156200095f579182015b828111156200095e57825182559160200191906001019062000941565b5b5090506200096e919062000972565b5090565b5b808211156200098d57600081600090555060010162000973565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000819050919050565b6000620009d782620009c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000a0d5762000a0c62000991565b5b600182019050919050565b600082825260208201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600062000a8760328362000a18565b915062000a948262000a29565b604082019050919050565b6000602082019050818103600083015262000aba8162000a78565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000af960208362000a18565b915062000b068262000ac1565b602082019050919050565b6000602082019050818103600083015262000b2c8162000aea565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000b6b601c8362000a18565b915062000b788262000b33565b602082019050919050565b6000602082019050818103600083015262000b9e8162000b5c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bd28262000ba5565b9050919050565b62000be48162000bc5565b82525050565b62000bf581620009c0565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000c3757808201518184015260208101905062000c1a565b8381111562000c47576000848401525b50505050565b6000601f19601f8301169050919050565b600062000c6b8262000bfb565b62000c77818562000c06565b935062000c8981856020860162000c17565b62000c948162000c4d565b840191505092915050565b600060808201905062000cb6600083018762000bd9565b62000cc5602083018662000bd9565b62000cd4604083018562000bea565b818103606083015262000ce8818462000c5e565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000d2f8162000cf8565b811462000d3b57600080fd5b50565b60008151905062000d4f8162000d24565b92915050565b60006020828403121562000d6e5762000d6d62000cf3565b5b600062000d7e8482850162000d3e565b91505092915050565b600062000d9482620009c0565b915062000da183620009c0565b92508282101562000db75762000db662000991565b5b828203905092915050565b600062000dcf82620009c0565b915062000ddc83620009c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e145762000e1362000991565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e6757607f821691505b6020821081141562000e7e5762000e7d62000e1f565b5b50919050565b61399e8062000e946000396000f3fe6080604052600436106101b75760003560e01c80638ecad721116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105a6578063e985e9c5146105e3578063f2fde38b14610620578063f47c84c514610649576101b7565b8063a22cb46514610529578063b88d4fde14610552578063c66828621461057b576101b7565b80639abc8320116100c65780639abc83201461048e578063a035b1fe146104b9578063a0712d68146104e4578063a0bcfc7f14610500576101b7565b80638ecad7211461040f57806391b7f5ed1461043a57806395d89b4114610463576101b7565b806342842e0e1161015957806370a082311161013357806370a0823114610386578063715018a6146103c3578063853828b6146103da5780638da5cb5b146103e4576101b7565b806342842e0e146102f5578063564566a81461031e5780636352211e14610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806334918dfd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906124f4565b610674565b6040516101f0919061253c565b60405180910390f35b34801561020557600080fd5b5061020e610756565b60405161021b91906125f0565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612648565b6107e8565b60405161025891906126b6565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906126fd565b61082e565b005b34801561029657600080fd5b5061029f610946565b6040516102ac919061274c565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612767565b61094c565b005b3480156102ea57600080fd5b506102f36109ac565b005b34801561030157600080fd5b5061031c60048036038101906103179190612767565b6109e0565b005b34801561032a57600080fd5b50610333610a00565b604051610340919061253c565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190612648565b610a13565b60405161037d91906126b6565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a891906127ba565b610a9a565b6040516103ba919061274c565b60405180910390f35b3480156103cf57600080fd5b506103d8610b52565b005b6103e2610b66565b005b3480156103f057600080fd5b506103f9610c54565b60405161040691906126b6565b60405180910390f35b34801561041b57600080fd5b50610424610c7e565b604051610431919061274c565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612648565b610c83565b005b34801561046f57600080fd5b50610478610c95565b60405161048591906125f0565b60405180910390f35b34801561049a57600080fd5b506104a3610d27565b6040516104b091906125f0565b60405180910390f35b3480156104c557600080fd5b506104ce610db5565b6040516104db919061274c565b60405180910390f35b6104fe60048036038101906104f99190612648565b610dbb565b005b34801561050c57600080fd5b506105276004803603810190610522919061291c565b61102b565b005b34801561053557600080fd5b50610550600480360381019061054b9190612991565b61104d565b005b34801561055e57600080fd5b5061057960048036038101906105749190612a72565b611063565b005b34801561058757600080fd5b506105906110c5565b60405161059d91906125f0565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190612648565b611153565b6040516105da91906125f0565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190612af5565b6111fd565b604051610617919061253c565b60405180910390f35b34801561062c57600080fd5b50610647600480360381019061064291906127ba565b611291565b005b34801561065557600080fd5b5061065e611315565b60405161066b919061274c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e8261133e565b5b9050919050565b60606000805461076590612b64565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612b64565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f3826113a8565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083982610a13565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a190612c08565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c96113f3565b73ffffffffffffffffffffffffffffffffffffffff1614806108f857506108f7816108f26113f3565b6111fd565b5b610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90612c9a565b60405180910390fd5b61094183836113fb565b505050565b60095481565b61095d6109576113f3565b826114b4565b61099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390612d2c565b60405180910390fd5b6109a7838383611549565b505050565b6109b4611843565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6109fb83838360405180602001604052806000815250611063565b505050565b600860009054906101000a900460ff1681565b600080610a1f836118c1565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890612d98565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290612e2a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b5a611843565b610b6460006118fe565b565b610b6e611843565b6000479050600060648083610b839190612e79565b610b8d9190612f02565b90506000737534c9ef0c8aa2c5a42548ca5a18fee6a089e36e73ffffffffffffffffffffffffffffffffffffffff1682604051610bc990612f64565b60006040518083038185875af1925050503d8060008114610c06576040519150601f19603f3d011682016040523d82523d6000602084013e610c0b565b606091505b5050905080610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690612fc5565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a81565b610c8b611843565b8060078190555050565b606060018054610ca490612b64565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd090612b64565b8015610d1d5780601f10610cf257610100808354040283529160200191610d1d565b820191906000526020600020905b815481529060010190602001808311610d0057829003601f168201915b5050505050905090565b600b8054610d3490612b64565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6090612b64565b8015610dad5780601f10610d8257610100808354040283529160200191610dad565b820191906000526020600020905b815481529060010190602001808311610d9057829003601f168201915b505050505081565b60075481565b600860009054906101000a900460ff16610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190613031565b60405180910390fd5b600a811115610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e45906130c3565b60405180910390fd5b600a81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e9b91906130e3565b1115610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390613185565b60405180910390fd5b6000600954905061014d8282610ef291906130e3565b1115610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a906131f1565b60405180910390fd5b3460075483610f429190612e79565b1115610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a9061325d565b60405180910390fd5b6000600190505b828111610fb757610fa6338284610fa191906130e3565b6119c4565b80610fb09061327d565b9050610f8a565b5081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461100791906130e3565b92505081905550816009600082825461102091906130e3565b925050819055505050565b611033611843565b80600b90805190602001906110499291906123e5565b5050565b61105f6110586113f3565b83836119e2565b5050565b61107461106e6113f3565b836114b4565b6110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90612d2c565b60405180910390fd5b6110bf84848484611b4f565b50505050565b600c80546110d290612b64565b80601f01602080910402602001604051908101604052809291908181526020018280546110fe90612b64565b801561114b5780601f106111205761010080835404028352916020019161114b565b820191906000526020600020905b81548152906001019060200180831161112e57829003601f168201915b505050505081565b606061115e82611bab565b61119d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119490613338565b60405180910390fd5b60006111a7611bec565b905060008151116111c757604051806020016040528060008152506111f5565b806111d184611c7e565b600c6040516020016111e593929190613428565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611299611843565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611300906134cb565b60405180910390fd5b611312816118fe565b50565b61014d81565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6113b181611bab565b6113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790612d98565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661146e83610a13565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806114c083610a13565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611502575061150181856111fd565b5b8061154057508373ffffffffffffffffffffffffffffffffffffffff16611528846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661156982610a13565b73ffffffffffffffffffffffffffffffffffffffff16146115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b69061355d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611626906135ef565b60405180910390fd5b61163c8383836001611d56565b8273ffffffffffffffffffffffffffffffffffffffff1661165c82610a13565b73ffffffffffffffffffffffffffffffffffffffff16146116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a99061355d565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461183e8383836001611e7c565b505050565b61184b6113f3565b73ffffffffffffffffffffffffffffffffffffffff16611869610c54565b73ffffffffffffffffffffffffffffffffffffffff16146118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b69061365b565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119de828260405180602001604052806000815250611e82565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a48906136c7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b42919061253c565b60405180910390a3505050565b611b5a848484611549565b611b6684848484611edd565b611ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9c90613759565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611bcd836118c1565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611bfb90612b64565b80601f0160208091040260200160405190810160405280929190818152602001828054611c2790612b64565b8015611c745780601f10611c4957610100808354040283529160200191611c74565b820191906000526020600020905b815481529060010190602001808311611c5757829003601f168201915b5050505050905090565b606060006001611c8d84612074565b01905060008167ffffffffffffffff811115611cac57611cab6127f1565b5b6040519080825280601f01601f191660200182016040528015611cde5781602001600182028036833780820191505090505b509050600082602001820190505b600115611d4b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d3557611d34612ed3565b5b0494506000851415611d4657611d4b565b611cec565b819350505050919050565b6001811115611e7657600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611dea5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611de29190613779565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e755780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e6d91906130e3565b925050819055505b5b50505050565b50505050565b611e8c83836121c7565b611e996000848484611edd565b611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf90613759565b60405180910390fd5b505050565b6000611efe8473ffffffffffffffffffffffffffffffffffffffff1661131b565b15612067578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f276113f3565b8786866040518563ffffffff1660e01b8152600401611f499493929190613802565b602060405180830381600087803b158015611f6357600080fd5b505af1925050508015611f9457506040513d601f19601f82011682018060405250810190611f919190613863565b60015b612017573d8060008114611fc4576040519150601f19603f3d011682016040523d82523d6000602084013e611fc9565b606091505b5060008151141561200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690613759565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061206c565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120d2577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120c8576120c7612ed3565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061210f576d04ee2d6d415b85acef8100000000838161210557612104612ed3565b5b0492506020810190505b662386f26fc10000831061213e57662386f26fc10000838161213457612133612ed3565b5b0492506010810190505b6305f5e1008310612167576305f5e100838161215d5761215c612ed3565b5b0492506008810190505b612710831061218c57612710838161218257612181612ed3565b5b0492506004810190505b606483106121af57606483816121a5576121a4612ed3565b5b0492506002810190505b600a83106121be576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222e906138dc565b60405180910390fd5b61224081611bab565b15612280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227790613948565b60405180910390fd5b61228e600083836001611d56565b61229781611bab565b156122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ce90613948565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123e1600083836001611e7c565b5050565b8280546123f190612b64565b90600052602060002090601f016020900481019282612413576000855561245a565b82601f1061242c57805160ff191683800117855561245a565b8280016001018555821561245a579182015b8281111561245957825182559160200191906001019061243e565b5b509050612467919061246b565b5090565b5b8082111561248457600081600090555060010161246c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124d18161249c565b81146124dc57600080fd5b50565b6000813590506124ee816124c8565b92915050565b60006020828403121561250a57612509612492565b5b6000612518848285016124df565b91505092915050565b60008115159050919050565b61253681612521565b82525050565b6000602082019050612551600083018461252d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612591578082015181840152602081019050612576565b838111156125a0576000848401525b50505050565b6000601f19601f8301169050919050565b60006125c282612557565b6125cc8185612562565b93506125dc818560208601612573565b6125e5816125a6565b840191505092915050565b6000602082019050818103600083015261260a81846125b7565b905092915050565b6000819050919050565b61262581612612565b811461263057600080fd5b50565b6000813590506126428161261c565b92915050565b60006020828403121561265e5761265d612492565b5b600061266c84828501612633565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126a082612675565b9050919050565b6126b081612695565b82525050565b60006020820190506126cb60008301846126a7565b92915050565b6126da81612695565b81146126e557600080fd5b50565b6000813590506126f7816126d1565b92915050565b6000806040838503121561271457612713612492565b5b6000612722858286016126e8565b925050602061273385828601612633565b9150509250929050565b61274681612612565b82525050565b6000602082019050612761600083018461273d565b92915050565b6000806000606084860312156127805761277f612492565b5b600061278e868287016126e8565b935050602061279f868287016126e8565b92505060406127b086828701612633565b9150509250925092565b6000602082840312156127d0576127cf612492565b5b60006127de848285016126e8565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612829826125a6565b810181811067ffffffffffffffff82111715612848576128476127f1565b5b80604052505050565b600061285b612488565b90506128678282612820565b919050565b600067ffffffffffffffff821115612887576128866127f1565b5b612890826125a6565b9050602081019050919050565b82818337600083830152505050565b60006128bf6128ba8461286c565b612851565b9050828152602081018484840111156128db576128da6127ec565b5b6128e684828561289d565b509392505050565b600082601f830112612903576129026127e7565b5b81356129138482602086016128ac565b91505092915050565b60006020828403121561293257612931612492565b5b600082013567ffffffffffffffff8111156129505761294f612497565b5b61295c848285016128ee565b91505092915050565b61296e81612521565b811461297957600080fd5b50565b60008135905061298b81612965565b92915050565b600080604083850312156129a8576129a7612492565b5b60006129b6858286016126e8565b92505060206129c78582860161297c565b9150509250929050565b600067ffffffffffffffff8211156129ec576129eb6127f1565b5b6129f5826125a6565b9050602081019050919050565b6000612a15612a10846129d1565b612851565b905082815260208101848484011115612a3157612a306127ec565b5b612a3c84828561289d565b509392505050565b600082601f830112612a5957612a586127e7565b5b8135612a69848260208601612a02565b91505092915050565b60008060008060808587031215612a8c57612a8b612492565b5b6000612a9a878288016126e8565b9450506020612aab878288016126e8565b9350506040612abc87828801612633565b925050606085013567ffffffffffffffff811115612add57612adc612497565b5b612ae987828801612a44565b91505092959194509250565b60008060408385031215612b0c57612b0b612492565b5b6000612b1a858286016126e8565b9250506020612b2b858286016126e8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b7c57607f821691505b60208210811415612b9057612b8f612b35565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bf2602183612562565b9150612bfd82612b96565b604082019050919050565b60006020820190508181036000830152612c2181612be5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612c84603d83612562565b9150612c8f82612c28565b604082019050919050565b60006020820190508181036000830152612cb381612c77565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612d16602d83612562565b9150612d2182612cba565b604082019050919050565b60006020820190508181036000830152612d4581612d09565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612d82601883612562565b9150612d8d82612d4c565b602082019050919050565b60006020820190508181036000830152612db181612d75565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612e14602983612562565b9150612e1f82612db8565b604082019050919050565b60006020820190508181036000830152612e4381612e07565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e8482612612565b9150612e8f83612612565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ec857612ec7612e4a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f0d82612612565b9150612f1883612612565b925082612f2857612f27612ed3565b5b828204905092915050565b600081905092915050565b50565b6000612f4e600083612f33565b9150612f5982612f3e565b600082019050919050565b6000612f6f82612f41565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612faf601083612562565b9150612fba82612f79565b602082019050919050565b60006020820190508181036000830152612fde81612fa2565b9050919050565b7f5468652073616c65206973207061757365642e00000000000000000000000000600082015250565b600061301b601383612562565b915061302682612fe5565b602082019050919050565b6000602082019050818103600083015261304a8161300e565b9050919050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b60006130ad602d83612562565b91506130b882613051565b604082019050919050565b600060208201905081810360008301526130dc816130a0565b9050919050565b60006130ee82612612565b91506130f983612612565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561312e5761312d612e4a565b5b828201905092915050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920746f74616c2e600082015250565b600061316f602083612562565b915061317a82613139565b602082019050919050565b6000602082019050818103600083015261319e81613162565b9050919050565b7f4578636565647320746f74616c20737570706c792e0000000000000000000000600082015250565b60006131db601583612562565b91506131e6826131a5565b602082019050919050565b6000602082019050818103600083015261320a816131ce565b9050919050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b6000613247601383612562565b915061325282613211565b602082019050919050565b600060208201905081810360008301526132768161323a565b9050919050565b600061328882612612565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132bb576132ba612e4a565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613322602f83612562565b915061332d826132c6565b604082019050919050565b6000602082019050818103600083015261335181613315565b9050919050565b600081905092915050565b600061336e82612557565b6133788185613358565b9350613388818560208601612573565b80840191505092915050565b60008190508160005260206000209050919050565b600081546133b681612b64565b6133c08186613358565b945060018216600081146133db57600181146133ec5761341f565b60ff1983168652818601935061341f565b6133f585613394565b60005b83811015613417578154818901526001820191506020810190506133f8565b838801955050505b50505092915050565b60006134348286613363565b91506134408285613363565b915061344c82846133a9565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134b5602683612562565b91506134c082613459565b604082019050919050565b600060208201905081810360008301526134e4816134a8565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613547602583612562565b9150613552826134eb565b604082019050919050565b600060208201905081810360008301526135768161353a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135d9602483612562565b91506135e48261357d565b604082019050919050565b60006020820190508181036000830152613608816135cc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613645602083612562565b91506136508261360f565b602082019050919050565b6000602082019050818103600083015261367481613638565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006136b1601983612562565b91506136bc8261367b565b602082019050919050565b600060208201905081810360008301526136e0816136a4565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613743603283612562565b915061374e826136e7565b604082019050919050565b6000602082019050818103600083015261377281613736565b9050919050565b600061378482612612565b915061378f83612612565b9250828210156137a2576137a1612e4a565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b60006137d4826137ad565b6137de81856137b8565b93506137ee818560208601612573565b6137f7816125a6565b840191505092915050565b600060808201905061381760008301876126a7565b61382460208301866126a7565b613831604083018561273d565b818103606083015261384381846137c9565b905095945050505050565b60008151905061385d816124c8565b92915050565b60006020828403121561387957613878612492565b5b60006138878482850161384e565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006138c6602083612562565b91506138d182613890565b602082019050919050565b600060208201905081810360008301526138f5816138b9565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613932601c83612562565b915061393d826138fc565b602082019050919050565b6000602082019050818103600083015261396181613925565b905091905056fea2646970667358221220072e87f77b64a8e922fbc856ae1513f44a081febcc2f8c9966b607cbf0909f4764736f6c63430008090033697066733a2f2f626166796265696277346765716264346b7162323367706c747a3571646d7233636a377a68673678766b6d647363736c3477366c777169787366712f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638ecad721116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105a6578063e985e9c5146105e3578063f2fde38b14610620578063f47c84c514610649576101b7565b8063a22cb46514610529578063b88d4fde14610552578063c66828621461057b576101b7565b80639abc8320116100c65780639abc83201461048e578063a035b1fe146104b9578063a0712d68146104e4578063a0bcfc7f14610500576101b7565b80638ecad7211461040f57806391b7f5ed1461043a57806395d89b4114610463576101b7565b806342842e0e1161015957806370a082311161013357806370a0823114610386578063715018a6146103c3578063853828b6146103da5780638da5cb5b146103e4576101b7565b806342842e0e146102f5578063564566a81461031e5780636352211e14610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806334918dfd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906124f4565b610674565b6040516101f0919061253c565b60405180910390f35b34801561020557600080fd5b5061020e610756565b60405161021b91906125f0565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612648565b6107e8565b60405161025891906126b6565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906126fd565b61082e565b005b34801561029657600080fd5b5061029f610946565b6040516102ac919061274c565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612767565b61094c565b005b3480156102ea57600080fd5b506102f36109ac565b005b34801561030157600080fd5b5061031c60048036038101906103179190612767565b6109e0565b005b34801561032a57600080fd5b50610333610a00565b604051610340919061253c565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190612648565b610a13565b60405161037d91906126b6565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a891906127ba565b610a9a565b6040516103ba919061274c565b60405180910390f35b3480156103cf57600080fd5b506103d8610b52565b005b6103e2610b66565b005b3480156103f057600080fd5b506103f9610c54565b60405161040691906126b6565b60405180910390f35b34801561041b57600080fd5b50610424610c7e565b604051610431919061274c565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612648565b610c83565b005b34801561046f57600080fd5b50610478610c95565b60405161048591906125f0565b60405180910390f35b34801561049a57600080fd5b506104a3610d27565b6040516104b091906125f0565b60405180910390f35b3480156104c557600080fd5b506104ce610db5565b6040516104db919061274c565b60405180910390f35b6104fe60048036038101906104f99190612648565b610dbb565b005b34801561050c57600080fd5b506105276004803603810190610522919061291c565b61102b565b005b34801561053557600080fd5b50610550600480360381019061054b9190612991565b61104d565b005b34801561055e57600080fd5b5061057960048036038101906105749190612a72565b611063565b005b34801561058757600080fd5b506105906110c5565b60405161059d91906125f0565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190612648565b611153565b6040516105da91906125f0565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190612af5565b6111fd565b604051610617919061253c565b60405180910390f35b34801561062c57600080fd5b50610647600480360381019061064291906127ba565b611291565b005b34801561065557600080fd5b5061065e611315565b60405161066b919061274c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e8261133e565b5b9050919050565b60606000805461076590612b64565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612b64565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f3826113a8565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083982610a13565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a190612c08565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c96113f3565b73ffffffffffffffffffffffffffffffffffffffff1614806108f857506108f7816108f26113f3565b6111fd565b5b610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90612c9a565b60405180910390fd5b61094183836113fb565b505050565b60095481565b61095d6109576113f3565b826114b4565b61099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390612d2c565b60405180910390fd5b6109a7838383611549565b505050565b6109b4611843565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6109fb83838360405180602001604052806000815250611063565b505050565b600860009054906101000a900460ff1681565b600080610a1f836118c1565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890612d98565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290612e2a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b5a611843565b610b6460006118fe565b565b610b6e611843565b6000479050600060648083610b839190612e79565b610b8d9190612f02565b90506000737534c9ef0c8aa2c5a42548ca5a18fee6a089e36e73ffffffffffffffffffffffffffffffffffffffff1682604051610bc990612f64565b60006040518083038185875af1925050503d8060008114610c06576040519150601f19603f3d011682016040523d82523d6000602084013e610c0b565b606091505b5050905080610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690612fc5565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a81565b610c8b611843565b8060078190555050565b606060018054610ca490612b64565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd090612b64565b8015610d1d5780601f10610cf257610100808354040283529160200191610d1d565b820191906000526020600020905b815481529060010190602001808311610d0057829003601f168201915b5050505050905090565b600b8054610d3490612b64565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6090612b64565b8015610dad5780601f10610d8257610100808354040283529160200191610dad565b820191906000526020600020905b815481529060010190602001808311610d9057829003601f168201915b505050505081565b60075481565b600860009054906101000a900460ff16610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190613031565b60405180910390fd5b600a811115610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e45906130c3565b60405180910390fd5b600a81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e9b91906130e3565b1115610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390613185565b60405180910390fd5b6000600954905061014d8282610ef291906130e3565b1115610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a906131f1565b60405180910390fd5b3460075483610f429190612e79565b1115610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a9061325d565b60405180910390fd5b6000600190505b828111610fb757610fa6338284610fa191906130e3565b6119c4565b80610fb09061327d565b9050610f8a565b5081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461100791906130e3565b92505081905550816009600082825461102091906130e3565b925050819055505050565b611033611843565b80600b90805190602001906110499291906123e5565b5050565b61105f6110586113f3565b83836119e2565b5050565b61107461106e6113f3565b836114b4565b6110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90612d2c565b60405180910390fd5b6110bf84848484611b4f565b50505050565b600c80546110d290612b64565b80601f01602080910402602001604051908101604052809291908181526020018280546110fe90612b64565b801561114b5780601f106111205761010080835404028352916020019161114b565b820191906000526020600020905b81548152906001019060200180831161112e57829003601f168201915b505050505081565b606061115e82611bab565b61119d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119490613338565b60405180910390fd5b60006111a7611bec565b905060008151116111c757604051806020016040528060008152506111f5565b806111d184611c7e565b600c6040516020016111e593929190613428565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611299611843565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611300906134cb565b60405180910390fd5b611312816118fe565b50565b61014d81565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6113b181611bab565b6113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790612d98565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661146e83610a13565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806114c083610a13565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611502575061150181856111fd565b5b8061154057508373ffffffffffffffffffffffffffffffffffffffff16611528846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661156982610a13565b73ffffffffffffffffffffffffffffffffffffffff16146115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b69061355d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611626906135ef565b60405180910390fd5b61163c8383836001611d56565b8273ffffffffffffffffffffffffffffffffffffffff1661165c82610a13565b73ffffffffffffffffffffffffffffffffffffffff16146116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a99061355d565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461183e8383836001611e7c565b505050565b61184b6113f3565b73ffffffffffffffffffffffffffffffffffffffff16611869610c54565b73ffffffffffffffffffffffffffffffffffffffff16146118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b69061365b565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119de828260405180602001604052806000815250611e82565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a48906136c7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b42919061253c565b60405180910390a3505050565b611b5a848484611549565b611b6684848484611edd565b611ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9c90613759565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611bcd836118c1565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611bfb90612b64565b80601f0160208091040260200160405190810160405280929190818152602001828054611c2790612b64565b8015611c745780601f10611c4957610100808354040283529160200191611c74565b820191906000526020600020905b815481529060010190602001808311611c5757829003601f168201915b5050505050905090565b606060006001611c8d84612074565b01905060008167ffffffffffffffff811115611cac57611cab6127f1565b5b6040519080825280601f01601f191660200182016040528015611cde5781602001600182028036833780820191505090505b509050600082602001820190505b600115611d4b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d3557611d34612ed3565b5b0494506000851415611d4657611d4b565b611cec565b819350505050919050565b6001811115611e7657600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611dea5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611de29190613779565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e755780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e6d91906130e3565b925050819055505b5b50505050565b50505050565b611e8c83836121c7565b611e996000848484611edd565b611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf90613759565b60405180910390fd5b505050565b6000611efe8473ffffffffffffffffffffffffffffffffffffffff1661131b565b15612067578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f276113f3565b8786866040518563ffffffff1660e01b8152600401611f499493929190613802565b602060405180830381600087803b158015611f6357600080fd5b505af1925050508015611f9457506040513d601f19601f82011682018060405250810190611f919190613863565b60015b612017573d8060008114611fc4576040519150601f19603f3d011682016040523d82523d6000602084013e611fc9565b606091505b5060008151141561200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690613759565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061206c565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120d2577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120c8576120c7612ed3565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061210f576d04ee2d6d415b85acef8100000000838161210557612104612ed3565b5b0492506020810190505b662386f26fc10000831061213e57662386f26fc10000838161213457612133612ed3565b5b0492506010810190505b6305f5e1008310612167576305f5e100838161215d5761215c612ed3565b5b0492506008810190505b612710831061218c57612710838161218257612181612ed3565b5b0492506004810190505b606483106121af57606483816121a5576121a4612ed3565b5b0492506002810190505b600a83106121be576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222e906138dc565b60405180910390fd5b61224081611bab565b15612280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227790613948565b60405180910390fd5b61228e600083836001611d56565b61229781611bab565b156122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ce90613948565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123e1600083836001611e7c565b5050565b8280546123f190612b64565b90600052602060002090601f016020900481019282612413576000855561245a565b82601f1061242c57805160ff191683800117855561245a565b8280016001018555821561245a579182015b8281111561245957825182559160200191906001019061243e565b5b509050612467919061246b565b5090565b5b8082111561248457600081600090555060010161246c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124d18161249c565b81146124dc57600080fd5b50565b6000813590506124ee816124c8565b92915050565b60006020828403121561250a57612509612492565b5b6000612518848285016124df565b91505092915050565b60008115159050919050565b61253681612521565b82525050565b6000602082019050612551600083018461252d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612591578082015181840152602081019050612576565b838111156125a0576000848401525b50505050565b6000601f19601f8301169050919050565b60006125c282612557565b6125cc8185612562565b93506125dc818560208601612573565b6125e5816125a6565b840191505092915050565b6000602082019050818103600083015261260a81846125b7565b905092915050565b6000819050919050565b61262581612612565b811461263057600080fd5b50565b6000813590506126428161261c565b92915050565b60006020828403121561265e5761265d612492565b5b600061266c84828501612633565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126a082612675565b9050919050565b6126b081612695565b82525050565b60006020820190506126cb60008301846126a7565b92915050565b6126da81612695565b81146126e557600080fd5b50565b6000813590506126f7816126d1565b92915050565b6000806040838503121561271457612713612492565b5b6000612722858286016126e8565b925050602061273385828601612633565b9150509250929050565b61274681612612565b82525050565b6000602082019050612761600083018461273d565b92915050565b6000806000606084860312156127805761277f612492565b5b600061278e868287016126e8565b935050602061279f868287016126e8565b92505060406127b086828701612633565b9150509250925092565b6000602082840312156127d0576127cf612492565b5b60006127de848285016126e8565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612829826125a6565b810181811067ffffffffffffffff82111715612848576128476127f1565b5b80604052505050565b600061285b612488565b90506128678282612820565b919050565b600067ffffffffffffffff821115612887576128866127f1565b5b612890826125a6565b9050602081019050919050565b82818337600083830152505050565b60006128bf6128ba8461286c565b612851565b9050828152602081018484840111156128db576128da6127ec565b5b6128e684828561289d565b509392505050565b600082601f830112612903576129026127e7565b5b81356129138482602086016128ac565b91505092915050565b60006020828403121561293257612931612492565b5b600082013567ffffffffffffffff8111156129505761294f612497565b5b61295c848285016128ee565b91505092915050565b61296e81612521565b811461297957600080fd5b50565b60008135905061298b81612965565b92915050565b600080604083850312156129a8576129a7612492565b5b60006129b6858286016126e8565b92505060206129c78582860161297c565b9150509250929050565b600067ffffffffffffffff8211156129ec576129eb6127f1565b5b6129f5826125a6565b9050602081019050919050565b6000612a15612a10846129d1565b612851565b905082815260208101848484011115612a3157612a306127ec565b5b612a3c84828561289d565b509392505050565b600082601f830112612a5957612a586127e7565b5b8135612a69848260208601612a02565b91505092915050565b60008060008060808587031215612a8c57612a8b612492565b5b6000612a9a878288016126e8565b9450506020612aab878288016126e8565b9350506040612abc87828801612633565b925050606085013567ffffffffffffffff811115612add57612adc612497565b5b612ae987828801612a44565b91505092959194509250565b60008060408385031215612b0c57612b0b612492565b5b6000612b1a858286016126e8565b9250506020612b2b858286016126e8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b7c57607f821691505b60208210811415612b9057612b8f612b35565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bf2602183612562565b9150612bfd82612b96565b604082019050919050565b60006020820190508181036000830152612c2181612be5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612c84603d83612562565b9150612c8f82612c28565b604082019050919050565b60006020820190508181036000830152612cb381612c77565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612d16602d83612562565b9150612d2182612cba565b604082019050919050565b60006020820190508181036000830152612d4581612d09565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612d82601883612562565b9150612d8d82612d4c565b602082019050919050565b60006020820190508181036000830152612db181612d75565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612e14602983612562565b9150612e1f82612db8565b604082019050919050565b60006020820190508181036000830152612e4381612e07565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e8482612612565b9150612e8f83612612565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ec857612ec7612e4a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f0d82612612565b9150612f1883612612565b925082612f2857612f27612ed3565b5b828204905092915050565b600081905092915050565b50565b6000612f4e600083612f33565b9150612f5982612f3e565b600082019050919050565b6000612f6f82612f41565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612faf601083612562565b9150612fba82612f79565b602082019050919050565b60006020820190508181036000830152612fde81612fa2565b9050919050565b7f5468652073616c65206973207061757365642e00000000000000000000000000600082015250565b600061301b601383612562565b915061302682612fe5565b602082019050919050565b6000602082019050818103600083015261304a8161300e565b9050919050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b60006130ad602d83612562565b91506130b882613051565b604082019050919050565b600060208201905081810360008301526130dc816130a0565b9050919050565b60006130ee82612612565b91506130f983612612565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561312e5761312d612e4a565b5b828201905092915050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920746f74616c2e600082015250565b600061316f602083612562565b915061317a82613139565b602082019050919050565b6000602082019050818103600083015261319e81613162565b9050919050565b7f4578636565647320746f74616c20737570706c792e0000000000000000000000600082015250565b60006131db601583612562565b91506131e6826131a5565b602082019050919050565b6000602082019050818103600083015261320a816131ce565b9050919050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b6000613247601383612562565b915061325282613211565b602082019050919050565b600060208201905081810360008301526132768161323a565b9050919050565b600061328882612612565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132bb576132ba612e4a565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613322602f83612562565b915061332d826132c6565b604082019050919050565b6000602082019050818103600083015261335181613315565b9050919050565b600081905092915050565b600061336e82612557565b6133788185613358565b9350613388818560208601612573565b80840191505092915050565b60008190508160005260206000209050919050565b600081546133b681612b64565b6133c08186613358565b945060018216600081146133db57600181146133ec5761341f565b60ff1983168652818601935061341f565b6133f585613394565b60005b83811015613417578154818901526001820191506020810190506133f8565b838801955050505b50505092915050565b60006134348286613363565b91506134408285613363565b915061344c82846133a9565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134b5602683612562565b91506134c082613459565b604082019050919050565b600060208201905081810360008301526134e4816134a8565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613547602583612562565b9150613552826134eb565b604082019050919050565b600060208201905081810360008301526135768161353a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135d9602483612562565b91506135e48261357d565b604082019050919050565b60006020820190508181036000830152613608816135cc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613645602083612562565b91506136508261360f565b602082019050919050565b6000602082019050818103600083015261367481613638565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006136b1601983612562565b91506136bc8261367b565b602082019050919050565b600060208201905081810360008301526136e0816136a4565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613743603283612562565b915061374e826136e7565b604082019050919050565b6000602082019050818103600083015261377281613736565b9050919050565b600061378482612612565b915061378f83612612565b9250828210156137a2576137a1612e4a565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b60006137d4826137ad565b6137de81856137b8565b93506137ee818560208601612573565b6137f7816125a6565b840191505092915050565b600060808201905061381760008301876126a7565b61382460208301866126a7565b613831604083018561273d565b818103606083015261384381846137c9565b905095945050505050565b60008151905061385d816124c8565b92915050565b60006020828403121561387957613878612492565b5b60006138878482850161384e565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006138c6602083612562565b91506138d182613890565b602082019050919050565b600060208201905081810360008301526138f5816138b9565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613932601c83612562565b915061393d826138fc565b602082019050919050565b6000602082019050818103600083015261396181613925565b905091905056fea2646970667358221220072e87f77b64a8e922fbc856ae1513f44a081febcc2f8c9966b607cbf0909f4764736f6c63430008090033

Deployed Bytecode Sourcemap

54458:2723:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35844:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36772:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38284:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37802:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54753:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38984:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56030:91;;;;;;;;;;;;;:::i;:::-;;39390:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54722:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36482:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36213:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53567:103;;;;;;;;;;;;;:::i;:::-;;56331:325;;;:::i;:::-;;52919:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54666:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56237:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36941:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54846:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54623:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55250:743;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56129:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38527:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39646:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54874:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56664:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38753:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53825:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54531:37;;;;;;;;;;;;;:::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;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;54753:26::-;;;;:::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;56030:91::-;52805:13;:11;:13::i;:::-;56101:12:::1;;;;;;;;;;;56100:13;56085:12;;:28;;;;;;;;;;;;;;;;;;56030:91::o:0;39390:185::-;39528:39;39545:4;39551:2;39555:7;39528:39;;;;;;;;;;;;:16;:39::i;:::-;39390:185;;;:::o;54722:24::-;;;;;;;;;;;;;:::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;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;53567:103::-;52805:13;:11;:13::i;:::-;53632:30:::1;53659:1;53632:18;:30::i;:::-;53567:103::o:0;56331:325::-;52805:13;:11;:13::i;:::-;56392:15:::1;56410:21;56392:39;;56442:18;56479:3;56473::::0;56463:7:::1;:13;;;;:::i;:::-;:19;;;;:::i;:::-;56442:40;;56495:16;56525:42;56517:56;;56581:10;56517:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56493:103;;;56615:11;56607:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;56381:275;;;56331:325::o:0;52919:87::-;52965:7;52992:6;;;;;;;;;;;52985:13;;52919:87;:::o;54666:44::-;54708:2;54666:44;:::o;56237:86::-;52805:13;:11;:13::i;:::-;56309:6:::1;56301:5;:14;;;;56237:86:::0;:::o;36941:104::-;36997:13;37030:7;37023:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36941:104;:::o;54846:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54623:36::-;;;;:::o;55250:743::-;55320:12;;;;;;;;;;;55312:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;54708:2;55375:10;:29;;55367:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;54708:2;55503:10;55473:15;:27;55489:10;55473:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:59;;55465:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;55580:22;55605:11;;55580:36;;54565:3;55652:10;55635:14;:27;;;;:::i;:::-;:41;;55627:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;55743:9;55734:5;;55721:10;:18;;;;:::i;:::-;:31;;55713:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;55793:9;55805:1;55793:13;;55789:109;55813:10;55808:1;:15;55789:109;;55845:41;55855:10;55884:1;55867:14;:18;;;;:::i;:::-;55845:9;:41::i;:::-;55825:3;;;;:::i;:::-;;;55789:109;;;;55939:10;55908:15;:27;55924:10;55908:27;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;55975:10;55960:11;;:25;;;;;;;:::i;:::-;;;;;;;;55301:692;55250:743;:::o;56129:100::-;52805:13;:11;:13::i;:::-;56213:8:::1;56203:7;:18;;;;;;;;;;;;:::i;:::-;;56129:100:::0;:::o;38527:155::-;38622:52;38641:12;:10;:12::i;:::-;38655:8;38665;38622:18;:52::i;:::-;38527:155;;:::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;54874:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56664:397::-;56737:13;56771:16;56779:7;56771;:16::i;:::-;56763:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;56853:28;56884:10;:8;:10::i;:::-;56853:41;;56943:1;56918:14;56912:28;:32;:141;;;;;;;;;;;;;;;;;56984:14;57000:18;:7;:16;:18::i;:::-;57020:13;56967:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56912:141;56905:148;;;56664:397;;;:::o;38753:164::-;38850:4;38874:18;:25;38893:5;38874:25;;;;;;;;;;;;;;;:35;38900:8;38874:35;;;;;;;;;;;;;;;;;;;;;;;;;38867:42;;38753:164;;;;:::o;53825:201::-;52805:13;:11;:13::i;:::-;53934:1:::1;53914:22;;:8;:22;;;;53906:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;53990:28;54009:8;53990:18;:28::i;:::-;53825:201:::0;:::o;54531:37::-;54565:3;54531:37;:::o;16432:326::-;16492:4;16749:1;16727:7;:19;;;:23;16720:30;;16432:326;;;:::o;27463:157::-;27548:4;27587:25;27572:40;;;:11;:40;;;;27565:47;;27463:157;;;:::o;48103:135::-;48185:16;48193:7;48185;:16::i;:::-;48177:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;48103:135;:::o;34223:98::-;34276:7;34303:10;34296:17;;34223: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;53084:132::-;53159:12;:10;:12::i;:::-;53148:23;;:7;:5;:7::i;:::-;:23;;;53140:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53084:132::o;41276:117::-;41342:7;41369;:16;41377:7;41369:16;;;;;;;;;;;;;;;;;;;;;41362:23;;41276:117;;;:::o;54186:191::-;54260:16;54279:6;;;;;;;;;;;54260:25;;54305:8;54296:6;;:17;;;;;;;;;;;;;;;;;;54360:8;54329:40;;54350:8;54329:40;;;;;;;;;;;;54249:128;54186:191;:::o;42607:110::-;42683:26;42693:2;42697:7;42683:26;;;;;;;;;;;;:9;:26::i;:::-;42607:110;;:::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;41706:128::-;41771:4;41824:1;41795:31;;:17;41804:7;41795:8;:17::i;:::-;:31;;;;41788:38;;41706:128;;;:::o;57070:108::-;57130:13;57163:7;57156:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57070:108;:::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;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;42944:319::-;43073:18;43079:2;43083:7;43073:5;:18::i;:::-;43124:53;43155:1;43159:2;43163:7;43172:4;43124:22;:53::i;:::-;43102:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;42944:319;;;:::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;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;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:220::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:3;12837:2;12829:6;12825:15;12818:28;12633:220;:::o;12859:366::-;13001:3;13022:67;13086:2;13081:3;13022:67;:::i;:::-;13015:74;;13098:93;13187:3;13098:93;:::i;:::-;13216:2;13211:3;13207:12;13200:19;;12859:366;;;:::o;13231:419::-;13397:4;13435:2;13424:9;13420:18;13412:26;;13484:9;13478:4;13474:20;13470:1;13459:9;13455:17;13448:47;13512:131;13638:4;13512:131;:::i;:::-;13504:139;;13231:419;;;:::o;13656:248::-;13796:34;13792:1;13784:6;13780:14;13773:58;13865:31;13860:2;13852:6;13848:15;13841:56;13656:248;:::o;13910:366::-;14052:3;14073:67;14137:2;14132:3;14073:67;:::i;:::-;14066:74;;14149:93;14238:3;14149:93;:::i;:::-;14267:2;14262:3;14258:12;14251:19;;13910:366;;;:::o;14282:419::-;14448:4;14486:2;14475:9;14471:18;14463:26;;14535:9;14529:4;14525:20;14521:1;14510:9;14506:17;14499:47;14563:131;14689:4;14563:131;:::i;:::-;14555:139;;14282:419;;;:::o;14707:232::-;14847:34;14843:1;14835:6;14831:14;14824:58;14916:15;14911:2;14903:6;14899:15;14892:40;14707:232;:::o;14945:366::-;15087:3;15108:67;15172:2;15167:3;15108:67;:::i;:::-;15101:74;;15184:93;15273:3;15184:93;:::i;:::-;15302:2;15297:3;15293:12;15286:19;;14945:366;;;:::o;15317:419::-;15483:4;15521:2;15510:9;15506:18;15498:26;;15570:9;15564:4;15560:20;15556:1;15545:9;15541:17;15534:47;15598:131;15724:4;15598:131;:::i;:::-;15590:139;;15317:419;;;:::o;15742:174::-;15882:26;15878:1;15870:6;15866:14;15859:50;15742:174;:::o;15922:366::-;16064:3;16085:67;16149:2;16144:3;16085:67;:::i;:::-;16078:74;;16161:93;16250:3;16161:93;:::i;:::-;16279:2;16274:3;16270:12;16263:19;;15922:366;;;:::o;16294:419::-;16460:4;16498:2;16487:9;16483:18;16475:26;;16547:9;16541:4;16537:20;16533:1;16522:9;16518:17;16511:47;16575:131;16701:4;16575:131;:::i;:::-;16567:139;;16294:419;;;:::o;16719:228::-;16859:34;16855:1;16847:6;16843:14;16836:58;16928:11;16923:2;16915:6;16911:15;16904:36;16719:228;:::o;16953:366::-;17095:3;17116:67;17180:2;17175:3;17116:67;:::i;:::-;17109:74;;17192:93;17281:3;17192:93;:::i;:::-;17310:2;17305:3;17301:12;17294:19;;16953:366;;;:::o;17325:419::-;17491:4;17529:2;17518:9;17514:18;17506:26;;17578:9;17572:4;17568:20;17564:1;17553:9;17549:17;17542:47;17606:131;17732:4;17606:131;:::i;:::-;17598:139;;17325:419;;;:::o;17750:180::-;17798:77;17795:1;17788:88;17895:4;17892:1;17885:15;17919:4;17916:1;17909:15;17936:348;17976:7;17999:20;18017:1;17999:20;:::i;:::-;17994:25;;18033:20;18051:1;18033:20;:::i;:::-;18028:25;;18221:1;18153:66;18149:74;18146:1;18143:81;18138:1;18131:9;18124:17;18120:105;18117:131;;;18228:18;;:::i;:::-;18117:131;18276:1;18273;18269:9;18258:20;;17936:348;;;;:::o;18290:180::-;18338:77;18335:1;18328:88;18435:4;18432:1;18425:15;18459:4;18456:1;18449:15;18476:185;18516:1;18533:20;18551:1;18533:20;:::i;:::-;18528:25;;18567:20;18585:1;18567:20;:::i;:::-;18562:25;;18606:1;18596:35;;18611:18;;:::i;:::-;18596:35;18653:1;18650;18646:9;18641:14;;18476:185;;;;:::o;18667:147::-;18768:11;18805:3;18790:18;;18667:147;;;;:::o;18820:114::-;;:::o;18940:398::-;19099:3;19120:83;19201:1;19196:3;19120:83;:::i;:::-;19113:90;;19212:93;19301:3;19212:93;:::i;:::-;19330:1;19325:3;19321:11;19314:18;;18940:398;;;:::o;19344:379::-;19528:3;19550:147;19693:3;19550:147;:::i;:::-;19543:154;;19714:3;19707:10;;19344:379;;;:::o;19729:166::-;19869:18;19865:1;19857:6;19853:14;19846:42;19729:166;:::o;19901:366::-;20043:3;20064:67;20128:2;20123:3;20064:67;:::i;:::-;20057:74;;20140:93;20229:3;20140:93;:::i;:::-;20258:2;20253:3;20249:12;20242:19;;19901:366;;;:::o;20273:419::-;20439:4;20477:2;20466:9;20462:18;20454:26;;20526:9;20520:4;20516:20;20512:1;20501:9;20497:17;20490:47;20554:131;20680:4;20554:131;:::i;:::-;20546:139;;20273:419;;;:::o;20698:169::-;20838:21;20834:1;20826:6;20822:14;20815:45;20698:169;:::o;20873:366::-;21015:3;21036:67;21100:2;21095:3;21036:67;:::i;:::-;21029:74;;21112:93;21201:3;21112:93;:::i;:::-;21230:2;21225:3;21221:12;21214:19;;20873:366;;;:::o;21245:419::-;21411:4;21449:2;21438:9;21434:18;21426:26;;21498:9;21492:4;21488:20;21484:1;21473:9;21469:17;21462:47;21526:131;21652:4;21526:131;:::i;:::-;21518:139;;21245:419;;;:::o;21670:232::-;21810:34;21806:1;21798:6;21794:14;21787:58;21879:15;21874:2;21866:6;21862:15;21855:40;21670:232;:::o;21908:366::-;22050:3;22071:67;22135:2;22130:3;22071:67;:::i;:::-;22064:74;;22147:93;22236:3;22147:93;:::i;:::-;22265:2;22260:3;22256:12;22249:19;;21908:366;;;:::o;22280:419::-;22446:4;22484:2;22473:9;22469:18;22461:26;;22533:9;22527:4;22523:20;22519:1;22508:9;22504:17;22497:47;22561:131;22687:4;22561:131;:::i;:::-;22553:139;;22280:419;;;:::o;22705:305::-;22745:3;22764:20;22782:1;22764:20;:::i;:::-;22759:25;;22798:20;22816:1;22798:20;:::i;:::-;22793:25;;22952:1;22884:66;22880:74;22877:1;22874:81;22871:107;;;22958:18;;:::i;:::-;22871:107;23002:1;22999;22995:9;22988:16;;22705:305;;;;:::o;23016:182::-;23156:34;23152:1;23144:6;23140:14;23133:58;23016:182;:::o;23204:366::-;23346:3;23367:67;23431:2;23426:3;23367:67;:::i;:::-;23360:74;;23443:93;23532:3;23443:93;:::i;:::-;23561:2;23556:3;23552:12;23545:19;;23204:366;;;:::o;23576:419::-;23742:4;23780:2;23769:9;23765:18;23757:26;;23829:9;23823:4;23819:20;23815:1;23804:9;23800:17;23793:47;23857:131;23983:4;23857:131;:::i;:::-;23849:139;;23576:419;;;:::o;24001:171::-;24141:23;24137:1;24129:6;24125:14;24118:47;24001:171;:::o;24178:366::-;24320:3;24341:67;24405:2;24400:3;24341:67;:::i;:::-;24334:74;;24417:93;24506:3;24417:93;:::i;:::-;24535:2;24530:3;24526:12;24519:19;;24178:366;;;:::o;24550:419::-;24716:4;24754:2;24743:9;24739:18;24731:26;;24803:9;24797:4;24793:20;24789:1;24778:9;24774:17;24767:47;24831:131;24957:4;24831:131;:::i;:::-;24823:139;;24550:419;;;:::o;24975:169::-;25115:21;25111:1;25103:6;25099:14;25092:45;24975:169;:::o;25150:366::-;25292:3;25313:67;25377:2;25372:3;25313:67;:::i;:::-;25306:74;;25389:93;25478:3;25389:93;:::i;:::-;25507:2;25502:3;25498:12;25491:19;;25150:366;;;:::o;25522:419::-;25688:4;25726:2;25715:9;25711:18;25703:26;;25775:9;25769:4;25765:20;25761:1;25750:9;25746:17;25739:47;25803:131;25929:4;25803:131;:::i;:::-;25795:139;;25522:419;;;:::o;25947:233::-;25986:3;26009:24;26027:5;26009:24;:::i;:::-;26000:33;;26055:66;26048:5;26045:77;26042:103;;;26125:18;;:::i;:::-;26042:103;26172:1;26165:5;26161:13;26154:20;;25947:233;;;:::o;26186:234::-;26326:34;26322:1;26314:6;26310:14;26303:58;26395:17;26390:2;26382:6;26378:15;26371:42;26186:234;:::o;26426:366::-;26568:3;26589:67;26653:2;26648:3;26589:67;:::i;:::-;26582:74;;26665:93;26754:3;26665:93;:::i;:::-;26783:2;26778:3;26774:12;26767:19;;26426:366;;;:::o;26798:419::-;26964:4;27002:2;26991:9;26987:18;26979:26;;27051:9;27045:4;27041:20;27037:1;27026:9;27022:17;27015:47;27079:131;27205:4;27079:131;:::i;:::-;27071:139;;26798:419;;;:::o;27223:148::-;27325:11;27362:3;27347:18;;27223:148;;;;:::o;27377:377::-;27483:3;27511:39;27544:5;27511:39;:::i;:::-;27566:89;27648:6;27643:3;27566:89;:::i;:::-;27559:96;;27664:52;27709:6;27704:3;27697:4;27690:5;27686:16;27664:52;:::i;:::-;27741:6;27736:3;27732:16;27725:23;;27487:267;27377:377;;;;:::o;27760:141::-;27809:4;27832:3;27824:11;;27855:3;27852:1;27845:14;27889:4;27886:1;27876:18;27868:26;;27760:141;;;:::o;27931:845::-;28034:3;28071:5;28065:12;28100:36;28126:9;28100:36;:::i;:::-;28152:89;28234:6;28229:3;28152:89;:::i;:::-;28145:96;;28272:1;28261:9;28257:17;28288:1;28283:137;;;;28434:1;28429:341;;;;28250:520;;28283:137;28367:4;28363:9;28352;28348:25;28343:3;28336:38;28403:6;28398:3;28394:16;28387:23;;28283:137;;28429:341;28496:38;28528:5;28496:38;:::i;:::-;28556:1;28570:154;28584:6;28581:1;28578:13;28570:154;;;28658:7;28652:14;28648:1;28643:3;28639:11;28632:35;28708:1;28699:7;28695:15;28684:26;;28606:4;28603:1;28599:12;28594:17;;28570:154;;;28753:6;28748:3;28744:16;28737:23;;28436:334;;28250:520;;28038:738;;27931:845;;;;:::o;28782:589::-;29007:3;29029:95;29120:3;29111:6;29029:95;:::i;:::-;29022:102;;29141:95;29232:3;29223:6;29141:95;:::i;:::-;29134:102;;29253:92;29341:3;29332:6;29253:92;:::i;:::-;29246:99;;29362:3;29355:10;;28782:589;;;;;;:::o;29377:225::-;29517:34;29513:1;29505:6;29501:14;29494:58;29586:8;29581:2;29573:6;29569:15;29562:33;29377:225;:::o;29608:366::-;29750:3;29771:67;29835:2;29830:3;29771:67;:::i;:::-;29764:74;;29847:93;29936:3;29847:93;:::i;:::-;29965:2;29960:3;29956:12;29949:19;;29608:366;;;:::o;29980:419::-;30146:4;30184:2;30173:9;30169:18;30161:26;;30233:9;30227:4;30223:20;30219:1;30208:9;30204:17;30197:47;30261:131;30387:4;30261:131;:::i;:::-;30253:139;;29980:419;;;:::o;30405:224::-;30545:34;30541:1;30533:6;30529:14;30522:58;30614:7;30609:2;30601:6;30597:15;30590:32;30405:224;:::o;30635:366::-;30777:3;30798:67;30862:2;30857:3;30798:67;:::i;:::-;30791:74;;30874:93;30963:3;30874:93;:::i;:::-;30992:2;30987:3;30983:12;30976:19;;30635:366;;;:::o;31007:419::-;31173:4;31211:2;31200:9;31196:18;31188:26;;31260:9;31254:4;31250:20;31246:1;31235:9;31231:17;31224:47;31288:131;31414:4;31288:131;:::i;:::-;31280:139;;31007:419;;;:::o;31432:223::-;31572:34;31568:1;31560:6;31556:14;31549:58;31641:6;31636:2;31628:6;31624:15;31617:31;31432:223;:::o;31661:366::-;31803:3;31824:67;31888:2;31883:3;31824:67;:::i;:::-;31817:74;;31900:93;31989:3;31900:93;:::i;:::-;32018:2;32013:3;32009:12;32002:19;;31661:366;;;:::o;32033:419::-;32199:4;32237:2;32226:9;32222:18;32214:26;;32286:9;32280:4;32276:20;32272:1;32261:9;32257:17;32250:47;32314:131;32440:4;32314:131;:::i;:::-;32306:139;;32033:419;;;:::o;32458:182::-;32598:34;32594:1;32586:6;32582:14;32575:58;32458:182;:::o;32646:366::-;32788:3;32809:67;32873:2;32868:3;32809:67;:::i;:::-;32802:74;;32885:93;32974:3;32885:93;:::i;:::-;33003:2;32998:3;32994:12;32987:19;;32646:366;;;:::o;33018:419::-;33184:4;33222:2;33211:9;33207:18;33199:26;;33271:9;33265:4;33261:20;33257:1;33246:9;33242:17;33235:47;33299:131;33425:4;33299:131;:::i;:::-;33291:139;;33018:419;;;:::o;33443:175::-;33583:27;33579:1;33571:6;33567:14;33560:51;33443:175;:::o;33624:366::-;33766:3;33787:67;33851:2;33846:3;33787:67;:::i;:::-;33780:74;;33863:93;33952:3;33863:93;:::i;:::-;33981:2;33976:3;33972:12;33965:19;;33624:366;;;:::o;33996:419::-;34162:4;34200:2;34189:9;34185:18;34177:26;;34249:9;34243:4;34239:20;34235:1;34224:9;34220:17;34213:47;34277:131;34403:4;34277:131;:::i;:::-;34269:139;;33996:419;;;:::o;34421:237::-;34561:34;34557:1;34549:6;34545:14;34538:58;34630:20;34625:2;34617:6;34613:15;34606:45;34421:237;:::o;34664:366::-;34806:3;34827:67;34891:2;34886:3;34827:67;:::i;:::-;34820:74;;34903:93;34992:3;34903:93;:::i;:::-;35021:2;35016:3;35012:12;35005:19;;34664:366;;;:::o;35036:419::-;35202:4;35240:2;35229:9;35225:18;35217:26;;35289:9;35283:4;35279:20;35275:1;35264:9;35260:17;35253:47;35317:131;35443:4;35317:131;:::i;:::-;35309:139;;35036:419;;;:::o;35461:191::-;35501:4;35521:20;35539:1;35521:20;:::i;:::-;35516:25;;35555:20;35573:1;35555:20;:::i;:::-;35550:25;;35594:1;35591;35588:8;35585:34;;;35599:18;;:::i;:::-;35585:34;35644:1;35641;35637:9;35629:17;;35461:191;;;;:::o;35658:98::-;35709:6;35743:5;35737:12;35727:22;;35658:98;;;:::o;35762:168::-;35845:11;35879:6;35874:3;35867:19;35919:4;35914:3;35910:14;35895:29;;35762:168;;;;:::o;35936:360::-;36022:3;36050:38;36082:5;36050:38;:::i;:::-;36104:70;36167:6;36162:3;36104:70;:::i;:::-;36097:77;;36183:52;36228:6;36223:3;36216:4;36209:5;36205:16;36183:52;:::i;:::-;36260:29;36282:6;36260:29;:::i;:::-;36255:3;36251:39;36244:46;;36026:270;35936:360;;;;:::o;36302:640::-;36497:4;36535:3;36524:9;36520:19;36512:27;;36549:71;36617:1;36606:9;36602:17;36593:6;36549:71;:::i;:::-;36630:72;36698:2;36687:9;36683:18;36674:6;36630:72;:::i;:::-;36712;36780:2;36769:9;36765:18;36756:6;36712:72;:::i;:::-;36831:9;36825:4;36821:20;36816:2;36805:9;36801:18;36794:48;36859:76;36930:4;36921:6;36859:76;:::i;:::-;36851:84;;36302:640;;;;;;;:::o;36948:141::-;37004:5;37035:6;37029:13;37020:22;;37051:32;37077:5;37051:32;:::i;:::-;36948:141;;;;:::o;37095:349::-;37164:6;37213:2;37201:9;37192:7;37188:23;37184:32;37181:119;;;37219:79;;:::i;:::-;37181:119;37339:1;37364:63;37419:7;37410:6;37399:9;37395:22;37364:63;:::i;:::-;37354:73;;37310:127;37095:349;;;;:::o;37450:182::-;37590:34;37586:1;37578:6;37574:14;37567:58;37450:182;:::o;37638:366::-;37780:3;37801:67;37865:2;37860:3;37801:67;:::i;:::-;37794:74;;37877:93;37966:3;37877:93;:::i;:::-;37995:2;37990:3;37986:12;37979:19;;37638:366;;;:::o;38010:419::-;38176:4;38214:2;38203:9;38199:18;38191:26;;38263:9;38257:4;38253:20;38249:1;38238:9;38234:17;38227:47;38291:131;38417:4;38291:131;:::i;:::-;38283:139;;38010:419;;;:::o;38435:178::-;38575:30;38571:1;38563:6;38559:14;38552:54;38435:178;:::o;38619:366::-;38761:3;38782:67;38846:2;38841:3;38782:67;:::i;:::-;38775:74;;38858:93;38947:3;38858:93;:::i;:::-;38976:2;38971:3;38967:12;38960:19;;38619:366;;;:::o;38991:419::-;39157:4;39195:2;39184:9;39180:18;39172:26;;39244:9;39238:4;39234:20;39230:1;39219:9;39215:17;39208:47;39272:131;39398:4;39272:131;:::i;:::-;39264:139;;38991:419;;;:::o

Swarm Source

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