ETH Price: $2,437.37 (+3.38%)

Token

PepemonNFT (PepemonEgg)
 

Overview

Max Total Supply

378 PepemonEgg

Holders

37

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 PepemonEgg
0xff8e45b60867b34a0540721ab8136e87851d533c
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:
PepemonNFT

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.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) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 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 256, 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 << 3) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.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 `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

// 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.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.9.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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/nft.sol




pragma solidity >=0.7.0 <0.9.0;



contract PepemonNFT is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  address fund = address(0xd15B4C54C4EB3265Bb046A5Ea94306f8A5aAc67c);
  string public baseExtension = ".json";
  uint256 public cost = 0.1 ether;
  uint256 public maxSupply = 1000;
  bool public paused = true;
  mapping(address => bool) private whitelist;
  mapping(address => uint256) public addressMintedBalance;


  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI

  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);

  }

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


  
 function isWhitelisted(address _user) public view returns (bool) {
        return whitelist[_user];
    }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }



  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  


  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  

  function addToWhitelist(address[] calldata _users) external onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            whitelist[_users[i]] = true;
        }
  }
   function removeFromWhitelist(address[] calldata _users) external onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            whitelist[_users[i]] = false;
        }
    }

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
         if(isWhitelisted(msg.sender)) {
            require(msg.value == 0, "Whitelisted users cannot pay");
            require(_mintAmount == 1, "Whitelisted users can mint only 1 nft");
            whitelist[msg.sender] = false;
        }else{
            require(msg.value >= cost * _mintAmount, "insufficient funds");
            payable(fund).transfer(msg.value);
        }
       
    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(fund).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405273d15b4c54c4eb3265bb046a5ea94306f8a5aac67c600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90816200009e91906200056a565b5067016345785d8a0000600e556103e8600f55600160105f6101000a81548160ff021916908315150217905550348015620000d7575f80fd5b5060405162004f9938038062004f998339818101604052810190620000fd9190620007a6565b8282815f90816200010f91906200056a565b5080600190816200012191906200056a565b50505062000144620001386200015e60201b60201c565b6200016560201b60201c565b62000155816200022860201b60201c565b505050620008da565b5f33905090565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002386200024d60201b60201c565b80600b90816200024991906200056a565b5050565b6200025d6200015e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000283620002de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d390620008ba565b60405180910390fd5b565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200038257607f821691505b6020821081036200039857620003976200033d565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003fc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003bf565b620004088683620003bf565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004526200044c620004468462000420565b62000429565b62000420565b9050919050565b5f819050919050565b6200046d8362000432565b620004856200047c8262000459565b848454620003cb565b825550505050565b5f90565b6200049b6200048d565b620004a881848462000462565b505050565b5b81811015620004cf57620004c35f8262000491565b600181019050620004ae565b5050565b601f8211156200051e57620004e8816200039e565b620004f384620003b0565b8101602085101562000503578190505b6200051b6200051285620003b0565b830182620004ad565b50505b505050565b5f82821c905092915050565b5f620005405f198460080262000523565b1980831691505092915050565b5f6200055a83836200052f565b9150826002028217905092915050565b620005758262000306565b67ffffffffffffffff81111562000591576200059062000310565b5b6200059d82546200036a565b620005aa828285620004d3565b5f60209050601f831160018114620005e0575f8415620005cb578287015190505b620005d785826200054d565b86555062000646565b601f198416620005f0866200039e565b5f5b828110156200061957848901518255600182019150602085019450602081019050620005f2565b8683101562000639578489015162000635601f8916826200052f565b8355505b6001600288020188555050505b505050505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b620006828262000667565b810181811067ffffffffffffffff82111715620006a457620006a362000310565b5b80604052505050565b5f620006b86200064e565b9050620006c6828262000677565b919050565b5f67ffffffffffffffff821115620006e857620006e762000310565b5b620006f38262000667565b9050602081019050919050565b5f5b838110156200071f57808201518184015260208101905062000702565b5f8484015250505050565b5f620007406200073a84620006cb565b620006ad565b9050828152602081018484840111156200075f576200075e62000663565b5b6200076c84828562000700565b509392505050565b5f82601f8301126200078b576200078a6200065f565b5b81516200079d8482602086016200072a565b91505092915050565b5f805f60608486031215620007c057620007bf62000657565b5b5f84015167ffffffffffffffff811115620007e057620007df6200065b565b5b620007ee8682870162000774565b935050602084015167ffffffffffffffff8111156200081257620008116200065b565b5b620008208682870162000774565b925050604084015167ffffffffffffffff8111156200084457620008436200065b565b5b620008528682870162000774565b9150509250925092565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f620008a26020836200085c565b9150620008af826200086c565b602082019050919050565b5f6020820190508181035f830152620008d38162000894565b9050919050565b6146b180620008e85f395ff3fe608060405260043610610203575f3560e01c806355f804b311610117578063a0712d681161009f578063c87b56dd1161006e578063c87b56dd1461073f578063d5abeb011461077b578063da3ef23f146107a5578063e985e9c5146107cd578063f2fde38b1461080957610203565b8063a0712d68146106a9578063a22cb465146106c5578063b88d4fde146106ed578063c66828621461071557610203565b806370a08231116100e657806370a08231146105db578063715018a6146106175780637f6497831461062d5780638da5cb5b1461065557806395d89b411461067f57610203565b806355f804b3146105235780635c975abb1461054b5780636352211e146105755780636c0360eb146105b157610203565b806323b872dd1161019a57806342842e0e1161016957806342842e0e14610433578063438b63001461045b57806344a0d68a146104975780634f6ccce7146104bf578063548db174146104fb57610203565b806323b872dd146103895780632f745c59146103b15780633af32abf146103ed5780633ccfd60b1461042957610203565b8063095ea7b3116101d6578063095ea7b3146102d157806313faede6146102f957806318160ddd1461032357806318cae2691461034d57610203565b806301ffc9a71461020757806302329a291461024357806306fdde031461026b578063081812fc14610295575b5f80fd5b348015610212575f80fd5b5061022d60048036038101906102289190612d1a565b610831565b60405161023a9190612d5f565b60405180910390f35b34801561024e575f80fd5b5061026960048036038101906102649190612da2565b6108aa565b005b348015610276575f80fd5b5061027f6108ce565b60405161028c9190612e57565b60405180910390f35b3480156102a0575f80fd5b506102bb60048036038101906102b69190612eaa565b61095d565b6040516102c89190612f14565b60405180910390f35b3480156102dc575f80fd5b506102f760048036038101906102f29190612f57565b61099f565b005b348015610304575f80fd5b5061030d610ab5565b60405161031a9190612fa4565b60405180910390f35b34801561032e575f80fd5b50610337610abb565b6040516103449190612fa4565b60405180910390f35b348015610358575f80fd5b50610373600480360381019061036e9190612fbd565b610ac7565b6040516103809190612fa4565b60405180910390f35b348015610394575f80fd5b506103af60048036038101906103aa9190612fe8565b610adc565b005b3480156103bc575f80fd5b506103d760048036038101906103d29190612f57565b610b3c565b6040516103e49190612fa4565b60405180910390f35b3480156103f8575f80fd5b50610413600480360381019061040e9190612fbd565b610bdc565b6040516104209190612d5f565b60405180910390f35b610431610c2e565b005b34801561043e575f80fd5b5061045960048036038101906104549190612fe8565b610ccb565b005b348015610466575f80fd5b50610481600480360381019061047c9190612fbd565b610cea565b60405161048e91906130ef565b60405180910390f35b3480156104a2575f80fd5b506104bd60048036038101906104b89190612eaa565b610d95565b005b3480156104ca575f80fd5b506104e560048036038101906104e09190612eaa565b610da7565b6040516104f29190612fa4565b60405180910390f35b348015610506575f80fd5b50610521600480360381019061051c9190613170565b610e15565b005b34801561052e575f80fd5b50610549600480360381019061054491906132e3565b610ebd565b005b348015610556575f80fd5b5061055f610ed8565b60405161056c9190612d5f565b60405180910390f35b348015610580575f80fd5b5061059b60048036038101906105969190612eaa565b610eea565b6040516105a89190612f14565b60405180910390f35b3480156105bc575f80fd5b506105c5610f6e565b6040516105d29190612e57565b60405180910390f35b3480156105e6575f80fd5b5061060160048036038101906105fc9190612fbd565b610ffa565b60405161060e9190612fa4565b60405180910390f35b348015610622575f80fd5b5061062b6110ae565b005b348015610638575f80fd5b50610653600480360381019061064e9190613170565b6110c1565b005b348015610660575f80fd5b5061066961116a565b6040516106769190612f14565b60405180910390f35b34801561068a575f80fd5b50610693611192565b6040516106a09190612e57565b60405180910390f35b6106c360048036038101906106be9190612eaa565b611222565b005b3480156106d0575f80fd5b506106eb60048036038101906106e6919061332a565b611577565b005b3480156106f8575f80fd5b50610713600480360381019061070e9190613406565b61158d565b005b348015610720575f80fd5b506107296115ef565b6040516107369190612e57565b60405180910390f35b34801561074a575f80fd5b5061076560048036038101906107609190612eaa565b61167b565b6040516107729190612e57565b60405180910390f35b348015610786575f80fd5b5061078f611722565b60405161079c9190612fa4565b60405180910390f35b3480156107b0575f80fd5b506107cb60048036038101906107c691906132e3565b611728565b005b3480156107d8575f80fd5b506107f360048036038101906107ee9190613486565b611743565b6040516108009190612d5f565b60405180910390f35b348015610814575f80fd5b5061082f600480360381019061082a9190612fbd565b6117d1565b005b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a357506108a282611853565b5b9050919050565b6108b2611934565b8060105f6101000a81548160ff02191690831515021790555050565b60605f80546108dc906134f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610908906134f1565b80156109535780601f1061092a57610100808354040283529160200191610953565b820191905f5260205f20905b81548152906001019060200180831161093657829003601f168201915b5050505050905090565b5f610967826119b2565b60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6109a982610eea565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090613591565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a386119fd565b73ffffffffffffffffffffffffffffffffffffffff161480610a675750610a6681610a616119fd565b611743565b5b610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d9061361f565b60405180910390fd5b610ab08383611a04565b505050565b600e5481565b5f600880549050905090565b6012602052805f5260405f205f915090505481565b610aed610ae76119fd565b82611aba565b610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b23906136ad565b60405180910390fd5b610b37838383611b4e565b505050565b5f610b4683610ffa565b8210610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e9061373b565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b5f60115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610c36611934565b5f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610c7c90613786565b5f6040518083038185875af1925050503d805f8114610cb6576040519150601f19603f3d011682016040523d82523d5f602084013e610cbb565b606091505b5050905080610cc8575f80fd5b50565b610ce583838360405180602001604052805f81525061158d565b505050565b60605f610cf683610ffa565b90505f8167ffffffffffffffff811115610d1357610d126131bf565b5b604051908082528060200260200182016040528015610d415781602001602082028036833780820191505090505b5090505f5b82811015610d8a57610d588582610b3c565b828281518110610d6b57610d6a61379a565b5b6020026020010181815250508080610d82906137f4565b915050610d46565b508092505050919050565b610d9d611934565b80600e8190555050565b5f610db0610abb565b8210610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de8906138ab565b60405180910390fd5b60088281548110610e0557610e0461379a565b5b905f5260205f2001549050919050565b610e1d611934565b5f5b82829050811015610eb8575f60115f858585818110610e4157610e4061379a565b5b9050602002016020810190610e569190612fbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610eb0906137f4565b915050610e1f565b505050565b610ec5611934565b80600b9081610ed49190613a66565b5050565b60105f9054906101000a900460ff1681565b5f80610ef583611e3a565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90613b7f565b60405180910390fd5b80915050919050565b600b8054610f7b906134f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa7906134f1565b8015610ff25780601f10610fc957610100808354040283529160200191610ff2565b820191905f5260205f20905b815481529060010190602001808311610fd557829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106090613c0d565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6110b6611934565b6110bf5f611e73565b565b6110c9611934565b5f5b8282905081101561116557600160115f8585858181106110ee576110ed61379a565b5b90506020020160208101906111039190612fbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061115d906137f4565b9150506110cb565b505050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111a1906134f1565b80601f01602080910402602001604051908101604052809291908181526020018280546111cd906134f1565b80156112185780601f106111ef57610100808354040283529160200191611218565b820191905f5260205f20905b8154815290600101906020018083116111fb57829003601f168201915b5050505050905090565b60105f9054906101000a900460ff1615611271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126890613c75565b60405180910390fd5b5f61127a610abb565b90505f82116112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b590613cdd565b60405180910390fd5b600f5482826112cd9190613cfb565b111561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590613d78565b60405180910390fd5b61131661116a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114eb5761135133610bdc565b15611434575f3414611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90613de0565b60405180910390fd5b600182146113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290613e6e565b60405180910390fd5b5f60115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506114ea565b81600e546114429190613e8c565b341015611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b90613f17565b60405180910390fd5b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f193505050501580156114e8573d5f803e3d5ffd5b505b5b5f600190505b8281116115725760125f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190611545906137f4565b919050555061155f33828461155a9190613cfb565b611f36565b808061156a906137f4565b9150506114f1565b505050565b6115896115826119fd565b8383611f53565b5050565b61159e6115986119fd565b83611aba565b6115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d4906136ad565b60405180910390fd5b6115e9848484846120ba565b50505050565b600d80546115fc906134f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611628906134f1565b80156116735780601f1061164a57610100808354040283529160200191611673565b820191905f5260205f20905b81548152906001019060200180831161165657829003601f168201915b505050505081565b606061168682612116565b6116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90613fa5565b60405180910390fd5b5f6116ce612156565b90505f8151116116ec5760405180602001604052805f81525061171a565b806116f6846121e6565b600d60405160200161170a9392919061407d565b6040516020818303038152906040525b915050919050565b600f5481565b611730611934565b80600d908161173f9190613a66565b5050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6117d9611934565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e9061411d565b60405180910390fd5b61185081611e73565b50565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061191d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061192d575061192c826122b0565b5b9050919050565b61193c6119fd565b73ffffffffffffffffffffffffffffffffffffffff1661195a61116a565b73ffffffffffffffffffffffffffffffffffffffff16146119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a790614185565b60405180910390fd5b565b6119bb81612116565b6119fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f190613b7f565b60405180910390fd5b50565b5f33905090565b8160045f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a7483610eea565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f80611ac583610eea565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b075750611b068185611743565b5b80611b4557508373ffffffffffffffffffffffffffffffffffffffff16611b2d8461095d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b6e82610eea565b73ffffffffffffffffffffffffffffffffffffffff1614611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90614213565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c29906142a1565b60405180910390fd5b611c3f8383836001612319565b8273ffffffffffffffffffffffffffffffffffffffff16611c5f82610eea565b73ffffffffffffffffffffffffffffffffffffffff1614611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac90614213565b60405180910390fd5b60045f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540392505081905550600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e358383836001612474565b505050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f4f828260405180602001604052805f81525061247a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb890614309565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120ad9190612d5f565b60405180910390a3505050565b6120c5848484611b4e565b6120d1848484846124d4565b612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790614397565b60405180910390fd5b50505050565b5f8073ffffffffffffffffffffffffffffffffffffffff1661213783611e3a565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054612165906134f1565b80601f0160208091040260200160405190810160405280929190818152602001828054612191906134f1565b80156121dc5780601f106121b3576101008083540402835291602001916121dc565b820191905f5260205f20905b8154815290600101906020018083116121bf57829003601f168201915b5050505050905090565b60605f60016121f484612656565b0190505f8167ffffffffffffffff811115612212576122116131bf565b5b6040519080825280601f01601f1916602001820160405280156122445781602001600182028036833780820191505090505b5090505f82602001820190505b6001156122a5578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161229a576122996143b5565b5b0494505f8503612251575b819350505050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612325848484846127a7565b6001811115612369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236090614452565b60405180910390fd5b5f8290505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036123ae576123a9816127ad565b6123ed565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146123ec576123eb85826127f1565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361242e5761242981612947565b61246d565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461246c5761246b8482612a07565b5b5b5050505050565b50505050565b6124848383612a7f565b6124905f8484846124d4565b6124cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c690614397565b60405180910390fd5b505050565b5f6124f48473ffffffffffffffffffffffffffffffffffffffff16612c92565b15612649578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261251d6119fd565b8786866040518563ffffffff1660e01b815260040161253f94939291906144c2565b6020604051808303815f875af192505050801561257a57506040513d601f19601f820116820180604052508101906125779190614520565b60015b6125f9573d805f81146125a8576040519150601f19603f3d011682016040523d82523d5f602084013e6125ad565b606091505b505f8151036125f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e890614397565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061264e565b600190505b949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106126b2577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816126a8576126a76143b5565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106126ef576d04ee2d6d415b85acef810000000083816126e5576126e46143b5565b5b0492506020810190505b662386f26fc10000831061271e57662386f26fc100008381612714576127136143b5565b5b0492506010810190505b6305f5e1008310612747576305f5e100838161273d5761273c6143b5565b5b0492506008810190505b612710831061276c576127108381612762576127616143b5565b5b0492506004810190505b6064831061278f5760648381612785576127846143b5565b5b0492506002810190505b600a831061279e576001810190505b80915050919050565b50505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f60016127fd84610ffa565b612807919061454b565b90505f60075f8481526020019081526020015f205490508181146128de575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f600160088054905061295a919061454b565b90505f60095f8481526020019081526020015f205490505f600883815481106129865761298561379a565b5b905f5260205f200154905080600883815481106129a6576129a561379a565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f905560088054806129ee576129ed61457e565b5b600190038181905f5260205f20015f9055905550505050565b5f612a1183610ffa565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae4906145f5565b60405180910390fd5b612af681612116565b15612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d9061465d565b60405180910390fd5b612b435f83836001612319565b612b4c81612116565b15612b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b839061465d565b60405180910390fd5b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c8e5f83836001612474565b5050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cf981612cc5565b8114612d03575f80fd5b50565b5f81359050612d1481612cf0565b92915050565b5f60208284031215612d2f57612d2e612cbd565b5b5f612d3c84828501612d06565b91505092915050565b5f8115159050919050565b612d5981612d45565b82525050565b5f602082019050612d725f830184612d50565b92915050565b612d8181612d45565b8114612d8b575f80fd5b50565b5f81359050612d9c81612d78565b92915050565b5f60208284031215612db757612db6612cbd565b5b5f612dc484828501612d8e565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612e04578082015181840152602081019050612de9565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612e2982612dcd565b612e338185612dd7565b9350612e43818560208601612de7565b612e4c81612e0f565b840191505092915050565b5f6020820190508181035f830152612e6f8184612e1f565b905092915050565b5f819050919050565b612e8981612e77565b8114612e93575f80fd5b50565b5f81359050612ea481612e80565b92915050565b5f60208284031215612ebf57612ebe612cbd565b5b5f612ecc84828501612e96565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612efe82612ed5565b9050919050565b612f0e81612ef4565b82525050565b5f602082019050612f275f830184612f05565b92915050565b612f3681612ef4565b8114612f40575f80fd5b50565b5f81359050612f5181612f2d565b92915050565b5f8060408385031215612f6d57612f6c612cbd565b5b5f612f7a85828601612f43565b9250506020612f8b85828601612e96565b9150509250929050565b612f9e81612e77565b82525050565b5f602082019050612fb75f830184612f95565b92915050565b5f60208284031215612fd257612fd1612cbd565b5b5f612fdf84828501612f43565b91505092915050565b5f805f60608486031215612fff57612ffe612cbd565b5b5f61300c86828701612f43565b935050602061301d86828701612f43565b925050604061302e86828701612e96565b9150509250925092565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61306a81612e77565b82525050565b5f61307b8383613061565b60208301905092915050565b5f602082019050919050565b5f61309d82613038565b6130a78185613042565b93506130b283613052565b805f5b838110156130e25781516130c98882613070565b97506130d483613087565b9250506001810190506130b5565b5085935050505092915050565b5f6020820190508181035f8301526131078184613093565b905092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126131305761312f61310f565b5b8235905067ffffffffffffffff81111561314d5761314c613113565b5b60208301915083602082028301111561316957613168613117565b5b9250929050565b5f806020838503121561318657613185612cbd565b5b5f83013567ffffffffffffffff8111156131a3576131a2612cc1565b5b6131af8582860161311b565b92509250509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6131f582612e0f565b810181811067ffffffffffffffff82111715613214576132136131bf565b5b80604052505050565b5f613226612cb4565b905061323282826131ec565b919050565b5f67ffffffffffffffff821115613251576132506131bf565b5b61325a82612e0f565b9050602081019050919050565b828183375f83830152505050565b5f61328761328284613237565b61321d565b9050828152602081018484840111156132a3576132a26131bb565b5b6132ae848285613267565b509392505050565b5f82601f8301126132ca576132c961310f565b5b81356132da848260208601613275565b91505092915050565b5f602082840312156132f8576132f7612cbd565b5b5f82013567ffffffffffffffff81111561331557613314612cc1565b5b613321848285016132b6565b91505092915050565b5f80604083850312156133405761333f612cbd565b5b5f61334d85828601612f43565b925050602061335e85828601612d8e565b9150509250929050565b5f67ffffffffffffffff821115613382576133816131bf565b5b61338b82612e0f565b9050602081019050919050565b5f6133aa6133a584613368565b61321d565b9050828152602081018484840111156133c6576133c56131bb565b5b6133d1848285613267565b509392505050565b5f82601f8301126133ed576133ec61310f565b5b81356133fd848260208601613398565b91505092915050565b5f805f806080858703121561341e5761341d612cbd565b5b5f61342b87828801612f43565b945050602061343c87828801612f43565b935050604061344d87828801612e96565b925050606085013567ffffffffffffffff81111561346e5761346d612cc1565b5b61347a878288016133d9565b91505092959194509250565b5f806040838503121561349c5761349b612cbd565b5b5f6134a985828601612f43565b92505060206134ba85828601612f43565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061350857607f821691505b60208210810361351b5761351a6134c4565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e655f8201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b5f61357b602183612dd7565b915061358682613521565b604082019050919050565b5f6020820190508181035f8301526135a88161356f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f5f8201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b5f613609603d83612dd7565b9150613614826135af565b604082019050919050565b5f6020820190508181035f830152613636816135fd565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e655f8201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b5f613697602d83612dd7565b91506136a28261363d565b604082019050919050565b5f6020820190508181035f8301526136c48161368b565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f755f8201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b5f613725602b83612dd7565b9150613730826136cb565b604082019050919050565b5f6020820190508181035f83015261375281613719565b9050919050565b5f81905092915050565b50565b5f6137715f83613759565b915061377c82613763565b5f82019050919050565b5f61379082613766565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6137fe82612e77565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138305761382f6137c7565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f5f8201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b5f613895602c83612dd7565b91506138a08261383b565b604082019050919050565b5f6020820190508181035f8301526138c281613889565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026139257fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826138ea565b61392f86836138ea565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61396a61396561396084612e77565b613947565b612e77565b9050919050565b5f819050919050565b61398383613950565b61399761398f82613971565b8484546138f6565b825550505050565b5f90565b6139ab61399f565b6139b681848461397a565b505050565b5b818110156139d9576139ce5f826139a3565b6001810190506139bc565b5050565b601f821115613a1e576139ef816138c9565b6139f8846138db565b81016020851015613a07578190505b613a1b613a13856138db565b8301826139bb565b50505b505050565b5f82821c905092915050565b5f613a3e5f1984600802613a23565b1980831691505092915050565b5f613a568383613a2f565b9150826002028217905092915050565b613a6f82612dcd565b67ffffffffffffffff811115613a8857613a876131bf565b5b613a9282546134f1565b613a9d8282856139dd565b5f60209050601f831160018114613ace575f8415613abc578287015190505b613ac68582613a4b565b865550613b2d565b601f198416613adc866138c9565b5f5b82811015613b0357848901518255600182019150602085019450602081019050613ade565b86831015613b205784890151613b1c601f891682613a2f565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e20494400000000000000005f82015250565b5f613b69601883612dd7565b9150613b7482613b35565b602082019050919050565b5f6020820190508181035f830152613b9681613b5d565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f7420612076615f8201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b5f613bf7602983612dd7565b9150613c0282613b9d565b604082019050919050565b5f6020820190508181035f830152613c2481613beb565b9050919050565b7f74686520636f6e747261637420697320706175736564000000000000000000005f82015250565b5f613c5f601683612dd7565b9150613c6a82613c2b565b602082019050919050565b5f6020820190508181035f830152613c8c81613c53565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e465400000000005f82015250565b5f613cc7601b83612dd7565b9150613cd282613c93565b602082019050919050565b5f6020820190508181035f830152613cf481613cbb565b9050919050565b5f613d0582612e77565b9150613d1083612e77565b9250828201905080821115613d2857613d276137c7565b5b92915050565b7f6d6178204e4654206c696d6974206578636565646564000000000000000000005f82015250565b5f613d62601683612dd7565b9150613d6d82613d2e565b602082019050919050565b5f6020820190508181035f830152613d8f81613d56565b9050919050565b7f57686974656c69737465642075736572732063616e6e6f7420706179000000005f82015250565b5f613dca601c83612dd7565b9150613dd582613d96565b602082019050919050565b5f6020820190508181035f830152613df781613dbe565b9050919050565b7f57686974656c69737465642075736572732063616e206d696e74206f6e6c79205f8201527f31206e6674000000000000000000000000000000000000000000000000000000602082015250565b5f613e58602583612dd7565b9150613e6382613dfe565b604082019050919050565b5f6020820190508181035f830152613e8581613e4c565b9050919050565b5f613e9682612e77565b9150613ea183612e77565b9250828202613eaf81612e77565b91508282048414831517613ec657613ec56137c7565b5b5092915050565b7f696e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f613f01601283612dd7565b9150613f0c82613ecd565b602082019050919050565b5f6020820190508181035f830152613f2e81613ef5565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f613f8f602f83612dd7565b9150613f9a82613f35565b604082019050919050565b5f6020820190508181035f830152613fbc81613f83565b9050919050565b5f81905092915050565b5f613fd782612dcd565b613fe18185613fc3565b9350613ff1818560208601612de7565b80840191505092915050565b5f8154614009816134f1565b6140138186613fc3565b9450600182165f811461402d576001811461404257614074565b60ff1983168652811515820286019350614074565b61404b856138c9565b5f5b8381101561406c5781548189015260018201915060208101905061404d565b838801955050505b50505092915050565b5f6140888286613fcd565b91506140948285613fcd565b91506140a08284613ffd565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614107602683612dd7565b9150614112826140ad565b604082019050919050565b5f6020820190508181035f830152614134816140fb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61416f602083612dd7565b915061417a8261413b565b602082019050919050565b5f6020820190508181035f83015261419c81614163565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f7272656374205f8201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b5f6141fd602583612dd7565b9150614208826141a3565b604082019050919050565b5f6020820190508181035f83015261422a816141f1565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61428b602483612dd7565b915061429682614231565b604082019050919050565b5f6020820190508181035f8301526142b88161427f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c6572000000000000005f82015250565b5f6142f3601983612dd7565b91506142fe826142bf565b602082019050919050565b5f6020820190508181035f830152614320816142e7565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e2045524337323152655f8201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b5f614381603283612dd7565b915061438c82614327565b604082019050919050565b5f6020820190508181035f8301526143ae81614375565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f455243373231456e756d657261626c653a20636f6e73656375746976652074725f8201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b5f61443c603583612dd7565b9150614447826143e2565b604082019050919050565b5f6020820190508181035f83015261446981614430565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f61449482614470565b61449e818561447a565b93506144ae818560208601612de7565b6144b781612e0f565b840191505092915050565b5f6080820190506144d55f830187612f05565b6144e26020830186612f05565b6144ef6040830185612f95565b8181036060830152614501818461448a565b905095945050505050565b5f8151905061451a81612cf0565b92915050565b5f6020828403121561453557614534612cbd565b5b5f6145428482850161450c565b91505092915050565b5f61455582612e77565b915061456083612e77565b9250828203905081811115614578576145776137c7565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b7f4552433732313a206d696e7420746f20746865207a65726f20616464726573735f82015250565b5f6145df602083612dd7565b91506145ea826145ab565b602082019050919050565b5f6020820190508181035f83015261460c816145d3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e746564000000005f82015250565b5f614647601c83612dd7565b915061465282614613565b602082019050919050565b5f6020820190508181035f8301526146748161463b565b905091905056fea264697066735822122064a4b0f5c2110fa25555a162d7e5fec6706ae78f235638848b9c370af3f0c93f64736f6c63430008140033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a506570656d6f6e4e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a506570656d6f6e456767000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53334e503375574a7a394a585a594c5a687779484872436e563256376d47326352774e38374a344e33584e582f00000000000000000000

Deployed Bytecode

0x608060405260043610610203575f3560e01c806355f804b311610117578063a0712d681161009f578063c87b56dd1161006e578063c87b56dd1461073f578063d5abeb011461077b578063da3ef23f146107a5578063e985e9c5146107cd578063f2fde38b1461080957610203565b8063a0712d68146106a9578063a22cb465146106c5578063b88d4fde146106ed578063c66828621461071557610203565b806370a08231116100e657806370a08231146105db578063715018a6146106175780637f6497831461062d5780638da5cb5b1461065557806395d89b411461067f57610203565b806355f804b3146105235780635c975abb1461054b5780636352211e146105755780636c0360eb146105b157610203565b806323b872dd1161019a57806342842e0e1161016957806342842e0e14610433578063438b63001461045b57806344a0d68a146104975780634f6ccce7146104bf578063548db174146104fb57610203565b806323b872dd146103895780632f745c59146103b15780633af32abf146103ed5780633ccfd60b1461042957610203565b8063095ea7b3116101d6578063095ea7b3146102d157806313faede6146102f957806318160ddd1461032357806318cae2691461034d57610203565b806301ffc9a71461020757806302329a291461024357806306fdde031461026b578063081812fc14610295575b5f80fd5b348015610212575f80fd5b5061022d60048036038101906102289190612d1a565b610831565b60405161023a9190612d5f565b60405180910390f35b34801561024e575f80fd5b5061026960048036038101906102649190612da2565b6108aa565b005b348015610276575f80fd5b5061027f6108ce565b60405161028c9190612e57565b60405180910390f35b3480156102a0575f80fd5b506102bb60048036038101906102b69190612eaa565b61095d565b6040516102c89190612f14565b60405180910390f35b3480156102dc575f80fd5b506102f760048036038101906102f29190612f57565b61099f565b005b348015610304575f80fd5b5061030d610ab5565b60405161031a9190612fa4565b60405180910390f35b34801561032e575f80fd5b50610337610abb565b6040516103449190612fa4565b60405180910390f35b348015610358575f80fd5b50610373600480360381019061036e9190612fbd565b610ac7565b6040516103809190612fa4565b60405180910390f35b348015610394575f80fd5b506103af60048036038101906103aa9190612fe8565b610adc565b005b3480156103bc575f80fd5b506103d760048036038101906103d29190612f57565b610b3c565b6040516103e49190612fa4565b60405180910390f35b3480156103f8575f80fd5b50610413600480360381019061040e9190612fbd565b610bdc565b6040516104209190612d5f565b60405180910390f35b610431610c2e565b005b34801561043e575f80fd5b5061045960048036038101906104549190612fe8565b610ccb565b005b348015610466575f80fd5b50610481600480360381019061047c9190612fbd565b610cea565b60405161048e91906130ef565b60405180910390f35b3480156104a2575f80fd5b506104bd60048036038101906104b89190612eaa565b610d95565b005b3480156104ca575f80fd5b506104e560048036038101906104e09190612eaa565b610da7565b6040516104f29190612fa4565b60405180910390f35b348015610506575f80fd5b50610521600480360381019061051c9190613170565b610e15565b005b34801561052e575f80fd5b50610549600480360381019061054491906132e3565b610ebd565b005b348015610556575f80fd5b5061055f610ed8565b60405161056c9190612d5f565b60405180910390f35b348015610580575f80fd5b5061059b60048036038101906105969190612eaa565b610eea565b6040516105a89190612f14565b60405180910390f35b3480156105bc575f80fd5b506105c5610f6e565b6040516105d29190612e57565b60405180910390f35b3480156105e6575f80fd5b5061060160048036038101906105fc9190612fbd565b610ffa565b60405161060e9190612fa4565b60405180910390f35b348015610622575f80fd5b5061062b6110ae565b005b348015610638575f80fd5b50610653600480360381019061064e9190613170565b6110c1565b005b348015610660575f80fd5b5061066961116a565b6040516106769190612f14565b60405180910390f35b34801561068a575f80fd5b50610693611192565b6040516106a09190612e57565b60405180910390f35b6106c360048036038101906106be9190612eaa565b611222565b005b3480156106d0575f80fd5b506106eb60048036038101906106e6919061332a565b611577565b005b3480156106f8575f80fd5b50610713600480360381019061070e9190613406565b61158d565b005b348015610720575f80fd5b506107296115ef565b6040516107369190612e57565b60405180910390f35b34801561074a575f80fd5b5061076560048036038101906107609190612eaa565b61167b565b6040516107729190612e57565b60405180910390f35b348015610786575f80fd5b5061078f611722565b60405161079c9190612fa4565b60405180910390f35b3480156107b0575f80fd5b506107cb60048036038101906107c691906132e3565b611728565b005b3480156107d8575f80fd5b506107f360048036038101906107ee9190613486565b611743565b6040516108009190612d5f565b60405180910390f35b348015610814575f80fd5b5061082f600480360381019061082a9190612fbd565b6117d1565b005b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a357506108a282611853565b5b9050919050565b6108b2611934565b8060105f6101000a81548160ff02191690831515021790555050565b60605f80546108dc906134f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610908906134f1565b80156109535780601f1061092a57610100808354040283529160200191610953565b820191905f5260205f20905b81548152906001019060200180831161093657829003601f168201915b5050505050905090565b5f610967826119b2565b60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6109a982610eea565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090613591565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a386119fd565b73ffffffffffffffffffffffffffffffffffffffff161480610a675750610a6681610a616119fd565b611743565b5b610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d9061361f565b60405180910390fd5b610ab08383611a04565b505050565b600e5481565b5f600880549050905090565b6012602052805f5260405f205f915090505481565b610aed610ae76119fd565b82611aba565b610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b23906136ad565b60405180910390fd5b610b37838383611b4e565b505050565b5f610b4683610ffa565b8210610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e9061373b565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b5f60115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610c36611934565b5f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610c7c90613786565b5f6040518083038185875af1925050503d805f8114610cb6576040519150601f19603f3d011682016040523d82523d5f602084013e610cbb565b606091505b5050905080610cc8575f80fd5b50565b610ce583838360405180602001604052805f81525061158d565b505050565b60605f610cf683610ffa565b90505f8167ffffffffffffffff811115610d1357610d126131bf565b5b604051908082528060200260200182016040528015610d415781602001602082028036833780820191505090505b5090505f5b82811015610d8a57610d588582610b3c565b828281518110610d6b57610d6a61379a565b5b6020026020010181815250508080610d82906137f4565b915050610d46565b508092505050919050565b610d9d611934565b80600e8190555050565b5f610db0610abb565b8210610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de8906138ab565b60405180910390fd5b60088281548110610e0557610e0461379a565b5b905f5260205f2001549050919050565b610e1d611934565b5f5b82829050811015610eb8575f60115f858585818110610e4157610e4061379a565b5b9050602002016020810190610e569190612fbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610eb0906137f4565b915050610e1f565b505050565b610ec5611934565b80600b9081610ed49190613a66565b5050565b60105f9054906101000a900460ff1681565b5f80610ef583611e3a565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90613b7f565b60405180910390fd5b80915050919050565b600b8054610f7b906134f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa7906134f1565b8015610ff25780601f10610fc957610100808354040283529160200191610ff2565b820191905f5260205f20905b815481529060010190602001808311610fd557829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106090613c0d565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6110b6611934565b6110bf5f611e73565b565b6110c9611934565b5f5b8282905081101561116557600160115f8585858181106110ee576110ed61379a565b5b90506020020160208101906111039190612fbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061115d906137f4565b9150506110cb565b505050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111a1906134f1565b80601f01602080910402602001604051908101604052809291908181526020018280546111cd906134f1565b80156112185780601f106111ef57610100808354040283529160200191611218565b820191905f5260205f20905b8154815290600101906020018083116111fb57829003601f168201915b5050505050905090565b60105f9054906101000a900460ff1615611271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126890613c75565b60405180910390fd5b5f61127a610abb565b90505f82116112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b590613cdd565b60405180910390fd5b600f5482826112cd9190613cfb565b111561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590613d78565b60405180910390fd5b61131661116a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114eb5761135133610bdc565b15611434575f3414611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90613de0565b60405180910390fd5b600182146113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290613e6e565b60405180910390fd5b5f60115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506114ea565b81600e546114429190613e8c565b341015611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b90613f17565b60405180910390fd5b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f193505050501580156114e8573d5f803e3d5ffd5b505b5b5f600190505b8281116115725760125f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190611545906137f4565b919050555061155f33828461155a9190613cfb565b611f36565b808061156a906137f4565b9150506114f1565b505050565b6115896115826119fd565b8383611f53565b5050565b61159e6115986119fd565b83611aba565b6115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d4906136ad565b60405180910390fd5b6115e9848484846120ba565b50505050565b600d80546115fc906134f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611628906134f1565b80156116735780601f1061164a57610100808354040283529160200191611673565b820191905f5260205f20905b81548152906001019060200180831161165657829003601f168201915b505050505081565b606061168682612116565b6116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90613fa5565b60405180910390fd5b5f6116ce612156565b90505f8151116116ec5760405180602001604052805f81525061171a565b806116f6846121e6565b600d60405160200161170a9392919061407d565b6040516020818303038152906040525b915050919050565b600f5481565b611730611934565b80600d908161173f9190613a66565b5050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6117d9611934565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e9061411d565b60405180910390fd5b61185081611e73565b50565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061191d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061192d575061192c826122b0565b5b9050919050565b61193c6119fd565b73ffffffffffffffffffffffffffffffffffffffff1661195a61116a565b73ffffffffffffffffffffffffffffffffffffffff16146119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a790614185565b60405180910390fd5b565b6119bb81612116565b6119fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f190613b7f565b60405180910390fd5b50565b5f33905090565b8160045f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a7483610eea565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f80611ac583610eea565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b075750611b068185611743565b5b80611b4557508373ffffffffffffffffffffffffffffffffffffffff16611b2d8461095d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b6e82610eea565b73ffffffffffffffffffffffffffffffffffffffff1614611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90614213565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c29906142a1565b60405180910390fd5b611c3f8383836001612319565b8273ffffffffffffffffffffffffffffffffffffffff16611c5f82610eea565b73ffffffffffffffffffffffffffffffffffffffff1614611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac90614213565b60405180910390fd5b60045f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540392505081905550600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e358383836001612474565b505050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f4f828260405180602001604052805f81525061247a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb890614309565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120ad9190612d5f565b60405180910390a3505050565b6120c5848484611b4e565b6120d1848484846124d4565b612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790614397565b60405180910390fd5b50505050565b5f8073ffffffffffffffffffffffffffffffffffffffff1661213783611e3a565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054612165906134f1565b80601f0160208091040260200160405190810160405280929190818152602001828054612191906134f1565b80156121dc5780601f106121b3576101008083540402835291602001916121dc565b820191905f5260205f20905b8154815290600101906020018083116121bf57829003601f168201915b5050505050905090565b60605f60016121f484612656565b0190505f8167ffffffffffffffff811115612212576122116131bf565b5b6040519080825280601f01601f1916602001820160405280156122445781602001600182028036833780820191505090505b5090505f82602001820190505b6001156122a5578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161229a576122996143b5565b5b0494505f8503612251575b819350505050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612325848484846127a7565b6001811115612369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236090614452565b60405180910390fd5b5f8290505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036123ae576123a9816127ad565b6123ed565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146123ec576123eb85826127f1565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361242e5761242981612947565b61246d565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461246c5761246b8482612a07565b5b5b5050505050565b50505050565b6124848383612a7f565b6124905f8484846124d4565b6124cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c690614397565b60405180910390fd5b505050565b5f6124f48473ffffffffffffffffffffffffffffffffffffffff16612c92565b15612649578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261251d6119fd565b8786866040518563ffffffff1660e01b815260040161253f94939291906144c2565b6020604051808303815f875af192505050801561257a57506040513d601f19601f820116820180604052508101906125779190614520565b60015b6125f9573d805f81146125a8576040519150601f19603f3d011682016040523d82523d5f602084013e6125ad565b606091505b505f8151036125f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e890614397565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061264e565b600190505b949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106126b2577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816126a8576126a76143b5565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106126ef576d04ee2d6d415b85acef810000000083816126e5576126e46143b5565b5b0492506020810190505b662386f26fc10000831061271e57662386f26fc100008381612714576127136143b5565b5b0492506010810190505b6305f5e1008310612747576305f5e100838161273d5761273c6143b5565b5b0492506008810190505b612710831061276c576127108381612762576127616143b5565b5b0492506004810190505b6064831061278f5760648381612785576127846143b5565b5b0492506002810190505b600a831061279e576001810190505b80915050919050565b50505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f60016127fd84610ffa565b612807919061454b565b90505f60075f8481526020019081526020015f205490508181146128de575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f600160088054905061295a919061454b565b90505f60095f8481526020019081526020015f205490505f600883815481106129865761298561379a565b5b905f5260205f200154905080600883815481106129a6576129a561379a565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f905560088054806129ee576129ed61457e565b5b600190038181905f5260205f20015f9055905550505050565b5f612a1183610ffa565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae4906145f5565b60405180910390fd5b612af681612116565b15612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d9061465d565b60405180910390fd5b612b435f83836001612319565b612b4c81612116565b15612b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b839061465d565b60405180910390fd5b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c8e5f83836001612474565b5050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cf981612cc5565b8114612d03575f80fd5b50565b5f81359050612d1481612cf0565b92915050565b5f60208284031215612d2f57612d2e612cbd565b5b5f612d3c84828501612d06565b91505092915050565b5f8115159050919050565b612d5981612d45565b82525050565b5f602082019050612d725f830184612d50565b92915050565b612d8181612d45565b8114612d8b575f80fd5b50565b5f81359050612d9c81612d78565b92915050565b5f60208284031215612db757612db6612cbd565b5b5f612dc484828501612d8e565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612e04578082015181840152602081019050612de9565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612e2982612dcd565b612e338185612dd7565b9350612e43818560208601612de7565b612e4c81612e0f565b840191505092915050565b5f6020820190508181035f830152612e6f8184612e1f565b905092915050565b5f819050919050565b612e8981612e77565b8114612e93575f80fd5b50565b5f81359050612ea481612e80565b92915050565b5f60208284031215612ebf57612ebe612cbd565b5b5f612ecc84828501612e96565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612efe82612ed5565b9050919050565b612f0e81612ef4565b82525050565b5f602082019050612f275f830184612f05565b92915050565b612f3681612ef4565b8114612f40575f80fd5b50565b5f81359050612f5181612f2d565b92915050565b5f8060408385031215612f6d57612f6c612cbd565b5b5f612f7a85828601612f43565b9250506020612f8b85828601612e96565b9150509250929050565b612f9e81612e77565b82525050565b5f602082019050612fb75f830184612f95565b92915050565b5f60208284031215612fd257612fd1612cbd565b5b5f612fdf84828501612f43565b91505092915050565b5f805f60608486031215612fff57612ffe612cbd565b5b5f61300c86828701612f43565b935050602061301d86828701612f43565b925050604061302e86828701612e96565b9150509250925092565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61306a81612e77565b82525050565b5f61307b8383613061565b60208301905092915050565b5f602082019050919050565b5f61309d82613038565b6130a78185613042565b93506130b283613052565b805f5b838110156130e25781516130c98882613070565b97506130d483613087565b9250506001810190506130b5565b5085935050505092915050565b5f6020820190508181035f8301526131078184613093565b905092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126131305761312f61310f565b5b8235905067ffffffffffffffff81111561314d5761314c613113565b5b60208301915083602082028301111561316957613168613117565b5b9250929050565b5f806020838503121561318657613185612cbd565b5b5f83013567ffffffffffffffff8111156131a3576131a2612cc1565b5b6131af8582860161311b565b92509250509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6131f582612e0f565b810181811067ffffffffffffffff82111715613214576132136131bf565b5b80604052505050565b5f613226612cb4565b905061323282826131ec565b919050565b5f67ffffffffffffffff821115613251576132506131bf565b5b61325a82612e0f565b9050602081019050919050565b828183375f83830152505050565b5f61328761328284613237565b61321d565b9050828152602081018484840111156132a3576132a26131bb565b5b6132ae848285613267565b509392505050565b5f82601f8301126132ca576132c961310f565b5b81356132da848260208601613275565b91505092915050565b5f602082840312156132f8576132f7612cbd565b5b5f82013567ffffffffffffffff81111561331557613314612cc1565b5b613321848285016132b6565b91505092915050565b5f80604083850312156133405761333f612cbd565b5b5f61334d85828601612f43565b925050602061335e85828601612d8e565b9150509250929050565b5f67ffffffffffffffff821115613382576133816131bf565b5b61338b82612e0f565b9050602081019050919050565b5f6133aa6133a584613368565b61321d565b9050828152602081018484840111156133c6576133c56131bb565b5b6133d1848285613267565b509392505050565b5f82601f8301126133ed576133ec61310f565b5b81356133fd848260208601613398565b91505092915050565b5f805f806080858703121561341e5761341d612cbd565b5b5f61342b87828801612f43565b945050602061343c87828801612f43565b935050604061344d87828801612e96565b925050606085013567ffffffffffffffff81111561346e5761346d612cc1565b5b61347a878288016133d9565b91505092959194509250565b5f806040838503121561349c5761349b612cbd565b5b5f6134a985828601612f43565b92505060206134ba85828601612f43565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061350857607f821691505b60208210810361351b5761351a6134c4565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e655f8201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b5f61357b602183612dd7565b915061358682613521565b604082019050919050565b5f6020820190508181035f8301526135a88161356f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f5f8201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b5f613609603d83612dd7565b9150613614826135af565b604082019050919050565b5f6020820190508181035f830152613636816135fd565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e655f8201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b5f613697602d83612dd7565b91506136a28261363d565b604082019050919050565b5f6020820190508181035f8301526136c48161368b565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f755f8201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b5f613725602b83612dd7565b9150613730826136cb565b604082019050919050565b5f6020820190508181035f83015261375281613719565b9050919050565b5f81905092915050565b50565b5f6137715f83613759565b915061377c82613763565b5f82019050919050565b5f61379082613766565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6137fe82612e77565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138305761382f6137c7565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f5f8201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b5f613895602c83612dd7565b91506138a08261383b565b604082019050919050565b5f6020820190508181035f8301526138c281613889565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026139257fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826138ea565b61392f86836138ea565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61396a61396561396084612e77565b613947565b612e77565b9050919050565b5f819050919050565b61398383613950565b61399761398f82613971565b8484546138f6565b825550505050565b5f90565b6139ab61399f565b6139b681848461397a565b505050565b5b818110156139d9576139ce5f826139a3565b6001810190506139bc565b5050565b601f821115613a1e576139ef816138c9565b6139f8846138db565b81016020851015613a07578190505b613a1b613a13856138db565b8301826139bb565b50505b505050565b5f82821c905092915050565b5f613a3e5f1984600802613a23565b1980831691505092915050565b5f613a568383613a2f565b9150826002028217905092915050565b613a6f82612dcd565b67ffffffffffffffff811115613a8857613a876131bf565b5b613a9282546134f1565b613a9d8282856139dd565b5f60209050601f831160018114613ace575f8415613abc578287015190505b613ac68582613a4b565b865550613b2d565b601f198416613adc866138c9565b5f5b82811015613b0357848901518255600182019150602085019450602081019050613ade565b86831015613b205784890151613b1c601f891682613a2f565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e20494400000000000000005f82015250565b5f613b69601883612dd7565b9150613b7482613b35565b602082019050919050565b5f6020820190508181035f830152613b9681613b5d565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f7420612076615f8201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b5f613bf7602983612dd7565b9150613c0282613b9d565b604082019050919050565b5f6020820190508181035f830152613c2481613beb565b9050919050565b7f74686520636f6e747261637420697320706175736564000000000000000000005f82015250565b5f613c5f601683612dd7565b9150613c6a82613c2b565b602082019050919050565b5f6020820190508181035f830152613c8c81613c53565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e465400000000005f82015250565b5f613cc7601b83612dd7565b9150613cd282613c93565b602082019050919050565b5f6020820190508181035f830152613cf481613cbb565b9050919050565b5f613d0582612e77565b9150613d1083612e77565b9250828201905080821115613d2857613d276137c7565b5b92915050565b7f6d6178204e4654206c696d6974206578636565646564000000000000000000005f82015250565b5f613d62601683612dd7565b9150613d6d82613d2e565b602082019050919050565b5f6020820190508181035f830152613d8f81613d56565b9050919050565b7f57686974656c69737465642075736572732063616e6e6f7420706179000000005f82015250565b5f613dca601c83612dd7565b9150613dd582613d96565b602082019050919050565b5f6020820190508181035f830152613df781613dbe565b9050919050565b7f57686974656c69737465642075736572732063616e206d696e74206f6e6c79205f8201527f31206e6674000000000000000000000000000000000000000000000000000000602082015250565b5f613e58602583612dd7565b9150613e6382613dfe565b604082019050919050565b5f6020820190508181035f830152613e8581613e4c565b9050919050565b5f613e9682612e77565b9150613ea183612e77565b9250828202613eaf81612e77565b91508282048414831517613ec657613ec56137c7565b5b5092915050565b7f696e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f613f01601283612dd7565b9150613f0c82613ecd565b602082019050919050565b5f6020820190508181035f830152613f2e81613ef5565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f613f8f602f83612dd7565b9150613f9a82613f35565b604082019050919050565b5f6020820190508181035f830152613fbc81613f83565b9050919050565b5f81905092915050565b5f613fd782612dcd565b613fe18185613fc3565b9350613ff1818560208601612de7565b80840191505092915050565b5f8154614009816134f1565b6140138186613fc3565b9450600182165f811461402d576001811461404257614074565b60ff1983168652811515820286019350614074565b61404b856138c9565b5f5b8381101561406c5781548189015260018201915060208101905061404d565b838801955050505b50505092915050565b5f6140888286613fcd565b91506140948285613fcd565b91506140a08284613ffd565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614107602683612dd7565b9150614112826140ad565b604082019050919050565b5f6020820190508181035f830152614134816140fb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61416f602083612dd7565b915061417a8261413b565b602082019050919050565b5f6020820190508181035f83015261419c81614163565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f7272656374205f8201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b5f6141fd602583612dd7565b9150614208826141a3565b604082019050919050565b5f6020820190508181035f83015261422a816141f1565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61428b602483612dd7565b915061429682614231565b604082019050919050565b5f6020820190508181035f8301526142b88161427f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c6572000000000000005f82015250565b5f6142f3601983612dd7565b91506142fe826142bf565b602082019050919050565b5f6020820190508181035f830152614320816142e7565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e2045524337323152655f8201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b5f614381603283612dd7565b915061438c82614327565b604082019050919050565b5f6020820190508181035f8301526143ae81614375565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f455243373231456e756d657261626c653a20636f6e73656375746976652074725f8201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b5f61443c603583612dd7565b9150614447826143e2565b604082019050919050565b5f6020820190508181035f83015261446981614430565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f61449482614470565b61449e818561447a565b93506144ae818560208601612de7565b6144b781612e0f565b840191505092915050565b5f6080820190506144d55f830187612f05565b6144e26020830186612f05565b6144ef6040830185612f95565b8181036060830152614501818461448a565b905095945050505050565b5f8151905061451a81612cf0565b92915050565b5f6020828403121561453557614534612cbd565b5b5f6145428482850161450c565b91505092915050565b5f61455582612e77565b915061456083612e77565b9250828203905081811115614578576145776137c7565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b7f4552433732313a206d696e7420746f20746865207a65726f20616464726573735f82015250565b5f6145df602083612dd7565b91506145ea826145ab565b602082019050919050565b5f6020820190508181035f83015261460c816145d3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e746564000000005f82015250565b5f614647601c83612dd7565b915061465282614613565b602082019050919050565b5f6020820190508181035f8301526146748161463b565b905091905056fea264697066735822122064a4b0f5c2110fa25555a162d7e5fec6706ae78f235638848b9c370af3f0c93f64736f6c63430008140033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a506570656d6f6e4e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a506570656d6f6e456767000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53334e503375574a7a394a585a594c5a687779484872436e563256376d47326352774e38374a344e33584e582f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): PepemonNFT
Arg [1] : _symbol (string): PepemonEgg
Arg [2] : _initBaseURI (string): ipfs://QmS3NP3uWJz9JXZYLZhwyHHrCnV2V7mG2cRwN87J4N3XNX/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 506570656d6f6e4e465400000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 506570656d6f6e45676700000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d53334e503375574a7a394a585a594c5a68777948487243
Arg [9] : 6e563256376d47326352774e38374a344e33584e582f00000000000000000000


Deployed Bytecode Sourcemap

64722:3473:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58712:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66690:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42761:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44273:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43791:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64947:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59352:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65096:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44973:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59020:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65462:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68050:142;;;:::i;:::-;;45345:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65575:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66362:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59542:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66962:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66452:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65019:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42471:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64808:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42202:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20091:103;;;;;;;;;;;;;:::i;:::-;;66773:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19450:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42930:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67173:870;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44516:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45567:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64905:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65929:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64983:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66556:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44742:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20349:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58712:224;58814:4;58853:35;58838:50;;;:11;:50;;;;:90;;;;58892:36;58916:11;58892:23;:36::i;:::-;58838:90;58831:97;;58712:224;;;:::o;66690:73::-;19336:13;:11;:13::i;:::-;66751:6:::1;66742;;:15;;;;;;;;;;;;;;;;;;66690:73:::0;:::o;42761:100::-;42815:13;42848:5;42841:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42761:100;:::o;44273:171::-;44349:7;44369:23;44384:7;44369:14;:23::i;:::-;44412:15;:24;44428:7;44412:24;;;;;;;;;;;;;;;;;;;;;44405:31;;44273:171;;;:::o;43791:416::-;43872:13;43888:23;43903:7;43888:14;:23::i;:::-;43872:39;;43936:5;43930:11;;:2;:11;;;43922:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44030:5;44014:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;44039:37;44056:5;44063:12;:10;:12::i;:::-;44039:16;:37::i;:::-;44014:62;43992:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;44178:21;44187:2;44191:7;44178:8;:21::i;:::-;43861:346;43791:416;;:::o;64947:31::-;;;;:::o;59352:113::-;59413:7;59440:10;:17;;;;59433:24;;59352:113;:::o;65096:55::-;;;;;;;;;;;;;;;;;:::o;44973:301::-;45134:41;45153:12;:10;:12::i;:::-;45167:7;45134:18;:41::i;:::-;45126:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;45238:28;45248:4;45254:2;45258:7;45238:9;:28::i;:::-;44973:301;;;:::o;59020:256::-;59117:7;59153:23;59170:5;59153:16;:23::i;:::-;59145:5;:31;59137:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;59242:12;:19;59255:5;59242:19;;;;;;;;;;;;;;;:26;59262:5;59242:26;;;;;;;;;;;;59235:33;;59020:256;;;;:::o;65462:107::-;65521:4;65545:9;:16;65555:5;65545:16;;;;;;;;;;;;;;;;;;;;;;;;;65538:23;;65462:107;;;:::o;68050:142::-;19336:13;:11;:13::i;:::-;68103:7:::1;68124:4;;;;;;;;;;;68116:18;;68142:21;68116:52;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68102:66;;;68183:2;68175:11;;;::::0;::::1;;68095:97;68050:142::o:0;45345:151::-;45449:39;45466:4;45472:2;45476:7;45449:39;;;;;;;;;;;;:16;:39::i;:::-;45345:151;;;:::o;65575:348::-;65650:16;65678:23;65704:17;65714:6;65704:9;:17::i;:::-;65678:43;;65728:25;65770:15;65756:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65728:58;;65798:9;65793:103;65813:15;65809:1;:19;65793:103;;;65858:30;65878:6;65886:1;65858:19;:30::i;:::-;65844:8;65853:1;65844:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;65830:3;;;;;:::i;:::-;;;;65793:103;;;;65909:8;65902:15;;;;65575:348;;;:::o;66362:80::-;19336:13;:11;:13::i;:::-;66428:8:::1;66421:4;:15;;;;66362:80:::0;:::o;59542:233::-;59617:7;59653:30;:28;:30::i;:::-;59645:5;:38;59637:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;59750:10;59761:5;59750:17;;;;;;;;:::i;:::-;;;;;;;;;;59743:24;;59542:233;;;:::o;66962:192::-;19336:13;:11;:13::i;:::-;67053:9:::1;67048:99;67072:6;;:13;;67068:1;:17;67048:99;;;67130:5;67107:9;:20;67117:6;;67124:1;67117:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;67107:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;67087:3;;;;;:::i;:::-;;;;67048:99;;;;66962:192:::0;;:::o;66452:98::-;19336:13;:11;:13::i;:::-;66533:11:::1;66523:7;:21;;;;;;:::i;:::-;;66452:98:::0;:::o;65019:25::-;;;;;;;;;;;;;:::o;42471:223::-;42543:7;42563:13;42579:17;42588:7;42579:8;:17::i;:::-;42563:33;;42632:1;42615:19;;:5;:19;;;42607:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;42681:5;42674:12;;;42471:223;;;:::o;64808:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42202:207::-;42274:7;42319:1;42302:19;;:5;:19;;;42294:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42385:9;:16;42395:5;42385:16;;;;;;;;;;;;;;;;42378:23;;42202:207;;;:::o;20091:103::-;19336:13;:11;:13::i;:::-;20156:30:::1;20183:1;20156:18;:30::i;:::-;20091:103::o:0;66773:184::-;19336:13;:11;:13::i;:::-;66859:9:::1;66854:98;66878:6;;:13;;66874:1;:17;66854:98;;;66936:4;66913:9;:20;66923:6;;66930:1;66923:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;66913:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;66893:3;;;;;:::i;:::-;;;;66854:98;;;;66773:184:::0;;:::o;19450:87::-;19496:7;19523:6;;;;;;;;;;;19516:13;;19450:87;:::o;42930:104::-;42986:13;43019:7;43012:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42930:104;:::o;67173:870::-;67239:6;;;;;;;;;;;67238:7;67230:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;67279:14;67296:13;:11;:13::i;:::-;67279:30;;67338:1;67324:11;:15;67316:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;67410:9;;67395:11;67386:6;:20;;;;:::i;:::-;:33;;67378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67473:7;:5;:7::i;:::-;67459:21;;:10;:21;;;67455:433;;67497:25;67511:10;67497:13;:25::i;:::-;67494:378;;;67560:1;67547:9;:14;67539:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;67632:1;67617:11;:16;67609:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;67714:5;67690:9;:21;67700:10;67690:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;67494:378;;;67778:11;67771:4;;:18;;;;:::i;:::-;67758:9;:31;;67750:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;67835:4;;;;;;;;;;;67827:22;;:33;67850:9;67827:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67494:378;67455:433;67905:9;67917:1;67905:13;;67900:138;67925:11;67920:1;:16;67900:138;;67954:20;:32;67975:10;67954:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;67997:33;68007:10;68028:1;68019:6;:10;;;;:::i;:::-;67997:9;:33::i;:::-;67938:3;;;;;:::i;:::-;;;;67900:138;;;;67223:820;67173:870;:::o;44516:155::-;44611:52;44630:12;:10;:12::i;:::-;44644:8;44654;44611:18;:52::i;:::-;44516:155;;:::o;45567:279::-;45698:41;45717:12;:10;:12::i;:::-;45731:7;45698:18;:41::i;:::-;45690:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;45800:38;45814:4;45820:2;45824:7;45833:4;45800:13;:38::i;:::-;45567:279;;;;:::o;64905:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65929:427::-;66027:13;66068:16;66076:7;66068;:16::i;:::-;66052:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;66162:28;66193:10;:8;:10::i;:::-;66162:41;;66248:1;66223:14;66217:28;:32;:133;;;;;;;;;;;;;;;;;66285:14;66301:18;:7;:16;:18::i;:::-;66321:13;66268:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66217:133;66210:140;;;65929:427;;;:::o;64983:31::-;;;;:::o;66556:122::-;19336:13;:11;:13::i;:::-;66655:17:::1;66639:13;:33;;;;;;:::i;:::-;;66556:122:::0;:::o;44742:164::-;44839:4;44863:18;:25;44882:5;44863:25;;;;;;;;;;;;;;;:35;44889:8;44863:35;;;;;;;;;;;;;;;;;;;;;;;;;44856:42;;44742:164;;;;:::o;20349:201::-;19336:13;:11;:13::i;:::-;20458:1:::1;20438:22;;:8;:22;;::::0;20430:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;20514:28;20533:8;20514:18;:28::i;:::-;20349:201:::0;:::o;41833:305::-;41935:4;41987:25;41972:40;;;:11;:40;;;;:105;;;;42044:33;42029:48;;;:11;:48;;;;41972:105;:158;;;;42094:36;42118:11;42094:23;:36::i;:::-;41972:158;41952:178;;41833:305;;;:::o;19615:132::-;19690:12;:10;:12::i;:::-;19679:23;;:7;:5;:7::i;:::-;:23;;;19671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19615:132::o;53836:135::-;53918:16;53926:7;53918;:16::i;:::-;53910:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;53836:135;:::o;18001:98::-;18054:7;18081:10;18074:17;;18001:98;:::o;53149:174::-;53251:2;53224:15;:24;53240:7;53224:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;53307:7;53303:2;53269:46;;53278:23;53293:7;53278:14;:23::i;:::-;53269:46;;;;;;;;;;;;53149:174;;:::o;47836:264::-;47929:4;47946:13;47962:23;47977:7;47962:14;:23::i;:::-;47946:39;;48015:5;48004:16;;:7;:16;;;:52;;;;48024:32;48041:5;48048:7;48024:16;:32::i;:::-;48004:52;:87;;;;48084:7;48060:31;;:20;48072:7;48060:11;:20::i;:::-;:31;;;48004:87;47996:96;;;47836:264;;;;:::o;51801:1229::-;51926:4;51899:31;;:23;51914:7;51899:14;:23::i;:::-;:31;;;51891:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;52005:1;51991:16;;:2;:16;;;51983:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;52061:42;52082:4;52088:2;52092:7;52101:1;52061:20;:42::i;:::-;52233:4;52206:31;;:23;52221:7;52206:14;:23::i;:::-;:31;;;52198:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;52351:15;:24;52367:7;52351:24;;;;;;;;;;;;52344:31;;;;;;;;;;;52846:1;52827:9;:15;52837:4;52827:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;52879:1;52862:9;:13;52872:2;52862:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;52921:2;52902:7;:16;52910:7;52902:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;52960:7;52956:2;52941:27;;52950:4;52941:27;;;;;;;;;;;;52981:41;53001:4;53007:2;53011:7;53020:1;52981:19;:41::i;:::-;51801:1229;;;:::o;47111:117::-;47177:7;47204;:16;47212:7;47204:16;;;;;;;;;;;;;;;;;;;;;47197:23;;47111:117;;;:::o;20710:191::-;20784:16;20803:6;;;;;;;;;;;20784:25;;20829:8;20820:6;;:17;;;;;;;;;;;;;;;;;;20884:8;20853:40;;20874:8;20853:40;;;;;;;;;;;;20773:128;20710:191;:::o;48442:110::-;48518:26;48528:2;48532:7;48518:26;;;;;;;;;;;;:9;:26::i;:::-;48442:110;;:::o;53466:281::-;53587:8;53578:17;;:5;:17;;;53570:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;53674:8;53636:18;:25;53655:5;53636:25;;;;;;;;;;;;;;;:35;53662:8;53636:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;53720:8;53698:41;;53713:5;53698:41;;;53730:8;53698:41;;;;;;:::i;:::-;;;;;;;;53466:281;;;:::o;46727:270::-;46840:28;46850:4;46856:2;46860:7;46840:9;:28::i;:::-;46887:47;46910:4;46916:2;46920:7;46929:4;46887:22;:47::i;:::-;46879:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;46727:270;;;;:::o;47541:128::-;47606:4;47659:1;47630:31;;:17;47639:7;47630:8;:17::i;:::-;:31;;;;47623:38;;47541:128;;;:::o;65349:102::-;65409:13;65438:7;65431:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65349:102;:::o;14920:716::-;14976:13;15027:14;15064:1;15044:17;15055:5;15044:10;:17::i;:::-;:21;15027:38;;15080:20;15114:6;15103:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15080:41;;15136:11;15265:6;15261:2;15257:15;15249:6;15245:28;15238:35;;15302:288;15309:4;15302:288;;;15334:5;;;;;;;;15476:8;15471:2;15464:5;15460:14;15455:30;15450:3;15442:44;15532:2;15523:11;;;;;;:::i;:::-;;;;;15566:1;15557:5;:10;15302:288;15553:21;15302:288;15611:6;15604:13;;;;;14920:716;;;:::o;33377:157::-;33462:4;33501:25;33486:40;;;:11;:40;;;;33479:47;;33377:157;;;:::o;59849:915::-;60026:61;60053:4;60059:2;60063:12;60077:9;60026:26;:61::i;:::-;60116:1;60104:9;:13;60100:222;;;60247:63;;;;;;;;;;:::i;:::-;;;;;;;;60100:222;60334:15;60352:12;60334:30;;60397:1;60381:18;;:4;:18;;;60377:187;;60416:40;60448:7;60416:31;:40::i;:::-;60377:187;;;60486:2;60478:10;;:4;:10;;;60474:90;;60505:47;60538:4;60544:7;60505:32;:47::i;:::-;60474:90;60377:187;60592:1;60578:16;;:2;:16;;;60574:183;;60611:45;60648:7;60611:36;:45::i;:::-;60574:183;;;60684:4;60678:10;;:2;:10;;;60674:83;;60705:40;60733:2;60737:7;60705:27;:40::i;:::-;60674:83;60574:183;60015:749;59849:915;;;;:::o;56958:115::-;;;;;:::o;48779:285::-;48874:18;48880:2;48884:7;48874:5;:18::i;:::-;48925:53;48956:1;48960:2;48964:7;48973:4;48925:22;:53::i;:::-;48903:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;48779:285;;;:::o;54535:853::-;54689:4;54710:15;:2;:13;;;:15::i;:::-;54706:675;;;54762:2;54746:36;;;54783:12;:10;:12::i;:::-;54797:4;54803:7;54812:4;54746:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54742:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55004:1;54987:6;:13;:18;54983:328;;55030:60;;;;;;;;;;:::i;:::-;;;;;;;;54983:328;55261:6;55255:13;55246:6;55242:2;55238:15;55231:38;54742:584;54878:41;;;54868:51;;;:6;:51;;;;54861:58;;;;;54706:675;55365:4;55358:11;;54535:853;;;;;;;:::o;11754:948::-;11807:7;11827:14;11844:1;11827:18;;11894:8;11885:5;:17;11881:106;;11932:8;11923:17;;;;;;:::i;:::-;;;;;11969:2;11959:12;;;;11881:106;12014:8;12005:5;:17;12001:106;;12052:8;12043:17;;;;;;:::i;:::-;;;;;12089:2;12079:12;;;;12001:106;12134:8;12125:5;:17;12121:106;;12172:8;12163:17;;;;;;:::i;:::-;;;;;12209:2;12199:12;;;;12121:106;12254:7;12245:5;:16;12241:103;;12291:7;12282:16;;;;;;:::i;:::-;;;;;12327:1;12317:11;;;;12241:103;12371:7;12362:5;:16;12358:103;;12408:7;12399:16;;;;;;:::i;:::-;;;;;12444:1;12434:11;;;;12358:103;12488:7;12479:5;:16;12475:103;;12525:7;12516:16;;;;;;:::i;:::-;;;;;12561:1;12551:11;;;;12475:103;12605:7;12596:5;:16;12592:68;;12643:1;12633:11;;;;12592:68;12688:6;12681:13;;;11754:948;;;:::o;56120:116::-;;;;;:::o;61487:164::-;61591:10;:17;;;;61564:15;:24;61580:7;61564:24;;;;;;;;;;;:44;;;;61619:10;61635:7;61619:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61487:164;:::o;62278:988::-;62544:22;62594:1;62569:22;62586:4;62569:16;:22::i;:::-;:26;;;;:::i;:::-;62544:51;;62606:18;62627:17;:26;62645:7;62627:26;;;;;;;;;;;;62606:47;;62774:14;62760:10;:28;62756:328;;62805:19;62827:12;:18;62840:4;62827:18;;;;;;;;;;;;;;;:34;62846:14;62827:34;;;;;;;;;;;;62805:56;;62911:11;62878:12;:18;62891:4;62878:18;;;;;;;;;;;;;;;:30;62897:10;62878:30;;;;;;;;;;;:44;;;;63028:10;62995:17;:30;63013:11;62995:30;;;;;;;;;;;:43;;;;62790:294;62756:328;63180:17;:26;63198:7;63180:26;;;;;;;;;;;63173:33;;;63224:12;:18;63237:4;63224:18;;;;;;;;;;;;;;;:34;63243:14;63224:34;;;;;;;;;;;63217:41;;;62359:907;;62278:988;;:::o;63561:1079::-;63814:22;63859:1;63839:10;:17;;;;:21;;;;:::i;:::-;63814:46;;63871:18;63892:15;:24;63908:7;63892:24;;;;;;;;;;;;63871:45;;64243:19;64265:10;64276:14;64265:26;;;;;;;;:::i;:::-;;;;;;;;;;64243:48;;64329:11;64304:10;64315;64304:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;64440:10;64409:15;:28;64425:11;64409:28;;;;;;;;;;;:41;;;;64581:15;:24;64597:7;64581:24;;;;;;;;;;;64574:31;;;64616:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;63632:1008;;;63561:1079;:::o;61065:221::-;61150:14;61167:20;61184:2;61167:16;:20::i;:::-;61150:37;;61225:7;61198:12;:16;61211:2;61198:16;;;;;;;;;;;;;;;:24;61215:6;61198:24;;;;;;;;;;;:34;;;;61272:6;61243:17;:26;61261:7;61243:26;;;;;;;;;;;:35;;;;61139:147;61065:221;;:::o;49400:942::-;49494:1;49480:16;;:2;:16;;;49472:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;49553:16;49561:7;49553;:16::i;:::-;49552:17;49544:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49615:48;49644:1;49648:2;49652:7;49661:1;49615:20;:48::i;:::-;49762:16;49770:7;49762;:16::i;:::-;49761:17;49753:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;50177:1;50160:9;:13;50170:2;50160:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;50221:2;50202:7;:16;50210:7;50202:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;50266:7;50262:2;50241:33;;50258:1;50241:33;;;;;;;;;;;;50287:47;50315:1;50319:2;50323:7;50332:1;50287:19;:47::i;:::-;49400:942;;:::o;22382:326::-;22442:4;22699:1;22677:7;:19;;;:23;22670:30;;22382:326;;;:::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:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:246::-;2469:1;2479:113;2493:6;2490:1;2487:13;2479:113;;;2578:1;2573:3;2569:11;2563:18;2559:1;2554:3;2550:11;2543:39;2515:2;2512:1;2508:10;2503:15;;2479:113;;;2626:1;2617:6;2612:3;2608:16;2601:27;2450:184;2388:246;;;:::o;2640:102::-;2681:6;2732:2;2728:7;2723:2;2716:5;2712:14;2708:28;2698:38;;2640:102;;;:::o;2748:377::-;2836:3;2864:39;2897:5;2864:39;:::i;:::-;2919:71;2983:6;2978:3;2919:71;:::i;:::-;2912:78;;2999:65;3057:6;3052:3;3045:4;3038:5;3034:16;2999:65;:::i;:::-;3089:29;3111:6;3089:29;:::i;:::-;3084:3;3080:39;3073:46;;2840:285;2748:377;;;;:::o;3131:313::-;3244:4;3282:2;3271:9;3267:18;3259:26;;3331:9;3325:4;3321:20;3317:1;3306:9;3302:17;3295:47;3359:78;3432:4;3423:6;3359:78;:::i;:::-;3351:86;;3131:313;;;;:::o;3450:77::-;3487:7;3516:5;3505:16;;3450:77;;;:::o;3533:122::-;3606:24;3624:5;3606:24;:::i;:::-;3599:5;3596:35;3586:63;;3645:1;3642;3635:12;3586:63;3533:122;:::o;3661:139::-;3707:5;3745:6;3732:20;3723:29;;3761:33;3788:5;3761:33;:::i;:::-;3661:139;;;;:::o;3806:329::-;3865:6;3914:2;3902:9;3893:7;3889:23;3885:32;3882:119;;;3920:79;;:::i;:::-;3882:119;4040:1;4065:53;4110:7;4101:6;4090:9;4086:22;4065:53;:::i;:::-;4055:63;;4011:117;3806:329;;;;:::o;4141:126::-;4178:7;4218:42;4211:5;4207:54;4196:65;;4141:126;;;:::o;4273:96::-;4310:7;4339:24;4357:5;4339:24;:::i;:::-;4328:35;;4273:96;;;:::o;4375:118::-;4462:24;4480:5;4462:24;:::i;:::-;4457:3;4450:37;4375:118;;:::o;4499:222::-;4592:4;4630:2;4619:9;4615:18;4607:26;;4643:71;4711:1;4700:9;4696:17;4687:6;4643:71;:::i;:::-;4499:222;;;;:::o;4727:122::-;4800:24;4818:5;4800:24;:::i;:::-;4793:5;4790:35;4780:63;;4839:1;4836;4829:12;4780:63;4727:122;:::o;4855:139::-;4901:5;4939:6;4926:20;4917:29;;4955:33;4982:5;4955:33;:::i;:::-;4855:139;;;;:::o;5000:474::-;5068:6;5076;5125:2;5113:9;5104:7;5100:23;5096:32;5093:119;;;5131:79;;:::i;:::-;5093:119;5251:1;5276:53;5321:7;5312:6;5301:9;5297:22;5276:53;:::i;:::-;5266:63;;5222:117;5378:2;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5349:118;5000:474;;;;;:::o;5480:118::-;5567:24;5585:5;5567:24;:::i;:::-;5562:3;5555:37;5480:118;;:::o;5604:222::-;5697:4;5735:2;5724:9;5720:18;5712:26;;5748:71;5816:1;5805:9;5801:17;5792:6;5748:71;:::i;:::-;5604:222;;;;:::o;5832:329::-;5891:6;5940:2;5928:9;5919:7;5915:23;5911:32;5908:119;;;5946:79;;:::i;:::-;5908:119;6066:1;6091:53;6136:7;6127:6;6116:9;6112:22;6091:53;:::i;:::-;6081:63;;6037:117;5832:329;;;;:::o;6167:619::-;6244:6;6252;6260;6309:2;6297:9;6288:7;6284:23;6280:32;6277:119;;;6315:79;;:::i;:::-;6277:119;6435:1;6460:53;6505:7;6496:6;6485:9;6481:22;6460:53;:::i;:::-;6450:63;;6406:117;6562:2;6588:53;6633:7;6624:6;6613:9;6609:22;6588:53;:::i;:::-;6578:63;;6533:118;6690:2;6716:53;6761:7;6752:6;6741:9;6737:22;6716:53;:::i;:::-;6706:63;;6661:118;6167:619;;;;;:::o;6792:114::-;6859:6;6893:5;6887:12;6877:22;;6792:114;;;:::o;6912:184::-;7011:11;7045:6;7040:3;7033:19;7085:4;7080:3;7076:14;7061:29;;6912:184;;;;:::o;7102:132::-;7169:4;7192:3;7184:11;;7222:4;7217:3;7213:14;7205:22;;7102:132;;;:::o;7240:108::-;7317:24;7335:5;7317:24;:::i;:::-;7312:3;7305:37;7240:108;;:::o;7354:179::-;7423:10;7444:46;7486:3;7478:6;7444:46;:::i;:::-;7522:4;7517:3;7513:14;7499:28;;7354:179;;;;:::o;7539:113::-;7609:4;7641;7636:3;7632:14;7624:22;;7539:113;;;:::o;7688:732::-;7807:3;7836:54;7884:5;7836:54;:::i;:::-;7906:86;7985:6;7980:3;7906:86;:::i;:::-;7899:93;;8016:56;8066:5;8016:56;:::i;:::-;8095:7;8126:1;8111:284;8136:6;8133:1;8130:13;8111:284;;;8212:6;8206:13;8239:63;8298:3;8283:13;8239:63;:::i;:::-;8232:70;;8325:60;8378:6;8325:60;:::i;:::-;8315:70;;8171:224;8158:1;8155;8151:9;8146:14;;8111:284;;;8115:14;8411:3;8404:10;;7812:608;;;7688:732;;;;:::o;8426:373::-;8569:4;8607:2;8596:9;8592:18;8584:26;;8656:9;8650:4;8646:20;8642:1;8631:9;8627:17;8620:47;8684:108;8787:4;8778:6;8684:108;:::i;:::-;8676:116;;8426:373;;;;:::o;8805:117::-;8914:1;8911;8904:12;8928:117;9037:1;9034;9027:12;9051:117;9160:1;9157;9150:12;9191:568;9264:8;9274:6;9324:3;9317:4;9309:6;9305:17;9301:27;9291:122;;9332:79;;:::i;:::-;9291:122;9445:6;9432:20;9422:30;;9475:18;9467:6;9464:30;9461:117;;;9497:79;;:::i;:::-;9461:117;9611:4;9603:6;9599:17;9587:29;;9665:3;9657:4;9649:6;9645:17;9635:8;9631:32;9628:41;9625:128;;;9672:79;;:::i;:::-;9625:128;9191:568;;;;;:::o;9765:559::-;9851:6;9859;9908:2;9896:9;9887:7;9883:23;9879:32;9876:119;;;9914:79;;:::i;:::-;9876:119;10062:1;10051:9;10047:17;10034:31;10092:18;10084:6;10081:30;10078:117;;;10114:79;;:::i;:::-;10078:117;10227:80;10299:7;10290:6;10279:9;10275:22;10227:80;:::i;:::-;10209:98;;;;10005:312;9765:559;;;;;:::o;10330:117::-;10439:1;10436;10429:12;10453:180;10501:77;10498:1;10491:88;10598:4;10595:1;10588:15;10622:4;10619:1;10612:15;10639:281;10722:27;10744:4;10722:27;:::i;:::-;10714:6;10710:40;10852:6;10840:10;10837:22;10816:18;10804:10;10801:34;10798:62;10795:88;;;10863:18;;:::i;:::-;10795:88;10903:10;10899:2;10892:22;10682:238;10639:281;;:::o;10926:129::-;10960:6;10987:20;;:::i;:::-;10977:30;;11016:33;11044:4;11036:6;11016:33;:::i;:::-;10926:129;;;:::o;11061:308::-;11123:4;11213:18;11205:6;11202:30;11199:56;;;11235:18;;:::i;:::-;11199:56;11273:29;11295:6;11273:29;:::i;:::-;11265:37;;11357:4;11351;11347:15;11339:23;;11061:308;;;:::o;11375:146::-;11472:6;11467:3;11462;11449:30;11513:1;11504:6;11499:3;11495:16;11488:27;11375:146;;;:::o;11527:425::-;11605:5;11630:66;11646:49;11688:6;11646:49;:::i;:::-;11630:66;:::i;:::-;11621:75;;11719:6;11712:5;11705:21;11757:4;11750:5;11746:16;11795:3;11786:6;11781:3;11777:16;11774:25;11771:112;;;11802:79;;:::i;:::-;11771:112;11892:54;11939:6;11934:3;11929;11892:54;:::i;:::-;11611:341;11527:425;;;;;:::o;11972:340::-;12028:5;12077:3;12070:4;12062:6;12058:17;12054:27;12044:122;;12085:79;;:::i;:::-;12044:122;12202:6;12189:20;12227:79;12302:3;12294:6;12287:4;12279:6;12275:17;12227:79;:::i;:::-;12218:88;;12034:278;11972:340;;;;:::o;12318:509::-;12387:6;12436:2;12424:9;12415:7;12411:23;12407:32;12404:119;;;12442:79;;:::i;:::-;12404:119;12590:1;12579:9;12575:17;12562:31;12620:18;12612:6;12609:30;12606:117;;;12642:79;;:::i;:::-;12606:117;12747:63;12802:7;12793:6;12782:9;12778:22;12747:63;:::i;:::-;12737:73;;12533:287;12318:509;;;;:::o;12833:468::-;12898:6;12906;12955:2;12943:9;12934:7;12930:23;12926:32;12923:119;;;12961:79;;:::i;:::-;12923:119;13081:1;13106:53;13151:7;13142:6;13131:9;13127:22;13106:53;:::i;:::-;13096:63;;13052:117;13208:2;13234:50;13276:7;13267:6;13256:9;13252:22;13234:50;:::i;:::-;13224:60;;13179:115;12833:468;;;;;:::o;13307:307::-;13368:4;13458:18;13450:6;13447:30;13444:56;;;13480:18;;:::i;:::-;13444:56;13518:29;13540:6;13518:29;:::i;:::-;13510:37;;13602:4;13596;13592:15;13584:23;;13307:307;;;:::o;13620:423::-;13697:5;13722:65;13738:48;13779:6;13738:48;:::i;:::-;13722:65;:::i;:::-;13713:74;;13810:6;13803:5;13796:21;13848:4;13841:5;13837:16;13886:3;13877:6;13872:3;13868:16;13865:25;13862:112;;;13893:79;;:::i;:::-;13862:112;13983:54;14030:6;14025:3;14020;13983:54;:::i;:::-;13703:340;13620:423;;;;;:::o;14062:338::-;14117:5;14166:3;14159:4;14151:6;14147:17;14143:27;14133:122;;14174:79;;:::i;:::-;14133:122;14291:6;14278:20;14316:78;14390:3;14382:6;14375:4;14367:6;14363:17;14316:78;:::i;:::-;14307:87;;14123:277;14062:338;;;;:::o;14406:943::-;14501:6;14509;14517;14525;14574:3;14562:9;14553:7;14549:23;14545:33;14542:120;;;14581:79;;:::i;:::-;14542:120;14701:1;14726:53;14771:7;14762:6;14751:9;14747:22;14726:53;:::i;:::-;14716:63;;14672:117;14828:2;14854:53;14899:7;14890:6;14879:9;14875:22;14854:53;:::i;:::-;14844:63;;14799:118;14956:2;14982:53;15027:7;15018:6;15007:9;15003:22;14982:53;:::i;:::-;14972:63;;14927:118;15112:2;15101:9;15097:18;15084:32;15143:18;15135:6;15132:30;15129:117;;;15165:79;;:::i;:::-;15129:117;15270:62;15324:7;15315:6;15304:9;15300:22;15270:62;:::i;:::-;15260:72;;15055:287;14406:943;;;;;;;:::o;15355:474::-;15423:6;15431;15480:2;15468:9;15459:7;15455:23;15451:32;15448:119;;;15486:79;;:::i;:::-;15448:119;15606:1;15631:53;15676:7;15667:6;15656:9;15652:22;15631:53;:::i;:::-;15621:63;;15577:117;15733:2;15759:53;15804:7;15795:6;15784:9;15780:22;15759:53;:::i;:::-;15749:63;;15704:118;15355:474;;;;;:::o;15835:180::-;15883:77;15880:1;15873:88;15980:4;15977:1;15970:15;16004:4;16001:1;15994:15;16021:320;16065:6;16102:1;16096:4;16092:12;16082:22;;16149:1;16143:4;16139:12;16170:18;16160:81;;16226:4;16218:6;16214:17;16204:27;;16160:81;16288:2;16280:6;16277:14;16257:18;16254:38;16251:84;;16307:18;;:::i;:::-;16251:84;16072:269;16021:320;;;:::o;16347:220::-;16487:34;16483:1;16475:6;16471:14;16464:58;16556:3;16551:2;16543:6;16539:15;16532:28;16347:220;:::o;16573:366::-;16715:3;16736:67;16800:2;16795:3;16736:67;:::i;:::-;16729:74;;16812:93;16901:3;16812:93;:::i;:::-;16930:2;16925:3;16921:12;16914:19;;16573:366;;;:::o;16945:419::-;17111:4;17149:2;17138:9;17134:18;17126:26;;17198:9;17192:4;17188:20;17184:1;17173:9;17169:17;17162:47;17226:131;17352:4;17226:131;:::i;:::-;17218:139;;16945:419;;;:::o;17370:248::-;17510:34;17506:1;17498:6;17494:14;17487:58;17579:31;17574:2;17566:6;17562:15;17555:56;17370:248;:::o;17624:366::-;17766:3;17787:67;17851:2;17846:3;17787:67;:::i;:::-;17780:74;;17863:93;17952:3;17863:93;:::i;:::-;17981:2;17976:3;17972:12;17965:19;;17624:366;;;:::o;17996:419::-;18162:4;18200:2;18189:9;18185:18;18177:26;;18249:9;18243:4;18239:20;18235:1;18224:9;18220:17;18213:47;18277:131;18403:4;18277:131;:::i;:::-;18269:139;;17996:419;;;:::o;18421:232::-;18561:34;18557:1;18549:6;18545:14;18538:58;18630:15;18625:2;18617:6;18613:15;18606:40;18421:232;:::o;18659:366::-;18801:3;18822:67;18886:2;18881:3;18822:67;:::i;:::-;18815:74;;18898:93;18987:3;18898:93;:::i;:::-;19016:2;19011:3;19007:12;19000:19;;18659:366;;;:::o;19031:419::-;19197:4;19235:2;19224:9;19220:18;19212:26;;19284:9;19278:4;19274:20;19270:1;19259:9;19255:17;19248:47;19312:131;19438:4;19312:131;:::i;:::-;19304:139;;19031:419;;;:::o;19456:230::-;19596:34;19592:1;19584:6;19580:14;19573:58;19665:13;19660:2;19652:6;19648:15;19641:38;19456:230;:::o;19692:366::-;19834:3;19855:67;19919:2;19914:3;19855:67;:::i;:::-;19848:74;;19931:93;20020:3;19931:93;:::i;:::-;20049:2;20044:3;20040:12;20033:19;;19692:366;;;:::o;20064:419::-;20230:4;20268:2;20257:9;20253:18;20245:26;;20317:9;20311:4;20307:20;20303:1;20292:9;20288:17;20281:47;20345:131;20471:4;20345:131;:::i;:::-;20337:139;;20064:419;;;:::o;20489:147::-;20590:11;20627:3;20612:18;;20489:147;;;;:::o;20642:114::-;;:::o;20762:398::-;20921:3;20942:83;21023:1;21018:3;20942:83;:::i;:::-;20935:90;;21034:93;21123:3;21034:93;:::i;:::-;21152:1;21147:3;21143:11;21136:18;;20762:398;;;:::o;21166:379::-;21350:3;21372:147;21515:3;21372:147;:::i;:::-;21365:154;;21536:3;21529:10;;21166:379;;;:::o;21551:180::-;21599:77;21596:1;21589:88;21696:4;21693:1;21686:15;21720:4;21717:1;21710:15;21737:180;21785:77;21782:1;21775:88;21882:4;21879:1;21872:15;21906:4;21903:1;21896:15;21923:233;21962:3;21985:24;22003:5;21985:24;:::i;:::-;21976:33;;22031:66;22024:5;22021:77;22018:103;;22101:18;;:::i;:::-;22018:103;22148:1;22141:5;22137:13;22130:20;;21923:233;;;:::o;22162:231::-;22302:34;22298:1;22290:6;22286:14;22279:58;22371:14;22366:2;22358:6;22354:15;22347:39;22162:231;:::o;22399:366::-;22541:3;22562:67;22626:2;22621:3;22562:67;:::i;:::-;22555:74;;22638:93;22727:3;22638:93;:::i;:::-;22756:2;22751:3;22747:12;22740:19;;22399:366;;;:::o;22771:419::-;22937:4;22975:2;22964:9;22960:18;22952:26;;23024:9;23018:4;23014:20;23010:1;22999:9;22995:17;22988:47;23052:131;23178:4;23052:131;:::i;:::-;23044:139;;22771:419;;;:::o;23196:141::-;23245:4;23268:3;23260:11;;23291:3;23288:1;23281:14;23325:4;23322:1;23312:18;23304:26;;23196:141;;;:::o;23343:93::-;23380:6;23427:2;23422;23415:5;23411:14;23407:23;23397:33;;23343:93;;;:::o;23442:107::-;23486:8;23536:5;23530:4;23526:16;23505:37;;23442:107;;;;:::o;23555:393::-;23624:6;23674:1;23662:10;23658:18;23697:97;23727:66;23716:9;23697:97;:::i;:::-;23815:39;23845:8;23834:9;23815:39;:::i;:::-;23803:51;;23887:4;23883:9;23876:5;23872:21;23863:30;;23936:4;23926:8;23922:19;23915:5;23912:30;23902:40;;23631:317;;23555:393;;;;;:::o;23954:60::-;23982:3;24003:5;23996:12;;23954:60;;;:::o;24020:142::-;24070:9;24103:53;24121:34;24130:24;24148:5;24130:24;:::i;:::-;24121:34;:::i;:::-;24103:53;:::i;:::-;24090:66;;24020:142;;;:::o;24168:75::-;24211:3;24232:5;24225:12;;24168:75;;;:::o;24249:269::-;24359:39;24390:7;24359:39;:::i;:::-;24420:91;24469:41;24493:16;24469:41;:::i;:::-;24461:6;24454:4;24448:11;24420:91;:::i;:::-;24414:4;24407:105;24325:193;24249:269;;;:::o;24524:73::-;24569:3;24524:73;:::o;24603:189::-;24680:32;;:::i;:::-;24721:65;24779:6;24771;24765:4;24721:65;:::i;:::-;24656:136;24603:189;;:::o;24798:186::-;24858:120;24875:3;24868:5;24865:14;24858:120;;;24929:39;24966:1;24959:5;24929:39;:::i;:::-;24902:1;24895:5;24891:13;24882:22;;24858:120;;;24798:186;;:::o;24990:543::-;25091:2;25086:3;25083:11;25080:446;;;25125:38;25157:5;25125:38;:::i;:::-;25209:29;25227:10;25209:29;:::i;:::-;25199:8;25195:44;25392:2;25380:10;25377:18;25374:49;;;25413:8;25398:23;;25374:49;25436:80;25492:22;25510:3;25492:22;:::i;:::-;25482:8;25478:37;25465:11;25436:80;:::i;:::-;25095:431;;25080:446;24990:543;;;:::o;25539:117::-;25593:8;25643:5;25637:4;25633:16;25612:37;;25539:117;;;;:::o;25662:169::-;25706:6;25739:51;25787:1;25783:6;25775:5;25772:1;25768:13;25739:51;:::i;:::-;25735:56;25820:4;25814;25810:15;25800:25;;25713:118;25662:169;;;;:::o;25836:295::-;25912:4;26058:29;26083:3;26077:4;26058:29;:::i;:::-;26050:37;;26120:3;26117:1;26113:11;26107:4;26104:21;26096:29;;25836:295;;;;:::o;26136:1395::-;26253:37;26286:3;26253:37;:::i;:::-;26355:18;26347:6;26344:30;26341:56;;;26377:18;;:::i;:::-;26341:56;26421:38;26453:4;26447:11;26421:38;:::i;:::-;26506:67;26566:6;26558;26552:4;26506:67;:::i;:::-;26600:1;26624:4;26611:17;;26656:2;26648:6;26645:14;26673:1;26668:618;;;;27330:1;27347:6;27344:77;;;27396:9;27391:3;27387:19;27381:26;27372:35;;27344:77;27447:67;27507:6;27500:5;27447:67;:::i;:::-;27441:4;27434:81;27303:222;26638:887;;26668:618;26720:4;26716:9;26708:6;26704:22;26754:37;26786:4;26754:37;:::i;:::-;26813:1;26827:208;26841:7;26838:1;26835:14;26827:208;;;26920:9;26915:3;26911:19;26905:26;26897:6;26890:42;26971:1;26963:6;26959:14;26949:24;;27018:2;27007:9;27003:18;26990:31;;26864:4;26861:1;26857:12;26852:17;;26827:208;;;27063:6;27054:7;27051:19;27048:179;;;27121:9;27116:3;27112:19;27106:26;27164:48;27206:4;27198:6;27194:17;27183:9;27164:48;:::i;:::-;27156:6;27149:64;27071:156;27048:179;27273:1;27269;27261:6;27257:14;27253:22;27247:4;27240:36;26675:611;;;26638:887;;26228:1303;;;26136:1395;;:::o;27537:174::-;27677:26;27673:1;27665:6;27661:14;27654:50;27537:174;:::o;27717:366::-;27859:3;27880:67;27944:2;27939:3;27880:67;:::i;:::-;27873:74;;27956:93;28045:3;27956:93;:::i;:::-;28074:2;28069:3;28065:12;28058:19;;27717:366;;;:::o;28089:419::-;28255:4;28293:2;28282:9;28278:18;28270:26;;28342:9;28336:4;28332:20;28328:1;28317:9;28313:17;28306:47;28370:131;28496:4;28370:131;:::i;:::-;28362:139;;28089:419;;;:::o;28514:228::-;28654:34;28650:1;28642:6;28638:14;28631:58;28723:11;28718:2;28710:6;28706:15;28699:36;28514:228;:::o;28748:366::-;28890:3;28911:67;28975:2;28970:3;28911:67;:::i;:::-;28904:74;;28987:93;29076:3;28987:93;:::i;:::-;29105:2;29100:3;29096:12;29089:19;;28748:366;;;:::o;29120:419::-;29286:4;29324:2;29313:9;29309:18;29301:26;;29373:9;29367:4;29363:20;29359:1;29348:9;29344:17;29337:47;29401:131;29527:4;29401:131;:::i;:::-;29393:139;;29120:419;;;:::o;29545:172::-;29685:24;29681:1;29673:6;29669:14;29662:48;29545:172;:::o;29723:366::-;29865:3;29886:67;29950:2;29945:3;29886:67;:::i;:::-;29879:74;;29962:93;30051:3;29962:93;:::i;:::-;30080:2;30075:3;30071:12;30064:19;;29723:366;;;:::o;30095:419::-;30261:4;30299:2;30288:9;30284:18;30276:26;;30348:9;30342:4;30338:20;30334:1;30323:9;30319:17;30312:47;30376:131;30502:4;30376:131;:::i;:::-;30368:139;;30095:419;;;:::o;30520:177::-;30660:29;30656:1;30648:6;30644:14;30637:53;30520:177;:::o;30703:366::-;30845:3;30866:67;30930:2;30925:3;30866:67;:::i;:::-;30859:74;;30942:93;31031:3;30942:93;:::i;:::-;31060:2;31055:3;31051:12;31044:19;;30703:366;;;:::o;31075:419::-;31241:4;31279:2;31268:9;31264:18;31256:26;;31328:9;31322:4;31318:20;31314:1;31303:9;31299:17;31292:47;31356:131;31482:4;31356:131;:::i;:::-;31348:139;;31075:419;;;:::o;31500:191::-;31540:3;31559:20;31577:1;31559:20;:::i;:::-;31554:25;;31593:20;31611:1;31593:20;:::i;:::-;31588:25;;31636:1;31633;31629:9;31622:16;;31657:3;31654:1;31651:10;31648:36;;;31664:18;;:::i;:::-;31648:36;31500:191;;;;:::o;31697:172::-;31837:24;31833:1;31825:6;31821:14;31814:48;31697:172;:::o;31875:366::-;32017:3;32038:67;32102:2;32097:3;32038:67;:::i;:::-;32031:74;;32114:93;32203:3;32114:93;:::i;:::-;32232:2;32227:3;32223:12;32216:19;;31875:366;;;:::o;32247:419::-;32413:4;32451:2;32440:9;32436:18;32428:26;;32500:9;32494:4;32490:20;32486:1;32475:9;32471:17;32464:47;32528:131;32654:4;32528:131;:::i;:::-;32520:139;;32247:419;;;:::o;32672:178::-;32812:30;32808:1;32800:6;32796:14;32789:54;32672:178;:::o;32856:366::-;32998:3;33019:67;33083:2;33078:3;33019:67;:::i;:::-;33012:74;;33095:93;33184:3;33095:93;:::i;:::-;33213:2;33208:3;33204:12;33197:19;;32856:366;;;:::o;33228:419::-;33394:4;33432:2;33421:9;33417:18;33409:26;;33481:9;33475:4;33471:20;33467:1;33456:9;33452:17;33445:47;33509:131;33635:4;33509:131;:::i;:::-;33501:139;;33228:419;;;:::o;33653:224::-;33793:34;33789:1;33781:6;33777:14;33770:58;33862:7;33857:2;33849:6;33845:15;33838:32;33653:224;:::o;33883:366::-;34025:3;34046:67;34110:2;34105:3;34046:67;:::i;:::-;34039:74;;34122:93;34211:3;34122:93;:::i;:::-;34240:2;34235:3;34231:12;34224:19;;33883:366;;;:::o;34255:419::-;34421:4;34459:2;34448:9;34444:18;34436:26;;34508:9;34502:4;34498:20;34494:1;34483:9;34479:17;34472:47;34536:131;34662:4;34536:131;:::i;:::-;34528:139;;34255:419;;;:::o;34680:410::-;34720:7;34743:20;34761:1;34743:20;:::i;:::-;34738:25;;34777:20;34795:1;34777:20;:::i;:::-;34772:25;;34832:1;34829;34825:9;34854:30;34872:11;34854:30;:::i;:::-;34843:41;;35033:1;35024:7;35020:15;35017:1;35014:22;34994:1;34987:9;34967:83;34944:139;;35063:18;;:::i;:::-;34944:139;34728:362;34680:410;;;;:::o;35096:168::-;35236:20;35232:1;35224:6;35220:14;35213:44;35096:168;:::o;35270:366::-;35412:3;35433:67;35497:2;35492:3;35433:67;:::i;:::-;35426:74;;35509:93;35598:3;35509:93;:::i;:::-;35627:2;35622:3;35618:12;35611:19;;35270:366;;;:::o;35642:419::-;35808:4;35846:2;35835:9;35831:18;35823:26;;35895:9;35889:4;35885:20;35881:1;35870:9;35866:17;35859:47;35923:131;36049:4;35923:131;:::i;:::-;35915:139;;35642:419;;;:::o;36067:234::-;36207:34;36203:1;36195:6;36191:14;36184:58;36276:17;36271:2;36263:6;36259:15;36252:42;36067:234;:::o;36307:366::-;36449:3;36470:67;36534:2;36529:3;36470:67;:::i;:::-;36463:74;;36546:93;36635:3;36546:93;:::i;:::-;36664:2;36659:3;36655:12;36648:19;;36307:366;;;:::o;36679:419::-;36845:4;36883:2;36872:9;36868:18;36860:26;;36932:9;36926:4;36922:20;36918:1;36907:9;36903:17;36896:47;36960:131;37086:4;36960:131;:::i;:::-;36952:139;;36679:419;;;:::o;37104:148::-;37206:11;37243:3;37228:18;;37104:148;;;;:::o;37258:390::-;37364:3;37392:39;37425:5;37392:39;:::i;:::-;37447:89;37529:6;37524:3;37447:89;:::i;:::-;37440:96;;37545:65;37603:6;37598:3;37591:4;37584:5;37580:16;37545:65;:::i;:::-;37635:6;37630:3;37626:16;37619:23;;37368:280;37258:390;;;;:::o;37678:874::-;37781:3;37818:5;37812:12;37847:36;37873:9;37847:36;:::i;:::-;37899:89;37981:6;37976:3;37899:89;:::i;:::-;37892:96;;38019:1;38008:9;38004:17;38035:1;38030:166;;;;38210:1;38205:341;;;;37997:549;;38030:166;38114:4;38110:9;38099;38095:25;38090:3;38083:38;38176:6;38169:14;38162:22;38154:6;38150:35;38145:3;38141:45;38134:52;;38030:166;;38205:341;38272:38;38304:5;38272:38;:::i;:::-;38332:1;38346:154;38360:6;38357:1;38354:13;38346:154;;;38434:7;38428:14;38424:1;38419:3;38415:11;38408:35;38484:1;38475:7;38471:15;38460:26;;38382:4;38379:1;38375:12;38370:17;;38346:154;;;38529:6;38524:3;38520:16;38513:23;;38212:334;;37997:549;;37785:767;;37678:874;;;;:::o;38558:589::-;38783:3;38805:95;38896:3;38887:6;38805:95;:::i;:::-;38798:102;;38917:95;39008:3;38999:6;38917:95;:::i;:::-;38910:102;;39029:92;39117:3;39108:6;39029:92;:::i;:::-;39022:99;;39138:3;39131:10;;38558:589;;;;;;:::o;39153:225::-;39293:34;39289:1;39281:6;39277:14;39270:58;39362:8;39357:2;39349:6;39345:15;39338:33;39153:225;:::o;39384:366::-;39526:3;39547:67;39611:2;39606:3;39547:67;:::i;:::-;39540:74;;39623:93;39712:3;39623:93;:::i;:::-;39741:2;39736:3;39732:12;39725:19;;39384:366;;;:::o;39756:419::-;39922:4;39960:2;39949:9;39945:18;39937:26;;40009:9;40003:4;39999:20;39995:1;39984:9;39980:17;39973:47;40037:131;40163:4;40037:131;:::i;:::-;40029:139;;39756:419;;;:::o;40181:182::-;40321:34;40317:1;40309:6;40305:14;40298:58;40181:182;:::o;40369:366::-;40511:3;40532:67;40596:2;40591:3;40532:67;:::i;:::-;40525:74;;40608:93;40697:3;40608:93;:::i;:::-;40726:2;40721:3;40717:12;40710:19;;40369:366;;;:::o;40741:419::-;40907:4;40945:2;40934:9;40930:18;40922:26;;40994:9;40988:4;40984:20;40980:1;40969:9;40965:17;40958:47;41022:131;41148:4;41022:131;:::i;:::-;41014:139;;40741:419;;;:::o;41166:224::-;41306:34;41302:1;41294:6;41290:14;41283:58;41375:7;41370:2;41362:6;41358:15;41351:32;41166:224;:::o;41396:366::-;41538:3;41559:67;41623:2;41618:3;41559:67;:::i;:::-;41552:74;;41635:93;41724:3;41635:93;:::i;:::-;41753:2;41748:3;41744:12;41737:19;;41396:366;;;:::o;41768:419::-;41934:4;41972:2;41961:9;41957:18;41949:26;;42021:9;42015:4;42011:20;42007:1;41996:9;41992:17;41985:47;42049:131;42175:4;42049:131;:::i;:::-;42041:139;;41768:419;;;:::o;42193:223::-;42333:34;42329:1;42321:6;42317:14;42310:58;42402:6;42397:2;42389:6;42385:15;42378:31;42193:223;:::o;42422:366::-;42564:3;42585:67;42649:2;42644:3;42585:67;:::i;:::-;42578:74;;42661:93;42750:3;42661:93;:::i;:::-;42779:2;42774:3;42770:12;42763:19;;42422:366;;;:::o;42794:419::-;42960:4;42998:2;42987:9;42983:18;42975:26;;43047:9;43041:4;43037:20;43033:1;43022:9;43018:17;43011:47;43075:131;43201:4;43075:131;:::i;:::-;43067:139;;42794:419;;;:::o;43219:175::-;43359:27;43355:1;43347:6;43343:14;43336:51;43219:175;:::o;43400:366::-;43542:3;43563:67;43627:2;43622:3;43563:67;:::i;:::-;43556:74;;43639:93;43728:3;43639:93;:::i;:::-;43757:2;43752:3;43748:12;43741:19;;43400:366;;;:::o;43772:419::-;43938:4;43976:2;43965:9;43961:18;43953:26;;44025:9;44019:4;44015:20;44011:1;44000:9;43996:17;43989:47;44053:131;44179:4;44053:131;:::i;:::-;44045:139;;43772:419;;;:::o;44197:237::-;44337:34;44333:1;44325:6;44321:14;44314:58;44406:20;44401:2;44393:6;44389:15;44382:45;44197:237;:::o;44440:366::-;44582:3;44603:67;44667:2;44662:3;44603:67;:::i;:::-;44596:74;;44679:93;44768:3;44679:93;:::i;:::-;44797:2;44792:3;44788:12;44781:19;;44440:366;;;:::o;44812:419::-;44978:4;45016:2;45005:9;45001:18;44993:26;;45065:9;45059:4;45055:20;45051:1;45040:9;45036:17;45029:47;45093:131;45219:4;45093:131;:::i;:::-;45085:139;;44812:419;;;:::o;45237:180::-;45285:77;45282:1;45275:88;45382:4;45379:1;45372:15;45406:4;45403:1;45396:15;45423:240;45563:34;45559:1;45551:6;45547:14;45540:58;45632:23;45627:2;45619:6;45615:15;45608:48;45423:240;:::o;45669:366::-;45811:3;45832:67;45896:2;45891:3;45832:67;:::i;:::-;45825:74;;45908:93;45997:3;45908:93;:::i;:::-;46026:2;46021:3;46017:12;46010:19;;45669:366;;;:::o;46041:419::-;46207:4;46245:2;46234:9;46230:18;46222:26;;46294:9;46288:4;46284:20;46280:1;46269:9;46265:17;46258:47;46322:131;46448:4;46322:131;:::i;:::-;46314:139;;46041:419;;;:::o;46466:98::-;46517:6;46551:5;46545:12;46535:22;;46466:98;;;:::o;46570:168::-;46653:11;46687:6;46682:3;46675:19;46727:4;46722:3;46718:14;46703:29;;46570:168;;;;:::o;46744:373::-;46830:3;46858:38;46890:5;46858:38;:::i;:::-;46912:70;46975:6;46970:3;46912:70;:::i;:::-;46905:77;;46991:65;47049:6;47044:3;47037:4;47030:5;47026:16;46991:65;:::i;:::-;47081:29;47103:6;47081:29;:::i;:::-;47076:3;47072:39;47065:46;;46834:283;46744:373;;;;:::o;47123:640::-;47318:4;47356:3;47345:9;47341:19;47333:27;;47370:71;47438:1;47427:9;47423:17;47414:6;47370:71;:::i;:::-;47451:72;47519:2;47508:9;47504:18;47495:6;47451:72;:::i;:::-;47533;47601:2;47590:9;47586:18;47577:6;47533:72;:::i;:::-;47652:9;47646:4;47642:20;47637:2;47626:9;47622:18;47615:48;47680:76;47751:4;47742:6;47680:76;:::i;:::-;47672:84;;47123:640;;;;;;;:::o;47769:141::-;47825:5;47856:6;47850:13;47841:22;;47872:32;47898:5;47872:32;:::i;:::-;47769:141;;;;:::o;47916:349::-;47985:6;48034:2;48022:9;48013:7;48009:23;48005:32;48002:119;;;48040:79;;:::i;:::-;48002:119;48160:1;48185:63;48240:7;48231:6;48220:9;48216:22;48185:63;:::i;:::-;48175:73;;48131:127;47916:349;;;;:::o;48271:194::-;48311:4;48331:20;48349:1;48331:20;:::i;:::-;48326:25;;48365:20;48383:1;48365:20;:::i;:::-;48360:25;;48409:1;48406;48402:9;48394:17;;48433:1;48427:4;48424:11;48421:37;;;48438:18;;:::i;:::-;48421:37;48271:194;;;;:::o;48471:180::-;48519:77;48516:1;48509:88;48616:4;48613:1;48606:15;48640:4;48637:1;48630:15;48657:182;48797:34;48793:1;48785:6;48781:14;48774:58;48657:182;:::o;48845:366::-;48987:3;49008:67;49072:2;49067:3;49008:67;:::i;:::-;49001:74;;49084:93;49173:3;49084:93;:::i;:::-;49202:2;49197:3;49193:12;49186:19;;48845:366;;;:::o;49217:419::-;49383:4;49421:2;49410:9;49406:18;49398:26;;49470:9;49464:4;49460:20;49456:1;49445:9;49441:17;49434:47;49498:131;49624:4;49498:131;:::i;:::-;49490:139;;49217:419;;;:::o;49642:178::-;49782:30;49778:1;49770:6;49766:14;49759:54;49642:178;:::o;49826:366::-;49968:3;49989:67;50053:2;50048:3;49989:67;:::i;:::-;49982:74;;50065:93;50154:3;50065:93;:::i;:::-;50183:2;50178:3;50174:12;50167:19;;49826:366;;;:::o;50198:419::-;50364:4;50402:2;50391:9;50387:18;50379:26;;50451:9;50445:4;50441:20;50437:1;50426:9;50422:17;50415:47;50479:131;50605:4;50479:131;:::i;:::-;50471:139;;50198:419;;;:::o

Swarm Source

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