Token Cowz

Overview CRC721

Total Supply:
5,024 COWZ

Holders:
105 addresses

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Cowz

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

        uint256 tokenId = firstTokenId;

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/3_Ballot.sol



pragma solidity 0.8.19;





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

  struct TokenInfo {
    uint256 maxSupply;
    uint256 supply;
    uint256 price;
  }

  string baseURI;
  string public baseExtension = ".json"; 
  uint256 public cost = 69 ether;
  uint256 public Wlcost = 42 ether;
  uint256 constant public maxSupply = 10000;
  uint256 public maxMintAmount = 250;
  mapping(address => uint256) public mintPerWallet;
  bool public paused = false;
  mapping(address => bool) public whitelisted;

  uint256[maxSupply] internal availableIds;

  uint256 public croSupply;

  address public steak = 0x4137A9F6eb939a8d7d620b239B562596E48d6F41;

  address public devWallet = 0x42C58f27681380E0fc1D3D313D275f5916fB3C04;
  address public teamWallet = 0xf6882F46E94e9Dd57f8fd12cF40d7dC0Af27331d;
  address public marketingWallet = 0x1E6D5aa35A21B3221630EC898F50128de3cB1c1C;
  address public projectWallet = 0xb68b5B646ECa05fe554a5e3cb499e664a91050D5;

  mapping(address => TokenInfo) public mintTokens;

  constructor(string memory _initBaseURI) ERC721("Cowz", "COWZ") {
    setBaseURI(_initBaseURI);
    mintTokens[steak] = TokenInfo(5000, 0, 69 ether);
  }

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

  // public
  function mintWithCRO(uint256 amount) public payable {
    require(!paused, "paused");
    
    require(amount > 0, "amount shouldn't be zero");
    require(mintPerWallet[msg.sender] + amount <= maxMintAmount, "Can't mint more than max Mint");
    uint256 supply = totalSupply();
    require(supply + amount <= maxSupply, "Max supply exceeded");
    require(croSupply + amount <= 5000, "CRO Max Supply exceeded");
    uint256 price = cost;
    if ( whitelisted[msg.sender] ) {
      price = Wlcost;
    }
    require(msg.value >= price * amount, "insufficient funds");
    for (uint256 i = 0; i < amount; i++) {
      _safeMint(msg.sender, supply+i);
    }
    mintPerWallet[msg.sender] += amount;
    croSupply += amount;
    
    uint256 balance = address(this).balance;
    uint256 pFee = balance * 700 / 1000;
    (bool sent,) = payable(projectWallet).call{value: pFee}("");
    require(sent, "CRO transfer failed");
    pFee = balance * 100 / 1000;
    (sent,) = payable(marketingWallet).call{value: pFee}("");
    require(sent, "CRO transfer failed");
    pFee = balance * 100 / 1000;
    (sent,) = payable(teamWallet).call{value: pFee}("");
    require(sent, "CRO transfer failed");
    (sent,) = payable(devWallet).call{value: address(this).balance}("");
    require(sent, "CRO transfer failed");
  }

  function mintWithToken(uint256 amount, address token) public {
    require(!paused, "paused");
    
    require(amount > 0, "amount shouldn't be zero");
    require(mintPerWallet[msg.sender] + amount <= maxMintAmount, "Can't mint more than max Mint");
    uint256 supply = totalSupply();
    require(supply + amount <= maxSupply, "Max supply exceeded");

    TokenInfo storage tokenInfo = mintTokens[token];
    require(tokenInfo.maxSupply > 0, "Invalid Mint Token");
    
    require(tokenInfo.supply + amount <= tokenInfo.maxSupply, "Max Supply exceeded");
    
    // require(msg.value >= price * amount, "insufficient funds");
    
    uint256 totalPrice = amount * tokenInfo.price;
    require(IERC20(token).balanceOf(msg.sender) >= totalPrice, "insufficient funds");
    _distributeFee(token, totalPrice);
    for (uint256 i = 0; i < amount; i++) {
      _safeMint(msg.sender, supply+i);
    }
    mintPerWallet[msg.sender] += amount;
    tokenInfo.supply += amount;
  }

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

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

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

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

  function setWlcost(uint256 _newWlcost) public onlyOwner {
    Wlcost = _newWlcost;
  }

  function setWhitelisted(address _address, bool _whitelisted)
    public
    onlyOwner
  {
    whitelisted[_address] = _whitelisted;
  }

  function setWhitelistAddresses(address[] memory addresses) public onlyOwner {
    for (uint i = 0; i < addresses.length; i++) {
      whitelisted[addresses[i]] = true;
    }
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

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

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

  //
  function mintCost(address _minter)
    external
    view
    returns (uint256)
  {
    if (whitelisted[_minter]) return Wlcost;
    return cost;
  }

  function airdropNFTs(
        address[] calldata _holders,
        uint256[] calldata _counts,
        address token
    ) external onlyOwner {
        require(_holders.length == _counts.length, "Input Data error");
        uint256 supply = totalSupply();
        uint256 airdropCount = 0;
        for (uint256 i = 0; i < _holders.length; i++) {
            for (uint256 j = 0; j < _counts[i]; j++) {
                _safeMint(_holders[i], supply+j);
            }
            supply += _counts[i];
            airdropCount += _counts[i];
        }
      TokenInfo storage tokenInfo = mintTokens[token];
      tokenInfo.supply += airdropCount;
    }

  function _distributeFee(address token, uint256 totalPrice) internal {
    require(IERC20(token).allowance(msg.sender, address(this)) >= totalPrice, "insufficient allowance");
    uint256 pFee = totalPrice * 700 / 1000;
    uint256 mFee = totalPrice * 100 / 1000;
    uint256 tFee = totalPrice * 100 / 1000;
    uint256 dFee = totalPrice - pFee - mFee - tFee;
    IERC20(token).transferFrom(msg.sender, projectWallet, pFee);
    IERC20(token).transferFrom(msg.sender, marketingWallet, mFee);
    IERC20(token).transferFrom(msg.sender, teamWallet, tFee);
    IERC20(token).transferFrom(msg.sender, devWallet, dFee);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Wlcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_holders","type":"address[]"},{"internalType":"uint256[]","name":"_counts","type":"uint256[]"},{"internalType":"address","name":"token","type":"address"}],"name":"airdropNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"croSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintTokens","outputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintWithCRO","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"token","type":"address"}],"name":"mintWithToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setWhitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_whitelisted","type":"bool"}],"name":"setWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWlcost","type":"uint256"}],"name":"setWlcost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"steak","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90816200004a919062000803565b506803bd913e6c1df40000600d55680246ddf97976680000600e5560fa600f556000601160006101000a81548160ff021916908315150217905550734137a9f6eb939a8d7d620b239b562596e48d6f4161272460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507342c58f27681380e0fc1d3d313d275f5916fb3c0461272560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f6882f46e94e9dd57f8fd12cf40d7dc0af27331d61272660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731e6d5aa35a21b3221630ec898f50128de3cb1c1c61272760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b68b5b646eca05fe554a5e3cb499e664a91050d561272860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200024057600080fd5b506040516200694f3803806200694f833981810160405281019062000266919062000a4e565b6040518060400160405280600481526020017f436f777a000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f434f575a000000000000000000000000000000000000000000000000000000008152508160009081620002e3919062000803565b508060019081620002f5919062000803565b505050620003186200030c620003db60201b60201c565b620003e360201b60201c565b6200032981620004a960201b60201c565b60405180606001604052806113888152602001600081526020016803bd913e6c1df40000815250612729600061272460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010155604082015181600201559050505062000b22565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004b9620004ce60201b60201c565b80600b9081620004ca919062000803565b5050565b620004de620003db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005046200055f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200055d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005549062000b00565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200060b57607f821691505b602082108103620006215762000620620005c3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200068b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200064c565b6200069786836200064c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006e4620006de620006d884620006af565b620006b9565b620006af565b9050919050565b6000819050919050565b6200070083620006c3565b620007186200070f82620006eb565b84845462000659565b825550505050565b600090565b6200072f62000720565b6200073c818484620006f5565b505050565b5b8181101562000764576200075860008262000725565b60018101905062000742565b5050565b601f821115620007b3576200077d8162000627565b62000788846200063c565b8101602085101562000798578190505b620007b0620007a7856200063c565b83018262000741565b50505b505050565b600082821c905092915050565b6000620007d860001984600802620007b8565b1980831691505092915050565b6000620007f38383620007c5565b9150826002028217905092915050565b6200080e8262000589565b67ffffffffffffffff8111156200082a576200082962000594565b5b620008368254620005f2565b6200084382828562000768565b600060209050601f8311600181146200087b576000841562000866578287015190505b620008728582620007e5565b865550620008e2565b601f1984166200088b8662000627565b60005b82811015620008b5578489015182556001820191506020850194506020810190506200088e565b86831015620008d55784890151620008d1601f891682620007c5565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620009248262000908565b810181811067ffffffffffffffff8211171562000946576200094562000594565b5b80604052505050565b60006200095b620008ea565b905062000969828262000919565b919050565b600067ffffffffffffffff8211156200098c576200098b62000594565b5b620009978262000908565b9050602081019050919050565b60005b83811015620009c4578082015181840152602081019050620009a7565b60008484015250505050565b6000620009e7620009e1846200096e565b6200094f565b90508281526020810184848401111562000a065762000a0562000903565b5b62000a13848285620009a4565b509392505050565b600082601f83011262000a335762000a32620008fe565b5b815162000a45848260208601620009d0565b91505092915050565b60006020828403121562000a675762000a66620008f4565b5b600082015167ffffffffffffffff81111562000a885762000a87620008f9565b5b62000a968482850162000a1b565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ae860208362000a9f565b915062000af58262000ab0565b602082019050919050565b6000602082019050818103600083015262000b1b8162000ad9565b9050919050565b615e1d8062000b326000396000f3fe6080604052600436106102885760003560e01c80636f1903151161015a578063bcfaa79d116100c1578063d936547e1161007a578063d936547e146109fd578063da3ef23f14610a3a578063e853164114610a63578063e985e9c514610a8c578063f2fde38b14610ac9578063f52ccc2d14610af257610288565b8063bcfaa79d146108e4578063beb08ab914610923578063c66828621461094e578063c87b56dd14610979578063ca9b611e146109b6578063d5abeb01146109d257610288565b80638ea5220f116101135780638ea5220f146107ea5780639281aa0b1461081557806395d89b411461083e578063a22cb46514610869578063a899ecb214610892578063b88d4fde146108bb57610288565b80636f190315146106ec57806370a0823114610717578063715018a61461075457806375f0a8741461076b5780637f00c7a6146107965780638da5cb5b146107bf57610288565b806323b872dd116101fe5780634f6ccce7116101b75780634f6ccce7146105c857806355f804b314610605578063599270441461062e5780635c975abb1461065957806362695052146106845780636352211e146106af57610288565b806323b872dd146104965780632acc659e146104bf5780632f745c59146104fc57806342842e0e14610539578063438b63001461056257806344a0d68a1461059f57610288565b8063081812fc11610250578063081812fc14610372578063095ea7b3146103af57806313413cd2146103d857806313faede61461041557806318160ddd14610440578063239c70ae1461046b57610288565b806301ffc9a71461028d57806302329a29146102ca57806302b21272146102f35780630457d16b1461031c57806306fdde0314610347575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613e82565b610b1b565b6040516102c19190613eca565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613f11565b610b95565b005b3480156102ff57600080fd5b5061031a60048036038101906103159190613f74565b610bba565b005b34801561032857600080fd5b50610331610bcc565b60405161033e9190613fb0565b60405180910390f35b34801561035357600080fd5b5061035c610bd2565b604051610369919061405b565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190613f74565b610c64565b6040516103a691906140be565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190614105565b610caa565b005b3480156103e457600080fd5b506103ff60048036038101906103fa9190614145565b610dc1565b60405161040c9190613fb0565b60405180910390f35b34801561042157600080fd5b5061042a610dd9565b6040516104379190613fb0565b60405180910390f35b34801561044c57600080fd5b50610455610ddf565b6040516104629190613fb0565b60405180910390f35b34801561047757600080fd5b50610480610dec565b60405161048d9190613fb0565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190614172565b610df2565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190614145565b610e52565b6040516104f39190613fb0565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190614105565b610ebb565b6040516105309190613fb0565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b9190614172565b610f60565b005b34801561056e57600080fd5b5061058960048036038101906105849190614145565b610f80565b6040516105969190614283565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c19190613f74565b61102e565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190613f74565b611040565b6040516105fc9190613fb0565b60405180910390f35b34801561061157600080fd5b5061062c600480360381019061062791906143da565b6110b1565b005b34801561063a57600080fd5b506106436110cc565b60405161065091906140be565b60405180910390f35b34801561066557600080fd5b5061066e6110f3565b60405161067b9190613eca565b60405180910390f35b34801561069057600080fd5b50610699611106565b6040516106a69190613fb0565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d19190613f74565b61110d565b6040516106e391906140be565b60405180910390f35b3480156106f857600080fd5b50610701611193565b60405161070e91906140be565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190614145565b6111ba565b60405161074b9190613fb0565b60405180910390f35b34801561076057600080fd5b50610769611271565b005b34801561077757600080fd5b50610780611285565b60405161078d91906140be565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b89190613f74565b6112ac565b005b3480156107cb57600080fd5b506107d46112be565b6040516107e191906140be565b60405180910390f35b3480156107f657600080fd5b506107ff6112e8565b60405161080c91906140be565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190614423565b61130f565b005b34801561084a57600080fd5b50610853611372565b604051610860919061405b565b60405180910390f35b34801561087557600080fd5b50610890600480360381019061088b9190614423565b611404565b005b34801561089e57600080fd5b506108b960048036038101906108b49190614519565b61141a565b005b3480156108c757600080fd5b506108e260048036038101906108dd919061464f565b6115c4565b005b3480156108f057600080fd5b5061090b60048036038101906109069190614145565b611626565b60405161091a939291906146d2565b60405180910390f35b34801561092f57600080fd5b50610938611651565b60405161094591906140be565b60405180910390f35b34801561095a57600080fd5b50610963611678565b604051610970919061405b565b60405180910390f35b34801561098557600080fd5b506109a0600480360381019061099b9190613f74565b611706565b6040516109ad919061405b565b60405180910390f35b6109d060048036038101906109cb9190613f74565b6117b0565b005b3480156109de57600080fd5b506109e7611e72565b6040516109f49190613fb0565b60405180910390f35b348015610a0957600080fd5b50610a246004803603810190610a1f9190614145565b611e78565b604051610a319190613eca565b60405180910390f35b348015610a4657600080fd5b50610a616004803603810190610a5c91906143da565b611e98565b005b348015610a6f57600080fd5b50610a8a6004803603810190610a859190614709565b611eb3565b005b348015610a9857600080fd5b50610ab36004803603810190610aae9190614749565b612298565b604051610ac09190613eca565b60405180910390f35b348015610ad557600080fd5b50610af06004803603810190610aeb9190614145565b61232c565b005b348015610afe57600080fd5b50610b196004803603810190610b14919061484c565b6123af565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b8e5750610b8d8261244c565b5b9050919050565b610b9d61252e565b80601160006101000a81548160ff02191690831515021790555050565b610bc261252e565b80600e8190555050565b600e5481565b606060008054610be1906148c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0d906148c4565b8015610c5a5780601f10610c2f57610100808354040283529160200191610c5a565b820191906000526020600020905b815481529060010190602001808311610c3d57829003601f168201915b5050505050905090565b6000610c6f826125ac565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cb58261110d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90614967565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d446125f7565b73ffffffffffffffffffffffffffffffffffffffff161480610d735750610d7281610d6d6125f7565b612298565b5b610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da9906149f9565b60405180910390fd5b610dbc83836125ff565b505050565b60106020528060005260406000206000915090505481565b600d5481565b6000600880549050905090565b600f5481565b610e03610dfd6125f7565b826126b8565b610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3990614a8b565b60405180910390fd5b610e4d83838361274d565b505050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610eb057600e549050610eb6565b600d5490505b919050565b6000610ec6836111ba565b8210610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90614b1d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f7b838383604051806020016040528060008152506115c4565b505050565b60606000610f8d836111ba565b905060008167ffffffffffffffff811115610fab57610faa6142af565b5b604051908082528060200260200182016040528015610fd95781602001602082028036833780820191505090505b50905060005b8281101561102357610ff18582610ebb565b82828151811061100457611003614b3d565b5b602002602001018181525050808061101b90614b9b565b915050610fdf565b508092505050919050565b61103661252e565b80600d8190555050565b600061104a610ddf565b821061108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290614c55565b60405180910390fd5b6008828154811061109f5761109e614b3d565b5b90600052602060002001549050919050565b6110b961252e565b80600b90816110c89190614e21565b5050565b61272660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160009054906101000a900460ff1681565b6127235481565b60008061111983612a46565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190614f3f565b60405180910390fd5b80915050919050565b61272460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190614fd1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61127961252e565b6112836000612a83565b565b61272760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112b461252e565b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61272560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61131761252e565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b606060018054611381906148c4565b80601f01602080910402602001604051908101604052809291908181526020018280546113ad906148c4565b80156113fa5780601f106113cf576101008083540402835291602001916113fa565b820191906000526020600020905b8154815290600101906020018083116113dd57829003601f168201915b5050505050905090565b61141661140f6125f7565b8383612b49565b5050565b61142261252e565b82829050858590501461146a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114619061503d565b60405180910390fd5b6000611474610ddf565b90506000805b8787905081101561155a5760005b86868381811061149b5761149a614b3d565b5b905060200201358110156114f8576114e58989848181106114bf576114be614b3d565b5b90506020020160208101906114d49190614145565b82866114e0919061505d565b612cb5565b80806114f090614b9b565b915050611488565b5085858281811061150c5761150b614b3d565b5b905060200201358361151e919061505d565b925085858281811061153357611532614b3d565b5b9050602002013582611545919061505d565b9150808061155290614b9b565b91505061147a565b50600061272960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050818160010160008282546115b3919061505d565b925050819055505050505050505050565b6115d56115cf6125f7565b836126b8565b611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614a8b565b60405180910390fd5b61162084848484612cd3565b50505050565b6127296020528060005260406000206000915090508060000154908060010154908060020154905083565b61272860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c8054611685906148c4565b80601f01602080910402602001604051908101604052809291908181526020018280546116b1906148c4565b80156116fe5780601f106116d3576101008083540402835291602001916116fe565b820191906000526020600020905b8154815290600101906020018083116116e157829003601f168201915b505050505081565b606061171182612d2f565b611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790615103565b60405180910390fd5b600061175a612d70565b9050600081511161177a57604051806020016040528060008152506117a8565b8061178484612e02565b600c604051602001611798939291906151e2565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1615611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f79061525f565b60405180910390fd5b60008111611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a906152cb565b60405180910390fd5b600f5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611891919061505d565b11156118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c990615337565b60405180910390fd5b60006118dc610ddf565b905061271082826118ed919061505d565b111561192e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611925906153a3565b60405180910390fd5b6113888261272354611940919061505d565b1115611981576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119789061540f565b60405180910390fd5b6000600d549050601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119e057600e5490505b82816119ec919061542f565b341015611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a25906154bd565b60405180910390fd5b60005b83811015611a6157611a4e338285611a49919061505d565b612cb5565b8080611a5990614b9b565b915050611a31565b5082601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab1919061505d565b92505081905550826127236000828254611acb919061505d565b92505081905550600047905060006103e86102bc83611aea919061542f565b611af4919061550c565b9050600061272860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611b3f9061556e565b60006040518083038185875af1925050503d8060008114611b7c576040519150601f19603f3d011682016040523d82523d6000602084013e611b81565b606091505b5050905080611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc906155cf565b60405180910390fd5b6103e8606484611bd5919061542f565b611bdf919061550c565b915061272760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611c289061556e565b60006040518083038185875af1925050503d8060008114611c65576040519150601f19603f3d011682016040523d82523d6000602084013e611c6a565b606091505b50508091505080611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca7906155cf565b60405180910390fd5b6103e8606484611cc0919061542f565b611cca919061550c565b915061272660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d139061556e565b60006040518083038185875af1925050503d8060008114611d50576040519150601f19603f3d011682016040523d82523d6000602084013e611d55565b606091505b50508091505080611d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d92906155cf565b60405180910390fd5b61272560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611de29061556e565b60006040518083038185875af1925050503d8060008114611e1f576040519150601f19603f3d011682016040523d82523d6000602084013e611e24565b606091505b50508091505080611e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e61906155cf565b60405180910390fd5b505050505050565b61271081565b60126020528060005260406000206000915054906101000a900460ff1681565b611ea061252e565b80600c9081611eaf9190614e21565b5050565b601160009054906101000a900460ff1615611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa9061525f565b60405180910390fd5b60008211611f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3d906152cb565b60405180910390fd5b600f5482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f94919061505d565b1115611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc90615337565b60405180910390fd5b6000611fdf610ddf565b90506127108382611ff0919061505d565b1115612031576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612028906153a3565b60405180910390fd5b600061272960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000154116120bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b39061563b565b60405180910390fd5b80600001548482600101546120d1919061505d565b1115612112576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612109906156a7565b60405180910390fd5b6000816002015485612124919061542f565b9050808473ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161216091906140be565b602060405180830381865afa15801561217d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121a191906156dc565b10156121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d9906154bd565b60405180910390fd5b6121ec8482612ed0565b60005b8581101561221f5761220c338286612207919061505d565b612cb5565b808061221790614b9b565b9150506121ef565b5084601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461226f919061505d565b925050819055508482600101600082825461228a919061505d565b925050819055505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61233461252e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239a9061577b565b60405180910390fd5b6123ac81612a83565b50565b6123b761252e565b60005b8151811015612448576001601260008484815181106123dc576123db614b3d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061244090614b9b565b9150506123ba565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061251757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125275750612526826132a7565b5b9050919050565b6125366125f7565b73ffffffffffffffffffffffffffffffffffffffff166125546112be565b73ffffffffffffffffffffffffffffffffffffffff16146125aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a1906157e7565b60405180910390fd5b565b6125b581612d2f565b6125f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125eb90614f3f565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126728361110d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806126c48361110d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061270657506127058185612298565b5b8061274457508373ffffffffffffffffffffffffffffffffffffffff1661272c84610c64565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661276d8261110d565b73ffffffffffffffffffffffffffffffffffffffff16146127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba90615879565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612832576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128299061590b565b60405180910390fd5b61283f8383836001613311565b8273ffffffffffffffffffffffffffffffffffffffff1661285f8261110d565b73ffffffffffffffffffffffffffffffffffffffff16146128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac90615879565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a41838383600161346f565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bae90615977565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ca89190613eca565b60405180910390a3505050565b612ccf828260405180602001604052806000815250613475565b5050565b612cde84848461274d565b612cea848484846134d0565b612d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2090615a09565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16612d5183612a46565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054612d7f906148c4565b80601f0160208091040260200160405190810160405280929190818152602001828054612dab906148c4565b8015612df85780601f10612dcd57610100808354040283529160200191612df8565b820191906000526020600020905b815481529060010190602001808311612ddb57829003601f168201915b5050505050905090565b606060006001612e1184613657565b01905060008167ffffffffffffffff811115612e3057612e2f6142af565b5b6040519080825280601f01601f191660200182016040528015612e625781602001600182028036833780820191505090505b509050600082602001820190505b600115612ec5578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612eb957612eb86154dd565b5b04945060008503612e70575b819350505050919050565b808273ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401612f0c929190615a29565b602060405180830381865afa158015612f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f4d91906156dc565b1015612f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8590615a9e565b60405180910390fd5b60006103e86102bc83612fa1919061542f565b612fab919061550c565b905060006103e8606484612fbf919061542f565b612fc9919061550c565b905060006103e8606485612fdd919061542f565b612fe7919061550c565b9050600081838587612ff99190615abe565b6130039190615abe565b61300d9190615abe565b90508573ffffffffffffffffffffffffffffffffffffffff166323b872dd3361272860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16876040518463ffffffff1660e01b815260040161306f93929190615af2565b6020604051808303816000875af115801561308e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130b29190615b3e565b508573ffffffffffffffffffffffffffffffffffffffff166323b872dd3361272760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518463ffffffff1660e01b815260040161311393929190615af2565b6020604051808303816000875af1158015613132573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131569190615b3e565b508573ffffffffffffffffffffffffffffffffffffffff166323b872dd3361272660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518463ffffffff1660e01b81526004016131b793929190615af2565b6020604051808303816000875af11580156131d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131fa9190615b3e565b508573ffffffffffffffffffffffffffffffffffffffff166323b872dd3361272560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff1660e01b815260040161325b93929190615af2565b6020604051808303816000875af115801561327a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061329e9190615b3e565b50505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61331d848484846137aa565b6001811115613361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335890615bdd565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036133a8576133a3816138d0565b6133e7565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146133e6576133e58582613919565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036134295761342481613a86565b613468565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614613467576134668482613b57565b5b5b5050505050565b50505050565b61347f8383613bd6565b61348c60008484846134d0565b6134cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c290615a09565b60405180910390fd5b505050565b60006134f18473ffffffffffffffffffffffffffffffffffffffff16613df3565b1561364a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261351a6125f7565b8786866040518563ffffffff1660e01b815260040161353c9493929190615c52565b6020604051808303816000875af192505050801561357857506040513d601f19601f820116820180604052508101906135759190615cb3565b60015b6135fa573d80600081146135a8576040519150601f19603f3d011682016040523d82523d6000602084013e6135ad565b606091505b5060008151036135f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e990615a09565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061364f565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106136b5577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816136ab576136aa6154dd565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106136f2576d04ee2d6d415b85acef810000000083816136e8576136e76154dd565b5b0492506020810190505b662386f26fc10000831061372157662386f26fc100008381613717576137166154dd565b5b0492506010810190505b6305f5e100831061374a576305f5e10083816137405761373f6154dd565b5b0492506008810190505b612710831061376f576127108381613765576137646154dd565b5b0492506004810190505b606483106137925760648381613788576137876154dd565b5b0492506002810190505b600a83106137a1576001810190505b80915050919050565b60018111156138ca57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461383e5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138369190615abe565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146138c95780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138c1919061505d565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613926846111ba565b6139309190615abe565b9050600060076000848152602001908152602001600020549050818114613a15576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a9a9190615abe565b9050600060096000848152602001908152602001600020549050600060088381548110613aca57613ac9614b3d565b5b906000526020600020015490508060088381548110613aec57613aeb614b3d565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613b3b57613b3a615ce0565b5b6001900381819060005260206000200160009055905550505050565b6000613b62836111ba565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c90615d5b565b60405180910390fd5b613c4e81612d2f565b15613c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c8590615dc7565b60405180910390fd5b613c9c600083836001613311565b613ca581612d2f565b15613ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cdc90615dc7565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613def60008383600161346f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e5f81613e2a565b8114613e6a57600080fd5b50565b600081359050613e7c81613e56565b92915050565b600060208284031215613e9857613e97613e20565b5b6000613ea684828501613e6d565b91505092915050565b60008115159050919050565b613ec481613eaf565b82525050565b6000602082019050613edf6000830184613ebb565b92915050565b613eee81613eaf565b8114613ef957600080fd5b50565b600081359050613f0b81613ee5565b92915050565b600060208284031215613f2757613f26613e20565b5b6000613f3584828501613efc565b91505092915050565b6000819050919050565b613f5181613f3e565b8114613f5c57600080fd5b50565b600081359050613f6e81613f48565b92915050565b600060208284031215613f8a57613f89613e20565b5b6000613f9884828501613f5f565b91505092915050565b613faa81613f3e565b82525050565b6000602082019050613fc56000830184613fa1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614005578082015181840152602081019050613fea565b60008484015250505050565b6000601f19601f8301169050919050565b600061402d82613fcb565b6140378185613fd6565b9350614047818560208601613fe7565b61405081614011565b840191505092915050565b600060208201905081810360008301526140758184614022565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006140a88261407d565b9050919050565b6140b88161409d565b82525050565b60006020820190506140d360008301846140af565b92915050565b6140e28161409d565b81146140ed57600080fd5b50565b6000813590506140ff816140d9565b92915050565b6000806040838503121561411c5761411b613e20565b5b600061412a858286016140f0565b925050602061413b85828601613f5f565b9150509250929050565b60006020828403121561415b5761415a613e20565b5b6000614169848285016140f0565b91505092915050565b60008060006060848603121561418b5761418a613e20565b5b6000614199868287016140f0565b93505060206141aa868287016140f0565b92505060406141bb86828701613f5f565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141fa81613f3e565b82525050565b600061420c83836141f1565b60208301905092915050565b6000602082019050919050565b6000614230826141c5565b61423a81856141d0565b9350614245836141e1565b8060005b8381101561427657815161425d8882614200565b975061426883614218565b925050600181019050614249565b5085935050505092915050565b6000602082019050818103600083015261429d8184614225565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6142e782614011565b810181811067ffffffffffffffff82111715614306576143056142af565b5b80604052505050565b6000614319613e16565b905061432582826142de565b919050565b600067ffffffffffffffff821115614345576143446142af565b5b61434e82614011565b9050602081019050919050565b82818337600083830152505050565b600061437d6143788461432a565b61430f565b905082815260208101848484011115614399576143986142aa565b5b6143a484828561435b565b509392505050565b600082601f8301126143c1576143c06142a5565b5b81356143d184826020860161436a565b91505092915050565b6000602082840312156143f0576143ef613e20565b5b600082013567ffffffffffffffff81111561440e5761440d613e25565b5b61441a848285016143ac565b91505092915050565b6000806040838503121561443a57614439613e20565b5b6000614448858286016140f0565b925050602061445985828601613efc565b9150509250929050565b600080fd5b600080fd5b60008083601f840112614483576144826142a5565b5b8235905067ffffffffffffffff8111156144a05761449f614463565b5b6020830191508360208202830111156144bc576144bb614468565b5b9250929050565b60008083601f8401126144d9576144d86142a5565b5b8235905067ffffffffffffffff8111156144f6576144f5614463565b5b60208301915083602082028301111561451257614511614468565b5b9250929050565b60008060008060006060868803121561453557614534613e20565b5b600086013567ffffffffffffffff81111561455357614552613e25565b5b61455f8882890161446d565b9550955050602086013567ffffffffffffffff81111561458257614581613e25565b5b61458e888289016144c3565b935093505060406145a1888289016140f0565b9150509295509295909350565b600067ffffffffffffffff8211156145c9576145c86142af565b5b6145d282614011565b9050602081019050919050565b60006145f26145ed846145ae565b61430f565b90508281526020810184848401111561460e5761460d6142aa565b5b61461984828561435b565b509392505050565b600082601f830112614636576146356142a5565b5b81356146468482602086016145df565b91505092915050565b6000806000806080858703121561466957614668613e20565b5b6000614677878288016140f0565b9450506020614688878288016140f0565b935050604061469987828801613f5f565b925050606085013567ffffffffffffffff8111156146ba576146b9613e25565b5b6146c687828801614621565b91505092959194509250565b60006060820190506146e76000830186613fa1565b6146f46020830185613fa1565b6147016040830184613fa1565b949350505050565b600080604083850312156147205761471f613e20565b5b600061472e85828601613f5f565b925050602061473f858286016140f0565b9150509250929050565b600080604083850312156147605761475f613e20565b5b600061476e858286016140f0565b925050602061477f858286016140f0565b9150509250929050565b600067ffffffffffffffff8211156147a4576147a36142af565b5b602082029050602081019050919050565b60006147c86147c384614789565b61430f565b905080838252602082019050602084028301858111156147eb576147ea614468565b5b835b81811015614814578061480088826140f0565b8452602084019350506020810190506147ed565b5050509392505050565b600082601f830112614833576148326142a5565b5b81356148438482602086016147b5565b91505092915050565b60006020828403121561486257614861613e20565b5b600082013567ffffffffffffffff8111156148805761487f613e25565b5b61488c8482850161481e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806148dc57607f821691505b6020821081036148ef576148ee614895565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614951602183613fd6565b915061495c826148f5565b604082019050919050565b6000602082019050818103600083015261498081614944565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006149e3603d83613fd6565b91506149ee82614987565b604082019050919050565b60006020820190508181036000830152614a12816149d6565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614a75602d83613fd6565b9150614a8082614a19565b604082019050919050565b60006020820190508181036000830152614aa481614a68565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614b07602b83613fd6565b9150614b1282614aab565b604082019050919050565b60006020820190508181036000830152614b3681614afa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614ba682613f3e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614bd857614bd7614b6c565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614c3f602c83613fd6565b9150614c4a82614be3565b604082019050919050565b60006020820190508181036000830152614c6e81614c32565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614cd77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614c9a565b614ce18683614c9a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614d1e614d19614d1484613f3e565b614cf9565b613f3e565b9050919050565b6000819050919050565b614d3883614d03565b614d4c614d4482614d25565b848454614ca7565b825550505050565b600090565b614d61614d54565b614d6c818484614d2f565b505050565b5b81811015614d9057614d85600082614d59565b600181019050614d72565b5050565b601f821115614dd557614da681614c75565b614daf84614c8a565b81016020851015614dbe578190505b614dd2614dca85614c8a565b830182614d71565b50505b505050565b600082821c905092915050565b6000614df860001984600802614dda565b1980831691505092915050565b6000614e118383614de7565b9150826002028217905092915050565b614e2a82613fcb565b67ffffffffffffffff811115614e4357614e426142af565b5b614e4d82546148c4565b614e58828285614d94565b600060209050601f831160018114614e8b5760008415614e79578287015190505b614e838582614e05565b865550614eeb565b601f198416614e9986614c75565b60005b82811015614ec157848901518255600182019150602085019450602081019050614e9c565b86831015614ede5784890151614eda601f891682614de7565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614f29601883613fd6565b9150614f3482614ef3565b602082019050919050565b60006020820190508181036000830152614f5881614f1c565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614fbb602983613fd6565b9150614fc682614f5f565b604082019050919050565b60006020820190508181036000830152614fea81614fae565b9050919050565b7f496e7075742044617461206572726f7200000000000000000000000000000000600082015250565b6000615027601083613fd6565b915061503282614ff1565b602082019050919050565b600060208201905081810360008301526150568161501a565b9050919050565b600061506882613f3e565b915061507383613f3e565b925082820190508082111561508b5761508a614b6c565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006150ed602f83613fd6565b91506150f882615091565b604082019050919050565b6000602082019050818103600083015261511c816150e0565b9050919050565b600081905092915050565b600061513982613fcb565b6151438185615123565b9350615153818560208601613fe7565b80840191505092915050565b6000815461516c816148c4565b6151768186615123565b9450600182166000811461519157600181146151a6576151d9565b60ff19831686528115158202860193506151d9565b6151af85614c75565b60005b838110156151d1578154818901526001820191506020810190506151b2565b838801955050505b50505092915050565b60006151ee828661512e565b91506151fa828561512e565b9150615206828461515f565b9150819050949350505050565b7f7061757365640000000000000000000000000000000000000000000000000000600082015250565b6000615249600683613fd6565b915061525482615213565b602082019050919050565b600060208201905081810360008301526152788161523c565b9050919050565b7f616d6f756e742073686f756c646e2774206265207a65726f0000000000000000600082015250565b60006152b5601883613fd6565b91506152c08261527f565b602082019050919050565b600060208201905081810360008301526152e4816152a8565b9050919050565b7f43616e2774206d696e74206d6f7265207468616e206d6178204d696e74000000600082015250565b6000615321601d83613fd6565b915061532c826152eb565b602082019050919050565b6000602082019050818103600083015261535081615314565b9050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b600061538d601383613fd6565b915061539882615357565b602082019050919050565b600060208201905081810360008301526153bc81615380565b9050919050565b7f43524f204d617820537570706c79206578636565646564000000000000000000600082015250565b60006153f9601783613fd6565b9150615404826153c3565b602082019050919050565b60006020820190508181036000830152615428816153ec565b9050919050565b600061543a82613f3e565b915061544583613f3e565b925082820261545381613f3e565b9150828204841483151761546a57615469614b6c565b5b5092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006154a7601283613fd6565b91506154b282615471565b602082019050919050565b600060208201905081810360008301526154d68161549a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061551782613f3e565b915061552283613f3e565b925082615532576155316154dd565b5b828204905092915050565b600081905092915050565b50565b600061555860008361553d565b915061556382615548565b600082019050919050565b60006155798261554b565b9150819050919050565b7f43524f207472616e73666572206661696c656400000000000000000000000000600082015250565b60006155b9601383613fd6565b91506155c482615583565b602082019050919050565b600060208201905081810360008301526155e8816155ac565b9050919050565b7f496e76616c6964204d696e7420546f6b656e0000000000000000000000000000600082015250565b6000615625601283613fd6565b9150615630826155ef565b602082019050919050565b6000602082019050818103600083015261565481615618565b9050919050565b7f4d617820537570706c7920657863656564656400000000000000000000000000600082015250565b6000615691601383613fd6565b915061569c8261565b565b602082019050919050565b600060208201905081810360008301526156c081615684565b9050919050565b6000815190506156d681613f48565b92915050565b6000602082840312156156f2576156f1613e20565b5b6000615700848285016156c7565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615765602683613fd6565b915061577082615709565b604082019050919050565b6000602082019050818103600083015261579481615758565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006157d1602083613fd6565b91506157dc8261579b565b602082019050919050565b60006020820190508181036000830152615800816157c4565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000615863602583613fd6565b915061586e82615807565b604082019050919050565b6000602082019050818103600083015261589281615856565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006158f5602483613fd6565b915061590082615899565b604082019050919050565b60006020820190508181036000830152615924816158e8565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615961601983613fd6565b915061596c8261592b565b602082019050919050565b6000602082019050818103600083015261599081615954565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006159f3603283613fd6565b91506159fe82615997565b604082019050919050565b60006020820190508181036000830152615a22816159e6565b9050919050565b6000604082019050615a3e60008301856140af565b615a4b60208301846140af565b9392505050565b7f696e73756666696369656e7420616c6c6f77616e636500000000000000000000600082015250565b6000615a88601683613fd6565b9150615a9382615a52565b602082019050919050565b60006020820190508181036000830152615ab781615a7b565b9050919050565b6000615ac982613f3e565b9150615ad483613f3e565b9250828203905081811115615aec57615aeb614b6c565b5b92915050565b6000606082019050615b0760008301866140af565b615b1460208301856140af565b615b216040830184613fa1565b949350505050565b600081519050615b3881613ee5565b92915050565b600060208284031215615b5457615b53613e20565b5b6000615b6284828501615b29565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000615bc7603583613fd6565b9150615bd282615b6b565b604082019050919050565b60006020820190508181036000830152615bf681615bba565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615c2482615bfd565b615c2e8185615c08565b9350615c3e818560208601613fe7565b615c4781614011565b840191505092915050565b6000608082019050615c6760008301876140af565b615c7460208301866140af565b615c816040830185613fa1565b8181036060830152615c938184615c19565b905095945050505050565b600081519050615cad81613e56565b92915050565b600060208284031215615cc957615cc8613e20565b5b6000615cd784828501615c9e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615d45602083613fd6565b9150615d5082615d0f565b602082019050919050565b60006020820190508181036000830152615d7481615d38565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615db1601c83613fd6565b9150615dbc82615d7b565b602082019050919050565b60006020820190508181036000830152615de081615da4565b905091905056fea2646970667358221220ce70a8fd2bf39540c47531294a93b6f07256d845400a8eae34788932f1241d3564736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed ByteCode Sourcemap

65378:6978:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56669:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70808:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70014:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65649:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40731:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42243:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41761:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65771:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65614:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57309:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65732:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42943:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70893:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56977:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43349:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69064:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69928:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57499:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70563:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66129:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65824:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65952:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40441:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65983:65;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40172:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64487:103;;;;;;;;;;;;;:::i;:::-;;66204:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70441:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63839:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66055:69;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70108:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40900:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42486:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71054:666;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43605:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66364:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;66284:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65571:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69418:504;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66715:1338;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65686:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65855:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70667:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68059:999;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42712:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64745:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70254:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56669:224;56771:4;56810:35;56795:50;;;:11;:50;;;;:90;;;;56849:36;56873:11;56849:23;:36::i;:::-;56795:90;56788:97;;56669:224;;;:::o;70808:73::-;63725:13;:11;:13::i;:::-;70869:6:::1;70860;;:15;;;;;;;;;;;;;;;;;;70808:73:::0;:::o;70014:88::-;63725:13;:11;:13::i;:::-;70086:10:::1;70077:6;:19;;;;70014:88:::0;:::o;65649:32::-;;;;:::o;40731:100::-;40785:13;40818:5;40811:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40731:100;:::o;42243:171::-;42319:7;42339:23;42354:7;42339:14;:23::i;:::-;42382:15;:24;42398:7;42382:24;;;;;;;;;;;;;;;;;;;;;42375:31;;42243:171;;;:::o;41761:416::-;41842:13;41858:23;41873:7;41858:14;:23::i;:::-;41842:39;;41906:5;41900:11;;:2;:11;;;41892:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;42000:5;41984:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;42009:37;42026:5;42033:12;:10;:12::i;:::-;42009:16;:37::i;:::-;41984:62;41962:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;42148:21;42157:2;42161:7;42148:8;:21::i;:::-;41831:346;41761:416;;:::o;65771:48::-;;;;;;;;;;;;;;;;;:::o;65614:30::-;;;;:::o;57309:113::-;57370:7;57397:10;:17;;;;57390:24;;57309:113;:::o;65732:34::-;;;;:::o;42943:335::-;43138:41;43157:12;:10;:12::i;:::-;43171:7;43138:18;:41::i;:::-;43130:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;43242:28;43252:4;43258:2;43262:7;43242:9;:28::i;:::-;42943:335;;;:::o;70893:155::-;70966:7;70989:11;:20;71001:7;70989:20;;;;;;;;;;;;;;;;;;;;;;;;;70985:39;;;71018:6;;71011:13;;;;70985:39;71038:4;;71031:11;;70893:155;;;;:::o;56977:256::-;57074:7;57110:23;57127:5;57110:16;:23::i;:::-;57102:5;:31;57094:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;57199:12;:19;57212:5;57199:19;;;;;;;;;;;;;;;:26;57219:5;57199:26;;;;;;;;;;;;57192:33;;56977:256;;;;:::o;43349:185::-;43487:39;43504:4;43510:2;43514:7;43487:39;;;;;;;;;;;;:16;:39::i;:::-;43349:185;;;:::o;69064:348::-;69139:16;69167:23;69193:17;69203:6;69193:9;:17::i;:::-;69167:43;;69217:25;69259:15;69245:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69217:58;;69287:9;69282:103;69302:15;69298:1;:19;69282:103;;;69347:30;69367:6;69375:1;69347:19;:30::i;:::-;69333:8;69342:1;69333:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;69319:3;;;;;:::i;:::-;;;;69282:103;;;;69398:8;69391:15;;;;69064:348;;;:::o;69928:80::-;63725:13;:11;:13::i;:::-;69994:8:::1;69987:4;:15;;;;69928:80:::0;:::o;57499:233::-;57574:7;57610:30;:28;:30::i;:::-;57602:5;:38;57594:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;57707:10;57718:5;57707:17;;;;;;;;:::i;:::-;;;;;;;;;;57700:24;;57499:233;;;:::o;70563:98::-;63725:13;:11;:13::i;:::-;70644:11:::1;70634:7;:21;;;;;;:::i;:::-;;70563:98:::0;:::o;66129:70::-;;;;;;;;;;;;;:::o;65824:26::-;;;;;;;;;;;;;:::o;65952:24::-;;;;:::o;40441:223::-;40513:7;40533:13;40549:17;40558:7;40549:8;:17::i;:::-;40533:33;;40602:1;40585:19;;:5;:19;;;40577:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;40651:5;40644:12;;;40441:223;;;:::o;65983:65::-;;;;;;;;;;;;;:::o;40172:207::-;40244:7;40289:1;40272:19;;:5;:19;;;40264:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40355:9;:16;40365:5;40355:16;;;;;;;;;;;;;;;;40348:23;;40172:207;;;:::o;64487:103::-;63725:13;:11;:13::i;:::-;64552:30:::1;64579:1;64552:18;:30::i;:::-;64487:103::o:0;66204:75::-;;;;;;;;;;;;;:::o;70441:116::-;63725:13;:11;:13::i;:::-;70534:17:::1;70518:13;:33;;;;70441:116:::0;:::o;63839:87::-;63885:7;63912:6;;;;;;;;;;;63905:13;;63839:87;:::o;66055:69::-;;;;;;;;;;;;;:::o;70108:140::-;63725:13;:11;:13::i;:::-;70230:12:::1;70206:11;:21;70218:8;70206:21;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;70108:140:::0;;:::o;40900:104::-;40956:13;40989:7;40982:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40900:104;:::o;42486:155::-;42581:52;42600:12;:10;:12::i;:::-;42614:8;42624;42581:18;:52::i;:::-;42486:155;;:::o;71054:666::-;63725:13;:11;:13::i;:::-;71238:7:::1;;:14;;71219:8;;:15;;:33;71211:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;71284:14;71301:13;:11;:13::i;:::-;71284:30;;71325:20;71365:9:::0;71360:256:::1;71384:8;;:15;;71380:1;:19;71360:256;;;71426:9;71421:108;71445:7;;71453:1;71445:10;;;;;;;:::i;:::-;;;;;;;;71441:1;:14;71421:108;;;71481:32;71491:8;;71500:1;71491:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;71511:1;71504:6;:8;;;;:::i;:::-;71481:9;:32::i;:::-;71457:3;;;;;:::i;:::-;;;;71421:108;;;;71553:7;;71561:1;71553:10;;;;;;;:::i;:::-;;;;;;;;71543:20;;;;;:::i;:::-;;;71594:7;;71602:1;71594:10;;;;;;;:::i;:::-;;;;;;;;71578:26;;;;;:::i;:::-;;;71401:3;;;;;:::i;:::-;;;;71360:256;;;;71624:27;71654:10;:17;71665:5;71654:17;;;;;;;;;;;;;;;71624:47;;71700:12;71680:9;:16;;;:32;;;;;;;:::i;:::-;;;;;;;;71200:520;;;71054:666:::0;;;;;:::o;43605:322::-;43779:41;43798:12;:10;:12::i;:::-;43812:7;43779:18;:41::i;:::-;43771:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;43881:38;43895:4;43901:2;43905:7;43914:4;43881:13;:38::i;:::-;43605:322;;;;:::o;66364:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66284:73::-;;;;;;;;;;;;;:::o;65571:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69418:504::-;69516:13;69557:16;69565:7;69557;:16::i;:::-;69541:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;69647:28;69678:10;:8;:10::i;:::-;69647:41;;69740:1;69715:14;69709:28;:32;:207;;;;;;;;;;;;;;;;;69803:14;69832:18;:7;:16;:18::i;:::-;69865:13;69772:119;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69709:207;69695:221;;;69418:504;;;:::o;66715:1338::-;66783:6;;;;;;;;;;;66782:7;66774:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;66830:1;66821:6;:10;66813:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;66913:13;;66903:6;66875:13;:25;66889:10;66875:25;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;:51;;66867:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;66967:14;66984:13;:11;:13::i;:::-;66967:30;;65722:5;67021:6;67012;:15;;;;:::i;:::-;:28;;67004:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;67101:4;67091:6;67079:9;;:18;;;;:::i;:::-;:26;;67071:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;67140:13;67156:4;;67140:20;;67172:11;:23;67184:10;67172:23;;;;;;;;;;;;;;;;;;;;;;;;;67167:62;;;67215:6;;67207:14;;67167:62;67264:6;67256:5;:14;;;;:::i;:::-;67243:9;:27;;67235:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;67305:9;67300:85;67324:6;67320:1;:10;67300:85;;;67346:31;67356:10;67375:1;67368:6;:8;;;;:::i;:::-;67346:9;:31::i;:::-;67332:3;;;;;:::i;:::-;;;;67300:85;;;;67420:6;67391:13;:25;67405:10;67391:25;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;67446:6;67433:9;;:19;;;;;;;:::i;:::-;;;;;;;;67465:15;67483:21;67465:39;;67511:12;67542:4;67536:3;67526:7;:13;;;;:::i;:::-;:20;;;;:::i;:::-;67511:35;;67554:9;67576:13;;;;;;;;;;;67568:27;;67603:4;67568:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67553:59;;;67627:4;67619:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;67685:4;67679:3;67669:7;:13;;;;:::i;:::-;:20;;;;:::i;:::-;67662:27;;67714:15;;;;;;;;;;;67706:29;;67743:4;67706:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67696:56;;;;;67767:4;67759:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;67825:4;67819:3;67809:7;:13;;;;:::i;:::-;:20;;;;:::i;:::-;67802:27;;67854:10;;;;;;;;;;;67846:24;;67878:4;67846:41;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67836:51;;;;;67902:4;67894:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;67955:9;;;;;;;;;;;67947:23;;67978:21;67947:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67937:67;;;;;68019:4;68011:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;66767:1286;;;;;66715:1338;:::o;65686:41::-;65722:5;65686:41;:::o;65855:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;70667:135::-;63725:13;:11;:13::i;:::-;70779:17:::1;70763:13;:33;;;;;;:::i;:::-;;70667:135:::0;:::o;68059:999::-;68136:6;;;;;;;;;;;68135:7;68127:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;68183:1;68174:6;:10;68166:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;68266:13;;68256:6;68228:13;:25;68242:10;68228:25;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;:51;;68220:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;68320:14;68337:13;:11;:13::i;:::-;68320:30;;65722:5;68374:6;68365;:15;;;;:::i;:::-;:28;;68357:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;68426:27;68456:10;:17;68467:5;68456:17;;;;;;;;;;;;;;;68426:47;;68510:1;68488:9;:19;;;:23;68480:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;68584:9;:19;;;68574:6;68555:9;:16;;;:25;;;;:::i;:::-;:48;;68547:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;68714:18;68744:9;:15;;;68735:6;:24;;;;:::i;:::-;68714:45;;68813:10;68781:5;68774:23;;;68798:10;68774:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;68766:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;68853:33;68868:5;68875:10;68853:14;:33::i;:::-;68898:9;68893:85;68917:6;68913:1;:10;68893:85;;;68939:31;68949:10;68968:1;68961:6;:8;;;;:::i;:::-;68939:9;:31::i;:::-;68925:3;;;;;:::i;:::-;;;;68893:85;;;;69013:6;68984:13;:25;68998:10;68984:25;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;69046:6;69026:9;:16;;;:26;;;;;;;:::i;:::-;;;;;;;;68120:938;;;68059:999;;:::o;42712:164::-;42809:4;42833:18;:25;42852:5;42833:25;;;;;;;;;;;;;;;:35;42859:8;42833:35;;;;;;;;;;;;;;;;;;;;;;;;;42826:42;;42712:164;;;;:::o;64745:201::-;63725:13;:11;:13::i;:::-;64854:1:::1;64834:22;;:8;:22;;::::0;64826:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;64910:28;64929:8;64910:18;:28::i;:::-;64745:201:::0;:::o;70254:181::-;63725:13;:11;:13::i;:::-;70342:6:::1;70337:93;70358:9;:16;70354:1;:20;70337:93;;;70418:4;70390:11;:25;70402:9;70412:1;70402:12;;;;;;;;:::i;:::-;;;;;;;;70390:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;70376:3;;;;;:::i;:::-;;;;70337:93;;;;70254:181:::0;:::o;39803:305::-;39905:4;39957:25;39942:40;;;:11;:40;;;;:105;;;;40014:33;39999:48;;;:11;:48;;;;39942:105;:158;;;;40064:36;40088:11;40064:23;:36::i;:::-;39942:158;39922:178;;39803:305;;;:::o;64004:132::-;64079:12;:10;:12::i;:::-;64068:23;;:7;:5;:7::i;:::-;:23;;;64060:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64004:132::o;52062:135::-;52144:16;52152:7;52144;:16::i;:::-;52136:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;52062:135;:::o;38182:98::-;38235:7;38262:10;38255:17;;38182:98;:::o;51341:174::-;51443:2;51416:15;:24;51432:7;51416:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51499:7;51495:2;51461:46;;51470:23;51485:7;51470:14;:23::i;:::-;51461:46;;;;;;;;;;;;51341:174;;:::o;45960:264::-;46053:4;46070:13;46086:23;46101:7;46086:14;:23::i;:::-;46070:39;;46139:5;46128:16;;:7;:16;;;:52;;;;46148:32;46165:5;46172:7;46148:16;:32::i;:::-;46128:52;:87;;;;46208:7;46184:31;;:20;46196:7;46184:11;:20::i;:::-;:31;;;46128:87;46120:96;;;45960:264;;;;:::o;49959:1263::-;50118:4;50091:31;;:23;50106:7;50091:14;:23::i;:::-;:31;;;50083:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;50197:1;50183:16;;:2;:16;;;50175:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50253:42;50274:4;50280:2;50284:7;50293:1;50253:20;:42::i;:::-;50425:4;50398:31;;:23;50413:7;50398:14;:23::i;:::-;:31;;;50390:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;50543:15;:24;50559:7;50543:24;;;;;;;;;;;;50536:31;;;;;;;;;;;51038:1;51019:9;:15;51029:4;51019:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;51071:1;51054:9;:13;51064:2;51054:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;51113:2;51094:7;:16;51102:7;51094:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;51152:7;51148:2;51133:27;;51142:4;51133:27;;;;;;;;;;;;51173:41;51193:4;51199:2;51203:7;51212:1;51173:19;:41::i;:::-;49959:1263;;;:::o;45235:117::-;45301:7;45328;:16;45336:7;45328:16;;;;;;;;;;;;;;;;;;;;;45321:23;;45235:117;;;:::o;65106:191::-;65180:16;65199:6;;;;;;;;;;;65180:25;;65225:8;65216:6;;:17;;;;;;;;;;;;;;;;;;65280:8;65249:40;;65270:8;65249:40;;;;;;;;;;;;65169:128;65106:191;:::o;51658:315::-;51813:8;51804:17;;:5;:17;;;51796:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;51900:8;51862:18;:25;51881:5;51862:25;;;;;;;;;;;;;;;:35;51888:8;51862:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;51946:8;51924:41;;51939:5;51924:41;;;51956:8;51924:41;;;;;;:::i;:::-;;;;;;;;51658:315;;;:::o;46566:110::-;46642:26;46652:2;46656:7;46642:26;;;;;;;;;;;;:9;:26::i;:::-;46566:110;;:::o;44808:313::-;44964:28;44974:4;44980:2;44984:7;44964:9;:28::i;:::-;45011:47;45034:4;45040:2;45044:7;45053:4;45011:22;:47::i;:::-;45003:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;44808:313;;;;:::o;45665:128::-;45730:4;45783:1;45754:31;;:17;45763:7;45754:8;:17::i;:::-;:31;;;;45747:38;;45665:128;;;:::o;66594:102::-;66654:13;66683:7;66676:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66594:102;:::o;13305:716::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13687:288;13938:21;13687:288;13996:6;13989:13;;;;;13305:716;;;:::o;71726:627::-;71863:10;71816:5;71809:23;;;71833:10;71853:4;71809:50;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:64;;71801:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;71907:12;71941:4;71935:3;71922:10;:16;;;;:::i;:::-;:23;;;;:::i;:::-;71907:38;;71952:12;71986:4;71980:3;71967:10;:16;;;;:::i;:::-;:23;;;;:::i;:::-;71952:38;;71997:12;72031:4;72025:3;72012:10;:16;;;;:::i;:::-;:23;;;;:::i;:::-;71997:38;;72042:12;72084:4;72077;72070;72057:10;:17;;;;:::i;:::-;:24;;;;:::i;:::-;:31;;;;:::i;:::-;72042:46;;72102:5;72095:26;;;72122:10;72134:13;;;;;;;;;;;72149:4;72095:59;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72168:5;72161:26;;;72188:10;72200:15;;;;;;;;;;;72217:4;72161:61;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72236:5;72229:26;;;72256:10;72268;;;;;;;;;;;72280:4;72229:56;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72299:5;72292:26;;;72319:10;72331:9;;;;;;;;;;;72342:4;72292:55;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71794:559;;;;71726:627;;:::o;27463:157::-;27548:4;27587:25;27572:40;;;:11;:40;;;;27565:47;;27463:157;;;:::o;57806:915::-;57983:61;58010:4;58016:2;58020:12;58034:9;57983:26;:61::i;:::-;58073:1;58061:9;:13;58057:222;;;58204:63;;;;;;;;;;:::i;:::-;;;;;;;;58057:222;58291:15;58309:12;58291:30;;58354:1;58338:18;;:4;:18;;;58334:187;;58373:40;58405:7;58373:31;:40::i;:::-;58334:187;;;58443:2;58435:10;;:4;:10;;;58431:90;;58462:47;58495:4;58501:7;58462:32;:47::i;:::-;58431:90;58334:187;58549:1;58535:16;;:2;:16;;;58531:183;;58568:45;58605:7;58568:36;:45::i;:::-;58531:183;;;58641:4;58635:10;;:2;:10;;;58631:83;;58662:40;58690:2;58694:7;58662:27;:40::i;:::-;58631:83;58531:183;57972:749;57806:915;;;;:::o;55478:158::-;;;;;:::o;46903:319::-;47032:18;47038:2;47042:7;47032:5;:18::i;:::-;47083:53;47114:1;47118:2;47122:7;47131:4;47083:22;:53::i;:::-;47061:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;46903:319;;;:::o;52761:853::-;52915:4;52936:15;:2;:13;;;:15::i;:::-;52932:675;;;52988:2;52972:36;;;53009:12;:10;:12::i;:::-;53023:4;53029:7;53038:4;52972:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52968:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53230:1;53213:6;:13;:18;53209:328;;53256:60;;;;;;;;;;:::i;:::-;;;;;;;;53209:328;53487:6;53481:13;53472:6;53468:2;53464:15;53457:38;52968:584;53104:41;;;53094:51;;;:6;:51;;;;53087:58;;;;;52932:675;53591:4;53584:11;;52761:853;;;;;;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;54346:410::-;54536:1;54524:9;:13;54520:229;;;54574:1;54558:18;;:4;:18;;;54554:87;;54616:9;54597;:15;54607:4;54597:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;54554:87;54673:1;54659:16;;:2;:16;;;54655:83;;54713:9;54696;:13;54706:2;54696:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;54655:83;54520:229;54346:410;;;;:::o;59444:164::-;59548:10;:17;;;;59521:15;:24;59537:7;59521:24;;;;;;;;;;;:44;;;;59576:10;59592:7;59576:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59444:164;:::o;60235:988::-;60501:22;60551:1;60526:22;60543:4;60526:16;:22::i;:::-;:26;;;;:::i;:::-;60501:51;;60563:18;60584:17;:26;60602:7;60584:26;;;;;;;;;;;;60563:47;;60731:14;60717:10;:28;60713:328;;60762:19;60784:12;:18;60797:4;60784:18;;;;;;;;;;;;;;;:34;60803:14;60784:34;;;;;;;;;;;;60762:56;;60868:11;60835:12;:18;60848:4;60835:18;;;;;;;;;;;;;;;:30;60854:10;60835:30;;;;;;;;;;;:44;;;;60985:10;60952:17;:30;60970:11;60952:30;;;;;;;;;;;:43;;;;60747:294;60713:328;61137:17;:26;61155:7;61137:26;;;;;;;;;;;61130:33;;;61181:12;:18;61194:4;61181:18;;;;;;;;;;;;;;;:34;61200:14;61181:34;;;;;;;;;;;61174:41;;;60316:907;;60235:988;;:::o;61518:1079::-;61771:22;61816:1;61796:10;:17;;;;:21;;;;:::i;:::-;61771:46;;61828:18;61849:15;:24;61865:7;61849:24;;;;;;;;;;;;61828:45;;62200:19;62222:10;62233:14;62222:26;;;;;;;;:::i;:::-;;;;;;;;;;62200:48;;62286:11;62261:10;62272;62261:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;62397:10;62366:15;:28;62382:11;62366:28;;;;;;;;;;;:41;;;;62538:15;:24;62554:7;62538:24;;;;;;;;;;;62531:31;;;62573:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;61589:1008;;;61518:1079;:::o;59022:221::-;59107:14;59124:20;59141:2;59124:16;:20::i;:::-;59107:37;;59182:7;59155:12;:16;59168:2;59155:16;;;;;;;;;;;;;;;:24;59172:6;59155:24;;;;;;;;;;;:34;;;;59229:6;59200:17;:26;59218:7;59200:26;;;;;;;;;;;:35;;;;59096:147;59022:221;;:::o;47558:942::-;47652:1;47638:16;;:2;:16;;;47630:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47711:16;47719:7;47711;:16::i;:::-;47710:17;47702:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47773:48;47802:1;47806:2;47810:7;47819:1;47773:20;:48::i;:::-;47920:16;47928:7;47920;:16::i;:::-;47919:17;47911:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48335:1;48318:9;:13;48328:2;48318:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;48379:2;48360:7;:16;48368:7;48360:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;48424:7;48420:2;48399:33;;48416:1;48399:33;;;;;;;;;;;;48445:47;48473:1;48477:2;48481:7;48490:1;48445:19;:47::i;:::-;47558:942;;:::o;16432:326::-;16492:4;16749:1;16727:7;:19;;;:23;16720:30;;16432:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:77::-;2145:7;2174:5;2163:16;;2108:77;;;:::o;2191:122::-;2264:24;2282:5;2264:24;:::i;:::-;2257:5;2254:35;2244:63;;2303:1;2300;2293:12;2244:63;2191:122;:::o;2319:139::-;2365:5;2403:6;2390:20;2381:29;;2419:33;2446:5;2419:33;:::i;:::-;2319:139;;;;:::o;2464:329::-;2523:6;2572:2;2560:9;2551:7;2547:23;2543:32;2540:119;;;2578:79;;:::i;:::-;2540:119;2698:1;2723:53;2768:7;2759:6;2748:9;2744:22;2723:53;:::i;:::-;2713:63;;2669:117;2464:329;;;;:::o;2799:118::-;2886:24;2904:5;2886:24;:::i;:::-;2881:3;2874:37;2799:118;;:::o;2923:222::-;3016:4;3054:2;3043:9;3039:18;3031:26;;3067:71;3135:1;3124:9;3120:17;3111:6;3067:71;:::i;:::-;2923:222;;;;:::o;3151:99::-;3203:6;3237:5;3231:12;3221:22;;3151:99;;;:::o;3256:169::-;3340:11;3374:6;3369:3;3362:19;3414:4;3409:3;3405:14;3390:29;;3256:169;;;;:::o;3431:246::-;3512:1;3522:113;3536:6;3533:1;3530:13;3522:113;;;3621:1;3616:3;3612:11;3606:18;3602:1;3597:3;3593:11;3586:39;3558:2;3555:1;3551:10;3546:15;;3522:113;;;3669:1;3660:6;3655:3;3651:16;3644:27;3493:184;3431:246;;;:::o;3683:102::-;3724:6;3775:2;3771:7;3766:2;3759:5;3755:14;3751:28;3741:38;;3683:102;;;:::o;3791:377::-;3879:3;3907:39;3940:5;3907:39;:::i;:::-;3962:71;4026:6;4021:3;3962:71;:::i;:::-;3955:78;;4042:65;4100:6;4095:3;4088:4;4081:5;4077:16;4042:65;:::i;:::-;4132:29;4154:6;4132:29;:::i;:::-;4127:3;4123:39;4116:46;;3883:285;3791:377;;;;:::o;4174:313::-;4287:4;4325:2;4314:9;4310:18;4302:26;;4374:9;4368:4;4364:20;4360:1;4349:9;4345:17;4338:47;4402:78;4475:4;4466:6;4402:78;:::i;:::-;4394:86;;4174:313;;;;:::o;4493:126::-;4530:7;4570:42;4563:5;4559:54;4548:65;;4493:126;;;:::o;4625:96::-;4662:7;4691:24;4709:5;4691:24;:::i;:::-;4680:35;;4625:96;;;:::o;4727:118::-;4814:24;4832:5;4814:24;:::i;:::-;4809:3;4802:37;4727:118;;:::o;4851:222::-;4944:4;4982:2;4971:9;4967:18;4959:26;;4995:71;5063:1;5052:9;5048:17;5039:6;4995:71;:::i;:::-;4851:222;;;;:::o;5079:122::-;5152:24;5170:5;5152:24;:::i;:::-;5145:5;5142:35;5132:63;;5191:1;5188;5181:12;5132:63;5079:122;:::o;5207:139::-;5253:5;5291:6;5278:20;5269:29;;5307:33;5334:5;5307:33;:::i;:::-;5207:139;;;;:::o;5352:474::-;5420:6;5428;5477:2;5465:9;5456:7;5452:23;5448:32;5445:119;;;5483:79;;:::i;:::-;5445:119;5603:1;5628:53;5673:7;5664:6;5653:9;5649:22;5628:53;:::i;:::-;5618:63;;5574:117;5730:2;5756:53;5801:7;5792:6;5781:9;5777:22;5756:53;:::i;:::-;5746:63;;5701:118;5352:474;;;;;:::o;5832:329::-;5891:6;5940:2;5928:9;5919:7;5915:23;5911:32;5908:119;;;5946:79;;:::i;:::-;5908:119;6066:1;6091:53;6136:7;6127:6;6116:9;6112:22;6091:53;:::i;:::-;6081:63;;6037:117;5832:329;;;;:::o;6167:619::-;6244:6;6252;6260;6309:2;6297:9;6288:7;6284:23;6280:32;6277:119;;;6315:79;;:::i;:::-;6277:119;6435:1;6460:53;6505:7;6496:6;6485:9;6481:22;6460:53;:::i;:::-;6450:63;;6406:117;6562:2;6588:53;6633:7;6624:6;6613:9;6609:22;6588:53;:::i;:::-;6578:63;;6533:118;6690:2;6716:53;6761:7;6752:6;6741:9;6737:22;6716:53;:::i;:::-;6706:63;;6661:118;6167:619;;;;;:::o;6792:114::-;6859:6;6893:5;6887:12;6877:22;;6792:114;;;:::o;6912:184::-;7011:11;7045:6;7040:3;7033:19;7085:4;7080:3;7076:14;7061:29;;6912:184;;;;:::o;7102:132::-;7169:4;7192:3;7184:11;;7222:4;7217:3;7213:14;7205:22;;7102:132;;;:::o;7240:108::-;7317:24;7335:5;7317:24;:::i;:::-;7312:3;7305:37;7240:108;;:::o;7354:179::-;7423:10;7444:46;7486:3;7478:6;7444:46;:::i;:::-;7522:4;7517:3;7513:14;7499:28;;7354:179;;;;:::o;7539:113::-;7609:4;7641;7636:3;7632:14;7624:22;;7539:113;;;:::o;7688:732::-;7807:3;7836:54;7884:5;7836:54;:::i;:::-;7906:86;7985:6;7980:3;7906:86;:::i;:::-;7899:93;;8016:56;8066:5;8016:56;:::i;:::-;8095:7;8126:1;8111:284;8136:6;8133:1;8130:13;8111:284;;;8212:6;8206:13;8239:63;8298:3;8283:13;8239:63;:::i;:::-;8232:70;;8325:60;8378:6;8325:60;:::i;:::-;8315:70;;8171:224;8158:1;8155;8151:9;8146:14;;8111:284;;;8115:14;8411:3;8404:10;;7812:608;;;7688:732;;;;:::o;8426:373::-;8569:4;8607:2;8596:9;8592:18;8584:26;;8656:9;8650:4;8646:20;8642:1;8631:9;8627:17;8620:47;8684:108;8787:4;8778:6;8684:108;:::i;:::-;8676:116;;8426:373;;;;:::o;8805:117::-;8914:1;8911;8904:12;8928:117;9037:1;9034;9027:12;9051:180;9099:77;9096:1;9089:88;9196:4;9193:1;9186:15;9220:4;9217:1;9210:15;9237:281;9320:27;9342:4;9320:27;:::i;:::-;9312:6;9308:40;9450:6;9438:10;9435:22;9414:18;9402:10;9399:34;9396:62;9393:88;;;9461:18;;:::i;:::-;9393:88;9501:10;9497:2;9490:22;9280:238;9237:281;;:::o;9524:129::-;9558:6;9585:20;;:::i;:::-;9575:30;;9614:33;9642:4;9634:6;9614:33;:::i;:::-;9524:129;;;:::o;9659:308::-;9721:4;9811:18;9803:6;9800:30;9797:56;;;9833:18;;:::i;:::-;9797:56;9871:29;9893:6;9871:29;:::i;:::-;9863:37;;9955:4;9949;9945:15;9937:23;;9659:308;;;:::o;9973:146::-;10070:6;10065:3;10060;10047:30;10111:1;10102:6;10097:3;10093:16;10086:27;9973:146;;;:::o;10125:425::-;10203:5;10228:66;10244:49;10286:6;10244:49;:::i;:::-;10228:66;:::i;:::-;10219:75;;10317:6;10310:5;10303:21;10355:4;10348:5;10344:16;10393:3;10384:6;10379:3;10375:16;10372:25;10369:112;;;10400:79;;:::i;:::-;10369:112;10490:54;10537:6;10532:3;10527;10490:54;:::i;:::-;10209:341;10125:425;;;;;:::o;10570:340::-;10626:5;10675:3;10668:4;10660:6;10656:17;10652:27;10642:122;;10683:79;;:::i;:::-;10642:122;10800:6;10787:20;10825:79;10900:3;10892:6;10885:4;10877:6;10873:17;10825:79;:::i;:::-;10816:88;;10632:278;10570:340;;;;:::o;10916:509::-;10985:6;11034:2;11022:9;11013:7;11009:23;11005:32;11002:119;;;11040:79;;:::i;:::-;11002:119;11188:1;11177:9;11173:17;11160:31;11218:18;11210:6;11207:30;11204:117;;;11240:79;;:::i;:::-;11204:117;11345:63;11400:7;11391:6;11380:9;11376:22;11345:63;:::i;:::-;11335:73;;11131:287;10916:509;;;;:::o;11431:468::-;11496:6;11504;11553:2;11541:9;11532:7;11528:23;11524:32;11521:119;;;11559:79;;:::i;:::-;11521:119;11679:1;11704:53;11749:7;11740:6;11729:9;11725:22;11704:53;:::i;:::-;11694:63;;11650:117;11806:2;11832:50;11874:7;11865:6;11854:9;11850:22;11832:50;:::i;:::-;11822:60;;11777:115;11431:468;;;;;:::o;11905:117::-;12014:1;12011;12004:12;12028:117;12137:1;12134;12127:12;12168:568;12241:8;12251:6;12301:3;12294:4;12286:6;12282:17;12278:27;12268:122;;12309:79;;:::i;:::-;12268:122;12422:6;12409:20;12399:30;;12452:18;12444:6;12441:30;12438:117;;;12474:79;;:::i;:::-;12438:117;12588:4;12580:6;12576:17;12564:29;;12642:3;12634:4;12626:6;12622:17;12612:8;12608:32;12605:41;12602:128;;;12649:79;;:::i;:::-;12602:128;12168:568;;;;;:::o;12759:::-;12832:8;12842:6;12892:3;12885:4;12877:6;12873:17;12869:27;12859:122;;12900:79;;:::i;:::-;12859:122;13013:6;13000:20;12990:30;;13043:18;13035:6;13032:30;13029:117;;;13065:79;;:::i;:::-;13029:117;13179:4;13171:6;13167:17;13155:29;;13233:3;13225:4;13217:6;13213:17;13203:8;13199:32;13196:41;13193:128;;;13240:79;;:::i;:::-;13193:128;12759:568;;;;;:::o;13333:1079::-;13464:6;13472;13480;13488;13496;13545:2;13533:9;13524:7;13520:23;13516:32;13513:119;;;13551:79;;:::i;:::-;13513:119;13699:1;13688:9;13684:17;13671:31;13729:18;13721:6;13718:30;13715:117;;;13751:79;;:::i;:::-;13715:117;13864:80;13936:7;13927:6;13916:9;13912:22;13864:80;:::i;:::-;13846:98;;;;13642:312;14021:2;14010:9;14006:18;13993:32;14052:18;14044:6;14041:30;14038:117;;;14074:79;;:::i;:::-;14038:117;14187:80;14259:7;14250:6;14239:9;14235:22;14187:80;:::i;:::-;14169:98;;;;13964:313;14316:2;14342:53;14387:7;14378:6;14367:9;14363:22;14342:53;:::i;:::-;14332:63;;14287:118;13333:1079;;;;;;;;:::o;14418:307::-;14479:4;14569:18;14561:6;14558:30;14555:56;;;14591:18;;:::i;:::-;14555:56;14629:29;14651:6;14629:29;:::i;:::-;14621:37;;14713:4;14707;14703:15;14695:23;;14418:307;;;:::o;14731:423::-;14808:5;14833:65;14849:48;14890:6;14849:48;:::i;:::-;14833:65;:::i;:::-;14824:74;;14921:6;14914:5;14907:21;14959:4;14952:5;14948:16;14997:3;14988:6;14983:3;14979:16;14976:25;14973:112;;;15004:79;;:::i;:::-;14973:112;15094:54;15141:6;15136:3;15131;15094:54;:::i;:::-;14814:340;14731:423;;;;;:::o;15173:338::-;15228:5;15277:3;15270:4;15262:6;15258:17;15254:27;15244:122;;15285:79;;:::i;:::-;15244:122;15402:6;15389:20;15427:78;15501:3;15493:6;15486:4;15478:6;15474:17;15427:78;:::i;:::-;15418:87;;15234:277;15173:338;;;;:::o;15517:943::-;15612:6;15620;15628;15636;15685:3;15673:9;15664:7;15660:23;15656:33;15653:120;;;15692:79;;:::i;:::-;15653:120;15812:1;15837:53;15882:7;15873:6;15862:9;15858:22;15837:53;:::i;:::-;15827:63;;15783:117;15939:2;15965:53;16010:7;16001:6;15990:9;15986:22;15965:53;:::i;:::-;15955:63;;15910:118;16067:2;16093:53;16138:7;16129:6;16118:9;16114:22;16093:53;:::i;:::-;16083:63;;16038:118;16223:2;16212:9;16208:18;16195:32;16254:18;16246:6;16243:30;16240:117;;;16276:79;;:::i;:::-;16240:117;16381:62;16435:7;16426:6;16415:9;16411:22;16381:62;:::i;:::-;16371:72;;16166:287;15517:943;;;;;;;:::o;16466:442::-;16615:4;16653:2;16642:9;16638:18;16630:26;;16666:71;16734:1;16723:9;16719:17;16710:6;16666:71;:::i;:::-;16747:72;16815:2;16804:9;16800:18;16791:6;16747:72;:::i;:::-;16829;16897:2;16886:9;16882:18;16873:6;16829:72;:::i;:::-;16466:442;;;;;;:::o;16914:474::-;16982:6;16990;17039:2;17027:9;17018:7;17014:23;17010:32;17007:119;;;17045:79;;:::i;:::-;17007:119;17165:1;17190:53;17235:7;17226:6;17215:9;17211:22;17190:53;:::i;:::-;17180:63;;17136:117;17292:2;17318:53;17363:7;17354:6;17343:9;17339:22;17318:53;:::i;:::-;17308:63;;17263:118;16914:474;;;;;:::o;17394:::-;17462:6;17470;17519:2;17507:9;17498:7;17494:23;17490:32;17487:119;;;17525:79;;:::i;:::-;17487:119;17645:1;17670:53;17715:7;17706:6;17695:9;17691:22;17670:53;:::i;:::-;17660:63;;17616:117;17772:2;17798:53;17843:7;17834:6;17823:9;17819:22;17798:53;:::i;:::-;17788:63;;17743:118;17394:474;;;;;:::o;17874:311::-;17951:4;18041:18;18033:6;18030:30;18027:56;;;18063:18;;:::i;:::-;18027:56;18113:4;18105:6;18101:17;18093:25;;18173:4;18167;18163:15;18155:23;;17874:311;;;:::o;18208:710::-;18304:5;18329:81;18345:64;18402:6;18345:64;:::i;:::-;18329:81;:::i;:::-;18320:90;;18430:5;18459:6;18452:5;18445:21;18493:4;18486:5;18482:16;18475:23;;18546:4;18538:6;18534:17;18526:6;18522:30;18575:3;18567:6;18564:15;18561:122;;;18594:79;;:::i;:::-;18561:122;18709:6;18692:220;18726:6;18721:3;18718:15;18692:220;;;18801:3;18830:37;18863:3;18851:10;18830:37;:::i;:::-;18825:3;18818:50;18897:4;18892:3;18888:14;18881:21;;18768:144;18752:4;18747:3;18743:14;18736:21;;18692:220;;;18696:21;18310:608;;18208:710;;;;;:::o;18941:370::-;19012:5;19061:3;19054:4;19046:6;19042:17;19038:27;19028:122;;19069:79;;:::i;:::-;19028:122;19186:6;19173:20;19211:94;19301:3;19293:6;19286:4;19278:6;19274:17;19211:94;:::i;:::-;19202:103;;19018:293;18941:370;;;;:::o;19317:539::-;19401:6;19450:2;19438:9;19429:7;19425:23;19421:32;19418:119;;;19456:79;;:::i;:::-;19418:119;19604:1;19593:9;19589:17;19576:31;19634:18;19626:6;19623:30;19620:117;;;19656:79;;:::i;:::-;19620:117;19761:78;19831:7;19822:6;19811:9;19807:22;19761:78;:::i;:::-;19751:88;;19547:302;19317:539;;;;:::o;19862:180::-;19910:77;19907:1;19900:88;20007:4;20004:1;19997:15;20031:4;20028:1;20021:15;20048:320;20092:6;20129:1;20123:4;20119:12;20109:22;;20176:1;20170:4;20166:12;20197:18;20187:81;;20253:4;20245:6;20241:17;20231:27;;20187:81;20315:2;20307:6;20304:14;20284:18;20281:38;20278:84;;20334:18;;:::i;:::-;20278:84;20099:269;20048:320;;;:::o;20374:220::-;20514:34;20510:1;20502:6;20498:14;20491:58;20583:3;20578:2;20570:6;20566:15;20559:28;20374:220;:::o;20600:366::-;20742:3;20763:67;20827:2;20822:3;20763:67;:::i;:::-;20756:74;;20839:93;20928:3;20839:93;:::i;:::-;20957:2;20952:3;20948:12;20941:19;;20600:366;;;:::o;20972:419::-;21138:4;21176:2;21165:9;21161:18;21153:26;;21225:9;21219:4;21215:20;21211:1;21200:9;21196:17;21189:47;21253:131;21379:4;21253:131;:::i;:::-;21245:139;;20972:419;;;:::o;21397:248::-;21537:34;21533:1;21525:6;21521:14;21514:58;21606:31;21601:2;21593:6;21589:15;21582:56;21397:248;:::o;21651:366::-;21793:3;21814:67;21878:2;21873:3;21814:67;:::i;:::-;21807:74;;21890:93;21979:3;21890:93;:::i;:::-;22008:2;22003:3;21999:12;21992:19;;21651:366;;;:::o;22023:419::-;22189:4;22227:2;22216:9;22212:18;22204:26;;22276:9;22270:4;22266:20;22262:1;22251:9;22247:17;22240:47;22304:131;22430:4;22304:131;:::i;:::-;22296:139;;22023:419;;;:::o;22448:232::-;22588:34;22584:1;22576:6;22572:14;22565:58;22657:15;22652:2;22644:6;22640:15;22633:40;22448:232;:::o;22686:366::-;22828:3;22849:67;22913:2;22908:3;22849:67;:::i;:::-;22842:74;;22925:93;23014:3;22925:93;:::i;:::-;23043:2;23038:3;23034:12;23027:19;;22686:366;;;:::o;23058:419::-;23224:4;23262:2;23251:9;23247:18;23239:26;;23311:9;23305:4;23301:20;23297:1;23286:9;23282:17;23275:47;23339:131;23465:4;23339:131;:::i;:::-;23331:139;;23058:419;;;:::o;23483:230::-;23623:34;23619:1;23611:6;23607:14;23600:58;23692:13;23687:2;23679:6;23675:15;23668:38;23483:230;:::o;23719:366::-;23861:3;23882:67;23946:2;23941:3;23882:67;:::i;:::-;23875:74;;23958:93;24047:3;23958:93;:::i;:::-;24076:2;24071:3;24067:12;24060:19;;23719:366;;;:::o;24091:419::-;24257:4;24295:2;24284:9;24280:18;24272:26;;24344:9;24338:4;24334:20;24330:1;24319:9;24315:17;24308:47;24372:131;24498:4;24372:131;:::i;:::-;24364:139;;24091:419;;;:::o;24516:180::-;24564:77;24561:1;24554:88;24661:4;24658:1;24651:15;24685:4;24682:1;24675:15;24702:180;24750:77;24747:1;24740:88;24847:4;24844:1;24837:15;24871:4;24868:1;24861:15;24888:233;24927:3;24950:24;24968:5;24950:24;:::i;:::-;24941:33;;24996:66;24989:5;24986:77;24983:103;;25066:18;;:::i;:::-;24983:103;25113:1;25106:5;25102:13;25095:20;;24888:233;;;:::o;25127:231::-;25267:34;25263:1;25255:6;25251:14;25244:58;25336:14;25331:2;25323:6;25319:15;25312:39;25127:231;:::o;25364:366::-;25506:3;25527:67;25591:2;25586:3;25527:67;:::i;:::-;25520:74;;25603:93;25692:3;25603:93;:::i;:::-;25721:2;25716:3;25712:12;25705:19;;25364:366;;;:::o;25736:419::-;25902:4;25940:2;25929:9;25925:18;25917:26;;25989:9;25983:4;25979:20;25975:1;25964:9;25960:17;25953:47;26017:131;26143:4;26017:131;:::i;:::-;26009:139;;25736:419;;;:::o;26161:141::-;26210:4;26233:3;26225:11;;26256:3;26253:1;26246:14;26290:4;26287:1;26277:18;26269:26;;26161:141;;;:::o;26308:93::-;26345:6;26392:2;26387;26380:5;26376:14;26372:23;26362:33;;26308:93;;;:::o;26407:107::-;26451:8;26501:5;26495:4;26491:16;26470:37;;26407:107;;;;:::o;26520:393::-;26589:6;26639:1;26627:10;26623:18;26662:97;26692:66;26681:9;26662:97;:::i;:::-;26780:39;26810:8;26799:9;26780:39;:::i;:::-;26768:51;;26852:4;26848:9;26841:5;26837:21;26828:30;;26901:4;26891:8;26887:19;26880:5;26877:30;26867:40;;26596:317;;26520:393;;;;;:::o;26919:60::-;26947:3;26968:5;26961:12;;26919:60;;;:::o;26985:142::-;27035:9;27068:53;27086:34;27095:24;27113:5;27095:24;:::i;:::-;27086:34;:::i;:::-;27068:53;:::i;:::-;27055:66;;26985:142;;;:::o;27133:75::-;27176:3;27197:5;27190:12;;27133:75;;;:::o;27214:269::-;27324:39;27355:7;27324:39;:::i;:::-;27385:91;27434:41;27458:16;27434:41;:::i;:::-;27426:6;27419:4;27413:11;27385:91;:::i;:::-;27379:4;27372:105;27290:193;27214:269;;;:::o;27489:73::-;27534:3;27489:73;:::o;27568:189::-;27645:32;;:::i;:::-;27686:65;27744:6;27736;27730:4;27686:65;:::i;:::-;27621:136;27568:189;;:::o;27763:186::-;27823:120;27840:3;27833:5;27830:14;27823:120;;;27894:39;27931:1;27924:5;27894:39;:::i;:::-;27867:1;27860:5;27856:13;27847:22;;27823:120;;;27763:186;;:::o;27955:543::-;28056:2;28051:3;28048:11;28045:446;;;28090:38;28122:5;28090:38;:::i;:::-;28174:29;28192:10;28174:29;:::i;:::-;28164:8;28160:44;28357:2;28345:10;28342:18;28339:49;;;28378:8;28363:23;;28339:49;28401:80;28457:22;28475:3;28457:22;:::i;:::-;28447:8;28443:37;28430:11;28401:80;:::i;:::-;28060:431;;28045:446;27955:543;;;:::o;28504:117::-;28558:8;28608:5;28602:4;28598:16;28577:37;;28504:117;;;;:::o;28627:169::-;28671:6;28704:51;28752:1;28748:6;28740:5;28737:1;28733:13;28704:51;:::i;:::-;28700:56;28785:4;28779;28775:15;28765:25;;28678:118;28627:169;;;;:::o;28801:295::-;28877:4;29023:29;29048:3;29042:4;29023:29;:::i;:::-;29015:37;;29085:3;29082:1;29078:11;29072:4;29069:21;29061:29;;28801:295;;;;:::o;29101:1395::-;29218:37;29251:3;29218:37;:::i;:::-;29320:18;29312:6;29309:30;29306:56;;;29342:18;;:::i;:::-;29306:56;29386:38;29418:4;29412:11;29386:38;:::i;:::-;29471:67;29531:6;29523;29517:4;29471:67;:::i;:::-;29565:1;29589:4;29576:17;;29621:2;29613:6;29610:14;29638:1;29633:618;;;;30295:1;30312:6;30309:77;;;30361:9;30356:3;30352:19;30346:26;30337:35;;30309:77;30412:67;30472:6;30465:5;30412:67;:::i;:::-;30406:4;30399:81;30268:222;29603:887;;29633:618;29685:4;29681:9;29673:6;29669:22;29719:37;29751:4;29719:37;:::i;:::-;29778:1;29792:208;29806:7;29803:1;29800:14;29792:208;;;29885:9;29880:3;29876:19;29870:26;29862:6;29855:42;29936:1;29928:6;29924:14;29914:24;;29983:2;29972:9;29968:18;29955:31;;29829:4;29826:1;29822:12;29817:17;;29792:208;;;30028:6;30019:7;30016:19;30013:179;;;30086:9;30081:3;30077:19;30071:26;30129:48;30171:4;30163:6;30159:17;30148:9;30129:48;:::i;:::-;30121:6;30114:64;30036:156;30013:179;30238:1;30234;30226:6;30222:14;30218:22;30212:4;30205:36;29640:611;;;29603:887;;29193:1303;;;29101:1395;;:::o;30502:174::-;30642:26;30638:1;30630:6;30626:14;30619:50;30502:174;:::o;30682:366::-;30824:3;30845:67;30909:2;30904:3;30845:67;:::i;:::-;30838:74;;30921:93;31010:3;30921:93;:::i;:::-;31039:2;31034:3;31030:12;31023:19;;30682:366;;;:::o;31054:419::-;31220:4;31258:2;31247:9;31243:18;31235:26;;31307:9;31301:4;31297:20;31293:1;31282:9;31278:17;31271:47;31335:131;31461:4;31335:131;:::i;:::-;31327:139;;31054:419;;;:::o;31479:228::-;31619:34;31615:1;31607:6;31603:14;31596:58;31688:11;31683:2;31675:6;31671:15;31664:36;31479:228;:::o;31713:366::-;31855:3;31876:67;31940:2;31935:3;31876:67;:::i;:::-;31869:74;;31952:93;32041:3;31952:93;:::i;:::-;32070:2;32065:3;32061:12;32054:19;;31713:366;;;:::o;32085:419::-;32251:4;32289:2;32278:9;32274:18;32266:26;;32338:9;32332:4;32328:20;32324:1;32313:9;32309:17;32302:47;32366:131;32492:4;32366:131;:::i;:::-;32358:139;;32085:419;;;:::o;32510:166::-;32650:18;32646:1;32638:6;32634:14;32627:42;32510:166;:::o;32682:366::-;32824:3;32845:67;32909:2;32904:3;32845:67;:::i;:::-;32838:74;;32921:93;33010:3;32921:93;:::i;:::-;33039:2;33034:3;33030:12;33023:19;;32682:366;;;:::o;33054:419::-;33220:4;33258:2;33247:9;33243:18;33235:26;;33307:9;33301:4;33297:20;33293:1;33282:9;33278:17;33271:47;33335:131;33461:4;33335:131;:::i;:::-;33327:139;;33054:419;;;:::o;33479:191::-;33519:3;33538:20;33556:1;33538:20;:::i;:::-;33533:25;;33572:20;33590:1;33572:20;:::i;:::-;33567:25;;33615:1;33612;33608:9;33601:16;;33636:3;33633:1;33630:10;33627:36;;;33643:18;;:::i;:::-;33627:36;33479:191;;;;:::o;33676:234::-;33816:34;33812:1;33804:6;33800:14;33793:58;33885:17;33880:2;33872:6;33868:15;33861:42;33676:234;:::o;33916:366::-;34058:3;34079:67;34143:2;34138:3;34079:67;:::i;:::-;34072:74;;34155:93;34244:3;34155:93;:::i;:::-;34273:2;34268:3;34264:12;34257:19;;33916:366;;;:::o;34288:419::-;34454:4;34492:2;34481:9;34477:18;34469:26;;34541:9;34535:4;34531:20;34527:1;34516:9;34512:17;34505:47;34569:131;34695:4;34569:131;:::i;:::-;34561:139;;34288:419;;;:::o;34713:148::-;34815:11;34852:3;34837:18;;34713:148;;;;:::o;34867:390::-;34973:3;35001:39;35034:5;35001:39;:::i;:::-;35056:89;35138:6;35133:3;35056:89;:::i;:::-;35049:96;;35154:65;35212:6;35207:3;35200:4;35193:5;35189:16;35154:65;:::i;:::-;35244:6;35239:3;35235:16;35228:23;;34977:280;34867:390;;;;:::o;35287:874::-;35390:3;35427:5;35421:12;35456:36;35482:9;35456:36;:::i;:::-;35508:89;35590:6;35585:3;35508:89;:::i;:::-;35501:96;;35628:1;35617:9;35613:17;35644:1;35639:166;;;;35819:1;35814:341;;;;35606:549;;35639:166;35723:4;35719:9;35708;35704:25;35699:3;35692:38;35785:6;35778:14;35771:22;35763:6;35759:35;35754:3;35750:45;35743:52;;35639:166;;35814:341;35881:38;35913:5;35881:38;:::i;:::-;35941:1;35955:154;35969:6;35966:1;35963:13;35955:154;;;36043:7;36037:14;36033:1;36028:3;36024:11;36017:35;36093:1;36084:7;36080:15;36069:26;;35991:4;35988:1;35984:12;35979:17;;35955:154;;;36138:6;36133:3;36129:16;36122:23;;35821:334;;35606:549;;35394:767;;35287:874;;;;:::o;36167:589::-;36392:3;36414:95;36505:3;36496:6;36414:95;:::i;:::-;36407:102;;36526:95;36617:3;36608:6;36526:95;:::i;:::-;36519:102;;36638:92;36726:3;36717:6;36638:92;:::i;:::-;36631:99;;36747:3;36740:10;;36167:589;;;;;;:::o;36762:156::-;36902:8;36898:1;36890:6;36886:14;36879:32;36762:156;:::o;36924:365::-;37066:3;37087:66;37151:1;37146:3;37087:66;:::i;:::-;37080:73;;37162:93;37251:3;37162:93;:::i;:::-;37280:2;37275:3;37271:12;37264:19;;36924:365;;;:::o;37295:419::-;37461:4;37499:2;37488:9;37484:18;37476:26;;37548:9;37542:4;37538:20;37534:1;37523:9;37519:17;37512:47;37576:131;37702:4;37576:131;:::i;:::-;37568:139;;37295:419;;;:::o;37720:174::-;37860:26;37856:1;37848:6;37844:14;37837:50;37720:174;:::o;37900:366::-;38042:3;38063:67;38127:2;38122:3;38063:67;:::i;:::-;38056:74;;38139:93;38228:3;38139:93;:::i;:::-;38257:2;38252:3;38248:12;38241:19;;37900:366;;;:::o;38272:419::-;38438:4;38476:2;38465:9;38461:18;38453:26;;38525:9;38519:4;38515:20;38511:1;38500:9;38496:17;38489:47;38553:131;38679:4;38553:131;:::i;:::-;38545:139;;38272:419;;;:::o;38697:179::-;38837:31;38833:1;38825:6;38821:14;38814:55;38697:179;:::o;38882:366::-;39024:3;39045:67;39109:2;39104:3;39045:67;:::i;:::-;39038:74;;39121:93;39210:3;39121:93;:::i;:::-;39239:2;39234:3;39230:12;39223:19;;38882:366;;;:::o;39254:419::-;39420:4;39458:2;39447:9;39443:18;39435:26;;39507:9;39501:4;39497:20;39493:1;39482:9;39478:17;39471:47;39535:131;39661:4;39535:131;:::i;:::-;39527:139;;39254:419;;;:::o;39679:169::-;39819:21;39815:1;39807:6;39803:14;39796:45;39679:169;:::o;39854:366::-;39996:3;40017:67;40081:2;40076:3;40017:67;:::i;:::-;40010:74;;40093:93;40182:3;40093:93;:::i;:::-;40211:2;40206:3;40202:12;40195:19;;39854:366;;;:::o;40226:419::-;40392:4;40430:2;40419:9;40415:18;40407:26;;40479:9;40473:4;40469:20;40465:1;40454:9;40450:17;40443:47;40507:131;40633:4;40507:131;:::i;:::-;40499:139;;40226:419;;;:::o;40651:173::-;40791:25;40787:1;40779:6;40775:14;40768:49;40651:173;:::o;40830:366::-;40972:3;40993:67;41057:2;41052:3;40993:67;:::i;:::-;40986:74;;41069:93;41158:3;41069:93;:::i;:::-;41187:2;41182:3;41178:12;41171:19;;40830:366;;;:::o;41202:419::-;41368:4;41406:2;41395:9;41391:18;41383:26;;41455:9;41449:4;41445:20;41441:1;41430:9;41426:17;41419:47;41483:131;41609:4;41483:131;:::i;:::-;41475:139;;41202:419;;;:::o;41627:410::-;41667:7;41690:20;41708:1;41690:20;:::i;:::-;41685:25;;41724:20;41742:1;41724:20;:::i;:::-;41719:25;;41779:1;41776;41772:9;41801:30;41819:11;41801:30;:::i;:::-;41790:41;;41980:1;41971:7;41967:15;41964:1;41961:22;41941:1;41934:9;41914:83;41891:139;;42010:18;;:::i;:::-;41891:139;41675:362;41627:410;;;;:::o;42043:168::-;42183:20;42179:1;42171:6;42167:14;42160:44;42043:168;:::o;42217:366::-;42359:3;42380:67;42444:2;42439:3;42380:67;:::i;:::-;42373:74;;42456:93;42545:3;42456:93;:::i;:::-;42574:2;42569:3;42565:12;42558:19;;42217:366;;;:::o;42589:419::-;42755:4;42793:2;42782:9;42778:18;42770:26;;42842:9;42836:4;42832:20;42828:1;42817:9;42813:17;42806:47;42870:131;42996:4;42870:131;:::i;:::-;42862:139;;42589:419;;;:::o;43014:180::-;43062:77;43059:1;43052:88;43159:4;43156:1;43149:15;43183:4;43180:1;43173:15;43200:185;43240:1;43257:20;43275:1;43257:20;:::i;:::-;43252:25;;43291:20;43309:1;43291:20;:::i;:::-;43286:25;;43330:1;43320:35;;43335:18;;:::i;:::-;43320:35;43377:1;43374;43370:9;43365:14;;43200:185;;;;:::o;43391:147::-;43492:11;43529:3;43514:18;;43391:147;;;;:::o;43544:114::-;;:::o;43664:398::-;43823:3;43844:83;43925:1;43920:3;43844:83;:::i;:::-;43837:90;;43936:93;44025:3;43936:93;:::i;:::-;44054:1;44049:3;44045:11;44038:18;;43664:398;;;:::o;44068:379::-;44252:3;44274:147;44417:3;44274:147;:::i;:::-;44267:154;;44438:3;44431:10;;44068:379;;;:::o;44453:169::-;44593:21;44589:1;44581:6;44577:14;44570:45;44453:169;:::o;44628:366::-;44770:3;44791:67;44855:2;44850:3;44791:67;:::i;:::-;44784:74;;44867:93;44956:3;44867:93;:::i;:::-;44985:2;44980:3;44976:12;44969:19;;44628:366;;;:::o;45000:419::-;45166:4;45204:2;45193:9;45189:18;45181:26;;45253:9;45247:4;45243:20;45239:1;45228:9;45224:17;45217:47;45281:131;45407:4;45281:131;:::i;:::-;45273:139;;45000:419;;;:::o;45425:168::-;45565:20;45561:1;45553:6;45549:14;45542:44;45425:168;:::o;45599:366::-;45741:3;45762:67;45826:2;45821:3;45762:67;:::i;:::-;45755:74;;45838:93;45927:3;45838:93;:::i;:::-;45956:2;45951:3;45947:12;45940:19;;45599:366;;;:::o;45971:419::-;46137:4;46175:2;46164:9;46160:18;46152:26;;46224:9;46218:4;46214:20;46210:1;46199:9;46195:17;46188:47;46252:131;46378:4;46252:131;:::i;:::-;46244:139;;45971:419;;;:::o;46396:169::-;46536:21;46532:1;46524:6;46520:14;46513:45;46396:169;:::o;46571:366::-;46713:3;46734:67;46798:2;46793:3;46734:67;:::i;:::-;46727:74;;46810:93;46899:3;46810:93;:::i;:::-;46928:2;46923:3;46919:12;46912:19;;46571:366;;;:::o;46943:419::-;47109:4;47147:2;47136:9;47132:18;47124:26;;47196:9;47190:4;47186:20;47182:1;47171:9;47167:17;47160:47;47224:131;47350:4;47224:131;:::i;:::-;47216:139;;46943:419;;;:::o;47368:143::-;47425:5;47456:6;47450:13;47441:22;;47472:33;47499:5;47472:33;:::i;:::-;47368:143;;;;:::o;47517:351::-;47587:6;47636:2;47624:9;47615:7;47611:23;47607:32;47604:119;;;47642:79;;:::i;:::-;47604:119;47762:1;47787:64;47843:7;47834:6;47823:9;47819:22;47787:64;:::i;:::-;47777:74;;47733:128;47517:351;;;;:::o;47874:225::-;48014:34;48010:1;48002:6;47998:14;47991:58;48083:8;48078:2;48070:6;48066:15;48059:33;47874:225;:::o;48105:366::-;48247:3;48268:67;48332:2;48327:3;48268:67;:::i;:::-;48261:74;;48344:93;48433:3;48344:93;:::i;:::-;48462:2;48457:3;48453:12;48446:19;;48105:366;;;:::o;48477:419::-;48643:4;48681:2;48670:9;48666:18;48658:26;;48730:9;48724:4;48720:20;48716:1;48705:9;48701:17;48694:47;48758:131;48884:4;48758:131;:::i;:::-;48750:139;;48477:419;;;:::o;48902:182::-;49042:34;49038:1;49030:6;49026:14;49019:58;48902:182;:::o;49090:366::-;49232:3;49253:67;49317:2;49312:3;49253:67;:::i;:::-;49246:74;;49329:93;49418:3;49329:93;:::i;:::-;49447:2;49442:3;49438:12;49431:19;;49090:366;;;:::o;49462:419::-;49628:4;49666:2;49655:9;49651:18;49643:26;;49715:9;49709:4;49705:20;49701:1;49690:9;49686:17;49679:47;49743:131;49869:4;49743:131;:::i;:::-;49735:139;;49462:419;;;:::o;49887:224::-;50027:34;50023:1;50015:6;50011:14;50004:58;50096:7;50091:2;50083:6;50079:15;50072:32;49887:224;:::o;50117:366::-;50259:3;50280:67;50344:2;50339:3;50280:67;:::i;:::-;50273:74;;50356:93;50445:3;50356:93;:::i;:::-;50474:2;50469:3;50465:12;50458:19;;50117:366;;;:::o;50489:419::-;50655:4;50693:2;50682:9;50678:18;50670:26;;50742:9;50736:4;50732:20;50728:1;50717:9;50713:17;50706:47;50770:131;50896:4;50770:131;:::i;:::-;50762:139;;50489:419;;;:::o;50914:223::-;51054:34;51050:1;51042:6;51038:14;51031:58;51123:6;51118:2;51110:6;51106:15;51099:31;50914:223;:::o;51143:366::-;51285:3;51306:67;51370:2;51365:3;51306:67;:::i;:::-;51299:74;;51382:93;51471:3;51382:93;:::i;:::-;51500:2;51495:3;51491:12;51484:19;;51143:366;;;:::o;51515:419::-;51681:4;51719:2;51708:9;51704:18;51696:26;;51768:9;51762:4;51758:20;51754:1;51743:9;51739:17;51732:47;51796:131;51922:4;51796:131;:::i;:::-;51788:139;;51515:419;;;:::o;51940:175::-;52080:27;52076:1;52068:6;52064:14;52057:51;51940:175;:::o;52121:366::-;52263:3;52284:67;52348:2;52343:3;52284:67;:::i;:::-;52277:74;;52360:93;52449:3;52360:93;:::i;:::-;52478:2;52473:3;52469:12;52462:19;;52121:366;;;:::o;52493:419::-;52659:4;52697:2;52686:9;52682:18;52674:26;;52746:9;52740:4;52736:20;52732:1;52721:9;52717:17;52710:47;52774:131;52900:4;52774:131;:::i;:::-;52766:139;;52493:419;;;:::o;52918:237::-;53058:34;53054:1;53046:6;53042:14;53035:58;53127:20;53122:2;53114:6;53110:15;53103:45;52918:237;:::o;53161:366::-;53303:3;53324:67;53388:2;53383:3;53324:67;:::i;:::-;53317:74;;53400:93;53489:3;53400:93;:::i;:::-;53518:2;53513:3;53509:12;53502:19;;53161:366;;;:::o;53533:419::-;53699:4;53737:2;53726:9;53722:18;53714:26;;53786:9;53780:4;53776:20;53772:1;53761:9;53757:17;53750:47;53814:131;53940:4;53814:131;:::i;:::-;53806:139;;53533:419;;;:::o;53958:332::-;54079:4;54117:2;54106:9;54102:18;54094:26;;54130:71;54198:1;54187:9;54183:17;54174:6;54130:71;:::i;:::-;54211:72;54279:2;54268:9;54264:18;54255:6;54211:72;:::i;:::-;53958:332;;;;;:::o;54296:172::-;54436:24;54432:1;54424:6;54420:14;54413:48;54296:172;:::o;54474:366::-;54616:3;54637:67;54701:2;54696:3;54637:67;:::i;:::-;54630:74;;54713:93;54802:3;54713:93;:::i;:::-;54831:2;54826:3;54822:12;54815:19;;54474:366;;;:::o;54846:419::-;55012:4;55050:2;55039:9;55035:18;55027:26;;55099:9;55093:4;55089:20;55085:1;55074:9;55070:17;55063:47;55127:131;55253:4;55127:131;:::i;:::-;55119:139;;54846:419;;;:::o;55271:194::-;55311:4;55331:20;55349:1;55331:20;:::i;:::-;55326:25;;55365:20;55383:1;55365:20;:::i;:::-;55360:25;;55409:1;55406;55402:9;55394:17;;55433:1;55427:4;55424:11;55421:37;;;55438:18;;:::i;:::-;55421:37;55271:194;;;;:::o;55471:442::-;55620:4;55658:2;55647:9;55643:18;55635:26;;55671:71;55739:1;55728:9;55724:17;55715:6;55671:71;:::i;:::-;55752:72;55820:2;55809:9;55805:18;55796:6;55752:72;:::i;:::-;55834;55902:2;55891:9;55887:18;55878:6;55834:72;:::i;:::-;55471:442;;;;;;:::o;55919:137::-;55973:5;56004:6;55998:13;55989:22;;56020:30;56044:5;56020:30;:::i;:::-;55919:137;;;;:::o;56062:345::-;56129:6;56178:2;56166:9;56157:7;56153:23;56149:32;56146:119;;;56184:79;;:::i;:::-;56146:119;56304:1;56329:61;56382:7;56373:6;56362:9;56358:22;56329:61;:::i;:::-;56319:71;;56275:125;56062:345;;;;:::o;56413:240::-;56553:34;56549:1;56541:6;56537:14;56530:58;56622:23;56617:2;56609:6;56605:15;56598:48;56413:240;:::o;56659:366::-;56801:3;56822:67;56886:2;56881:3;56822:67;:::i;:::-;56815:74;;56898:93;56987:3;56898:93;:::i;:::-;57016:2;57011:3;57007:12;57000:19;;56659:366;;;:::o;57031:419::-;57197:4;57235:2;57224:9;57220:18;57212:26;;57284:9;57278:4;57274:20;57270:1;57259:9;57255:17;57248:47;57312:131;57438:4;57312:131;:::i;:::-;57304:139;;57031:419;;;:::o;57456:98::-;57507:6;57541:5;57535:12;57525:22;;57456:98;;;:::o;57560:168::-;57643:11;57677:6;57672:3;57665:19;57717:4;57712:3;57708:14;57693:29;;57560:168;;;;:::o;57734:373::-;57820:3;57848:38;57880:5;57848:38;:::i;:::-;57902:70;57965:6;57960:3;57902:70;:::i;:::-;57895:77;;57981:65;58039:6;58034:3;58027:4;58020:5;58016:16;57981:65;:::i;:::-;58071:29;58093:6;58071:29;:::i;:::-;58066:3;58062:39;58055:46;;57824:283;57734:373;;;;:::o;58113:640::-;58308:4;58346:3;58335:9;58331:19;58323:27;;58360:71;58428:1;58417:9;58413:17;58404:6;58360:71;:::i;:::-;58441:72;58509:2;58498:9;58494:18;58485:6;58441:72;:::i;:::-;58523;58591:2;58580:9;58576:18;58567:6;58523:72;:::i;:::-;58642:9;58636:4;58632:20;58627:2;58616:9;58612:18;58605:48;58670:76;58741:4;58732:6;58670:76;:::i;:::-;58662:84;;58113:640;;;;;;;:::o;58759:141::-;58815:5;58846:6;58840:13;58831:22;;58862:32;58888:5;58862:32;:::i;:::-;58759:141;;;;:::o;58906:349::-;58975:6;59024:2;59012:9;59003:7;58999:23;58995:32;58992:119;;;59030:79;;:::i;:::-;58992:119;59150:1;59175:63;59230:7;59221:6;59210:9;59206:22;59175:63;:::i;:::-;59165:73;;59121:127;58906:349;;;;:::o;59261:180::-;59309:77;59306:1;59299:88;59406:4;59403:1;59396:15;59430:4;59427:1;59420:15;59447:182;59587:34;59583:1;59575:6;59571:14;59564:58;59447:182;:::o;59635:366::-;59777:3;59798:67;59862:2;59857:3;59798:67;:::i;:::-;59791:74;;59874:93;59963:3;59874:93;:::i;:::-;59992:2;59987:3;59983:12;59976:19;;59635:366;;;:::o;60007:419::-;60173:4;60211:2;60200:9;60196:18;60188:26;;60260:9;60254:4;60250:20;60246:1;60235:9;60231:17;60224:47;60288:131;60414:4;60288:131;:::i;:::-;60280:139;;60007:419;;;:::o;60432:178::-;60572:30;60568:1;60560:6;60556:14;60549:54;60432:178;:::o;60616:366::-;60758:3;60779:67;60843:2;60838:3;60779:67;:::i;:::-;60772:74;;60855:93;60944:3;60855:93;:::i;:::-;60973:2;60968:3;60964:12;60957:19;;60616:366;;;:::o;60988:419::-;61154:4;61192:2;61181:9;61177:18;61169:26;;61241:9;61235:4;61231:20;61227:1;61216:9;61212:17;61205:47;61269:131;61395:4;61269:131;:::i;:::-;61261:139;;60988:419;;;:::o

Swarm Source

ipfs://ce70a8fd2bf39540c47531294a93b6f07256d845400a8eae34788932f1241d35
Loading