ETH Price: $3,311.95 (+1.91%)
Gas: 3 Gwei

Token

Notkamigos (NOTKMGS)
 

Overview

Max Total Supply

3,333 NOTKMGS

Holders

756

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 NOTKMGS
0x8f1ED6A95E2Ee3539baD4A89abed6935AaB08B0c
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:
Notkamigos

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
._____. ._____. .___________________________________________________________. ._____. ._____.
| ._. | | ._. | | ._______________________________________________________. | | ._. | | ._. |
| !_| |_|_|_! | | !_______________________________________________________! | | !_| |_|_|_! |
!___| |_______! !___________________________________________________________! !___| |_______!
.___|_|_| |_______________________________________________________________________|_|_| |___.
| ._____| |___________________________________________________________________________| |_. |
| !_! | | |                                                                       | | ! !_! |
!_____! | |         _   _       _   _                   _                         | | !_____!
._____. | |        | \ | | ___ | |_| | ____ _ _ __ ___ (_) __ _  ___  ___         | | ._____.
| ._. | | |        |  \| |/ _ \| __| |/ / _` | '_ ` _ \| |/ _` |/ _ \/ __|        | | | ._. |
| | | | | |        | |\  | (_) | |_|   < (_| | | | | | | | (_| | (_) \__ \        | | | | | |
| !_! | | |        |_| \_|\___/ \__|_|\_\__,_|_| |_| |_|_|\__, |\___/|___/        | | ! !_! |
!_____! | |                                               |___/                   | | !_____!
._____. | |                                                                       | | ._____.
| ._. | | |                                                                       | | | ._. |
| !_| |_|_|_______________________________________________________________________| |_|_|_! |
!___| |___________________________________________________________________________| |_______!
.___|_|_| |___. .___________________________________________________________. .___|_|_| |___.
| ._____| |_. | | ._______________________________________________________. | | ._____| |_. |
| !_! | | !_! | | !_______________________________________________________! | | !_! | | !_! |
!_____! !_____! !___________________________________________________________! !_____! !_____!
*/

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

// 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/utils/math/Math.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: Notkamigos.sol


pragma solidity >=0.8.9 <0.9.0;







contract Notkamigos is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    
    bool public MintStart = false;
    bool public Metadata;

    uint256 public maxPerWallet = 10;
    uint256 public maxFree = 2;
    uint256 public maxSupply = 10000;
    uint256 public publicPrice = 0.002 ether;
    
    string public _baseURL = "ipfs://QmZkXu27mPMaibcXRxBd77Zd3HTzQ3hK9WW6uUisXeczbw/";
    string public prerevealURL = "";

    mapping(address => uint256) private _walletMintedCount;

    constructor() ERC721A("Notkamigos", "NOTKMGS") {}

    function mintedCount(address owner) external view returns (uint256) {
        return _walletMintedCount[owner];
    }

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

    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    function contractURI() public pure returns (string memory) {
        return "";
    }

    function finalizeMetadata() external onlyOwner {
        Metadata = true;
    }

    function reveal(string memory url) external onlyOwner {
        require(!Metadata, "Metadata is finalized");
        _baseURL = url;
    }

    function withdraw(address payable to, uint256 amount) external onlyOwner nonReentrant {
    require(address(this).balance >= amount, "Insufficient balance");
    require(to != address(0), "Invalid address");
    (bool success, ) = to.call{value: amount}("");
    require(success, "Transfer failed");
}

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    function setPublicPrice(uint256 _price) external onlyOwner {
        publicPrice = _price;
    }

    function MintStartStatus() external onlyOwner {
        MintStart = !MintStart;
    }

    function setMaxSupply(uint256 newMaxSupply) external onlyOwner {
        maxSupply = newMaxSupply;
    }
    function setFree(uint256 newFree) external onlyOwner {
        maxFree = newFree;
    }
    function mint(uint256 count) external payable {
        uint256 minted = _walletMintedCount[msg.sender];
        require(count > 0, "Must use at least one mint");
        require(minted < maxPerWallet, "Max Per wallet");
        uint256 payForCount = count;
        if (minted < maxFree) {if (maxFree - minted > count) {payForCount = 0;} 
        else {payForCount = count - (maxFree - minted);}}
        require(MintStart, "Mint has not started");
        require(_totalMinted() + count <= maxSupply, "Sold out");
        require(msg.value >= payForCount * publicPrice,"Ether value sent is not sufficient");
        _walletMintedCount[msg.sender] += count;
        _safeMint(msg.sender, count);
    }
    function devMint(address to, uint256 count) external onlyOwner {
        require(_totalMinted() + count <= maxSupply, "Sold out");
        _safeMint(to, count);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"Metadata","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintStartStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_baseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalizeMetadata","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":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prerevealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"reveal","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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFree","type":"uint256"}],"name":"setFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicPrice","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff021916908315150217905550600a600b556002600c55612710600d5566071afd498d0000600e5560405180606001604052806036815260200162003db360369139600f9081620000649190620004bb565b506040518060200160405280600081525060109081620000859190620004bb565b503480156200009357600080fd5b506040518060400160405280600a81526020017f4e6f746b616d69676f73000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4e4f544b4d4753000000000000000000000000000000000000000000000000008152508160029081620001119190620004bb565b508060039081620001239190620004bb565b50620001346200016a60201b60201c565b60008190555050506200015c620001506200017360201b60201c565b6200017b60201b60201c565b6001600981905550620005a2565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002c357607f821691505b602082108103620002d957620002d86200027b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003437fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000304565b6200034f868362000304565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200039c62000396620003908462000367565b62000371565b62000367565b9050919050565b6000819050919050565b620003b8836200037b565b620003d0620003c782620003a3565b84845462000311565b825550505050565b600090565b620003e7620003d8565b620003f4818484620003ad565b505050565b5b818110156200041c5762000410600082620003dd565b600181019050620003fa565b5050565b601f8211156200046b576200043581620002df565b6200044084620002f4565b8101602085101562000450578190505b620004686200045f85620002f4565b830182620003f9565b50505b505050565b600082821c905092915050565b6000620004906000198460080262000470565b1980831691505092915050565b6000620004ab83836200047d565b9150826002028217905092915050565b620004c68262000241565b67ffffffffffffffff811115620004e257620004e16200024c565b5b620004ee8254620002aa565b620004fb82828562000420565b600060209050601f8311600181146200053357600084156200051e578287015190505b6200052a85826200049d565b8655506200059a565b601f1984166200054386620002df565b60005b828110156200056d5784890151825560018201915060208501945060208101905062000546565b868310156200058d578489015162000589601f8916826200047d565b8355505b6001600288020188555050505b505050505050565b61380180620005b26000396000f3fe60806040526004361061020f5760003560e01c806395d89b4111610118578063d8210482116100a0578063f2fde38b1161006f578063f2fde38b14610736578063f3fef3a31461075f578063f4a560a514610788578063f9e0edae1461079f578063fddcb5ea146107ca5761020f565b8063d821048214610678578063e3bcfc64146106a3578063e8a3d485146106ce578063e985e9c5146106f95761020f565b8063a945bf80116100e7578063a945bf80146105a0578063b88d4fde146105cb578063c6275255146105e7578063c87b56dd14610610578063d5abeb011461064d5761020f565b806395d89b4114610505578063a0712d6814610530578063a22cb4651461054c578063a5eb6ff2146105755761020f565b80634c2612471161019b5780637040d73f1161016a5780637040d73f1461044657806370a082311461046f578063715018a6146104ac57806374b2eb85146104c35780638da5cb5b146104da5761020f565b80634c2612471461038e578063627804af146103b75780636352211e146103e05780636f8b44b01461041d5761020f565b806318160ddd116101e257806318160ddd146102d557806323b872dd1461030057806342842e0e1461031c578063453c231014610338578063485a68a3146103635761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612561565b610807565b60405161024891906125a9565b60405180910390f35b34801561025d57600080fd5b50610266610899565b6040516102739190612654565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906126ac565b61092b565b6040516102b0919061271a565b60405180910390f35b6102d360048036038101906102ce9190612761565b6109aa565b005b3480156102e157600080fd5b506102ea610aee565b6040516102f791906127b0565b60405180910390f35b61031a600480360381019061031591906127cb565b610b05565b005b610336600480360381019061033191906127cb565b610e27565b005b34801561034457600080fd5b5061034d610e47565b60405161035a91906127b0565b60405180910390f35b34801561036f57600080fd5b50610378610e4d565b60405161038591906127b0565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190612953565b610e53565b005b3480156103c357600080fd5b506103de60048036038101906103d99190612761565b610ebe565b005b3480156103ec57600080fd5b50610407600480360381019061040291906126ac565b610f2b565b604051610414919061271a565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906126ac565b610f3d565b005b34801561045257600080fd5b5061046d600480360381019061046891906126ac565b610f4f565b005b34801561047b57600080fd5b506104966004803603810190610491919061299c565b610f61565b6040516104a391906127b0565b60405180910390f35b3480156104b857600080fd5b506104c1611019565b005b3480156104cf57600080fd5b506104d861102d565b005b3480156104e657600080fd5b506104ef611061565b6040516104fc919061271a565b60405180910390f35b34801561051157600080fd5b5061051a61108b565b6040516105279190612654565b60405180910390f35b61054a600480360381019061054591906126ac565b61111d565b005b34801561055857600080fd5b50610573600480360381019061056e91906129f5565b61138d565b005b34801561058157600080fd5b5061058a611498565b60405161059791906125a9565b60405180910390f35b3480156105ac57600080fd5b506105b56114ab565b6040516105c291906127b0565b60405180910390f35b6105e560048036038101906105e09190612ad6565b6114b1565b005b3480156105f357600080fd5b5061060e600480360381019061060991906126ac565b611524565b005b34801561061c57600080fd5b50610637600480360381019061063291906126ac565b611536565b6040516106449190612654565b60405180910390f35b34801561065957600080fd5b50610662611659565b60405161066f91906127b0565b60405180910390f35b34801561068457600080fd5b5061068d61165f565b60405161069a9190612654565b60405180910390f35b3480156106af57600080fd5b506106b86116ed565b6040516106c591906125a9565b60405180910390f35b3480156106da57600080fd5b506106e3611700565b6040516106f09190612654565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b9190612b59565b611717565b60405161072d91906125a9565b60405180910390f35b34801561074257600080fd5b5061075d6004803603810190610758919061299c565b6117ab565b005b34801561076b57600080fd5b5061078660048036038101906107819190612bd7565b61182e565b005b34801561079457600080fd5b5061079d6119a9565b005b3480156107ab57600080fd5b506107b46119ce565b6040516107c19190612654565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec919061299c565b611a5c565b6040516107fe91906127b0565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108925750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108a890612c46565b80601f01602080910402602001604051908101604052809291908181526020018280546108d490612c46565b80156109215780601f106108f657610100808354040283529160200191610921565b820191906000526020600020905b81548152906001019060200180831161090457829003601f168201915b5050505050905090565b600061093682611aa5565b61096c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b582610f2b565b90508073ffffffffffffffffffffffffffffffffffffffff166109d6611b04565b73ffffffffffffffffffffffffffffffffffffffff1614610a3957610a02816109fd611b04565b611717565b610a38576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610af8611b0c565b6001546000540303905090565b6000610b1082611b15565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b77576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b8384611be1565b91509150610b998187610b94611b04565b611c08565b610be557610bae86610ba9611b04565b611717565b610be4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c4b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c588686866001611c4c565b8015610c6357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d3185610d0d888887611c52565b7c020000000000000000000000000000000000000000000000000000000017611c7a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610db75760006001850190506000600460008381526020019081526020016000205403610db5576000548114610db4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e1f8686866001611ca5565b505050505050565b610e42838383604051806020016040528060008152506114b1565b505050565b600b5481565b600c5481565b610e5b611cab565b600a60019054906101000a900460ff1615610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290612cc3565b60405180910390fd5b80600f9081610eba9190612e8f565b5050565b610ec6611cab565b600d5481610ed2611d29565b610edc9190612f90565b1115610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490613010565b60405180910390fd5b610f278282611d3c565b5050565b6000610f3682611b15565b9050919050565b610f45611cab565b80600d8190555050565b610f57611cab565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611021611cab565b61102b6000611d5a565b565b611035611cab565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461109a90612c46565b80601f01602080910402602001604051908101604052809291908181526020018280546110c690612c46565b80156111135780601f106110e857610100808354040283529160200191611113565b820191906000526020600020905b8154815290600101906020018083116110f657829003601f168201915b5050505050905090565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082116111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b9061307c565b60405180910390fd5b600b5481106111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df906130e8565b60405180910390fd5b6000829050600c54821015611232578282600c546112069190613108565b11156112155760009050611231565b81600c546112239190613108565b8361122e9190613108565b90505b5b600a60009054906101000a900460ff16611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890613188565b60405180910390fd5b600d548361128d611d29565b6112979190612f90565b11156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf90613010565b60405180910390fd5b600e54816112e691906131a8565b341015611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f9061325c565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113779190612f90565b925050819055506113883384611d3c565b505050565b806007600061139a611b04565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611447611b04565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161148c91906125a9565b60405180910390a35050565b600a60019054906101000a900460ff1681565b600e5481565b6114bc848484610b05565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461151e576114e784848484611e20565b61151d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61152c611cab565b80600e8190555050565b606061154182611aa5565b611580576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611577906132ee565b60405180910390fd5b600061158a611f70565b5111611620576010805461159d90612c46565b80601f01602080910402602001604051908101604052809291908181526020018280546115c990612c46565b80156116165780601f106115eb57610100808354040283529160200191611616565b820191906000526020600020905b8154815290600101906020018083116115f957829003601f168201915b5050505050611652565b611628611f70565b61163183612002565b604051602001611642929190613396565b6040516020818303038152906040525b9050919050565b600d5481565b6010805461166c90612c46565b80601f016020809104026020016040519081016040528092919081815260200182805461169890612c46565b80156116e55780601f106116ba576101008083540402835291602001916116e5565b820191906000526020600020905b8154815290600101906020018083116116c857829003601f168201915b505050505081565b600a60009054906101000a900460ff1681565b606060405180602001604052806000815250905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117b3611cab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990613437565b60405180910390fd5b61182b81611d5a565b50565b611836611cab565b61183e6120d0565b80471015611881576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611878906134a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e79061350f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161191690613560565b60006040518083038185875af1925050503d8060008114611953576040519150601f19603f3d011682016040523d82523d6000602084013e611958565b606091505b505090508061199c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611993906135c1565b60405180910390fd5b506119a561211f565b5050565b6119b1611cab565b6001600a60016101000a81548160ff021916908315150217905550565b600f80546119db90612c46565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0790612c46565b8015611a545780601f10611a2957610100808354040283529160200191611a54565b820191906000526020600020905b815481529060010190602001808311611a3757829003601f168201915b505050505081565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081611ab0611b0c565b11158015611abf575060005482105b8015611afd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611b24611b0c565b11611baa57600054811015611ba95760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ba7575b60008103611b9d576004600083600190039350838152602001908152602001600020549050611b73565b8092505050611bdc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c69868684612129565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611cb3612132565b73ffffffffffffffffffffffffffffffffffffffff16611cd1611061565b73ffffffffffffffffffffffffffffffffffffffff1614611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e9061362d565b60405180910390fd5b565b6000611d33611b0c565b60005403905090565b611d5682826040518060200160405280600081525061213a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e46611b04565b8786866040518563ffffffff1660e01b8152600401611e6894939291906136a2565b6020604051808303816000875af1925050508015611ea457506040513d601f19601f82011682018060405250810190611ea19190613703565b60015b611f1d573d8060008114611ed4576040519150601f19603f3d011682016040523d82523d6000602084013e611ed9565b606091505b506000815103611f15576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611f7f90612c46565b80601f0160208091040260200160405190810160405280929190818152602001828054611fab90612c46565b8015611ff85780601f10611fcd57610100808354040283529160200191611ff8565b820191906000526020600020905b815481529060010190602001808311611fdb57829003601f168201915b5050505050905090565b606060006001612011846121d7565b01905060008167ffffffffffffffff8111156120305761202f612828565b5b6040519080825280601f01601f1916602001820160405280156120625781602001600182028036833780820191505090505b509050600082602001820190505b6001156120c5578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816120b9576120b8613730565b5b04945060008503612070575b819350505050919050565b600260095403612115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210c906137ab565b60405180910390fd5b6002600981905550565b6001600981905550565b60009392505050565b600033905090565b612144838361232a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121d257600080549050600083820390505b6121846000868380600101945086611e20565b6121ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121715781600054146121cf57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612235577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161222b5761222a613730565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612272576d04ee2d6d415b85acef8100000000838161226857612267613730565b5b0492506020810190505b662386f26fc1000083106122a157662386f26fc10000838161229757612296613730565b5b0492506010810190505b6305f5e10083106122ca576305f5e10083816122c0576122bf613730565b5b0492506008810190505b61271083106122ef5761271083816122e5576122e4613730565b5b0492506004810190505b60648310612312576064838161230857612307613730565b5b0492506002810190505b600a8310612321576001810190505b80915050919050565b6000805490506000820361236a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123776000848385611c4c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123ee836123df6000866000611c52565b6123e8856124e5565b17611c7a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461248f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612454565b50600082036124ca576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124e06000848385611ca5565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61253e81612509565b811461254957600080fd5b50565b60008135905061255b81612535565b92915050565b600060208284031215612577576125766124ff565b5b60006125858482850161254c565b91505092915050565b60008115159050919050565b6125a38161258e565b82525050565b60006020820190506125be600083018461259a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125fe5780820151818401526020810190506125e3565b60008484015250505050565b6000601f19601f8301169050919050565b6000612626826125c4565b61263081856125cf565b93506126408185602086016125e0565b6126498161260a565b840191505092915050565b6000602082019050818103600083015261266e818461261b565b905092915050565b6000819050919050565b61268981612676565b811461269457600080fd5b50565b6000813590506126a681612680565b92915050565b6000602082840312156126c2576126c16124ff565b5b60006126d084828501612697565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612704826126d9565b9050919050565b612714816126f9565b82525050565b600060208201905061272f600083018461270b565b92915050565b61273e816126f9565b811461274957600080fd5b50565b60008135905061275b81612735565b92915050565b60008060408385031215612778576127776124ff565b5b60006127868582860161274c565b925050602061279785828601612697565b9150509250929050565b6127aa81612676565b82525050565b60006020820190506127c560008301846127a1565b92915050565b6000806000606084860312156127e4576127e36124ff565b5b60006127f28682870161274c565b93505060206128038682870161274c565b925050604061281486828701612697565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128608261260a565b810181811067ffffffffffffffff8211171561287f5761287e612828565b5b80604052505050565b60006128926124f5565b905061289e8282612857565b919050565b600067ffffffffffffffff8211156128be576128bd612828565b5b6128c78261260a565b9050602081019050919050565b82818337600083830152505050565b60006128f66128f1846128a3565b612888565b90508281526020810184848401111561291257612911612823565b5b61291d8482856128d4565b509392505050565b600082601f83011261293a5761293961281e565b5b813561294a8482602086016128e3565b91505092915050565b600060208284031215612969576129686124ff565b5b600082013567ffffffffffffffff81111561298757612986612504565b5b61299384828501612925565b91505092915050565b6000602082840312156129b2576129b16124ff565b5b60006129c08482850161274c565b91505092915050565b6129d28161258e565b81146129dd57600080fd5b50565b6000813590506129ef816129c9565b92915050565b60008060408385031215612a0c57612a0b6124ff565b5b6000612a1a8582860161274c565b9250506020612a2b858286016129e0565b9150509250929050565b600067ffffffffffffffff821115612a5057612a4f612828565b5b612a598261260a565b9050602081019050919050565b6000612a79612a7484612a35565b612888565b905082815260208101848484011115612a9557612a94612823565b5b612aa08482856128d4565b509392505050565b600082601f830112612abd57612abc61281e565b5b8135612acd848260208601612a66565b91505092915050565b60008060008060808587031215612af057612aef6124ff565b5b6000612afe8782880161274c565b9450506020612b0f8782880161274c565b9350506040612b2087828801612697565b925050606085013567ffffffffffffffff811115612b4157612b40612504565b5b612b4d87828801612aa8565b91505092959194509250565b60008060408385031215612b7057612b6f6124ff565b5b6000612b7e8582860161274c565b9250506020612b8f8582860161274c565b9150509250929050565b6000612ba4826126d9565b9050919050565b612bb481612b99565b8114612bbf57600080fd5b50565b600081359050612bd181612bab565b92915050565b60008060408385031215612bee57612bed6124ff565b5b6000612bfc85828601612bc2565b9250506020612c0d85828601612697565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c5e57607f821691505b602082108103612c7157612c70612c17565b5b50919050565b7f4d657461646174612069732066696e616c697a65640000000000000000000000600082015250565b6000612cad6015836125cf565b9150612cb882612c77565b602082019050919050565b60006020820190508181036000830152612cdc81612ca0565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d08565b612d4f8683612d08565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d8c612d87612d8284612676565b612d67565b612676565b9050919050565b6000819050919050565b612da683612d71565b612dba612db282612d93565b848454612d15565b825550505050565b600090565b612dcf612dc2565b612dda818484612d9d565b505050565b5b81811015612dfe57612df3600082612dc7565b600181019050612de0565b5050565b601f821115612e4357612e1481612ce3565b612e1d84612cf8565b81016020851015612e2c578190505b612e40612e3885612cf8565b830182612ddf565b50505b505050565b600082821c905092915050565b6000612e6660001984600802612e48565b1980831691505092915050565b6000612e7f8383612e55565b9150826002028217905092915050565b612e98826125c4565b67ffffffffffffffff811115612eb157612eb0612828565b5b612ebb8254612c46565b612ec6828285612e02565b600060209050601f831160018114612ef95760008415612ee7578287015190505b612ef18582612e73565b865550612f59565b601f198416612f0786612ce3565b60005b82811015612f2f57848901518255600182019150602085019450602081019050612f0a565b86831015612f4c5784890151612f48601f891682612e55565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f9b82612676565b9150612fa683612676565b9250828201905080821115612fbe57612fbd612f61565b5b92915050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612ffa6008836125cf565b915061300582612fc4565b602082019050919050565b6000602082019050818103600083015261302981612fed565b9050919050565b7f4d75737420757365206174206c65617374206f6e65206d696e74000000000000600082015250565b6000613066601a836125cf565b915061307182613030565b602082019050919050565b6000602082019050818103600083015261309581613059565b9050919050565b7f4d6178205065722077616c6c6574000000000000000000000000000000000000600082015250565b60006130d2600e836125cf565b91506130dd8261309c565b602082019050919050565b60006020820190508181036000830152613101816130c5565b9050919050565b600061311382612676565b915061311e83612676565b925082820390508181111561313657613135612f61565b5b92915050565b7f4d696e7420686173206e6f742073746172746564000000000000000000000000600082015250565b60006131726014836125cf565b915061317d8261313c565b602082019050919050565b600060208201905081810360008301526131a181613165565b9050919050565b60006131b382612676565b91506131be83612676565b92508282026131cc81612676565b915082820484148315176131e3576131e2612f61565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b60006132466022836125cf565b9150613251826131ea565b604082019050919050565b6000602082019050818103600083015261327581613239565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006132d8602f836125cf565b91506132e38261327c565b604082019050919050565b60006020820190508181036000830152613307816132cb565b9050919050565b600081905092915050565b6000613324826125c4565b61332e818561330e565b935061333e8185602086016125e0565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061338060058361330e565b915061338b8261334a565b600582019050919050565b60006133a28285613319565b91506133ae8284613319565b91506133b982613373565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134216026836125cf565b915061342c826133c5565b604082019050919050565b6000602082019050818103600083015261345081613414565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b600061348d6014836125cf565b915061349882613457565b602082019050919050565b600060208201905081810360008301526134bc81613480565b9050919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b60006134f9600f836125cf565b9150613504826134c3565b602082019050919050565b60006020820190508181036000830152613528816134ec565b9050919050565b600081905092915050565b50565b600061354a60008361352f565b91506135558261353a565b600082019050919050565b600061356b8261353d565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b60006135ab600f836125cf565b91506135b682613575565b602082019050919050565b600060208201905081810360008301526135da8161359e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136176020836125cf565b9150613622826135e1565b602082019050919050565b600060208201905081810360008301526136468161360a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136748261364d565b61367e8185613658565b935061368e8185602086016125e0565b6136978161260a565b840191505092915050565b60006080820190506136b7600083018761270b565b6136c4602083018661270b565b6136d160408301856127a1565b81810360608301526136e38184613669565b905095945050505050565b6000815190506136fd81612535565b92915050565b600060208284031215613719576137186124ff565b5b6000613727848285016136ee565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613795601f836125cf565b91506137a08261375f565b602082019050919050565b600060208201905081810360008301526137c481613788565b905091905056fea2646970667358221220dd1fb00a5c8f2446678739dee5e4ec6f833ec62138c4f001fc96ab085cb5da0364736f6c63430008130033697066733a2f2f516d5a6b587532376d504d61696263585278426437375a643348547a5133684b39575736755569735865637a62772f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806395d89b4111610118578063d8210482116100a0578063f2fde38b1161006f578063f2fde38b14610736578063f3fef3a31461075f578063f4a560a514610788578063f9e0edae1461079f578063fddcb5ea146107ca5761020f565b8063d821048214610678578063e3bcfc64146106a3578063e8a3d485146106ce578063e985e9c5146106f95761020f565b8063a945bf80116100e7578063a945bf80146105a0578063b88d4fde146105cb578063c6275255146105e7578063c87b56dd14610610578063d5abeb011461064d5761020f565b806395d89b4114610505578063a0712d6814610530578063a22cb4651461054c578063a5eb6ff2146105755761020f565b80634c2612471161019b5780637040d73f1161016a5780637040d73f1461044657806370a082311461046f578063715018a6146104ac57806374b2eb85146104c35780638da5cb5b146104da5761020f565b80634c2612471461038e578063627804af146103b75780636352211e146103e05780636f8b44b01461041d5761020f565b806318160ddd116101e257806318160ddd146102d557806323b872dd1461030057806342842e0e1461031c578063453c231014610338578063485a68a3146103635761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612561565b610807565b60405161024891906125a9565b60405180910390f35b34801561025d57600080fd5b50610266610899565b6040516102739190612654565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906126ac565b61092b565b6040516102b0919061271a565b60405180910390f35b6102d360048036038101906102ce9190612761565b6109aa565b005b3480156102e157600080fd5b506102ea610aee565b6040516102f791906127b0565b60405180910390f35b61031a600480360381019061031591906127cb565b610b05565b005b610336600480360381019061033191906127cb565b610e27565b005b34801561034457600080fd5b5061034d610e47565b60405161035a91906127b0565b60405180910390f35b34801561036f57600080fd5b50610378610e4d565b60405161038591906127b0565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190612953565b610e53565b005b3480156103c357600080fd5b506103de60048036038101906103d99190612761565b610ebe565b005b3480156103ec57600080fd5b50610407600480360381019061040291906126ac565b610f2b565b604051610414919061271a565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906126ac565b610f3d565b005b34801561045257600080fd5b5061046d600480360381019061046891906126ac565b610f4f565b005b34801561047b57600080fd5b506104966004803603810190610491919061299c565b610f61565b6040516104a391906127b0565b60405180910390f35b3480156104b857600080fd5b506104c1611019565b005b3480156104cf57600080fd5b506104d861102d565b005b3480156104e657600080fd5b506104ef611061565b6040516104fc919061271a565b60405180910390f35b34801561051157600080fd5b5061051a61108b565b6040516105279190612654565b60405180910390f35b61054a600480360381019061054591906126ac565b61111d565b005b34801561055857600080fd5b50610573600480360381019061056e91906129f5565b61138d565b005b34801561058157600080fd5b5061058a611498565b60405161059791906125a9565b60405180910390f35b3480156105ac57600080fd5b506105b56114ab565b6040516105c291906127b0565b60405180910390f35b6105e560048036038101906105e09190612ad6565b6114b1565b005b3480156105f357600080fd5b5061060e600480360381019061060991906126ac565b611524565b005b34801561061c57600080fd5b50610637600480360381019061063291906126ac565b611536565b6040516106449190612654565b60405180910390f35b34801561065957600080fd5b50610662611659565b60405161066f91906127b0565b60405180910390f35b34801561068457600080fd5b5061068d61165f565b60405161069a9190612654565b60405180910390f35b3480156106af57600080fd5b506106b86116ed565b6040516106c591906125a9565b60405180910390f35b3480156106da57600080fd5b506106e3611700565b6040516106f09190612654565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b9190612b59565b611717565b60405161072d91906125a9565b60405180910390f35b34801561074257600080fd5b5061075d6004803603810190610758919061299c565b6117ab565b005b34801561076b57600080fd5b5061078660048036038101906107819190612bd7565b61182e565b005b34801561079457600080fd5b5061079d6119a9565b005b3480156107ab57600080fd5b506107b46119ce565b6040516107c19190612654565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec919061299c565b611a5c565b6040516107fe91906127b0565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108925750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108a890612c46565b80601f01602080910402602001604051908101604052809291908181526020018280546108d490612c46565b80156109215780601f106108f657610100808354040283529160200191610921565b820191906000526020600020905b81548152906001019060200180831161090457829003601f168201915b5050505050905090565b600061093682611aa5565b61096c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b582610f2b565b90508073ffffffffffffffffffffffffffffffffffffffff166109d6611b04565b73ffffffffffffffffffffffffffffffffffffffff1614610a3957610a02816109fd611b04565b611717565b610a38576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610af8611b0c565b6001546000540303905090565b6000610b1082611b15565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b77576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b8384611be1565b91509150610b998187610b94611b04565b611c08565b610be557610bae86610ba9611b04565b611717565b610be4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c4b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c588686866001611c4c565b8015610c6357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d3185610d0d888887611c52565b7c020000000000000000000000000000000000000000000000000000000017611c7a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610db75760006001850190506000600460008381526020019081526020016000205403610db5576000548114610db4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e1f8686866001611ca5565b505050505050565b610e42838383604051806020016040528060008152506114b1565b505050565b600b5481565b600c5481565b610e5b611cab565b600a60019054906101000a900460ff1615610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290612cc3565b60405180910390fd5b80600f9081610eba9190612e8f565b5050565b610ec6611cab565b600d5481610ed2611d29565b610edc9190612f90565b1115610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490613010565b60405180910390fd5b610f278282611d3c565b5050565b6000610f3682611b15565b9050919050565b610f45611cab565b80600d8190555050565b610f57611cab565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611021611cab565b61102b6000611d5a565b565b611035611cab565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461109a90612c46565b80601f01602080910402602001604051908101604052809291908181526020018280546110c690612c46565b80156111135780601f106110e857610100808354040283529160200191611113565b820191906000526020600020905b8154815290600101906020018083116110f657829003601f168201915b5050505050905090565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082116111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b9061307c565b60405180910390fd5b600b5481106111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df906130e8565b60405180910390fd5b6000829050600c54821015611232578282600c546112069190613108565b11156112155760009050611231565b81600c546112239190613108565b8361122e9190613108565b90505b5b600a60009054906101000a900460ff16611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890613188565b60405180910390fd5b600d548361128d611d29565b6112979190612f90565b11156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf90613010565b60405180910390fd5b600e54816112e691906131a8565b341015611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f9061325c565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113779190612f90565b925050819055506113883384611d3c565b505050565b806007600061139a611b04565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611447611b04565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161148c91906125a9565b60405180910390a35050565b600a60019054906101000a900460ff1681565b600e5481565b6114bc848484610b05565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461151e576114e784848484611e20565b61151d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61152c611cab565b80600e8190555050565b606061154182611aa5565b611580576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611577906132ee565b60405180910390fd5b600061158a611f70565b5111611620576010805461159d90612c46565b80601f01602080910402602001604051908101604052809291908181526020018280546115c990612c46565b80156116165780601f106115eb57610100808354040283529160200191611616565b820191906000526020600020905b8154815290600101906020018083116115f957829003601f168201915b5050505050611652565b611628611f70565b61163183612002565b604051602001611642929190613396565b6040516020818303038152906040525b9050919050565b600d5481565b6010805461166c90612c46565b80601f016020809104026020016040519081016040528092919081815260200182805461169890612c46565b80156116e55780601f106116ba576101008083540402835291602001916116e5565b820191906000526020600020905b8154815290600101906020018083116116c857829003601f168201915b505050505081565b600a60009054906101000a900460ff1681565b606060405180602001604052806000815250905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117b3611cab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990613437565b60405180910390fd5b61182b81611d5a565b50565b611836611cab565b61183e6120d0565b80471015611881576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611878906134a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e79061350f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161191690613560565b60006040518083038185875af1925050503d8060008114611953576040519150601f19603f3d011682016040523d82523d6000602084013e611958565b606091505b505090508061199c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611993906135c1565b60405180910390fd5b506119a561211f565b5050565b6119b1611cab565b6001600a60016101000a81548160ff021916908315150217905550565b600f80546119db90612c46565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0790612c46565b8015611a545780601f10611a2957610100808354040283529160200191611a54565b820191906000526020600020905b815481529060010190602001808311611a3757829003601f168201915b505050505081565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081611ab0611b0c565b11158015611abf575060005482105b8015611afd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611b24611b0c565b11611baa57600054811015611ba95760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ba7575b60008103611b9d576004600083600190039350838152602001908152602001600020549050611b73565b8092505050611bdc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c69868684612129565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611cb3612132565b73ffffffffffffffffffffffffffffffffffffffff16611cd1611061565b73ffffffffffffffffffffffffffffffffffffffff1614611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e9061362d565b60405180910390fd5b565b6000611d33611b0c565b60005403905090565b611d5682826040518060200160405280600081525061213a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e46611b04565b8786866040518563ffffffff1660e01b8152600401611e6894939291906136a2565b6020604051808303816000875af1925050508015611ea457506040513d601f19601f82011682018060405250810190611ea19190613703565b60015b611f1d573d8060008114611ed4576040519150601f19603f3d011682016040523d82523d6000602084013e611ed9565b606091505b506000815103611f15576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611f7f90612c46565b80601f0160208091040260200160405190810160405280929190818152602001828054611fab90612c46565b8015611ff85780601f10611fcd57610100808354040283529160200191611ff8565b820191906000526020600020905b815481529060010190602001808311611fdb57829003601f168201915b5050505050905090565b606060006001612011846121d7565b01905060008167ffffffffffffffff8111156120305761202f612828565b5b6040519080825280601f01601f1916602001820160405280156120625781602001600182028036833780820191505090505b509050600082602001820190505b6001156120c5578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816120b9576120b8613730565b5b04945060008503612070575b819350505050919050565b600260095403612115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210c906137ab565b60405180910390fd5b6002600981905550565b6001600981905550565b60009392505050565b600033905090565b612144838361232a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121d257600080549050600083820390505b6121846000868380600101945086611e20565b6121ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121715781600054146121cf57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612235577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161222b5761222a613730565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612272576d04ee2d6d415b85acef8100000000838161226857612267613730565b5b0492506020810190505b662386f26fc1000083106122a157662386f26fc10000838161229757612296613730565b5b0492506010810190505b6305f5e10083106122ca576305f5e10083816122c0576122bf613730565b5b0492506008810190505b61271083106122ef5761271083816122e5576122e4613730565b5b0492506004810190505b60648310612312576064838161230857612307613730565b5b0492506002810190505b600a8310612321576001810190505b80915050919050565b6000805490506000820361236a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123776000848385611c4c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123ee836123df6000866000611c52565b6123e8856124e5565b17611c7a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461248f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612454565b50600082036124ca576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124e06000848385611ca5565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61253e81612509565b811461254957600080fd5b50565b60008135905061255b81612535565b92915050565b600060208284031215612577576125766124ff565b5b60006125858482850161254c565b91505092915050565b60008115159050919050565b6125a38161258e565b82525050565b60006020820190506125be600083018461259a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125fe5780820151818401526020810190506125e3565b60008484015250505050565b6000601f19601f8301169050919050565b6000612626826125c4565b61263081856125cf565b93506126408185602086016125e0565b6126498161260a565b840191505092915050565b6000602082019050818103600083015261266e818461261b565b905092915050565b6000819050919050565b61268981612676565b811461269457600080fd5b50565b6000813590506126a681612680565b92915050565b6000602082840312156126c2576126c16124ff565b5b60006126d084828501612697565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612704826126d9565b9050919050565b612714816126f9565b82525050565b600060208201905061272f600083018461270b565b92915050565b61273e816126f9565b811461274957600080fd5b50565b60008135905061275b81612735565b92915050565b60008060408385031215612778576127776124ff565b5b60006127868582860161274c565b925050602061279785828601612697565b9150509250929050565b6127aa81612676565b82525050565b60006020820190506127c560008301846127a1565b92915050565b6000806000606084860312156127e4576127e36124ff565b5b60006127f28682870161274c565b93505060206128038682870161274c565b925050604061281486828701612697565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128608261260a565b810181811067ffffffffffffffff8211171561287f5761287e612828565b5b80604052505050565b60006128926124f5565b905061289e8282612857565b919050565b600067ffffffffffffffff8211156128be576128bd612828565b5b6128c78261260a565b9050602081019050919050565b82818337600083830152505050565b60006128f66128f1846128a3565b612888565b90508281526020810184848401111561291257612911612823565b5b61291d8482856128d4565b509392505050565b600082601f83011261293a5761293961281e565b5b813561294a8482602086016128e3565b91505092915050565b600060208284031215612969576129686124ff565b5b600082013567ffffffffffffffff81111561298757612986612504565b5b61299384828501612925565b91505092915050565b6000602082840312156129b2576129b16124ff565b5b60006129c08482850161274c565b91505092915050565b6129d28161258e565b81146129dd57600080fd5b50565b6000813590506129ef816129c9565b92915050565b60008060408385031215612a0c57612a0b6124ff565b5b6000612a1a8582860161274c565b9250506020612a2b858286016129e0565b9150509250929050565b600067ffffffffffffffff821115612a5057612a4f612828565b5b612a598261260a565b9050602081019050919050565b6000612a79612a7484612a35565b612888565b905082815260208101848484011115612a9557612a94612823565b5b612aa08482856128d4565b509392505050565b600082601f830112612abd57612abc61281e565b5b8135612acd848260208601612a66565b91505092915050565b60008060008060808587031215612af057612aef6124ff565b5b6000612afe8782880161274c565b9450506020612b0f8782880161274c565b9350506040612b2087828801612697565b925050606085013567ffffffffffffffff811115612b4157612b40612504565b5b612b4d87828801612aa8565b91505092959194509250565b60008060408385031215612b7057612b6f6124ff565b5b6000612b7e8582860161274c565b9250506020612b8f8582860161274c565b9150509250929050565b6000612ba4826126d9565b9050919050565b612bb481612b99565b8114612bbf57600080fd5b50565b600081359050612bd181612bab565b92915050565b60008060408385031215612bee57612bed6124ff565b5b6000612bfc85828601612bc2565b9250506020612c0d85828601612697565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c5e57607f821691505b602082108103612c7157612c70612c17565b5b50919050565b7f4d657461646174612069732066696e616c697a65640000000000000000000000600082015250565b6000612cad6015836125cf565b9150612cb882612c77565b602082019050919050565b60006020820190508181036000830152612cdc81612ca0565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d08565b612d4f8683612d08565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d8c612d87612d8284612676565b612d67565b612676565b9050919050565b6000819050919050565b612da683612d71565b612dba612db282612d93565b848454612d15565b825550505050565b600090565b612dcf612dc2565b612dda818484612d9d565b505050565b5b81811015612dfe57612df3600082612dc7565b600181019050612de0565b5050565b601f821115612e4357612e1481612ce3565b612e1d84612cf8565b81016020851015612e2c578190505b612e40612e3885612cf8565b830182612ddf565b50505b505050565b600082821c905092915050565b6000612e6660001984600802612e48565b1980831691505092915050565b6000612e7f8383612e55565b9150826002028217905092915050565b612e98826125c4565b67ffffffffffffffff811115612eb157612eb0612828565b5b612ebb8254612c46565b612ec6828285612e02565b600060209050601f831160018114612ef95760008415612ee7578287015190505b612ef18582612e73565b865550612f59565b601f198416612f0786612ce3565b60005b82811015612f2f57848901518255600182019150602085019450602081019050612f0a565b86831015612f4c5784890151612f48601f891682612e55565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f9b82612676565b9150612fa683612676565b9250828201905080821115612fbe57612fbd612f61565b5b92915050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612ffa6008836125cf565b915061300582612fc4565b602082019050919050565b6000602082019050818103600083015261302981612fed565b9050919050565b7f4d75737420757365206174206c65617374206f6e65206d696e74000000000000600082015250565b6000613066601a836125cf565b915061307182613030565b602082019050919050565b6000602082019050818103600083015261309581613059565b9050919050565b7f4d6178205065722077616c6c6574000000000000000000000000000000000000600082015250565b60006130d2600e836125cf565b91506130dd8261309c565b602082019050919050565b60006020820190508181036000830152613101816130c5565b9050919050565b600061311382612676565b915061311e83612676565b925082820390508181111561313657613135612f61565b5b92915050565b7f4d696e7420686173206e6f742073746172746564000000000000000000000000600082015250565b60006131726014836125cf565b915061317d8261313c565b602082019050919050565b600060208201905081810360008301526131a181613165565b9050919050565b60006131b382612676565b91506131be83612676565b92508282026131cc81612676565b915082820484148315176131e3576131e2612f61565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b60006132466022836125cf565b9150613251826131ea565b604082019050919050565b6000602082019050818103600083015261327581613239565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006132d8602f836125cf565b91506132e38261327c565b604082019050919050565b60006020820190508181036000830152613307816132cb565b9050919050565b600081905092915050565b6000613324826125c4565b61332e818561330e565b935061333e8185602086016125e0565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061338060058361330e565b915061338b8261334a565b600582019050919050565b60006133a28285613319565b91506133ae8284613319565b91506133b982613373565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134216026836125cf565b915061342c826133c5565b604082019050919050565b6000602082019050818103600083015261345081613414565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b600061348d6014836125cf565b915061349882613457565b602082019050919050565b600060208201905081810360008301526134bc81613480565b9050919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b60006134f9600f836125cf565b9150613504826134c3565b602082019050919050565b60006020820190508181036000830152613528816134ec565b9050919050565b600081905092915050565b50565b600061354a60008361352f565b91506135558261353a565b600082019050919050565b600061356b8261353d565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b60006135ab600f836125cf565b91506135b682613575565b602082019050919050565b600060208201905081810360008301526135da8161359e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136176020836125cf565b9150613622826135e1565b602082019050919050565b600060208201905081810360008301526136468161360a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136748261364d565b61367e8185613658565b935061368e8185602086016125e0565b6136978161260a565b840191505092915050565b60006080820190506136b7600083018761270b565b6136c4602083018661270b565b6136d160408301856127a1565b81810360608301526136e38184613669565b905095945050505050565b6000815190506136fd81612535565b92915050565b600060208284031215613719576137186124ff565b5b6000613727848285016136ee565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613795601f836125cf565b91506137a08261375f565b602082019050919050565b600060208201905081810360008301526137c481613788565b905091905056fea2646970667358221220dd1fb00a5c8f2446678739dee5e4ec6f833ec62138c4f001fc96ab085cb5da0364736f6c63430008130033

Deployed Bytecode Sourcemap

84534:3341:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51427:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52329:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58820:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58253:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48080:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62459:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65380:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84701:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84740:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85634:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87703:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53722:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86777:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86889:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49264:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32206:103;;;;;;;;;;;;;:::i;:::-;;86682:87;;;;;;;;;;;;;:::i;:::-;;31558;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52505:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86984:713;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59378:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84672:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84812:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66171:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86576:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86097:471;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84773:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84953:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84636:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85450:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59769:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32464:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85783:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85545:81;;;;;;;;;;;;;:::i;:::-;;84865;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85113:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51427:639;51512:4;51851:10;51836:25;;:11;:25;;;;:102;;;;51928:10;51913:25;;:11;:25;;;;51836:102;:179;;;;52005:10;51990:25;;:11;:25;;;;51836:179;51816:199;;51427:639;;;:::o;52329:100::-;52383:13;52416:5;52409:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52329:100;:::o;58820:218::-;58896:7;58921:16;58929:7;58921;:16::i;:::-;58916:64;;58946:34;;;;;;;;;;;;;;58916:64;59000:15;:24;59016:7;59000:24;;;;;;;;;;;:30;;;;;;;;;;;;58993:37;;58820:218;;;:::o;58253:408::-;58342:13;58358:16;58366:7;58358;:16::i;:::-;58342:32;;58414:5;58391:28;;:19;:17;:19::i;:::-;:28;;;58387:175;;58439:44;58456:5;58463:19;:17;:19::i;:::-;58439:16;:44::i;:::-;58434:128;;58511:35;;;;;;;;;;;;;;58434:128;58387:175;58607:2;58574:15;:24;58590:7;58574:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;58645:7;58641:2;58625:28;;58634:5;58625:28;;;;;;;;;;;;58331:330;58253:408;;:::o;48080:323::-;48141:7;48369:15;:13;:15::i;:::-;48354:12;;48338:13;;:28;:46;48331:53;;48080:323;:::o;62459:2825::-;62601:27;62631;62650:7;62631:18;:27::i;:::-;62601:57;;62716:4;62675:45;;62691:19;62675:45;;;62671:86;;62729:28;;;;;;;;;;;;;;62671:86;62771:27;62800:23;62827:35;62854:7;62827:26;:35::i;:::-;62770:92;;;;62962:68;62987:15;63004:4;63010:19;:17;:19::i;:::-;62962:24;:68::i;:::-;62957:180;;63050:43;63067:4;63073:19;:17;:19::i;:::-;63050:16;:43::i;:::-;63045:92;;63102:35;;;;;;;;;;;;;;63045:92;62957:180;63168:1;63154:16;;:2;:16;;;63150:52;;63179:23;;;;;;;;;;;;;;63150:52;63215:43;63237:4;63243:2;63247:7;63256:1;63215:21;:43::i;:::-;63351:15;63348:160;;;63491:1;63470:19;63463:30;63348:160;63888:18;:24;63907:4;63888:24;;;;;;;;;;;;;;;;63886:26;;;;;;;;;;;;63957:18;:22;63976:2;63957:22;;;;;;;;;;;;;;;;63955:24;;;;;;;;;;;64279:146;64316:2;64365:45;64380:4;64386:2;64390:19;64365:14;:45::i;:::-;44479:8;64337:73;64279:18;:146::i;:::-;64250:17;:26;64268:7;64250:26;;;;;;;;;;;:175;;;;64596:1;44479:8;64545:19;:47;:52;64541:627;;64618:19;64650:1;64640:7;:11;64618:33;;64807:1;64773:17;:30;64791:11;64773:30;;;;;;;;;;;;:35;64769:384;;64911:13;;64896:11;:28;64892:242;;65091:19;65058:17;:30;65076:11;65058:30;;;;;;;;;;;:52;;;;64892:242;64769:384;64599:569;64541:627;65215:7;65211:2;65196:27;;65205:4;65196:27;;;;;;;;;;;;65234:42;65255:4;65261:2;65265:7;65274:1;65234:20;:42::i;:::-;62590:2694;;;62459:2825;;;:::o;65380:193::-;65526:39;65543:4;65549:2;65553:7;65526:39;;;;;;;;;;;;:16;:39::i;:::-;65380:193;;;:::o;84701:32::-;;;;:::o;84740:26::-;;;;:::o;85634:141::-;31444:13;:11;:13::i;:::-;85708:8:::1;;;;;;;;;;;85707:9;85699:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;85764:3;85753:8;:14;;;;;;:::i;:::-;;85634:141:::0;:::o;87703:169::-;31444:13;:11;:13::i;:::-;87811:9:::1;;87802:5;87785:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;87777:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;87844:20;87854:2;87858:5;87844:9;:20::i;:::-;87703:169:::0;;:::o;53722:152::-;53794:7;53837:27;53856:7;53837:18;:27::i;:::-;53814:52;;53722:152;;;:::o;86777:106::-;31444:13;:11;:13::i;:::-;86863:12:::1;86851:9;:24;;;;86777:106:::0;:::o;86889:89::-;31444:13;:11;:13::i;:::-;86963:7:::1;86953;:17;;;;86889:89:::0;:::o;49264:233::-;49336:7;49377:1;49360:19;;:5;:19;;;49356:60;;49388:28;;;;;;;;;;;;;;49356:60;43423:13;49434:18;:25;49453:5;49434:25;;;;;;;;;;;;;;;;:55;49427:62;;49264:233;;;:::o;32206:103::-;31444:13;:11;:13::i;:::-;32271:30:::1;32298:1;32271:18;:30::i;:::-;32206:103::o:0;86682:87::-;31444:13;:11;:13::i;:::-;86752:9:::1;;;;;;;;;;;86751:10;86739:9;;:22;;;;;;;;;;;;;;;;;;86682:87::o:0;31558:::-;31604:7;31631:6;;;;;;;;;;;31624:13;;31558:87;:::o;52505:104::-;52561:13;52594:7;52587:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52505:104;:::o;86984:713::-;87041:14;87058:18;:30;87077:10;87058:30;;;;;;;;;;;;;;;;87041:47;;87115:1;87107:5;:9;87099:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;87175:12;;87166:6;:21;87158:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;87217:19;87239:5;87217:27;;87268:7;;87259:6;:16;87255:131;;;87301:5;87292:6;87282:7;;:16;;;;:::i;:::-;:24;87278:107;;;87323:1;87309:15;;87278:107;;;87376:6;87366:7;;:16;;;;:::i;:::-;87357:5;:26;;;;:::i;:::-;87343:40;;87278:107;87255:131;87404:9;;;;;;;;;;;87396:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;87483:9;;87474:5;87457:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;87449:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;87551:11;;87537;:25;;;;:::i;:::-;87524:9;:38;;87516:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;87645:5;87611:18;:30;87630:10;87611:30;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;87661:28;87671:10;87683:5;87661:9;:28::i;:::-;87030:667;;86984:713;:::o;59378:234::-;59525:8;59473:18;:39;59492:19;:17;:19::i;:::-;59473:39;;;;;;;;;;;;;;;:49;59513:8;59473:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;59585:8;59549:55;;59564:19;:17;:19::i;:::-;59549:55;;;59595:8;59549:55;;;;;;:::i;:::-;;;;;;;;59378:234;;:::o;84672:20::-;;;;;;;;;;;;;:::o;84812:40::-;;;;:::o;66171:407::-;66346:31;66359:4;66365:2;66369:7;66346:12;:31::i;:::-;66410:1;66392:2;:14;;;:19;66388:183;;66431:56;66462:4;66468:2;66472:7;66481:5;66431:30;:56::i;:::-;66426:145;;66515:40;;;;;;;;;;;;;;66426:145;66388:183;66171:407;;;;:::o;86576:98::-;31444:13;:11;:13::i;:::-;86660:6:::1;86646:11;:20;;;;86576:98:::0;:::o;86097:471::-;86198:13;86251:16;86259:7;86251;:16::i;:::-;86229:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;86402:1;86381:10;:8;:10::i;:::-;86375:24;:28;:185;;86548:12;86375:185;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86469:10;:8;:10::i;:::-;86481:18;:7;:16;:18::i;:::-;86452:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;86375:185;86355:205;;86097:471;;;:::o;84773:32::-;;;;:::o;84953:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;84636:29::-;;;;;;;;;;;;;:::o;85450:87::-;85494:13;85520:9;;;;;;;;;;;;;;85450:87;:::o;59769:164::-;59866:4;59890:18;:25;59909:5;59890:25;;;;;;;;;;;;;;;:35;59916:8;59890:35;;;;;;;;;;;;;;;;;;;;;;;;;59883:42;;59769:164;;;;:::o;32464:201::-;31444:13;:11;:13::i;:::-;32573:1:::1;32553:22;;:8;:22;;::::0;32545:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;32629:28;32648:8;32629:18;:28::i;:::-;32464:201:::0;:::o;85783:306::-;31444:13;:11;:13::i;:::-;4202:21:::1;:19;:21::i;:::-;85909:6:::2;85884:21;:31;;85876:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;85969:1;85955:16;;:2;:16;;::::0;85947:44:::2;;;;;;;;;;;;:::i;:::-;;;;;;;;;85999:12;86017:2;:7;;86032:6;86017:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85998:45;;;86058:7;86050:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;85869:220;4246:20:::1;:18;:20::i;:::-;85783:306:::0;;:::o;85545:81::-;31444:13;:11;:13::i;:::-;85614:4:::1;85603:8;;:15;;;;;;;;;;;;;;;;;;85545:81::o:0;84865:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;85113:119::-;85172:7;85199:18;:25;85218:5;85199:25;;;;;;;;;;;;;;;;85192:32;;85113:119;;;:::o;60191:282::-;60256:4;60312:7;60293:15;:13;:15::i;:::-;:26;;:66;;;;;60346:13;;60336:7;:23;60293:66;:153;;;;;60445:1;44199:8;60397:17;:26;60415:7;60397:26;;;;;;;;;;;;:44;:49;60293:153;60273:173;;60191:282;;;:::o;82499:105::-;82559:7;82586:10;82579:17;;82499:105;:::o;85349:93::-;85406:7;85433:1;85426:8;;85349:93;:::o;54877:1275::-;54944:7;54964:12;54979:7;54964:22;;55047:4;55028:15;:13;:15::i;:::-;:23;55024:1061;;55081:13;;55074:4;:20;55070:1015;;;55119:14;55136:17;:23;55154:4;55136:23;;;;;;;;;;;;55119:40;;55253:1;44199:8;55225:6;:24;:29;55221:845;;55890:113;55907:1;55897:6;:11;55890:113;;55950:17;:25;55968:6;;;;;;;55950:25;;;;;;;;;;;;55941:34;;55890:113;;;56036:6;56029:13;;;;;;55221:845;55096:989;55070:1015;55024:1061;56113:31;;;;;;;;;;;;;;54877:1275;;;;:::o;61354:485::-;61456:27;61485:23;61526:38;61567:15;:24;61583:7;61567:24;;;;;;;;;;;61526:65;;61744:18;61721:41;;61801:19;61795:26;61776:45;;61706:126;61354:485;;;:::o;60582:659::-;60731:11;60896:16;60889:5;60885:28;60876:37;;61056:16;61045:9;61041:32;61028:45;;61206:15;61195:9;61192:30;61184:5;61173:9;61170:20;61167:56;61157:66;;60582:659;;;;;:::o;67240:159::-;;;;;:::o;81808:311::-;81943:7;81963:16;44603:3;81989:19;:41;;81963:68;;44603:3;82057:31;82068:4;82074:2;82078:9;82057:10;:31::i;:::-;82049:40;;:62;;82042:69;;;81808:311;;;;;:::o;56700:450::-;56780:14;56948:16;56941:5;56937:28;56928:37;;57125:5;57111:11;57086:23;57082:41;57079:52;57072:5;57069:63;57059:73;;56700:450;;;;:::o;68064:158::-;;;;;:::o;31723:132::-;31798:12;:10;:12::i;:::-;31787:23;;:7;:5;:7::i;:::-;:23;;;31779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31723:132::o;48501:296::-;48556:7;48763:15;:13;:15::i;:::-;48747:13;;:31;48740:38;;48501:296;:::o;76331:112::-;76408:27;76418:2;76422:8;76408:27;;;;;;;;;;;;:9;:27::i;:::-;76331:112;;:::o;32825:191::-;32899:16;32918:6;;;;;;;;;;;32899:25;;32944:8;32935:6;;:17;;;;;;;;;;;;;;;;;;32999:8;32968:40;;32989:8;32968:40;;;;;;;;;;;;32888:128;32825:191;:::o;68662:716::-;68825:4;68871:2;68846:45;;;68892:19;:17;:19::i;:::-;68913:4;68919:7;68928:5;68846:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;68842:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69146:1;69129:6;:13;:18;69125:235;;69175:40;;;;;;;;;;;;;;69125:235;69318:6;69312:13;69303:6;69299:2;69295:15;69288:38;68842:529;69015:54;;;69005:64;;;:6;:64;;;;68998:71;;;68662:716;;;;;;:::o;85240:101::-;85292:13;85325:8;85318:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85240:101;:::o;27536:716::-;27592:13;27643:14;27680:1;27660:17;27671:5;27660:10;:17::i;:::-;:21;27643:38;;27696:20;27730:6;27719:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27696:41;;27752:11;27881:6;27877:2;27873:15;27865:6;27861:28;27854:35;;27918:288;27925:4;27918:288;;;27950:5;;;;;;;;28092:8;28087:2;28080:5;28076:14;28071:30;28066:3;28058:44;28148:2;28139:11;;;;;;:::i;:::-;;;;;28182:1;28173:5;:10;27918:288;28169:21;27918:288;28227:6;28220:13;;;;;27536:716;;;:::o;4282:293::-;3684:1;4416:7;;:19;4408:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3684:1;4549:7;:18;;;;4282:293::o;4583:213::-;3640:1;4766:7;:22;;;;4583:213::o;81509:147::-;81646:6;81509:147;;;;;:::o;30109:98::-;30162:7;30189:10;30182:17;;30109:98;:::o;75558:689::-;75689:19;75695:2;75699:8;75689:5;:19::i;:::-;75768:1;75750:2;:14;;;:19;75746:483;;75790:11;75804:13;;75790:27;;75836:13;75858:8;75852:3;:14;75836:30;;75885:233;75916:62;75955:1;75959:2;75963:7;;;;;;75972:5;75916:30;:62::i;:::-;75911:167;;76014:40;;;;;;;;;;;;;;75911:167;76113:3;76105:5;:11;75885:233;;76200:3;76183:13;;:20;76179:34;;76205:8;;;76179:34;75771:458;;75746:483;75558:689;;;:::o;24402:922::-;24455:7;24475:14;24492:1;24475:18;;24542:6;24533:5;:15;24529:102;;24578:6;24569:15;;;;;;:::i;:::-;;;;;24613:2;24603:12;;;;24529:102;24658:6;24649:5;:15;24645:102;;24694:6;24685:15;;;;;;:::i;:::-;;;;;24729:2;24719:12;;;;24645:102;24774:6;24765:5;:15;24761:102;;24810:6;24801:15;;;;;;:::i;:::-;;;;;24845:2;24835:12;;;;24761:102;24890:5;24881;:14;24877:99;;24925:5;24916:14;;;;;;:::i;:::-;;;;;24959:1;24949:11;;;;24877:99;25003:5;24994;:14;24990:99;;25038:5;25029:14;;;;;;:::i;:::-;;;;;25072:1;25062:11;;;;24990:99;25116:5;25107;:14;25103:99;;25151:5;25142:14;;;;;;:::i;:::-;;;;;25185:1;25175:11;;;;25103:99;25229:5;25220;:14;25216:66;;25265:1;25255:11;;;;25216:66;25310:6;25303:13;;;24402:922;;;:::o;69840:2966::-;69913:20;69936:13;;69913:36;;69976:1;69964:8;:13;69960:44;;69986:18;;;;;;;;;;;;;;69960:44;70017:61;70047:1;70051:2;70055:12;70069:8;70017:21;:61::i;:::-;70561:1;43561:2;70531:1;:26;;70530:32;70518:8;:45;70492:18;:22;70511:2;70492:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;70840:139;70877:2;70931:33;70954:1;70958:2;70962:1;70931:14;:33::i;:::-;70898:30;70919:8;70898:20;:30::i;:::-;:66;70840:18;:139::i;:::-;70806:17;:31;70824:12;70806:31;;;;;;;;;;;:173;;;;70996:16;71027:11;71056:8;71041:12;:23;71027:37;;71577:16;71573:2;71569:25;71557:37;;71949:12;71909:8;71868:1;71806:25;71747:1;71686;71659:335;72320:1;72306:12;72302:20;72260:346;72361:3;72352:7;72349:16;72260:346;;72579:7;72569:8;72566:1;72539:25;72536:1;72533;72528:59;72414:1;72405:7;72401:15;72390:26;;72260:346;;;72264:77;72651:1;72639:8;:13;72635:45;;72661:19;;;;;;;;;;;;;;72635:45;72713:3;72697:13;:19;;;;70266:2462;;72738:60;72767:1;72771:2;72775:12;72789:8;72738:20;:60::i;:::-;69902:2904;69840:2966;;:::o;57252:324::-;57322:14;57555:1;57545:8;57542:15;57516:24;57512:46;57502:56;;57252:324;;;:::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:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:104::-;12136:7;12165:24;12183:5;12165:24;:::i;:::-;12154:35;;12091:104;;;:::o;12201:138::-;12282:32;12308:5;12282:32;:::i;:::-;12275:5;12272:43;12262:71;;12329:1;12326;12319:12;12262:71;12201:138;:::o;12345:155::-;12399:5;12437:6;12424:20;12415:29;;12453:41;12488:5;12453:41;:::i;:::-;12345:155;;;;:::o;12506:490::-;12582:6;12590;12639:2;12627:9;12618:7;12614:23;12610:32;12607:119;;;12645:79;;:::i;:::-;12607:119;12765:1;12790:61;12843:7;12834:6;12823:9;12819:22;12790:61;:::i;:::-;12780:71;;12736:125;12900:2;12926:53;12971:7;12962:6;12951:9;12947:22;12926:53;:::i;:::-;12916:63;;12871:118;12506:490;;;;;:::o;13002:180::-;13050:77;13047:1;13040:88;13147:4;13144:1;13137:15;13171:4;13168:1;13161:15;13188:320;13232:6;13269:1;13263:4;13259:12;13249:22;;13316:1;13310:4;13306:12;13337:18;13327:81;;13393:4;13385:6;13381:17;13371:27;;13327:81;13455:2;13447:6;13444:14;13424:18;13421:38;13418:84;;13474:18;;:::i;:::-;13418:84;13239:269;13188:320;;;:::o;13514:171::-;13654:23;13650:1;13642:6;13638:14;13631:47;13514:171;:::o;13691:366::-;13833:3;13854:67;13918:2;13913:3;13854:67;:::i;:::-;13847:74;;13930:93;14019:3;13930:93;:::i;:::-;14048:2;14043:3;14039:12;14032:19;;13691:366;;;:::o;14063:419::-;14229:4;14267:2;14256:9;14252:18;14244:26;;14316:9;14310:4;14306:20;14302:1;14291:9;14287:17;14280:47;14344:131;14470:4;14344:131;:::i;:::-;14336:139;;14063:419;;;:::o;14488:141::-;14537:4;14560:3;14552:11;;14583:3;14580:1;14573:14;14617:4;14614:1;14604:18;14596:26;;14488:141;;;:::o;14635:93::-;14672:6;14719:2;14714;14707:5;14703:14;14699:23;14689:33;;14635:93;;;:::o;14734:107::-;14778:8;14828:5;14822:4;14818:16;14797:37;;14734:107;;;;:::o;14847:393::-;14916:6;14966:1;14954:10;14950:18;14989:97;15019:66;15008:9;14989:97;:::i;:::-;15107:39;15137:8;15126:9;15107:39;:::i;:::-;15095:51;;15179:4;15175:9;15168:5;15164:21;15155:30;;15228:4;15218:8;15214:19;15207:5;15204:30;15194:40;;14923:317;;14847:393;;;;;:::o;15246:60::-;15274:3;15295:5;15288:12;;15246:60;;;:::o;15312:142::-;15362:9;15395:53;15413:34;15422:24;15440:5;15422:24;:::i;:::-;15413:34;:::i;:::-;15395:53;:::i;:::-;15382:66;;15312:142;;;:::o;15460:75::-;15503:3;15524:5;15517:12;;15460:75;;;:::o;15541:269::-;15651:39;15682:7;15651:39;:::i;:::-;15712:91;15761:41;15785:16;15761:41;:::i;:::-;15753:6;15746:4;15740:11;15712:91;:::i;:::-;15706:4;15699:105;15617:193;15541:269;;;:::o;15816:73::-;15861:3;15816:73;:::o;15895:189::-;15972:32;;:::i;:::-;16013:65;16071:6;16063;16057:4;16013:65;:::i;:::-;15948:136;15895:189;;:::o;16090:186::-;16150:120;16167:3;16160:5;16157:14;16150:120;;;16221:39;16258:1;16251:5;16221:39;:::i;:::-;16194:1;16187:5;16183:13;16174:22;;16150:120;;;16090:186;;:::o;16282:543::-;16383:2;16378:3;16375:11;16372:446;;;16417:38;16449:5;16417:38;:::i;:::-;16501:29;16519:10;16501:29;:::i;:::-;16491:8;16487:44;16684:2;16672:10;16669:18;16666:49;;;16705:8;16690:23;;16666:49;16728:80;16784:22;16802:3;16784:22;:::i;:::-;16774:8;16770:37;16757:11;16728:80;:::i;:::-;16387:431;;16372:446;16282:543;;;:::o;16831:117::-;16885:8;16935:5;16929:4;16925:16;16904:37;;16831:117;;;;:::o;16954:169::-;16998:6;17031:51;17079:1;17075:6;17067:5;17064:1;17060:13;17031:51;:::i;:::-;17027:56;17112:4;17106;17102:15;17092:25;;17005:118;16954:169;;;;:::o;17128:295::-;17204:4;17350:29;17375:3;17369:4;17350:29;:::i;:::-;17342:37;;17412:3;17409:1;17405:11;17399:4;17396:21;17388:29;;17128:295;;;;:::o;17428:1395::-;17545:37;17578:3;17545:37;:::i;:::-;17647:18;17639:6;17636:30;17633:56;;;17669:18;;:::i;:::-;17633:56;17713:38;17745:4;17739:11;17713:38;:::i;:::-;17798:67;17858:6;17850;17844:4;17798:67;:::i;:::-;17892:1;17916:4;17903:17;;17948:2;17940:6;17937:14;17965:1;17960:618;;;;18622:1;18639:6;18636:77;;;18688:9;18683:3;18679:19;18673:26;18664:35;;18636:77;18739:67;18799:6;18792:5;18739:67;:::i;:::-;18733:4;18726:81;18595:222;17930:887;;17960:618;18012:4;18008:9;18000:6;17996:22;18046:37;18078:4;18046:37;:::i;:::-;18105:1;18119:208;18133:7;18130:1;18127:14;18119:208;;;18212:9;18207:3;18203:19;18197:26;18189:6;18182:42;18263:1;18255:6;18251:14;18241:24;;18310:2;18299:9;18295:18;18282:31;;18156:4;18153:1;18149:12;18144:17;;18119:208;;;18355:6;18346:7;18343:19;18340:179;;;18413:9;18408:3;18404:19;18398:26;18456:48;18498:4;18490:6;18486:17;18475:9;18456:48;:::i;:::-;18448:6;18441:64;18363:156;18340:179;18565:1;18561;18553:6;18549:14;18545:22;18539:4;18532:36;17967:611;;;17930:887;;17520:1303;;;17428:1395;;:::o;18829:180::-;18877:77;18874:1;18867:88;18974:4;18971:1;18964:15;18998:4;18995:1;18988:15;19015:191;19055:3;19074:20;19092:1;19074:20;:::i;:::-;19069:25;;19108:20;19126:1;19108:20;:::i;:::-;19103:25;;19151:1;19148;19144:9;19137:16;;19172:3;19169:1;19166:10;19163:36;;;19179:18;;:::i;:::-;19163:36;19015:191;;;;:::o;19212:158::-;19352:10;19348:1;19340:6;19336:14;19329:34;19212:158;:::o;19376:365::-;19518:3;19539:66;19603:1;19598:3;19539:66;:::i;:::-;19532:73;;19614:93;19703:3;19614:93;:::i;:::-;19732:2;19727:3;19723:12;19716:19;;19376:365;;;:::o;19747:419::-;19913:4;19951:2;19940:9;19936:18;19928:26;;20000:9;19994:4;19990:20;19986:1;19975:9;19971:17;19964:47;20028:131;20154:4;20028:131;:::i;:::-;20020:139;;19747:419;;;:::o;20172:176::-;20312:28;20308:1;20300:6;20296:14;20289:52;20172:176;:::o;20354:366::-;20496:3;20517:67;20581:2;20576:3;20517:67;:::i;:::-;20510:74;;20593:93;20682:3;20593:93;:::i;:::-;20711:2;20706:3;20702:12;20695:19;;20354:366;;;:::o;20726:419::-;20892:4;20930:2;20919:9;20915:18;20907:26;;20979:9;20973:4;20969:20;20965:1;20954:9;20950:17;20943:47;21007:131;21133:4;21007:131;:::i;:::-;20999:139;;20726:419;;;:::o;21151:164::-;21291:16;21287:1;21279:6;21275:14;21268:40;21151:164;:::o;21321:366::-;21463:3;21484:67;21548:2;21543:3;21484:67;:::i;:::-;21477:74;;21560:93;21649:3;21560:93;:::i;:::-;21678:2;21673:3;21669:12;21662:19;;21321:366;;;:::o;21693:419::-;21859:4;21897:2;21886:9;21882:18;21874:26;;21946:9;21940:4;21936:20;21932:1;21921:9;21917:17;21910:47;21974:131;22100:4;21974:131;:::i;:::-;21966:139;;21693:419;;;:::o;22118:194::-;22158:4;22178:20;22196:1;22178:20;:::i;:::-;22173:25;;22212:20;22230:1;22212:20;:::i;:::-;22207:25;;22256:1;22253;22249:9;22241:17;;22280:1;22274:4;22271:11;22268:37;;;22285:18;;:::i;:::-;22268:37;22118:194;;;;:::o;22318:170::-;22458:22;22454:1;22446:6;22442:14;22435:46;22318:170;:::o;22494:366::-;22636:3;22657:67;22721:2;22716:3;22657:67;:::i;:::-;22650:74;;22733:93;22822:3;22733:93;:::i;:::-;22851:2;22846:3;22842:12;22835:19;;22494:366;;;:::o;22866:419::-;23032:4;23070:2;23059:9;23055:18;23047:26;;23119:9;23113:4;23109:20;23105:1;23094:9;23090:17;23083:47;23147:131;23273:4;23147:131;:::i;:::-;23139:139;;22866:419;;;:::o;23291:410::-;23331:7;23354:20;23372:1;23354:20;:::i;:::-;23349:25;;23388:20;23406:1;23388:20;:::i;:::-;23383:25;;23443:1;23440;23436:9;23465:30;23483:11;23465:30;:::i;:::-;23454:41;;23644:1;23635:7;23631:15;23628:1;23625:22;23605:1;23598:9;23578:83;23555:139;;23674:18;;:::i;:::-;23555:139;23339:362;23291:410;;;;:::o;23707:221::-;23847:34;23843:1;23835:6;23831:14;23824:58;23916:4;23911:2;23903:6;23899:15;23892:29;23707:221;:::o;23934:366::-;24076:3;24097:67;24161:2;24156:3;24097:67;:::i;:::-;24090:74;;24173:93;24262:3;24173:93;:::i;:::-;24291:2;24286:3;24282:12;24275:19;;23934:366;;;:::o;24306:419::-;24472:4;24510:2;24499:9;24495:18;24487:26;;24559:9;24553:4;24549:20;24545:1;24534:9;24530:17;24523:47;24587:131;24713:4;24587:131;:::i;:::-;24579:139;;24306:419;;;:::o;24731:234::-;24871:34;24867:1;24859:6;24855:14;24848:58;24940:17;24935:2;24927:6;24923:15;24916:42;24731:234;:::o;24971:366::-;25113:3;25134:67;25198:2;25193:3;25134:67;:::i;:::-;25127:74;;25210:93;25299:3;25210:93;:::i;:::-;25328:2;25323:3;25319:12;25312:19;;24971:366;;;:::o;25343:419::-;25509:4;25547:2;25536:9;25532:18;25524:26;;25596:9;25590:4;25586:20;25582:1;25571:9;25567:17;25560:47;25624:131;25750:4;25624:131;:::i;:::-;25616:139;;25343:419;;;:::o;25768:148::-;25870:11;25907:3;25892:18;;25768:148;;;;:::o;25922:390::-;26028:3;26056:39;26089:5;26056:39;:::i;:::-;26111:89;26193:6;26188:3;26111:89;:::i;:::-;26104:96;;26209:65;26267:6;26262:3;26255:4;26248:5;26244:16;26209:65;:::i;:::-;26299:6;26294:3;26290:16;26283:23;;26032:280;25922:390;;;;:::o;26318:155::-;26458:7;26454:1;26446:6;26442:14;26435:31;26318:155;:::o;26479:400::-;26639:3;26660:84;26742:1;26737:3;26660:84;:::i;:::-;26653:91;;26753:93;26842:3;26753:93;:::i;:::-;26871:1;26866:3;26862:11;26855:18;;26479:400;;;:::o;26885:701::-;27166:3;27188:95;27279:3;27270:6;27188:95;:::i;:::-;27181:102;;27300:95;27391:3;27382:6;27300:95;:::i;:::-;27293:102;;27412:148;27556:3;27412:148;:::i;:::-;27405:155;;27577:3;27570:10;;26885:701;;;;;:::o;27592:225::-;27732:34;27728:1;27720:6;27716:14;27709:58;27801:8;27796:2;27788:6;27784:15;27777:33;27592:225;:::o;27823:366::-;27965:3;27986:67;28050:2;28045:3;27986:67;:::i;:::-;27979:74;;28062:93;28151:3;28062:93;:::i;:::-;28180:2;28175:3;28171:12;28164:19;;27823:366;;;:::o;28195:419::-;28361:4;28399:2;28388:9;28384:18;28376:26;;28448:9;28442:4;28438:20;28434:1;28423:9;28419:17;28412:47;28476:131;28602:4;28476:131;:::i;:::-;28468:139;;28195:419;;;:::o;28620:170::-;28760:22;28756:1;28748:6;28744:14;28737:46;28620:170;:::o;28796:366::-;28938:3;28959:67;29023:2;29018:3;28959:67;:::i;:::-;28952:74;;29035:93;29124:3;29035:93;:::i;:::-;29153:2;29148:3;29144:12;29137:19;;28796:366;;;:::o;29168:419::-;29334:4;29372:2;29361:9;29357:18;29349:26;;29421:9;29415:4;29411:20;29407:1;29396:9;29392:17;29385:47;29449:131;29575:4;29449:131;:::i;:::-;29441:139;;29168:419;;;:::o;29593:165::-;29733:17;29729:1;29721:6;29717:14;29710:41;29593:165;:::o;29764:366::-;29906:3;29927:67;29991:2;29986:3;29927:67;:::i;:::-;29920:74;;30003:93;30092:3;30003:93;:::i;:::-;30121:2;30116:3;30112:12;30105:19;;29764:366;;;:::o;30136:419::-;30302:4;30340:2;30329:9;30325:18;30317:26;;30389:9;30383:4;30379:20;30375:1;30364:9;30360:17;30353:47;30417:131;30543:4;30417:131;:::i;:::-;30409:139;;30136:419;;;:::o;30561:147::-;30662:11;30699:3;30684:18;;30561:147;;;;:::o;30714:114::-;;:::o;30834:398::-;30993:3;31014:83;31095:1;31090:3;31014:83;:::i;:::-;31007:90;;31106:93;31195:3;31106:93;:::i;:::-;31224:1;31219:3;31215:11;31208:18;;30834:398;;;:::o;31238:379::-;31422:3;31444:147;31587:3;31444:147;:::i;:::-;31437:154;;31608:3;31601:10;;31238:379;;;:::o;31623:165::-;31763:17;31759:1;31751:6;31747:14;31740:41;31623:165;:::o;31794:366::-;31936:3;31957:67;32021:2;32016:3;31957:67;:::i;:::-;31950:74;;32033:93;32122:3;32033:93;:::i;:::-;32151:2;32146:3;32142:12;32135:19;;31794:366;;;:::o;32166:419::-;32332:4;32370:2;32359:9;32355:18;32347:26;;32419:9;32413:4;32409:20;32405:1;32394:9;32390:17;32383:47;32447:131;32573:4;32447:131;:::i;:::-;32439:139;;32166:419;;;:::o;32591:182::-;32731:34;32727:1;32719:6;32715:14;32708:58;32591:182;:::o;32779:366::-;32921:3;32942:67;33006:2;33001:3;32942:67;:::i;:::-;32935:74;;33018:93;33107:3;33018:93;:::i;:::-;33136:2;33131:3;33127:12;33120:19;;32779:366;;;:::o;33151:419::-;33317:4;33355:2;33344:9;33340:18;33332:26;;33404:9;33398:4;33394:20;33390:1;33379:9;33375:17;33368:47;33432:131;33558:4;33432:131;:::i;:::-;33424:139;;33151:419;;;:::o;33576:98::-;33627:6;33661:5;33655:12;33645:22;;33576:98;;;:::o;33680:168::-;33763:11;33797:6;33792:3;33785:19;33837:4;33832:3;33828:14;33813:29;;33680:168;;;;:::o;33854:373::-;33940:3;33968:38;34000:5;33968:38;:::i;:::-;34022:70;34085:6;34080:3;34022:70;:::i;:::-;34015:77;;34101:65;34159:6;34154:3;34147:4;34140:5;34136:16;34101:65;:::i;:::-;34191:29;34213:6;34191:29;:::i;:::-;34186:3;34182:39;34175:46;;33944:283;33854:373;;;;:::o;34233:640::-;34428:4;34466:3;34455:9;34451:19;34443:27;;34480:71;34548:1;34537:9;34533:17;34524:6;34480:71;:::i;:::-;34561:72;34629:2;34618:9;34614:18;34605:6;34561:72;:::i;:::-;34643;34711:2;34700:9;34696:18;34687:6;34643:72;:::i;:::-;34762:9;34756:4;34752:20;34747:2;34736:9;34732:18;34725:48;34790:76;34861:4;34852:6;34790:76;:::i;:::-;34782:84;;34233:640;;;;;;;:::o;34879:141::-;34935:5;34966:6;34960:13;34951:22;;34982:32;35008:5;34982:32;:::i;:::-;34879:141;;;;:::o;35026:349::-;35095:6;35144:2;35132:9;35123:7;35119:23;35115:32;35112:119;;;35150:79;;:::i;:::-;35112:119;35270:1;35295:63;35350:7;35341:6;35330:9;35326:22;35295:63;:::i;:::-;35285:73;;35241:127;35026:349;;;;:::o;35381:180::-;35429:77;35426:1;35419:88;35526:4;35523:1;35516:15;35550:4;35547:1;35540:15;35567:181;35707:33;35703:1;35695:6;35691:14;35684:57;35567:181;:::o;35754:366::-;35896:3;35917:67;35981:2;35976:3;35917:67;:::i;:::-;35910:74;;35993:93;36082:3;35993:93;:::i;:::-;36111:2;36106:3;36102:12;36095:19;;35754:366;;;:::o;36126:419::-;36292:4;36330:2;36319:9;36315:18;36307:26;;36379:9;36373:4;36369:20;36365:1;36354:9;36350:17;36343:47;36407:131;36533:4;36407:131;:::i;:::-;36399:139;;36126:419;;;:::o

Swarm Source

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