ETH Price: $3,654.37 (+0.90%)
 

Overview

Max Total Supply

17 XP

Holders

14

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
shimkus.eth
Balance
1 XP
0x7b0847dee5900584d557b8d47ddffbc2aed7b5d0
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:
XesPass

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// 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/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: contracts/XesPass.sol


pragma solidity >=0.7.0 <0.9.0;



contract XesPass is ERC721, Ownable {
    using Strings for uint256;
    string baseURI;
    string public uriSuffix = ".json";
    uint256 public mintPrice = 0.0 ether;
    uint256 public constant priceIncrement = 0.004 ether;
    uint256 public totalSupply;
    uint256 public maxSupply;
    bool public isMintEnabled;
    bool private mintAllowed = false;
    mapping(address => uint256) public mintedWallets;

    constructor() payable ERC721("XesPass", "XP") {
        maxSupply = 1000;
    }

    function _baseURI() internal pure override returns (string memory) {
        return "ipfs://QmX5Uep1PowjgNYYgN1yAPYvwANuW5V574ijK414yoRjzS/";
    }
    
     function setBaseURI(string memory _baseTokenURI) external onlyOwner {
        baseURI = _baseTokenURI;
    }

    function setIsMintEnabled(bool isMintEnabled_) external onlyOwner{
        isMintEnabled = isMintEnabled_;
    }

    function setMaxSupply(uint256 maxSupply_) external onlyOwner{
        maxSupply = maxSupply_;
    }

    function mint() external payable {
        require(isMintEnabled, "minting not enabled");
        require(mintedWallets[msg.sender] < 5, "excedes max per wallet");
        require(msg.value >= mintPrice, "insufficient funds");
        require(maxSupply > totalSupply, "sold out");

        mintedWallets[msg.sender]++;
        totalSupply++;
        uint256 tokenId = totalSupply;
        // Allow the safeMint function to be called during this minting process
        mintAllowed = true;

        _safeMint(msg.sender, tokenId);

        // Increase the mint price for the next minter
        mintPrice += priceIncrement;

        // Allow the safeMint function to be called during this minting process
        mintAllowed = true;
        
    }
     function safeMint(address to, uint256 tokenId) external {
        require(mintAllowed, "Minting not allowed");
        mintAllowed = false; // Disallow further direct calls to safeMint
        _safeMint(to, tokenId);
    }

    function withdraw() public onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    }

    function withdrawFunds() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Contract balance is zero");
        payable(owner()).transfer(balance);
    }

    function getTokenOwner(uint256 tokenId) external view returns (address) {
        require(_exists(tokenId), "Token does not exist");
        return ownerOf(tokenId);
    }


    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(), uriSuffix))
         : "";
         }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceIncrement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeMint","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":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isMintEnabled_","type":"bool"}],"name":"setIsMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600890816200004a919062000474565b5060006009556000600c60016101000a81548160ff0219169083151502179055506040518060400160405280600781526020017f58657350617373000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f58500000000000000000000000000000000000000000000000000000000000008152508160009081620000e8919062000474565b508060019081620000fa919062000474565b5050506200011d620001116200012c60201b60201c565b6200013460201b60201c565b6103e8600b819055506200055b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200027c57607f821691505b60208210810362000292576200029162000234565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002fc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002bd565b620003088683620002bd565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003556200034f620003498462000320565b6200032a565b62000320565b9050919050565b6000819050919050565b620003718362000334565b6200038962000380826200035c565b848454620002ca565b825550505050565b600090565b620003a062000391565b620003ad81848462000366565b505050565b5b81811015620003d557620003c960008262000396565b600181019050620003b3565b5050565b601f8211156200042457620003ee8162000298565b620003f984620002ad565b8101602085101562000409578190505b620004216200041885620002ad565b830182620003b2565b50505b505050565b600082821c905092915050565b6000620004496000198460080262000429565b1980831691505092915050565b600062000464838362000436565b9150826002028217905092915050565b6200047f82620001fa565b67ffffffffffffffff8111156200049b576200049a62000205565b5b620004a7825462000263565b620004b4828285620003d9565b600060209050601f831160018114620004ec5760008415620004d7578287015190505b620004e3858262000456565b86555062000553565b601f198416620004fc8662000298565b60005b828110156200052657848901518255600182019150602085019450602081019050620004ff565b8683101562000546578489015162000542601f89168262000436565b8355505b6001600288020188555050505b505050505050565b613a79806200056b6000396000f3fe6080604052600436106101d85760003560e01c80636352211e11610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610663578063d5abeb01146106a0578063e985e9c5146106cb578063f2fde38b14610708576101d8565b8063a22cb46514610597578063a5cd761f146105c0578063ada7c4ed146105fd578063b88d4fde1461063a576101d8565b8063715018a6116100d1578063715018a6146105015780638da5cb5b1461051857806395d89b4114610543578063a14481941461056e576101d8565b80636352211e146104335780636817c76c146104705780636f8b44b01461049b57806370a08231146104c4576101d8565b806324600fc31161017a57806342842e0e1161014957806342842e0e1461038d5780634de8bcfb146103b65780635503a0e8146103df57806355f804b31461040a576101d8565b806324600fc314610309578063280d62ac14610320578063346de50a1461034b5780633ccfd60b14610376576101d8565b8063095ea7b3116101b6578063095ea7b3146102825780631249c58b146102ab57806318160ddd146102b557806323b872dd146102e0576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906123a5565b610731565b60405161021191906123ed565b60405180910390f35b34801561022657600080fd5b5061022f610813565b60405161023c9190612498565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906124f0565b6108a5565b604051610279919061255e565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906125a5565b6108eb565b005b6102b3610a02565b005b3480156102c157600080fd5b506102ca610c35565b6040516102d791906125f4565b60405180910390f35b3480156102ec57600080fd5b506103076004803603810190610302919061260f565b610c3b565b005b34801561031557600080fd5b5061031e610c9b565b005b34801561032c57600080fd5b50610335610d3c565b60405161034291906125f4565b60405180910390f35b34801561035757600080fd5b50610360610d47565b60405161036d91906123ed565b60405180910390f35b34801561038257600080fd5b5061038b610d5a565b005b34801561039957600080fd5b506103b460048036038101906103af919061260f565b610de2565b005b3480156103c257600080fd5b506103dd60048036038101906103d8919061268e565b610e02565b005b3480156103eb57600080fd5b506103f4610e27565b6040516104019190612498565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906127f0565b610eb5565b005b34801561043f57600080fd5b5061045a600480360381019061045591906124f0565b610ed0565b604051610467919061255e565b60405180910390f35b34801561047c57600080fd5b50610485610f56565b60405161049291906125f4565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd91906124f0565b610f5c565b005b3480156104d057600080fd5b506104eb60048036038101906104e69190612839565b610f6e565b6040516104f891906125f4565b60405180910390f35b34801561050d57600080fd5b50610516611025565b005b34801561052457600080fd5b5061052d611039565b60405161053a919061255e565b60405180910390f35b34801561054f57600080fd5b50610558611063565b6040516105659190612498565b60405180910390f35b34801561057a57600080fd5b50610595600480360381019061059091906125a5565b6110f5565b005b3480156105a357600080fd5b506105be60048036038101906105b99190612866565b61116d565b005b3480156105cc57600080fd5b506105e760048036038101906105e291906124f0565b611183565b6040516105f4919061255e565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f9190612839565b6111dd565b60405161063191906125f4565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190612947565b6111f5565b005b34801561066f57600080fd5b5061068a600480360381019061068591906124f0565b611257565b6040516106979190612498565b60405180910390f35b3480156106ac57600080fd5b506106b5611301565b6040516106c291906125f4565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed91906129ca565b611307565b6040516106ff91906123ed565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190612839565b61139b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080c575061080b8261141e565b5b9050919050565b60606000805461082290612a39565b80601f016020809104026020016040519081016040528092919081815260200182805461084e90612a39565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b5050505050905090565b60006108b082611488565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f682610ed0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095d90612adc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109856114d3565b73ffffffffffffffffffffffffffffffffffffffff1614806109b457506109b3816109ae6114d3565b611307565b5b6109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea90612b6e565b60405180910390fd5b6109fd83836114db565b505050565b600c60009054906101000a900460ff16610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890612bda565b60405180910390fd5b6005600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90612c46565b60405180910390fd5b600954341015610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90612cb2565b60405180910390fd5b600a54600b5411610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590612d1e565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610bae90612d6d565b9190505550600a6000815480929190610bc690612d6d565b91905055506000600a5490506001600c60016101000a81548160ff021916908315150217905550610bf73382611594565b660e35fa931a000060096000828254610c109190612db5565b925050819055506001600c60016101000a81548160ff02191690831515021790555050565b600a5481565b610c4c610c466114d3565b826115b2565b610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290612e5b565b60405180910390fd5b610c96838383611647565b505050565b610ca3611940565b600047905060008111610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290612ec7565b60405180910390fd5b610cf3611039565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d38573d6000803e3d6000fd5b5050565b660e35fa931a000081565b600c60009054906101000a900460ff1681565b610d62611940565b6000610d6c611039565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d8f90612f18565b60006040518083038185875af1925050503d8060008114610dcc576040519150601f19603f3d011682016040523d82523d6000602084013e610dd1565b606091505b5050905080610ddf57600080fd5b50565b610dfd838383604051806020016040528060008152506111f5565b505050565b610e0a611940565b80600c60006101000a81548160ff02191690831515021790555050565b60088054610e3490612a39565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6090612a39565b8015610ead5780601f10610e8257610100808354040283529160200191610ead565b820191906000526020600020905b815481529060010190602001808311610e9057829003601f168201915b505050505081565b610ebd611940565b8060079081610ecc91906130d9565b5050565b600080610edc836119be565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f44906131f7565b60405180910390fd5b80915050919050565b60095481565b610f64611940565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590613289565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61102d611940565b61103760006119fb565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461107290612a39565b80601f016020809104026020016040519081016040528092919081815260200182805461109e90612a39565b80156110eb5780601f106110c0576101008083540402835291602001916110eb565b820191906000526020600020905b8154815290600101906020018083116110ce57829003601f168201915b5050505050905090565b600c60019054906101000a900460ff16611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906132f5565b60405180910390fd5b6000600c60016101000a81548160ff0219169083151502179055506111698282611594565b5050565b61117f6111786114d3565b8383611ac1565b5050565b600061118e82611c2d565b6111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490613361565b60405180910390fd5b6111d682610ed0565b9050919050565b600d6020528060005260406000206000915090505481565b6112066112006114d3565b836115b2565b611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90612e5b565b60405180910390fd5b61125184848484611c6e565b50505050565b606061126282611c2d565b6112a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611298906133f3565b60405180910390fd5b60006112ab611cca565b905060008151116112cb57604051806020016040528060008152506112f9565b806112d584611cea565b60086040516020016112e9939291906134d2565b6040516020818303038152906040525b915050919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113a3611940565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140990613575565b60405180910390fd5b61141b816119fb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61149181611c2d565b6114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c7906131f7565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661154e83610ed0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6115ae828260405180602001604052806000815250611db8565b5050565b6000806115be83610ed0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061160057506115ff8185611307565b5b8061163e57508373ffffffffffffffffffffffffffffffffffffffff16611626846108a5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661166782610ed0565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613607565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390613699565b60405180910390fd5b6117398383836001611e13565b8273ffffffffffffffffffffffffffffffffffffffff1661175982610ed0565b73ffffffffffffffffffffffffffffffffffffffff16146117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690613607565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461193b8383836001611e19565b505050565b6119486114d3565b73ffffffffffffffffffffffffffffffffffffffff16611966611039565b73ffffffffffffffffffffffffffffffffffffffff16146119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b390613705565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2690613771565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c2091906123ed565b60405180910390a3505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611c4f836119be565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611c79848484611647565b611c8584848484611e1f565b611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb90613803565b60405180910390fd5b50505050565b6060604051806060016040528060368152602001613a0e60369139905090565b606060006001611cf984611fa6565b01905060008167ffffffffffffffff811115611d1857611d176126c5565b5b6040519080825280601f01601f191660200182016040528015611d4a5781602001600182028036833780820191505090505b509050600082602001820190505b600115611dad578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611da157611da0613823565b5b04945060008503611d58575b819350505050919050565b611dc283836120f9565b611dcf6000848484611e1f565b611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0590613803565b60405180910390fd5b505050565b50505050565b50505050565b6000611e408473ffffffffffffffffffffffffffffffffffffffff16612316565b15611f99578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e696114d3565b8786866040518563ffffffff1660e01b8152600401611e8b94939291906138a7565b6020604051808303816000875af1925050508015611ec757506040513d601f19601f82011682018060405250810190611ec49190613908565b60015b611f49573d8060008114611ef7576040519150601f19603f3d011682016040523d82523d6000602084013e611efc565b606091505b506000815103611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3890613803565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f9e565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612004577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611ffa57611ff9613823565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612041576d04ee2d6d415b85acef8100000000838161203757612036613823565b5b0492506020810190505b662386f26fc10000831061207057662386f26fc10000838161206657612065613823565b5b0492506010810190505b6305f5e1008310612099576305f5e100838161208f5761208e613823565b5b0492506008810190505b61271083106120be5761271083816120b4576120b3613823565b5b0492506004810190505b606483106120e157606483816120d7576120d6613823565b5b0492506002810190505b600a83106120f0576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f90613981565b60405180910390fd5b61217181611c2d565b156121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a8906139ed565b60405180910390fd5b6121bf600083836001611e13565b6121c881611c2d565b15612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff906139ed565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612312600083836001611e19565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123828161234d565b811461238d57600080fd5b50565b60008135905061239f81612379565b92915050565b6000602082840312156123bb576123ba612343565b5b60006123c984828501612390565b91505092915050565b60008115159050919050565b6123e7816123d2565b82525050565b600060208201905061240260008301846123de565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612442578082015181840152602081019050612427565b60008484015250505050565b6000601f19601f8301169050919050565b600061246a82612408565b6124748185612413565b9350612484818560208601612424565b61248d8161244e565b840191505092915050565b600060208201905081810360008301526124b2818461245f565b905092915050565b6000819050919050565b6124cd816124ba565b81146124d857600080fd5b50565b6000813590506124ea816124c4565b92915050565b60006020828403121561250657612505612343565b5b6000612514848285016124db565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125488261251d565b9050919050565b6125588161253d565b82525050565b6000602082019050612573600083018461254f565b92915050565b6125828161253d565b811461258d57600080fd5b50565b60008135905061259f81612579565b92915050565b600080604083850312156125bc576125bb612343565b5b60006125ca85828601612590565b92505060206125db858286016124db565b9150509250929050565b6125ee816124ba565b82525050565b600060208201905061260960008301846125e5565b92915050565b60008060006060848603121561262857612627612343565b5b600061263686828701612590565b935050602061264786828701612590565b9250506040612658868287016124db565b9150509250925092565b61266b816123d2565b811461267657600080fd5b50565b60008135905061268881612662565b92915050565b6000602082840312156126a4576126a3612343565b5b60006126b284828501612679565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126fd8261244e565b810181811067ffffffffffffffff8211171561271c5761271b6126c5565b5b80604052505050565b600061272f612339565b905061273b82826126f4565b919050565b600067ffffffffffffffff82111561275b5761275a6126c5565b5b6127648261244e565b9050602081019050919050565b82818337600083830152505050565b600061279361278e84612740565b612725565b9050828152602081018484840111156127af576127ae6126c0565b5b6127ba848285612771565b509392505050565b600082601f8301126127d7576127d66126bb565b5b81356127e7848260208601612780565b91505092915050565b60006020828403121561280657612805612343565b5b600082013567ffffffffffffffff81111561282457612823612348565b5b612830848285016127c2565b91505092915050565b60006020828403121561284f5761284e612343565b5b600061285d84828501612590565b91505092915050565b6000806040838503121561287d5761287c612343565b5b600061288b85828601612590565b925050602061289c85828601612679565b9150509250929050565b600067ffffffffffffffff8211156128c1576128c06126c5565b5b6128ca8261244e565b9050602081019050919050565b60006128ea6128e5846128a6565b612725565b905082815260208101848484011115612906576129056126c0565b5b612911848285612771565b509392505050565b600082601f83011261292e5761292d6126bb565b5b813561293e8482602086016128d7565b91505092915050565b6000806000806080858703121561296157612960612343565b5b600061296f87828801612590565b945050602061298087828801612590565b9350506040612991878288016124db565b925050606085013567ffffffffffffffff8111156129b2576129b1612348565b5b6129be87828801612919565b91505092959194509250565b600080604083850312156129e1576129e0612343565b5b60006129ef85828601612590565b9250506020612a0085828601612590565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a5157607f821691505b602082108103612a6457612a63612a0a565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ac6602183612413565b9150612ad182612a6a565b604082019050919050565b60006020820190508181036000830152612af581612ab9565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612b58603d83612413565b9150612b6382612afc565b604082019050919050565b60006020820190508181036000830152612b8781612b4b565b9050919050565b7f6d696e74696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b6000612bc4601383612413565b9150612bcf82612b8e565b602082019050919050565b60006020820190508181036000830152612bf381612bb7565b9050919050565b7f65786365646573206d6178207065722077616c6c657400000000000000000000600082015250565b6000612c30601683612413565b9150612c3b82612bfa565b602082019050919050565b60006020820190508181036000830152612c5f81612c23565b9050919050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000612c9c601283612413565b9150612ca782612c66565b602082019050919050565b60006020820190508181036000830152612ccb81612c8f565b9050919050565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612d08600883612413565b9150612d1382612cd2565b602082019050919050565b60006020820190508181036000830152612d3781612cfb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d78826124ba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612daa57612da9612d3e565b5b600182019050919050565b6000612dc0826124ba565b9150612dcb836124ba565b9250828201905080821115612de357612de2612d3e565b5b92915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612e45602d83612413565b9150612e5082612de9565b604082019050919050565b60006020820190508181036000830152612e7481612e38565b9050919050565b7f436f6e74726163742062616c616e6365206973207a65726f0000000000000000600082015250565b6000612eb1601883612413565b9150612ebc82612e7b565b602082019050919050565b60006020820190508181036000830152612ee081612ea4565b9050919050565b600081905092915050565b50565b6000612f02600083612ee7565b9150612f0d82612ef2565b600082019050919050565b6000612f2382612ef5565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612f8f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f52565b612f998683612f52565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612fd6612fd1612fcc846124ba565b612fb1565b6124ba565b9050919050565b6000819050919050565b612ff083612fbb565b613004612ffc82612fdd565b848454612f5f565b825550505050565b600090565b61301961300c565b613024818484612fe7565b505050565b5b818110156130485761303d600082613011565b60018101905061302a565b5050565b601f82111561308d5761305e81612f2d565b61306784612f42565b81016020851015613076578190505b61308a61308285612f42565b830182613029565b50505b505050565b600082821c905092915050565b60006130b060001984600802613092565b1980831691505092915050565b60006130c9838361309f565b9150826002028217905092915050565b6130e282612408565b67ffffffffffffffff8111156130fb576130fa6126c5565b5b6131058254612a39565b61311082828561304c565b600060209050601f8311600181146131435760008415613131578287015190505b61313b85826130bd565b8655506131a3565b601f19841661315186612f2d565b60005b8281101561317957848901518255600182019150602085019450602081019050613154565b868310156131965784890151613192601f89168261309f565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006131e1601883612413565b91506131ec826131ab565b602082019050919050565b60006020820190508181036000830152613210816131d4565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613273602983612413565b915061327e82613217565b604082019050919050565b600060208201905081810360008301526132a281613266565b9050919050565b7f4d696e74696e67206e6f7420616c6c6f77656400000000000000000000000000600082015250565b60006132df601383612413565b91506132ea826132a9565b602082019050919050565b6000602082019050818103600083015261330e816132d2565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b600061334b601483612413565b915061335682613315565b602082019050919050565b6000602082019050818103600083015261337a8161333e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133dd602f83612413565b91506133e882613381565b604082019050919050565b6000602082019050818103600083015261340c816133d0565b9050919050565b600081905092915050565b600061342982612408565b6134338185613413565b9350613443818560208601612424565b80840191505092915050565b6000815461345c81612a39565b6134668186613413565b945060018216600081146134815760018114613496576134c9565b60ff19831686528115158202860193506134c9565b61349f85612f2d565b60005b838110156134c1578154818901526001820191506020810190506134a2565b838801955050505b50505092915050565b60006134de828661341e565b91506134ea828561341e565b91506134f6828461344f565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061355f602683612413565b915061356a82613503565b604082019050919050565b6000602082019050818103600083015261358e81613552565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006135f1602583612413565b91506135fc82613595565b604082019050919050565b60006020820190508181036000830152613620816135e4565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613683602483612413565b915061368e82613627565b604082019050919050565b600060208201905081810360008301526136b281613676565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136ef602083612413565b91506136fa826136b9565b602082019050919050565b6000602082019050818103600083015261371e816136e2565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061375b601983612413565b915061376682613725565b602082019050919050565b6000602082019050818103600083015261378a8161374e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006137ed603283612413565b91506137f882613791565b604082019050919050565b6000602082019050818103600083015261381c816137e0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061387982613852565b613883818561385d565b9350613893818560208601612424565b61389c8161244e565b840191505092915050565b60006080820190506138bc600083018761254f565b6138c9602083018661254f565b6138d660408301856125e5565b81810360608301526138e8818461386e565b905095945050505050565b60008151905061390281612379565b92915050565b60006020828403121561391e5761391d612343565b5b600061392c848285016138f3565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061396b602083612413565b915061397682613935565b602082019050919050565b6000602082019050818103600083015261399a8161395e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006139d7601c83612413565b91506139e2826139a1565b602082019050919050565b60006020820190508181036000830152613a06816139ca565b905091905056fe697066733a2f2f516d583555657031506f776a674e5959674e31794150597677414e75573556353734696a4b343134796f526a7a532fa2646970667358221220ccb9397e4af373f0f352f303dd3b60c990f9687b84e1d340a1ad58e95726927864736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636352211e11610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610663578063d5abeb01146106a0578063e985e9c5146106cb578063f2fde38b14610708576101d8565b8063a22cb46514610597578063a5cd761f146105c0578063ada7c4ed146105fd578063b88d4fde1461063a576101d8565b8063715018a6116100d1578063715018a6146105015780638da5cb5b1461051857806395d89b4114610543578063a14481941461056e576101d8565b80636352211e146104335780636817c76c146104705780636f8b44b01461049b57806370a08231146104c4576101d8565b806324600fc31161017a57806342842e0e1161014957806342842e0e1461038d5780634de8bcfb146103b65780635503a0e8146103df57806355f804b31461040a576101d8565b806324600fc314610309578063280d62ac14610320578063346de50a1461034b5780633ccfd60b14610376576101d8565b8063095ea7b3116101b6578063095ea7b3146102825780631249c58b146102ab57806318160ddd146102b557806323b872dd146102e0576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906123a5565b610731565b60405161021191906123ed565b60405180910390f35b34801561022657600080fd5b5061022f610813565b60405161023c9190612498565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906124f0565b6108a5565b604051610279919061255e565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906125a5565b6108eb565b005b6102b3610a02565b005b3480156102c157600080fd5b506102ca610c35565b6040516102d791906125f4565b60405180910390f35b3480156102ec57600080fd5b506103076004803603810190610302919061260f565b610c3b565b005b34801561031557600080fd5b5061031e610c9b565b005b34801561032c57600080fd5b50610335610d3c565b60405161034291906125f4565b60405180910390f35b34801561035757600080fd5b50610360610d47565b60405161036d91906123ed565b60405180910390f35b34801561038257600080fd5b5061038b610d5a565b005b34801561039957600080fd5b506103b460048036038101906103af919061260f565b610de2565b005b3480156103c257600080fd5b506103dd60048036038101906103d8919061268e565b610e02565b005b3480156103eb57600080fd5b506103f4610e27565b6040516104019190612498565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906127f0565b610eb5565b005b34801561043f57600080fd5b5061045a600480360381019061045591906124f0565b610ed0565b604051610467919061255e565b60405180910390f35b34801561047c57600080fd5b50610485610f56565b60405161049291906125f4565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd91906124f0565b610f5c565b005b3480156104d057600080fd5b506104eb60048036038101906104e69190612839565b610f6e565b6040516104f891906125f4565b60405180910390f35b34801561050d57600080fd5b50610516611025565b005b34801561052457600080fd5b5061052d611039565b60405161053a919061255e565b60405180910390f35b34801561054f57600080fd5b50610558611063565b6040516105659190612498565b60405180910390f35b34801561057a57600080fd5b50610595600480360381019061059091906125a5565b6110f5565b005b3480156105a357600080fd5b506105be60048036038101906105b99190612866565b61116d565b005b3480156105cc57600080fd5b506105e760048036038101906105e291906124f0565b611183565b6040516105f4919061255e565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f9190612839565b6111dd565b60405161063191906125f4565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190612947565b6111f5565b005b34801561066f57600080fd5b5061068a600480360381019061068591906124f0565b611257565b6040516106979190612498565b60405180910390f35b3480156106ac57600080fd5b506106b5611301565b6040516106c291906125f4565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed91906129ca565b611307565b6040516106ff91906123ed565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190612839565b61139b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080c575061080b8261141e565b5b9050919050565b60606000805461082290612a39565b80601f016020809104026020016040519081016040528092919081815260200182805461084e90612a39565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b5050505050905090565b60006108b082611488565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f682610ed0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095d90612adc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109856114d3565b73ffffffffffffffffffffffffffffffffffffffff1614806109b457506109b3816109ae6114d3565b611307565b5b6109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea90612b6e565b60405180910390fd5b6109fd83836114db565b505050565b600c60009054906101000a900460ff16610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890612bda565b60405180910390fd5b6005600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90612c46565b60405180910390fd5b600954341015610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90612cb2565b60405180910390fd5b600a54600b5411610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590612d1e565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610bae90612d6d565b9190505550600a6000815480929190610bc690612d6d565b91905055506000600a5490506001600c60016101000a81548160ff021916908315150217905550610bf73382611594565b660e35fa931a000060096000828254610c109190612db5565b925050819055506001600c60016101000a81548160ff02191690831515021790555050565b600a5481565b610c4c610c466114d3565b826115b2565b610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290612e5b565b60405180910390fd5b610c96838383611647565b505050565b610ca3611940565b600047905060008111610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290612ec7565b60405180910390fd5b610cf3611039565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d38573d6000803e3d6000fd5b5050565b660e35fa931a000081565b600c60009054906101000a900460ff1681565b610d62611940565b6000610d6c611039565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d8f90612f18565b60006040518083038185875af1925050503d8060008114610dcc576040519150601f19603f3d011682016040523d82523d6000602084013e610dd1565b606091505b5050905080610ddf57600080fd5b50565b610dfd838383604051806020016040528060008152506111f5565b505050565b610e0a611940565b80600c60006101000a81548160ff02191690831515021790555050565b60088054610e3490612a39565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6090612a39565b8015610ead5780601f10610e8257610100808354040283529160200191610ead565b820191906000526020600020905b815481529060010190602001808311610e9057829003601f168201915b505050505081565b610ebd611940565b8060079081610ecc91906130d9565b5050565b600080610edc836119be565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f44906131f7565b60405180910390fd5b80915050919050565b60095481565b610f64611940565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590613289565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61102d611940565b61103760006119fb565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461107290612a39565b80601f016020809104026020016040519081016040528092919081815260200182805461109e90612a39565b80156110eb5780601f106110c0576101008083540402835291602001916110eb565b820191906000526020600020905b8154815290600101906020018083116110ce57829003601f168201915b5050505050905090565b600c60019054906101000a900460ff16611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906132f5565b60405180910390fd5b6000600c60016101000a81548160ff0219169083151502179055506111698282611594565b5050565b61117f6111786114d3565b8383611ac1565b5050565b600061118e82611c2d565b6111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490613361565b60405180910390fd5b6111d682610ed0565b9050919050565b600d6020528060005260406000206000915090505481565b6112066112006114d3565b836115b2565b611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90612e5b565b60405180910390fd5b61125184848484611c6e565b50505050565b606061126282611c2d565b6112a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611298906133f3565b60405180910390fd5b60006112ab611cca565b905060008151116112cb57604051806020016040528060008152506112f9565b806112d584611cea565b60086040516020016112e9939291906134d2565b6040516020818303038152906040525b915050919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113a3611940565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140990613575565b60405180910390fd5b61141b816119fb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61149181611c2d565b6114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c7906131f7565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661154e83610ed0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6115ae828260405180602001604052806000815250611db8565b5050565b6000806115be83610ed0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061160057506115ff8185611307565b5b8061163e57508373ffffffffffffffffffffffffffffffffffffffff16611626846108a5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661166782610ed0565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613607565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390613699565b60405180910390fd5b6117398383836001611e13565b8273ffffffffffffffffffffffffffffffffffffffff1661175982610ed0565b73ffffffffffffffffffffffffffffffffffffffff16146117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690613607565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461193b8383836001611e19565b505050565b6119486114d3565b73ffffffffffffffffffffffffffffffffffffffff16611966611039565b73ffffffffffffffffffffffffffffffffffffffff16146119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b390613705565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2690613771565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c2091906123ed565b60405180910390a3505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611c4f836119be565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611c79848484611647565b611c8584848484611e1f565b611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb90613803565b60405180910390fd5b50505050565b6060604051806060016040528060368152602001613a0e60369139905090565b606060006001611cf984611fa6565b01905060008167ffffffffffffffff811115611d1857611d176126c5565b5b6040519080825280601f01601f191660200182016040528015611d4a5781602001600182028036833780820191505090505b509050600082602001820190505b600115611dad578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611da157611da0613823565b5b04945060008503611d58575b819350505050919050565b611dc283836120f9565b611dcf6000848484611e1f565b611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0590613803565b60405180910390fd5b505050565b50505050565b50505050565b6000611e408473ffffffffffffffffffffffffffffffffffffffff16612316565b15611f99578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e696114d3565b8786866040518563ffffffff1660e01b8152600401611e8b94939291906138a7565b6020604051808303816000875af1925050508015611ec757506040513d601f19601f82011682018060405250810190611ec49190613908565b60015b611f49573d8060008114611ef7576040519150601f19603f3d011682016040523d82523d6000602084013e611efc565b606091505b506000815103611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3890613803565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f9e565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612004577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611ffa57611ff9613823565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612041576d04ee2d6d415b85acef8100000000838161203757612036613823565b5b0492506020810190505b662386f26fc10000831061207057662386f26fc10000838161206657612065613823565b5b0492506010810190505b6305f5e1008310612099576305f5e100838161208f5761208e613823565b5b0492506008810190505b61271083106120be5761271083816120b4576120b3613823565b5b0492506004810190505b606483106120e157606483816120d7576120d6613823565b5b0492506002810190505b600a83106120f0576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f90613981565b60405180910390fd5b61217181611c2d565b156121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a8906139ed565b60405180910390fd5b6121bf600083836001611e13565b6121c881611c2d565b15612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff906139ed565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612312600083836001611e19565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123828161234d565b811461238d57600080fd5b50565b60008135905061239f81612379565b92915050565b6000602082840312156123bb576123ba612343565b5b60006123c984828501612390565b91505092915050565b60008115159050919050565b6123e7816123d2565b82525050565b600060208201905061240260008301846123de565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612442578082015181840152602081019050612427565b60008484015250505050565b6000601f19601f8301169050919050565b600061246a82612408565b6124748185612413565b9350612484818560208601612424565b61248d8161244e565b840191505092915050565b600060208201905081810360008301526124b2818461245f565b905092915050565b6000819050919050565b6124cd816124ba565b81146124d857600080fd5b50565b6000813590506124ea816124c4565b92915050565b60006020828403121561250657612505612343565b5b6000612514848285016124db565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125488261251d565b9050919050565b6125588161253d565b82525050565b6000602082019050612573600083018461254f565b92915050565b6125828161253d565b811461258d57600080fd5b50565b60008135905061259f81612579565b92915050565b600080604083850312156125bc576125bb612343565b5b60006125ca85828601612590565b92505060206125db858286016124db565b9150509250929050565b6125ee816124ba565b82525050565b600060208201905061260960008301846125e5565b92915050565b60008060006060848603121561262857612627612343565b5b600061263686828701612590565b935050602061264786828701612590565b9250506040612658868287016124db565b9150509250925092565b61266b816123d2565b811461267657600080fd5b50565b60008135905061268881612662565b92915050565b6000602082840312156126a4576126a3612343565b5b60006126b284828501612679565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126fd8261244e565b810181811067ffffffffffffffff8211171561271c5761271b6126c5565b5b80604052505050565b600061272f612339565b905061273b82826126f4565b919050565b600067ffffffffffffffff82111561275b5761275a6126c5565b5b6127648261244e565b9050602081019050919050565b82818337600083830152505050565b600061279361278e84612740565b612725565b9050828152602081018484840111156127af576127ae6126c0565b5b6127ba848285612771565b509392505050565b600082601f8301126127d7576127d66126bb565b5b81356127e7848260208601612780565b91505092915050565b60006020828403121561280657612805612343565b5b600082013567ffffffffffffffff81111561282457612823612348565b5b612830848285016127c2565b91505092915050565b60006020828403121561284f5761284e612343565b5b600061285d84828501612590565b91505092915050565b6000806040838503121561287d5761287c612343565b5b600061288b85828601612590565b925050602061289c85828601612679565b9150509250929050565b600067ffffffffffffffff8211156128c1576128c06126c5565b5b6128ca8261244e565b9050602081019050919050565b60006128ea6128e5846128a6565b612725565b905082815260208101848484011115612906576129056126c0565b5b612911848285612771565b509392505050565b600082601f83011261292e5761292d6126bb565b5b813561293e8482602086016128d7565b91505092915050565b6000806000806080858703121561296157612960612343565b5b600061296f87828801612590565b945050602061298087828801612590565b9350506040612991878288016124db565b925050606085013567ffffffffffffffff8111156129b2576129b1612348565b5b6129be87828801612919565b91505092959194509250565b600080604083850312156129e1576129e0612343565b5b60006129ef85828601612590565b9250506020612a0085828601612590565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a5157607f821691505b602082108103612a6457612a63612a0a565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ac6602183612413565b9150612ad182612a6a565b604082019050919050565b60006020820190508181036000830152612af581612ab9565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612b58603d83612413565b9150612b6382612afc565b604082019050919050565b60006020820190508181036000830152612b8781612b4b565b9050919050565b7f6d696e74696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b6000612bc4601383612413565b9150612bcf82612b8e565b602082019050919050565b60006020820190508181036000830152612bf381612bb7565b9050919050565b7f65786365646573206d6178207065722077616c6c657400000000000000000000600082015250565b6000612c30601683612413565b9150612c3b82612bfa565b602082019050919050565b60006020820190508181036000830152612c5f81612c23565b9050919050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000612c9c601283612413565b9150612ca782612c66565b602082019050919050565b60006020820190508181036000830152612ccb81612c8f565b9050919050565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612d08600883612413565b9150612d1382612cd2565b602082019050919050565b60006020820190508181036000830152612d3781612cfb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d78826124ba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612daa57612da9612d3e565b5b600182019050919050565b6000612dc0826124ba565b9150612dcb836124ba565b9250828201905080821115612de357612de2612d3e565b5b92915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612e45602d83612413565b9150612e5082612de9565b604082019050919050565b60006020820190508181036000830152612e7481612e38565b9050919050565b7f436f6e74726163742062616c616e6365206973207a65726f0000000000000000600082015250565b6000612eb1601883612413565b9150612ebc82612e7b565b602082019050919050565b60006020820190508181036000830152612ee081612ea4565b9050919050565b600081905092915050565b50565b6000612f02600083612ee7565b9150612f0d82612ef2565b600082019050919050565b6000612f2382612ef5565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612f8f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f52565b612f998683612f52565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612fd6612fd1612fcc846124ba565b612fb1565b6124ba565b9050919050565b6000819050919050565b612ff083612fbb565b613004612ffc82612fdd565b848454612f5f565b825550505050565b600090565b61301961300c565b613024818484612fe7565b505050565b5b818110156130485761303d600082613011565b60018101905061302a565b5050565b601f82111561308d5761305e81612f2d565b61306784612f42565b81016020851015613076578190505b61308a61308285612f42565b830182613029565b50505b505050565b600082821c905092915050565b60006130b060001984600802613092565b1980831691505092915050565b60006130c9838361309f565b9150826002028217905092915050565b6130e282612408565b67ffffffffffffffff8111156130fb576130fa6126c5565b5b6131058254612a39565b61311082828561304c565b600060209050601f8311600181146131435760008415613131578287015190505b61313b85826130bd565b8655506131a3565b601f19841661315186612f2d565b60005b8281101561317957848901518255600182019150602085019450602081019050613154565b868310156131965784890151613192601f89168261309f565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006131e1601883612413565b91506131ec826131ab565b602082019050919050565b60006020820190508181036000830152613210816131d4565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613273602983612413565b915061327e82613217565b604082019050919050565b600060208201905081810360008301526132a281613266565b9050919050565b7f4d696e74696e67206e6f7420616c6c6f77656400000000000000000000000000600082015250565b60006132df601383612413565b91506132ea826132a9565b602082019050919050565b6000602082019050818103600083015261330e816132d2565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b600061334b601483612413565b915061335682613315565b602082019050919050565b6000602082019050818103600083015261337a8161333e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133dd602f83612413565b91506133e882613381565b604082019050919050565b6000602082019050818103600083015261340c816133d0565b9050919050565b600081905092915050565b600061342982612408565b6134338185613413565b9350613443818560208601612424565b80840191505092915050565b6000815461345c81612a39565b6134668186613413565b945060018216600081146134815760018114613496576134c9565b60ff19831686528115158202860193506134c9565b61349f85612f2d565b60005b838110156134c1578154818901526001820191506020810190506134a2565b838801955050505b50505092915050565b60006134de828661341e565b91506134ea828561341e565b91506134f6828461344f565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061355f602683612413565b915061356a82613503565b604082019050919050565b6000602082019050818103600083015261358e81613552565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006135f1602583612413565b91506135fc82613595565b604082019050919050565b60006020820190508181036000830152613620816135e4565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613683602483612413565b915061368e82613627565b604082019050919050565b600060208201905081810360008301526136b281613676565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136ef602083612413565b91506136fa826136b9565b602082019050919050565b6000602082019050818103600083015261371e816136e2565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061375b601983612413565b915061376682613725565b602082019050919050565b6000602082019050818103600083015261378a8161374e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006137ed603283612413565b91506137f882613791565b604082019050919050565b6000602082019050818103600083015261381c816137e0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061387982613852565b613883818561385d565b9350613893818560208601612424565b61389c8161244e565b840191505092915050565b60006080820190506138bc600083018761254f565b6138c9602083018661254f565b6138d660408301856125e5565b81810360608301526138e8818461386e565b905095945050505050565b60008151905061390281612379565b92915050565b60006020828403121561391e5761391d612343565b5b600061392c848285016138f3565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061396b602083612413565b915061397682613935565b602082019050919050565b6000602082019050818103600083015261399a8161395e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006139d7601c83612413565b91506139e2826139a1565b602082019050919050565b60006020820190508181036000830152613a06816139ca565b905091905056fe697066733a2f2f516d583555657031506f776a674e5959674e31794150597677414e75573556353734696a4b343134796f526a7a532fa2646970667358221220ccb9397e4af373f0f352f303dd3b60c990f9687b84e1d340a1ad58e95726927864736f6c63430008120033

Deployed Bytecode Sourcemap

56714:3048:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40786:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41714:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43226:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42744:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57744:766;;;:::i;:::-;;56952:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43926:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58898:206;;;;;;;;;;;;;:::i;:::-;;56893:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57016:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58751:139;;;;;;;;;;;;;:::i;:::-;;44298:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57513:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56810:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57395:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41424:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56850:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57635:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41155:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20124:103;;;;;;;;;;;;;:::i;:::-;;19483:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41883:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58517:226;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43469:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59112:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57087:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44520:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59296:461;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56985:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43695:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20382:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40786:305;40888:4;40940:25;40925:40;;;:11;:40;;;;:105;;;;40997:33;40982:48;;;:11;:48;;;;40925:105;:158;;;;41047:36;41071:11;41047:23;:36::i;:::-;40925:158;40905:178;;40786:305;;;:::o;41714:100::-;41768:13;41801:5;41794:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41714:100;:::o;43226:171::-;43302:7;43322:23;43337:7;43322:14;:23::i;:::-;43365:15;:24;43381:7;43365:24;;;;;;;;;;;;;;;;;;;;;43358:31;;43226:171;;;:::o;42744:416::-;42825:13;42841:23;42856:7;42841:14;:23::i;:::-;42825:39;;42889:5;42883:11;;:2;:11;;;42875:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;42983:5;42967:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;42992:37;43009:5;43016:12;:10;:12::i;:::-;42992:16;:37::i;:::-;42967:62;42945:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;43131:21;43140:2;43144:7;43131:8;:21::i;:::-;42814:346;42744:416;;:::o;57744:766::-;57796:13;;;;;;;;;;;57788:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;57880:1;57852:13;:25;57866:10;57852:25;;;;;;;;;;;;;;;;:29;57844:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;57940:9;;57927;:22;;57919:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;58003:11;;57991:9;;:23;57983:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;58040:13;:25;58054:10;58040:25;;;;;;;;;;;;;;;;:27;;;;;;;;;:::i;:::-;;;;;;58078:11;;:13;;;;;;;;;:::i;:::-;;;;;;58102:15;58120:11;;58102:29;;58237:4;58223:11;;:18;;;;;;;;;;;;;;;;;;58254:30;58264:10;58276:7;58254:9;:30::i;:::-;56934:11;58353:9;;:27;;;;;;;:::i;:::-;;;;;;;;58488:4;58474:11;;:18;;;;;;;;;;;;;;;;;;57777:733;57744:766::o;56952:26::-;;;;:::o;43926:301::-;44087:41;44106:12;:10;:12::i;:::-;44120:7;44087:18;:41::i;:::-;44079:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;44191:28;44201:4;44207:2;44211:7;44191:9;:28::i;:::-;43926:301;;;:::o;58898:206::-;19369:13;:11;:13::i;:::-;58953:15:::1;58971:21;58953:39;;59021:1;59011:7;:11;59003:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;59070:7;:5;:7::i;:::-;59062:25;;:34;59088:7;59062:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58942:162;58898:206::o:0;56893:52::-;56934:11;56893:52;:::o;57016:25::-;;;;;;;;;;;;;:::o;58751:139::-;19369:13;:11;:13::i;:::-;58796:7:::1;58817;:5;:7::i;:::-;58809:21;;58838;58809:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58795:69;;;58879:2;58871:11;;;::::0;::::1;;58788:102;58751:139::o:0;44298:151::-;44402:39;44419:4;44425:2;44429:7;44402:39;;;;;;;;;;;;:16;:39::i;:::-;44298:151;;;:::o;57513:114::-;19369:13;:11;:13::i;:::-;57605:14:::1;57589:13;;:30;;;;;;;;;;;;;;;;;;57513:114:::0;:::o;56810:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57395:110::-;19369:13;:11;:13::i;:::-;57484::::1;57474:7;:23;;;;;;:::i;:::-;;57395:110:::0;:::o;41424:223::-;41496:7;41516:13;41532:17;41541:7;41532:8;:17::i;:::-;41516:33;;41585:1;41568:19;;:5;:19;;;41560:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;41634:5;41627:12;;;41424:223;;;:::o;56850:36::-;;;;:::o;57635:101::-;19369:13;:11;:13::i;:::-;57718:10:::1;57706:9;:22;;;;57635:101:::0;:::o;41155:207::-;41227:7;41272:1;41255:19;;:5;:19;;;41247:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41338:9;:16;41348:5;41338:16;;;;;;;;;;;;;;;;41331:23;;41155:207;;;:::o;20124:103::-;19369:13;:11;:13::i;:::-;20189:30:::1;20216:1;20189:18;:30::i;:::-;20124:103::o:0;19483:87::-;19529:7;19556:6;;;;;;;;;;;19549:13;;19483:87;:::o;41883:104::-;41939:13;41972:7;41965:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41883:104;:::o;58517:226::-;58592:11;;;;;;;;;;;58584:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;58652:5;58638:11;;:19;;;;;;;;;;;;;;;;;;58713:22;58723:2;58727:7;58713:9;:22::i;:::-;58517:226;;:::o;43469:155::-;43564:52;43583:12;:10;:12::i;:::-;43597:8;43607;43564:18;:52::i;:::-;43469:155;;:::o;59112:174::-;59175:7;59203:16;59211:7;59203;:16::i;:::-;59195:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;59262:16;59270:7;59262;:16::i;:::-;59255:23;;59112:174;;;:::o;57087:48::-;;;;;;;;;;;;;;;;;:::o;44520:279::-;44651:41;44670:12;:10;:12::i;:::-;44684:7;44651:18;:41::i;:::-;44643:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;44753:38;44767:4;44773:2;44777:7;44786:4;44753:13;:38::i;:::-;44520:279;;;;:::o;59296:461::-;59395:13;59449:17;59457:8;59449:7;:17::i;:::-;59430:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;59552:28;59583:10;:8;:10::i;:::-;59552:41;;59642:1;59617:14;59611:28;:32;:133;;;;;;;;;;;;;;;;;59681:14;59697:19;:8;:17;:19::i;:::-;59718:9;59664:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59611:133;59604:140;;;59296:461;;;:::o;56985:24::-;;;;:::o;43695:164::-;43792:4;43816:18;:25;43835:5;43816:25;;;;;;;;;;;;;;;:35;43842:8;43816:35;;;;;;;;;;;;;;;;;;;;;;;;;43809:42;;43695:164;;;;:::o;20382:201::-;19369:13;:11;:13::i;:::-;20491:1:::1;20471:22;;:8;:22;;::::0;20463:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;20547:28;20566:8;20547:18;:28::i;:::-;20382:201:::0;:::o;33410:157::-;33495:4;33534:25;33519:40;;;:11;:40;;;;33512:47;;33410:157;;;:::o;52789:135::-;52871:16;52879:7;52871;:16::i;:::-;52863:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;52789:135;:::o;18034:98::-;18087:7;18114:10;18107:17;;18034:98;:::o;52102:174::-;52204:2;52177:15;:24;52193:7;52177:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52260:7;52256:2;52222:46;;52231:23;52246:7;52231:14;:23::i;:::-;52222:46;;;;;;;;;;;;52102:174;;:::o;47395:110::-;47471:26;47481:2;47485:7;47471:26;;;;;;;;;;;;:9;:26::i;:::-;47395:110;;:::o;46789:264::-;46882:4;46899:13;46915:23;46930:7;46915:14;:23::i;:::-;46899:39;;46968:5;46957:16;;:7;:16;;;:52;;;;46977:32;46994:5;47001:7;46977:16;:32::i;:::-;46957:52;:87;;;;47037:7;47013:31;;:20;47025:7;47013:11;:20::i;:::-;:31;;;46957:87;46949:96;;;46789:264;;;;:::o;50754:1229::-;50879:4;50852:31;;:23;50867:7;50852:14;:23::i;:::-;:31;;;50844:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;50958:1;50944:16;;:2;:16;;;50936:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51014:42;51035:4;51041:2;51045:7;51054:1;51014:20;:42::i;:::-;51186:4;51159:31;;:23;51174:7;51159:14;:23::i;:::-;:31;;;51151:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51304:15;:24;51320:7;51304:24;;;;;;;;;;;;51297:31;;;;;;;;;;;51799:1;51780:9;:15;51790:4;51780:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;51832:1;51815:9;:13;51825:2;51815:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;51874:2;51855:7;:16;51863:7;51855:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;51913:7;51909:2;51894:27;;51903:4;51894:27;;;;;;;;;;;;51934:41;51954:4;51960:2;51964:7;51973:1;51934:19;:41::i;:::-;50754:1229;;;:::o;19648:132::-;19723:12;:10;:12::i;:::-;19712:23;;:7;:5;:7::i;:::-;:23;;;19704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19648:132::o;46064:117::-;46130:7;46157;:16;46165:7;46157:16;;;;;;;;;;;;;;;;;;;;;46150:23;;46064:117;;;:::o;20743:191::-;20817:16;20836:6;;;;;;;;;;;20817:25;;20862:8;20853:6;;:17;;;;;;;;;;;;;;;;;;20917:8;20886:40;;20907:8;20886:40;;;;;;;;;;;;20806:128;20743:191;:::o;52419:281::-;52540:8;52531:17;;:5;:17;;;52523:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;52627:8;52589:18;:25;52608:5;52589:25;;;;;;;;;;;;;;;:35;52615:8;52589:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;52673:8;52651:41;;52666:5;52651:41;;;52683:8;52651:41;;;;;;:::i;:::-;;;;;;;;52419:281;;;:::o;46494:128::-;46559:4;46612:1;46583:31;;:17;46592:7;46583:8;:17::i;:::-;:31;;;;46576:38;;46494:128;;;:::o;45680:270::-;45793:28;45803:4;45809:2;45813:7;45793:9;:28::i;:::-;45840:47;45863:4;45869:2;45873:7;45882:4;45840:22;:47::i;:::-;45832:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;45680:270;;;;:::o;57233:149::-;57285:13;57311:63;;;;;;;;;;;;;;;;;;;57233:149;:::o;14953:716::-;15009:13;15060:14;15097:1;15077:17;15088:5;15077:10;:17::i;:::-;:21;15060:38;;15113:20;15147:6;15136:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15113:41;;15169:11;15298:6;15294:2;15290:15;15282:6;15278:28;15271:35;;15335:288;15342:4;15335:288;;;15367:5;;;;;;;;15509:8;15504:2;15497:5;15493:14;15488:30;15483:3;15475:44;15565:2;15556:11;;;;;;:::i;:::-;;;;;15599:1;15590:5;:10;15335:288;15586:21;15335:288;15644:6;15637:13;;;;;14953:716;;;:::o;47732:285::-;47827:18;47833:2;47837:7;47827:5;:18::i;:::-;47878:53;47909:1;47913:2;47917:7;47926:4;47878:22;:53::i;:::-;47856:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;47732:285;;;:::o;55073:116::-;;;;;:::o;55911:115::-;;;;;:::o;53488:853::-;53642:4;53663:15;:2;:13;;;:15::i;:::-;53659:675;;;53715:2;53699:36;;;53736:12;:10;:12::i;:::-;53750:4;53756:7;53765:4;53699:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53695:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53957:1;53940:6;:13;:18;53936:328;;53983:60;;;;;;;;;;:::i;:::-;;;;;;;;53936:328;54214:6;54208:13;54199:6;54195:2;54191:15;54184:38;53695:584;53831:41;;;53821:51;;;:6;:51;;;;53814:58;;;;;53659:675;54318:4;54311:11;;53488:853;;;;;;;:::o;11787:948::-;11840:7;11860:14;11877:1;11860:18;;11927:8;11918:5;:17;11914:106;;11965:8;11956:17;;;;;;:::i;:::-;;;;;12002:2;11992:12;;;;11914:106;12047:8;12038:5;:17;12034:106;;12085:8;12076:17;;;;;;:::i;:::-;;;;;12122:2;12112:12;;;;12034:106;12167:8;12158:5;:17;12154:106;;12205:8;12196:17;;;;;;:::i;:::-;;;;;12242:2;12232:12;;;;12154:106;12287:7;12278:5;:16;12274:103;;12324:7;12315:16;;;;;;:::i;:::-;;;;;12360:1;12350:11;;;;12274:103;12404:7;12395:5;:16;12391:103;;12441:7;12432:16;;;;;;:::i;:::-;;;;;12477:1;12467:11;;;;12391:103;12521:7;12512:5;:16;12508:103;;12558:7;12549:16;;;;;;:::i;:::-;;;;;12594:1;12584:11;;;;12508:103;12638:7;12629:5;:16;12625:68;;12676:1;12666:11;;;;12625:68;12721:6;12714:13;;;11787:948;;;:::o;48353:942::-;48447:1;48433:16;;:2;:16;;;48425:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48506:16;48514:7;48506;:16::i;:::-;48505:17;48497:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48568:48;48597:1;48601:2;48605:7;48614:1;48568:20;:48::i;:::-;48715:16;48723:7;48715;:16::i;:::-;48714:17;48706:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49130:1;49113:9;:13;49123:2;49113:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;49174:2;49155:7;:16;49163:7;49155:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49219:7;49215:2;49194:33;;49211:1;49194:33;;;;;;;;;;;;49240:47;49268:1;49272:2;49276:7;49285:1;49240:19;:47::i;:::-;48353:942;;:::o;22415:326::-;22475:4;22732:1;22710:7;:19;;;:23;22703:30;;22415: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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:116::-;5937:21;5952:5;5937:21;:::i;:::-;5930:5;5927:32;5917:60;;5973:1;5970;5963:12;5917:60;5867:116;:::o;5989:133::-;6032:5;6070:6;6057:20;6048:29;;6086:30;6110:5;6086:30;:::i;:::-;5989:133;;;;:::o;6128:323::-;6184:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:119;;;6239:79;;:::i;:::-;6201:119;6359:1;6384:50;6426:7;6417:6;6406:9;6402:22;6384:50;:::i;:::-;6374:60;;6330:114;6128:323;;;;:::o;6457:117::-;6566:1;6563;6556:12;6580:117;6689:1;6686;6679:12;6703:180;6751:77;6748:1;6741:88;6848:4;6845:1;6838:15;6872:4;6869:1;6862:15;6889:281;6972:27;6994:4;6972:27;:::i;:::-;6964:6;6960:40;7102:6;7090:10;7087:22;7066:18;7054:10;7051:34;7048:62;7045:88;;;7113:18;;:::i;:::-;7045:88;7153:10;7149:2;7142:22;6932:238;6889:281;;:::o;7176:129::-;7210:6;7237:20;;:::i;:::-;7227:30;;7266:33;7294:4;7286:6;7266:33;:::i;:::-;7176:129;;;:::o;7311:308::-;7373:4;7463:18;7455:6;7452:30;7449:56;;;7485:18;;:::i;:::-;7449:56;7523:29;7545:6;7523:29;:::i;:::-;7515:37;;7607:4;7601;7597:15;7589:23;;7311:308;;;:::o;7625:146::-;7722:6;7717:3;7712;7699:30;7763:1;7754:6;7749:3;7745:16;7738:27;7625:146;;;:::o;7777:425::-;7855:5;7880:66;7896:49;7938:6;7896:49;:::i;:::-;7880:66;:::i;:::-;7871:75;;7969:6;7962:5;7955:21;8007:4;8000:5;7996:16;8045:3;8036:6;8031:3;8027:16;8024:25;8021:112;;;8052:79;;:::i;:::-;8021:112;8142:54;8189:6;8184:3;8179;8142:54;:::i;:::-;7861:341;7777:425;;;;;:::o;8222:340::-;8278:5;8327:3;8320:4;8312:6;8308:17;8304:27;8294:122;;8335:79;;:::i;:::-;8294:122;8452:6;8439:20;8477:79;8552:3;8544:6;8537:4;8529:6;8525:17;8477:79;:::i;:::-;8468:88;;8284:278;8222:340;;;;:::o;8568:509::-;8637:6;8686:2;8674:9;8665:7;8661:23;8657:32;8654:119;;;8692:79;;:::i;:::-;8654:119;8840:1;8829:9;8825:17;8812:31;8870:18;8862:6;8859:30;8856:117;;;8892:79;;:::i;:::-;8856:117;8997:63;9052:7;9043:6;9032:9;9028:22;8997:63;:::i;:::-;8987:73;;8783:287;8568:509;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:468::-;9483:6;9491;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9764:115;9418:468;;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:180::-;12468:77;12465:1;12458:88;12565:4;12562:1;12555:15;12589:4;12586:1;12579:15;12606:320;12650:6;12687:1;12681:4;12677:12;12667:22;;12734:1;12728:4;12724:12;12755:18;12745:81;;12811:4;12803:6;12799:17;12789:27;;12745:81;12873:2;12865:6;12862:14;12842:18;12839:38;12836:84;;12892:18;;:::i;:::-;12836:84;12657:269;12606:320;;;:::o;12932:220::-;13072:34;13068:1;13060:6;13056:14;13049:58;13141:3;13136:2;13128:6;13124:15;13117:28;12932:220;:::o;13158:366::-;13300:3;13321:67;13385:2;13380:3;13321:67;:::i;:::-;13314:74;;13397:93;13486:3;13397:93;:::i;:::-;13515:2;13510:3;13506:12;13499:19;;13158:366;;;:::o;13530:419::-;13696:4;13734:2;13723:9;13719:18;13711:26;;13783:9;13777:4;13773:20;13769:1;13758:9;13754:17;13747:47;13811:131;13937:4;13811:131;:::i;:::-;13803:139;;13530:419;;;:::o;13955:248::-;14095:34;14091:1;14083:6;14079:14;14072:58;14164:31;14159:2;14151:6;14147:15;14140:56;13955:248;:::o;14209:366::-;14351:3;14372:67;14436:2;14431:3;14372:67;:::i;:::-;14365:74;;14448:93;14537:3;14448:93;:::i;:::-;14566:2;14561:3;14557:12;14550:19;;14209:366;;;:::o;14581:419::-;14747:4;14785:2;14774:9;14770:18;14762:26;;14834:9;14828:4;14824:20;14820:1;14809:9;14805:17;14798:47;14862:131;14988:4;14862:131;:::i;:::-;14854:139;;14581:419;;;:::o;15006:169::-;15146:21;15142:1;15134:6;15130:14;15123:45;15006:169;:::o;15181:366::-;15323:3;15344:67;15408:2;15403:3;15344:67;:::i;:::-;15337:74;;15420:93;15509:3;15420:93;:::i;:::-;15538:2;15533:3;15529:12;15522:19;;15181:366;;;:::o;15553:419::-;15719:4;15757:2;15746:9;15742:18;15734:26;;15806:9;15800:4;15796:20;15792:1;15781:9;15777:17;15770:47;15834:131;15960:4;15834:131;:::i;:::-;15826:139;;15553:419;;;:::o;15978:172::-;16118:24;16114:1;16106:6;16102:14;16095:48;15978:172;:::o;16156:366::-;16298:3;16319:67;16383:2;16378:3;16319:67;:::i;:::-;16312:74;;16395:93;16484:3;16395:93;:::i;:::-;16513:2;16508:3;16504:12;16497:19;;16156:366;;;:::o;16528:419::-;16694:4;16732:2;16721:9;16717:18;16709:26;;16781:9;16775:4;16771:20;16767:1;16756:9;16752:17;16745:47;16809:131;16935:4;16809:131;:::i;:::-;16801:139;;16528:419;;;:::o;16953:168::-;17093:20;17089:1;17081:6;17077:14;17070:44;16953:168;:::o;17127:366::-;17269:3;17290:67;17354:2;17349:3;17290:67;:::i;:::-;17283:74;;17366:93;17455:3;17366:93;:::i;:::-;17484:2;17479:3;17475:12;17468:19;;17127:366;;;:::o;17499:419::-;17665:4;17703:2;17692:9;17688:18;17680:26;;17752:9;17746:4;17742:20;17738:1;17727:9;17723:17;17716:47;17780:131;17906:4;17780:131;:::i;:::-;17772:139;;17499:419;;;:::o;17924:158::-;18064:10;18060:1;18052:6;18048:14;18041:34;17924:158;:::o;18088:365::-;18230:3;18251:66;18315:1;18310:3;18251:66;:::i;:::-;18244:73;;18326:93;18415:3;18326:93;:::i;:::-;18444:2;18439:3;18435:12;18428:19;;18088:365;;;:::o;18459:419::-;18625:4;18663:2;18652:9;18648:18;18640:26;;18712:9;18706:4;18702:20;18698:1;18687:9;18683:17;18676:47;18740:131;18866:4;18740:131;:::i;:::-;18732:139;;18459:419;;;:::o;18884:180::-;18932:77;18929:1;18922:88;19029:4;19026:1;19019:15;19053:4;19050:1;19043:15;19070:233;19109:3;19132:24;19150:5;19132:24;:::i;:::-;19123:33;;19178:66;19171:5;19168:77;19165:103;;19248:18;;:::i;:::-;19165:103;19295:1;19288:5;19284:13;19277:20;;19070:233;;;:::o;19309:191::-;19349:3;19368:20;19386:1;19368:20;:::i;:::-;19363:25;;19402:20;19420:1;19402:20;:::i;:::-;19397:25;;19445:1;19442;19438:9;19431:16;;19466:3;19463:1;19460:10;19457:36;;;19473:18;;:::i;:::-;19457:36;19309:191;;;;:::o;19506:232::-;19646:34;19642:1;19634:6;19630:14;19623:58;19715:15;19710:2;19702:6;19698:15;19691:40;19506:232;:::o;19744:366::-;19886:3;19907:67;19971:2;19966:3;19907:67;:::i;:::-;19900:74;;19983:93;20072:3;19983:93;:::i;:::-;20101:2;20096:3;20092:12;20085:19;;19744:366;;;:::o;20116:419::-;20282:4;20320:2;20309:9;20305:18;20297:26;;20369:9;20363:4;20359:20;20355:1;20344:9;20340:17;20333:47;20397:131;20523:4;20397:131;:::i;:::-;20389:139;;20116:419;;;:::o;20541:174::-;20681:26;20677:1;20669:6;20665:14;20658:50;20541:174;:::o;20721:366::-;20863:3;20884:67;20948:2;20943:3;20884:67;:::i;:::-;20877:74;;20960:93;21049:3;20960:93;:::i;:::-;21078:2;21073:3;21069:12;21062:19;;20721:366;;;:::o;21093:419::-;21259:4;21297:2;21286:9;21282:18;21274:26;;21346:9;21340:4;21336:20;21332:1;21321:9;21317:17;21310:47;21374:131;21500:4;21374:131;:::i;:::-;21366:139;;21093:419;;;:::o;21518:147::-;21619:11;21656:3;21641:18;;21518:147;;;;:::o;21671:114::-;;:::o;21791:398::-;21950:3;21971:83;22052:1;22047:3;21971:83;:::i;:::-;21964:90;;22063:93;22152:3;22063:93;:::i;:::-;22181:1;22176:3;22172:11;22165:18;;21791:398;;;:::o;22195:379::-;22379:3;22401:147;22544:3;22401:147;:::i;:::-;22394:154;;22565:3;22558:10;;22195:379;;;:::o;22580:141::-;22629:4;22652:3;22644:11;;22675:3;22672:1;22665:14;22709:4;22706:1;22696:18;22688:26;;22580:141;;;:::o;22727:93::-;22764:6;22811:2;22806;22799:5;22795:14;22791:23;22781:33;;22727:93;;;:::o;22826:107::-;22870:8;22920:5;22914:4;22910:16;22889:37;;22826:107;;;;:::o;22939:393::-;23008:6;23058:1;23046:10;23042:18;23081:97;23111:66;23100:9;23081:97;:::i;:::-;23199:39;23229:8;23218:9;23199:39;:::i;:::-;23187:51;;23271:4;23267:9;23260:5;23256:21;23247:30;;23320:4;23310:8;23306:19;23299:5;23296:30;23286:40;;23015:317;;22939:393;;;;;:::o;23338:60::-;23366:3;23387:5;23380:12;;23338:60;;;:::o;23404:142::-;23454:9;23487:53;23505:34;23514:24;23532:5;23514:24;:::i;:::-;23505:34;:::i;:::-;23487:53;:::i;:::-;23474:66;;23404:142;;;:::o;23552:75::-;23595:3;23616:5;23609:12;;23552:75;;;:::o;23633:269::-;23743:39;23774:7;23743:39;:::i;:::-;23804:91;23853:41;23877:16;23853:41;:::i;:::-;23845:6;23838:4;23832:11;23804:91;:::i;:::-;23798:4;23791:105;23709:193;23633:269;;;:::o;23908:73::-;23953:3;23908:73;:::o;23987:189::-;24064:32;;:::i;:::-;24105:65;24163:6;24155;24149:4;24105:65;:::i;:::-;24040:136;23987:189;;:::o;24182:186::-;24242:120;24259:3;24252:5;24249:14;24242:120;;;24313:39;24350:1;24343:5;24313:39;:::i;:::-;24286:1;24279:5;24275:13;24266:22;;24242:120;;;24182:186;;:::o;24374:543::-;24475:2;24470:3;24467:11;24464:446;;;24509:38;24541:5;24509:38;:::i;:::-;24593:29;24611:10;24593:29;:::i;:::-;24583:8;24579:44;24776:2;24764:10;24761:18;24758:49;;;24797:8;24782:23;;24758:49;24820:80;24876:22;24894:3;24876:22;:::i;:::-;24866:8;24862:37;24849:11;24820:80;:::i;:::-;24479:431;;24464:446;24374:543;;;:::o;24923:117::-;24977:8;25027:5;25021:4;25017:16;24996:37;;24923:117;;;;:::o;25046:169::-;25090:6;25123:51;25171:1;25167:6;25159:5;25156:1;25152:13;25123:51;:::i;:::-;25119:56;25204:4;25198;25194:15;25184:25;;25097:118;25046:169;;;;:::o;25220:295::-;25296:4;25442:29;25467:3;25461:4;25442:29;:::i;:::-;25434:37;;25504:3;25501:1;25497:11;25491:4;25488:21;25480:29;;25220:295;;;;:::o;25520:1395::-;25637:37;25670:3;25637:37;:::i;:::-;25739:18;25731:6;25728:30;25725:56;;;25761:18;;:::i;:::-;25725:56;25805:38;25837:4;25831:11;25805:38;:::i;:::-;25890:67;25950:6;25942;25936:4;25890:67;:::i;:::-;25984:1;26008:4;25995:17;;26040:2;26032:6;26029:14;26057:1;26052:618;;;;26714:1;26731:6;26728:77;;;26780:9;26775:3;26771:19;26765:26;26756:35;;26728:77;26831:67;26891:6;26884:5;26831:67;:::i;:::-;26825:4;26818:81;26687:222;26022:887;;26052:618;26104:4;26100:9;26092:6;26088:22;26138:37;26170:4;26138:37;:::i;:::-;26197:1;26211:208;26225:7;26222:1;26219:14;26211:208;;;26304:9;26299:3;26295:19;26289:26;26281:6;26274:42;26355:1;26347:6;26343:14;26333:24;;26402:2;26391:9;26387:18;26374:31;;26248:4;26245:1;26241:12;26236:17;;26211:208;;;26447:6;26438:7;26435:19;26432:179;;;26505:9;26500:3;26496:19;26490:26;26548:48;26590:4;26582:6;26578:17;26567:9;26548:48;:::i;:::-;26540:6;26533:64;26455:156;26432:179;26657:1;26653;26645:6;26641:14;26637:22;26631:4;26624:36;26059:611;;;26022:887;;25612:1303;;;25520:1395;;:::o;26921:174::-;27061:26;27057:1;27049:6;27045:14;27038:50;26921:174;:::o;27101:366::-;27243:3;27264:67;27328:2;27323:3;27264:67;:::i;:::-;27257:74;;27340:93;27429:3;27340:93;:::i;:::-;27458:2;27453:3;27449:12;27442:19;;27101:366;;;:::o;27473:419::-;27639:4;27677:2;27666:9;27662:18;27654:26;;27726:9;27720:4;27716:20;27712:1;27701:9;27697:17;27690:47;27754:131;27880:4;27754:131;:::i;:::-;27746:139;;27473:419;;;:::o;27898:228::-;28038:34;28034:1;28026:6;28022:14;28015:58;28107:11;28102:2;28094:6;28090:15;28083:36;27898:228;:::o;28132:366::-;28274:3;28295:67;28359:2;28354:3;28295:67;:::i;:::-;28288:74;;28371:93;28460:3;28371:93;:::i;:::-;28489:2;28484:3;28480:12;28473:19;;28132:366;;;:::o;28504:419::-;28670:4;28708:2;28697:9;28693:18;28685:26;;28757:9;28751:4;28747:20;28743:1;28732:9;28728:17;28721:47;28785:131;28911:4;28785:131;:::i;:::-;28777:139;;28504:419;;;:::o;28929:169::-;29069:21;29065:1;29057:6;29053:14;29046:45;28929:169;:::o;29104:366::-;29246:3;29267:67;29331:2;29326:3;29267:67;:::i;:::-;29260:74;;29343:93;29432:3;29343:93;:::i;:::-;29461:2;29456:3;29452:12;29445:19;;29104:366;;;:::o;29476:419::-;29642:4;29680:2;29669:9;29665:18;29657:26;;29729:9;29723:4;29719:20;29715:1;29704:9;29700:17;29693:47;29757:131;29883:4;29757:131;:::i;:::-;29749:139;;29476:419;;;:::o;29901:170::-;30041:22;30037:1;30029:6;30025:14;30018:46;29901:170;:::o;30077:366::-;30219:3;30240:67;30304:2;30299:3;30240:67;:::i;:::-;30233:74;;30316:93;30405:3;30316:93;:::i;:::-;30434:2;30429:3;30425:12;30418:19;;30077:366;;;:::o;30449:419::-;30615:4;30653:2;30642:9;30638:18;30630:26;;30702:9;30696:4;30692:20;30688:1;30677:9;30673:17;30666:47;30730:131;30856:4;30730:131;:::i;:::-;30722:139;;30449:419;;;:::o;30874:234::-;31014:34;31010:1;31002:6;30998:14;30991:58;31083:17;31078:2;31070:6;31066:15;31059:42;30874:234;:::o;31114:366::-;31256:3;31277:67;31341:2;31336:3;31277:67;:::i;:::-;31270:74;;31353:93;31442:3;31353:93;:::i;:::-;31471:2;31466:3;31462:12;31455:19;;31114:366;;;:::o;31486:419::-;31652:4;31690:2;31679:9;31675:18;31667:26;;31739:9;31733:4;31729:20;31725:1;31714:9;31710:17;31703:47;31767:131;31893:4;31767:131;:::i;:::-;31759:139;;31486:419;;;:::o;31911:148::-;32013:11;32050:3;32035:18;;31911:148;;;;:::o;32065:390::-;32171:3;32199:39;32232:5;32199:39;:::i;:::-;32254:89;32336:6;32331:3;32254:89;:::i;:::-;32247:96;;32352:65;32410:6;32405:3;32398:4;32391:5;32387:16;32352:65;:::i;:::-;32442:6;32437:3;32433:16;32426:23;;32175:280;32065:390;;;;:::o;32485:874::-;32588:3;32625:5;32619:12;32654:36;32680:9;32654:36;:::i;:::-;32706:89;32788:6;32783:3;32706:89;:::i;:::-;32699:96;;32826:1;32815:9;32811:17;32842:1;32837:166;;;;33017:1;33012:341;;;;32804:549;;32837:166;32921:4;32917:9;32906;32902:25;32897:3;32890:38;32983:6;32976:14;32969:22;32961:6;32957:35;32952:3;32948:45;32941:52;;32837:166;;33012:341;33079:38;33111:5;33079:38;:::i;:::-;33139:1;33153:154;33167:6;33164:1;33161:13;33153:154;;;33241:7;33235:14;33231:1;33226:3;33222:11;33215:35;33291:1;33282:7;33278:15;33267:26;;33189:4;33186:1;33182:12;33177:17;;33153:154;;;33336:6;33331:3;33327:16;33320:23;;33019:334;;32804:549;;32592:767;;32485:874;;;;:::o;33365:589::-;33590:3;33612:95;33703:3;33694:6;33612:95;:::i;:::-;33605:102;;33724:95;33815:3;33806:6;33724:95;:::i;:::-;33717:102;;33836:92;33924:3;33915:6;33836:92;:::i;:::-;33829:99;;33945:3;33938:10;;33365:589;;;;;;:::o;33960:225::-;34100:34;34096:1;34088:6;34084:14;34077:58;34169:8;34164:2;34156:6;34152:15;34145:33;33960:225;:::o;34191:366::-;34333:3;34354:67;34418:2;34413:3;34354:67;:::i;:::-;34347:74;;34430:93;34519:3;34430:93;:::i;:::-;34548:2;34543:3;34539:12;34532:19;;34191:366;;;:::o;34563:419::-;34729:4;34767:2;34756:9;34752:18;34744:26;;34816:9;34810:4;34806:20;34802:1;34791:9;34787:17;34780:47;34844:131;34970:4;34844:131;:::i;:::-;34836:139;;34563:419;;;:::o;34988:224::-;35128:34;35124:1;35116:6;35112:14;35105:58;35197:7;35192:2;35184:6;35180:15;35173:32;34988:224;:::o;35218:366::-;35360:3;35381:67;35445:2;35440:3;35381:67;:::i;:::-;35374:74;;35457:93;35546:3;35457:93;:::i;:::-;35575:2;35570:3;35566:12;35559:19;;35218:366;;;:::o;35590:419::-;35756:4;35794:2;35783:9;35779:18;35771:26;;35843:9;35837:4;35833:20;35829:1;35818:9;35814:17;35807:47;35871:131;35997:4;35871:131;:::i;:::-;35863:139;;35590:419;;;:::o;36015:223::-;36155:34;36151:1;36143:6;36139:14;36132:58;36224:6;36219:2;36211:6;36207:15;36200:31;36015:223;:::o;36244:366::-;36386:3;36407:67;36471:2;36466:3;36407:67;:::i;:::-;36400:74;;36483:93;36572:3;36483:93;:::i;:::-;36601:2;36596:3;36592:12;36585:19;;36244:366;;;:::o;36616:419::-;36782:4;36820:2;36809:9;36805:18;36797:26;;36869:9;36863:4;36859:20;36855:1;36844:9;36840:17;36833:47;36897:131;37023:4;36897:131;:::i;:::-;36889:139;;36616:419;;;:::o;37041:182::-;37181:34;37177:1;37169:6;37165:14;37158:58;37041:182;:::o;37229:366::-;37371:3;37392:67;37456:2;37451:3;37392:67;:::i;:::-;37385:74;;37468:93;37557:3;37468:93;:::i;:::-;37586:2;37581:3;37577:12;37570:19;;37229:366;;;:::o;37601:419::-;37767:4;37805:2;37794:9;37790:18;37782:26;;37854:9;37848:4;37844:20;37840:1;37829:9;37825:17;37818:47;37882:131;38008:4;37882:131;:::i;:::-;37874:139;;37601:419;;;:::o;38026:175::-;38166:27;38162:1;38154:6;38150:14;38143:51;38026:175;:::o;38207:366::-;38349:3;38370:67;38434:2;38429:3;38370:67;:::i;:::-;38363:74;;38446:93;38535:3;38446:93;:::i;:::-;38564:2;38559:3;38555:12;38548:19;;38207:366;;;:::o;38579:419::-;38745:4;38783:2;38772:9;38768:18;38760:26;;38832:9;38826:4;38822:20;38818:1;38807:9;38803:17;38796:47;38860:131;38986:4;38860:131;:::i;:::-;38852:139;;38579:419;;;:::o;39004:237::-;39144:34;39140:1;39132:6;39128:14;39121:58;39213:20;39208:2;39200:6;39196:15;39189:45;39004:237;:::o;39247:366::-;39389:3;39410:67;39474:2;39469:3;39410:67;:::i;:::-;39403:74;;39486:93;39575:3;39486:93;:::i;:::-;39604:2;39599:3;39595:12;39588:19;;39247:366;;;:::o;39619:419::-;39785:4;39823:2;39812:9;39808:18;39800:26;;39872:9;39866:4;39862:20;39858:1;39847:9;39843:17;39836:47;39900:131;40026:4;39900:131;:::i;:::-;39892:139;;39619:419;;;:::o;40044:180::-;40092:77;40089:1;40082:88;40189:4;40186:1;40179:15;40213:4;40210:1;40203:15;40230:98;40281:6;40315:5;40309:12;40299:22;;40230:98;;;:::o;40334:168::-;40417:11;40451:6;40446:3;40439:19;40491:4;40486:3;40482:14;40467:29;;40334:168;;;;:::o;40508:373::-;40594:3;40622:38;40654:5;40622:38;:::i;:::-;40676:70;40739:6;40734:3;40676:70;:::i;:::-;40669:77;;40755:65;40813:6;40808:3;40801:4;40794:5;40790:16;40755:65;:::i;:::-;40845:29;40867:6;40845:29;:::i;:::-;40840:3;40836:39;40829:46;;40598:283;40508:373;;;;:::o;40887:640::-;41082:4;41120:3;41109:9;41105:19;41097:27;;41134:71;41202:1;41191:9;41187:17;41178:6;41134:71;:::i;:::-;41215:72;41283:2;41272:9;41268:18;41259:6;41215:72;:::i;:::-;41297;41365:2;41354:9;41350:18;41341:6;41297:72;:::i;:::-;41416:9;41410:4;41406:20;41401:2;41390:9;41386:18;41379:48;41444:76;41515:4;41506:6;41444:76;:::i;:::-;41436:84;;40887:640;;;;;;;:::o;41533:141::-;41589:5;41620:6;41614:13;41605:22;;41636:32;41662:5;41636:32;:::i;:::-;41533:141;;;;:::o;41680:349::-;41749:6;41798:2;41786:9;41777:7;41773:23;41769:32;41766:119;;;41804:79;;:::i;:::-;41766:119;41924:1;41949:63;42004:7;41995:6;41984:9;41980:22;41949:63;:::i;:::-;41939:73;;41895:127;41680:349;;;;:::o;42035:182::-;42175:34;42171:1;42163:6;42159:14;42152:58;42035:182;:::o;42223:366::-;42365:3;42386:67;42450:2;42445:3;42386:67;:::i;:::-;42379:74;;42462:93;42551:3;42462:93;:::i;:::-;42580:2;42575:3;42571:12;42564:19;;42223:366;;;:::o;42595:419::-;42761:4;42799:2;42788:9;42784:18;42776:26;;42848:9;42842:4;42838:20;42834:1;42823:9;42819:17;42812:47;42876:131;43002:4;42876:131;:::i;:::-;42868:139;;42595:419;;;:::o;43020:178::-;43160:30;43156:1;43148:6;43144:14;43137:54;43020:178;:::o;43204:366::-;43346:3;43367:67;43431:2;43426:3;43367:67;:::i;:::-;43360:74;;43443:93;43532:3;43443:93;:::i;:::-;43561:2;43556:3;43552:12;43545:19;;43204:366;;;:::o;43576:419::-;43742:4;43780:2;43769:9;43765:18;43757:26;;43829:9;43823:4;43819:20;43815:1;43804:9;43800:17;43793:47;43857:131;43983:4;43857:131;:::i;:::-;43849:139;;43576:419;;;:::o

Swarm Source

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