ETH Price: $2,524.81 (+0.09%)

Token

Samurai Waifus (WAI)
 

Overview

Max Total Supply

333 WAI

Holders

161

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 WAI
0xaf9b49bc0ed2b554effa1a53469d9e63fd0828b7
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SamuraiWaifus

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @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/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: contracts/2_Owner.sol


pragma solidity ^0.8.7;






contract SamuraiWaifus is ERC721, ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;

    uint256 maxSupply = 333;
    uint256 public cost = 0.007 ether;
    uint256 public maxMintAmount = 2;
    //uint256 public totalSupply;
    
    bool public publicMintOpen = true;
    
    mapping(address => uint256) private mintedPerWallet;

    Counters.Counter private _tokenIdCounter;

    constructor() ERC721("Samurai Waifus", "WAI") {}

    function _baseURI() internal pure override returns (string memory) {
        return "ipfs://QmVyuRVDdxBjToZ6X6LH7y1TEJWqengco13exVytwwJEea/";
    }

    function editMintWindows(
        bool _publicMintOpen
       
    ) external onlyOwner {
        publicMintOpen = _publicMintOpen;
        
    }

    function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(_mintAmount > 0 );
    require(_mintAmount <=2);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender == owner()) {
      require(msg.value >= cost * _mintAmount);
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

      function internalMint() internal {
        require(totalSupply() < maxSupply, "Sold Out");
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(msg.sender, tokenId);
    }

    function withdraw(address _addr) external onlyOwner{
        uint256 balance = address(this).balance;
        payable(_addr).transfer(balance);
    }

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

    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, Strings.toString(tokenId),".json")) : "";
    }


    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicMintOpen","type":"bool"}],"name":"editMintWindows","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261014d600b556618de76816d8000600c556002600d556001600e60006101000a81548160ff0219169083151502179055503480156200004257600080fd5b506040518060400160405280600e81526020017f53616d75726169205761696675730000000000000000000000000000000000008152506040518060400160405280600381526020017f57414900000000000000000000000000000000000000000000000000000000008152508160009081620000c0919062000443565b508060019081620000d2919062000443565b505050620000f5620000e9620000fb60201b60201c565b6200010360201b60201c565b6200052a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200024b57607f821691505b60208210810362000261576200026062000203565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002cb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200028c565b620002d786836200028c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003246200031e6200031884620002ef565b620002f9565b620002ef565b9050919050565b6000819050919050565b620003408362000303565b620003586200034f826200032b565b84845462000299565b825550505050565b600090565b6200036f62000360565b6200037c81848462000335565b505050565b5b81811015620003a4576200039860008262000365565b60018101905062000382565b5050565b601f821115620003f357620003bd8162000267565b620003c8846200027c565b81016020851015620003d8578190505b620003f0620003e7856200027c565b83018262000381565b50505b505050565b600082821c905092915050565b60006200041860001984600802620003f8565b1980831691505092915050565b600062000433838362000405565b9150826002028217905092915050565b6200044e82620001c9565b67ffffffffffffffff8111156200046a5762000469620001d4565b5b62000476825462000232565b62000483828285620003a8565b600060209050601f831160018114620004bb5760008415620004a6578287015190505b620004b2858262000425565b86555062000522565b601f198416620004cb8662000267565b60005b82811015620004f557848901518255600182019150602085019450602081019050620004ce565b8683101562000515578489015162000511601f89168262000405565b8355505b6001600288020188555050505b505050505050565b6137df806200053a6000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063a0712d681161008a578063bcc9ca5b11610064578063bcc9ca5b14610571578063c87b56dd1461059c578063e985e9c5146105d9578063f2fde38b1461061657610181565b8063a0712d6814610503578063a22cb4651461051f578063b88d4fde1461054857610181565b806370a0823114610407578063715018a6146104445780637f00c7a61461045b57806386600999146104845780638da5cb5b146104ad57806395d89b41146104d857610181565b8063239c70ae1161013e57806342842e0e1161011857806342842e0e1461033b5780634f6ccce71461036457806351cff8d9146103a15780636352211e146103ca57610181565b8063239c70ae146102aa57806323b872dd146102d55780632f745c59146102fe57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806313faede61461025457806318160ddd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906125ee565b61063f565b6040516101ba9190612636565b60405180910390f35b3480156101cf57600080fd5b506101d8610651565b6040516101e591906126e1565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612739565b6106e3565b60405161022291906127a7565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d91906127ee565b610729565b005b34801561026057600080fd5b50610269610840565b604051610276919061283d565b60405180910390f35b34801561028b57600080fd5b50610294610846565b6040516102a1919061283d565b60405180910390f35b3480156102b657600080fd5b506102bf610853565b6040516102cc919061283d565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190612858565b610859565b005b34801561030a57600080fd5b50610325600480360381019061032091906127ee565b6108b9565b604051610332919061283d565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190612858565b61095e565b005b34801561037057600080fd5b5061038b60048036038101906103869190612739565b61097e565b604051610398919061283d565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c391906128ab565b6109ef565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612739565b610a47565b6040516103fe91906127a7565b60405180910390f35b34801561041357600080fd5b5061042e600480360381019061042991906128ab565b610acd565b60405161043b919061283d565b60405180910390f35b34801561045057600080fd5b50610459610b84565b005b34801561046757600080fd5b50610482600480360381019061047d9190612739565b610b98565b005b34801561049057600080fd5b506104ab60048036038101906104a69190612904565b610baa565b005b3480156104b957600080fd5b506104c2610bcf565b6040516104cf91906127a7565b60405180910390f35b3480156104e457600080fd5b506104ed610bf9565b6040516104fa91906126e1565b60405180910390f35b61051d60048036038101906105189190612739565b610c8b565b005b34801561052b57600080fd5b5061054660048036038101906105419190612931565b610d6b565b005b34801561055457600080fd5b5061056f600480360381019061056a9190612aa6565b610d81565b005b34801561057d57600080fd5b50610586610de3565b6040516105939190612636565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612739565b610df6565b6040516105d091906126e1565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190612b29565b610e5e565b60405161060d9190612636565b60405180910390f35b34801561062257600080fd5b5061063d600480360381019061063891906128ab565b610ef2565b005b600061064a82610f75565b9050919050565b60606000805461066090612b98565b80601f016020809104026020016040519081016040528092919081815260200182805461068c90612b98565b80156106d95780601f106106ae576101008083540402835291602001916106d9565b820191906000526020600020905b8154815290600101906020018083116106bc57829003601f168201915b5050505050905090565b60006106ee82610fef565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061073482610a47565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079b90612c3b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107c361103a565b73ffffffffffffffffffffffffffffffffffffffff1614806107f257506107f1816107ec61103a565b610e5e565b5b610831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082890612ccd565b60405180910390fd5b61083b8383611042565b505050565b600c5481565b6000600880549050905090565b600d5481565b61086a61086461103a565b826110fb565b6108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a090612d5f565b60405180910390fd5b6108b4838383611190565b505050565b60006108c483610acd565b8210610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc90612df1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61097983838360405180602001604052806000815250610d81565b505050565b6000610988610846565b82106109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090612e83565b60405180910390fd5b600882815481106109dd576109dc612ea3565b5b90600052602060002001549050919050565b6109f7611489565b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a42573d6000803e3d6000fd5b505050565b600080610a5383611507565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90612f1e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490612fb0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b8c611489565b610b966000611544565b565b610ba0611489565b80600d8190555050565b610bb2611489565b80600e60006101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c0890612b98565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3490612b98565b8015610c815780601f10610c5657610100808354040283529160200191610c81565b820191906000526020600020905b815481529060010190602001808311610c6457829003601f168201915b5050505050905090565b6000610c95610846565b905060008211610ca457600080fd5b6002821115610cb257600080fd5b600d54821115610cc157600080fd5b600b548282610cd09190612fff565b1115610cdb57600080fd5b610ce3610bcf565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610d305781600c54610d239190613033565b341015610d2f57600080fd5b5b6000600190505b828111610d6657610d53338284610d4e9190612fff565b61160a565b8080610d5e90613075565b915050610d37565b505050565b610d7d610d7661103a565b8383611628565b5050565b610d92610d8c61103a565b836110fb565b610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890612d5f565b60405180910390fd5b610ddd84848484611794565b50505050565b600e60009054906101000a900460ff1681565b6060610e0182610fef565b6000610e0b6117f0565b90506000815111610e2b5760405180602001604052806000815250610e56565b80610e3584611810565b604051602001610e46929190613145565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610efa611489565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f60906131e6565b60405180910390fd5b610f7281611544565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610fe85750610fe7826118de565b5b9050919050565b610ff8816119c0565b611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90612f1e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166110b583610a47565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061110783610a47565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061114957506111488185610e5e565b5b8061118757508373ffffffffffffffffffffffffffffffffffffffff1661116f846106e3565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166111b082610a47565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613278565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c9061330a565b60405180910390fd5b6112828383836001611a01565b8273ffffffffffffffffffffffffffffffffffffffff166112a282610a47565b73ffffffffffffffffffffffffffffffffffffffff16146112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90613278565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114848383836001611a13565b505050565b61149161103a565b73ffffffffffffffffffffffffffffffffffffffff166114af610bcf565b73ffffffffffffffffffffffffffffffffffffffff1614611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90613376565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611624828260405180602001604052806000815250611a19565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d906133e2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117879190612636565b60405180910390a3505050565b61179f848484611190565b6117ab84848484611a74565b6117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190613474565b60405180910390fd5b50505050565b606060405180606001604052806036815260200161377460369139905090565b60606000600161181f84611bfb565b01905060008167ffffffffffffffff81111561183e5761183d61297b565b5b6040519080825280601f01601f1916602001820160405280156118705781602001600182028036833780820191505090505b509050600082602001820190505b6001156118d3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816118c7576118c6613494565b5b0494506000850361187e575b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119a957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119b957506119b882611d4e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166119e283611507565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611a0d84848484611db8565b50505050565b50505050565b611a238383611f16565b611a306000848484611a74565b611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690613474565b60405180910390fd5b505050565b6000611a958473ffffffffffffffffffffffffffffffffffffffff16612133565b15611bee578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611abe61103a565b8786866040518563ffffffff1660e01b8152600401611ae09493929190613518565b6020604051808303816000875af1925050508015611b1c57506040513d601f19601f82011682018060405250810190611b199190613579565b60015b611b9e573d8060008114611b4c576040519150601f19603f3d011682016040523d82523d6000602084013e611b51565b606091505b506000815103611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613474565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611bf3565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611c59577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611c4f57611c4e613494565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611c96576d04ee2d6d415b85acef81000000008381611c8c57611c8b613494565b5b0492506020810190505b662386f26fc100008310611cc557662386f26fc100008381611cbb57611cba613494565b5b0492506010810190505b6305f5e1008310611cee576305f5e1008381611ce457611ce3613494565b5b0492506008810190505b6127108310611d13576127108381611d0957611d08613494565b5b0492506004810190505b60648310611d365760648381611d2c57611d2b613494565b5b0492506002810190505b600a8310611d45576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611dc484848484612156565b6001811115611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90613618565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611e4f57611e4a8161227c565b611e8e565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611e8d57611e8c85826122c5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ed057611ecb81612432565b611f0f565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611f0e57611f0d8482612503565b5b5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c90613684565b60405180910390fd5b611f8e816119c0565b15611fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc5906136f0565b60405180910390fd5b611fdc600083836001611a01565b611fe5816119c0565b15612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c906136f0565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461212f600083836001611a13565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600181111561227657600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146121ea5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e29190613710565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122755780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461226d9190612fff565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016122d284610acd565b6122dc9190613710565b90506000600760008481526020019081526020016000205490508181146123c1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506124469190613710565b905060006009600084815260200190815260200160002054905060006008838154811061247657612475612ea3565b5b90600052602060002001549050806008838154811061249857612497612ea3565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806124e7576124e6613744565b5b6001900381819060005260206000200160009055905550505050565b600061250e83610acd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125cb81612596565b81146125d657600080fd5b50565b6000813590506125e8816125c2565b92915050565b6000602082840312156126045761260361258c565b5b6000612612848285016125d9565b91505092915050565b60008115159050919050565b6126308161261b565b82525050565b600060208201905061264b6000830184612627565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561268b578082015181840152602081019050612670565b60008484015250505050565b6000601f19601f8301169050919050565b60006126b382612651565b6126bd818561265c565b93506126cd81856020860161266d565b6126d681612697565b840191505092915050565b600060208201905081810360008301526126fb81846126a8565b905092915050565b6000819050919050565b61271681612703565b811461272157600080fd5b50565b6000813590506127338161270d565b92915050565b60006020828403121561274f5761274e61258c565b5b600061275d84828501612724565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061279182612766565b9050919050565b6127a181612786565b82525050565b60006020820190506127bc6000830184612798565b92915050565b6127cb81612786565b81146127d657600080fd5b50565b6000813590506127e8816127c2565b92915050565b600080604083850312156128055761280461258c565b5b6000612813858286016127d9565b925050602061282485828601612724565b9150509250929050565b61283781612703565b82525050565b6000602082019050612852600083018461282e565b92915050565b6000806000606084860312156128715761287061258c565b5b600061287f868287016127d9565b9350506020612890868287016127d9565b92505060406128a186828701612724565b9150509250925092565b6000602082840312156128c1576128c061258c565b5b60006128cf848285016127d9565b91505092915050565b6128e18161261b565b81146128ec57600080fd5b50565b6000813590506128fe816128d8565b92915050565b60006020828403121561291a5761291961258c565b5b6000612928848285016128ef565b91505092915050565b600080604083850312156129485761294761258c565b5b6000612956858286016127d9565b9250506020612967858286016128ef565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129b382612697565b810181811067ffffffffffffffff821117156129d2576129d161297b565b5b80604052505050565b60006129e5612582565b90506129f182826129aa565b919050565b600067ffffffffffffffff821115612a1157612a1061297b565b5b612a1a82612697565b9050602081019050919050565b82818337600083830152505050565b6000612a49612a44846129f6565b6129db565b905082815260208101848484011115612a6557612a64612976565b5b612a70848285612a27565b509392505050565b600082601f830112612a8d57612a8c612971565b5b8135612a9d848260208601612a36565b91505092915050565b60008060008060808587031215612ac057612abf61258c565b5b6000612ace878288016127d9565b9450506020612adf878288016127d9565b9350506040612af087828801612724565b925050606085013567ffffffffffffffff811115612b1157612b10612591565b5b612b1d87828801612a78565b91505092959194509250565b60008060408385031215612b4057612b3f61258c565b5b6000612b4e858286016127d9565b9250506020612b5f858286016127d9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bb057607f821691505b602082108103612bc357612bc2612b69565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c2560218361265c565b9150612c3082612bc9565b604082019050919050565b60006020820190508181036000830152612c5481612c18565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612cb7603d8361265c565b9150612cc282612c5b565b604082019050919050565b60006020820190508181036000830152612ce681612caa565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612d49602d8361265c565b9150612d5482612ced565b604082019050919050565b60006020820190508181036000830152612d7881612d3c565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612ddb602b8361265c565b9150612de682612d7f565b604082019050919050565b60006020820190508181036000830152612e0a81612dce565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612e6d602c8361265c565b9150612e7882612e11565b604082019050919050565b60006020820190508181036000830152612e9c81612e60565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612f0860188361265c565b9150612f1382612ed2565b602082019050919050565b60006020820190508181036000830152612f3781612efb565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612f9a60298361265c565b9150612fa582612f3e565b604082019050919050565b60006020820190508181036000830152612fc981612f8d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061300a82612703565b915061301583612703565b925082820190508082111561302d5761302c612fd0565b5b92915050565b600061303e82612703565b915061304983612703565b925082820261305781612703565b9150828204841483151761306e5761306d612fd0565b5b5092915050565b600061308082612703565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130b2576130b1612fd0565b5b600182019050919050565b600081905092915050565b60006130d382612651565b6130dd81856130bd565b93506130ed81856020860161266d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061312f6005836130bd565b915061313a826130f9565b600582019050919050565b600061315182856130c8565b915061315d82846130c8565b915061316882613122565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131d060268361265c565b91506131db82613174565b604082019050919050565b600060208201905081810360008301526131ff816131c3565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061326260258361265c565b915061326d82613206565b604082019050919050565b6000602082019050818103600083015261329181613255565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006132f460248361265c565b91506132ff82613298565b604082019050919050565b60006020820190508181036000830152613323816132e7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061336060208361265c565b915061336b8261332a565b602082019050919050565b6000602082019050818103600083015261338f81613353565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006133cc60198361265c565b91506133d782613396565b602082019050919050565b600060208201905081810360008301526133fb816133bf565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061345e60328361265c565b915061346982613402565b604082019050919050565b6000602082019050818103600083015261348d81613451565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006134ea826134c3565b6134f481856134ce565b935061350481856020860161266d565b61350d81612697565b840191505092915050565b600060808201905061352d6000830187612798565b61353a6020830186612798565b613547604083018561282e565b818103606083015261355981846134df565b905095945050505050565b600081519050613573816125c2565b92915050565b60006020828403121561358f5761358e61258c565b5b600061359d84828501613564565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b600061360260358361265c565b915061360d826135a6565b604082019050919050565b60006020820190508181036000830152613631816135f5565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061366e60208361265c565b915061367982613638565b602082019050919050565b6000602082019050818103600083015261369d81613661565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006136da601c8361265c565b91506136e5826136a4565b602082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b600061371b82612703565b915061372683612703565b925082820390508181111561373e5761373d612fd0565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe697066733a2f2f516d5679755256446478426a546f5a3658364c4837793154454a5771656e67636f3133657856797477774a4565612fa26469706673582212205237d0084d0e8c8813dbc8d4229899af25a6ec94e7ddb85b0f215d2357c776a464736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063a0712d681161008a578063bcc9ca5b11610064578063bcc9ca5b14610571578063c87b56dd1461059c578063e985e9c5146105d9578063f2fde38b1461061657610181565b8063a0712d6814610503578063a22cb4651461051f578063b88d4fde1461054857610181565b806370a0823114610407578063715018a6146104445780637f00c7a61461045b57806386600999146104845780638da5cb5b146104ad57806395d89b41146104d857610181565b8063239c70ae1161013e57806342842e0e1161011857806342842e0e1461033b5780634f6ccce71461036457806351cff8d9146103a15780636352211e146103ca57610181565b8063239c70ae146102aa57806323b872dd146102d55780632f745c59146102fe57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806313faede61461025457806318160ddd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906125ee565b61063f565b6040516101ba9190612636565b60405180910390f35b3480156101cf57600080fd5b506101d8610651565b6040516101e591906126e1565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612739565b6106e3565b60405161022291906127a7565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d91906127ee565b610729565b005b34801561026057600080fd5b50610269610840565b604051610276919061283d565b60405180910390f35b34801561028b57600080fd5b50610294610846565b6040516102a1919061283d565b60405180910390f35b3480156102b657600080fd5b506102bf610853565b6040516102cc919061283d565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190612858565b610859565b005b34801561030a57600080fd5b50610325600480360381019061032091906127ee565b6108b9565b604051610332919061283d565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190612858565b61095e565b005b34801561037057600080fd5b5061038b60048036038101906103869190612739565b61097e565b604051610398919061283d565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c391906128ab565b6109ef565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612739565b610a47565b6040516103fe91906127a7565b60405180910390f35b34801561041357600080fd5b5061042e600480360381019061042991906128ab565b610acd565b60405161043b919061283d565b60405180910390f35b34801561045057600080fd5b50610459610b84565b005b34801561046757600080fd5b50610482600480360381019061047d9190612739565b610b98565b005b34801561049057600080fd5b506104ab60048036038101906104a69190612904565b610baa565b005b3480156104b957600080fd5b506104c2610bcf565b6040516104cf91906127a7565b60405180910390f35b3480156104e457600080fd5b506104ed610bf9565b6040516104fa91906126e1565b60405180910390f35b61051d60048036038101906105189190612739565b610c8b565b005b34801561052b57600080fd5b5061054660048036038101906105419190612931565b610d6b565b005b34801561055457600080fd5b5061056f600480360381019061056a9190612aa6565b610d81565b005b34801561057d57600080fd5b50610586610de3565b6040516105939190612636565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612739565b610df6565b6040516105d091906126e1565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190612b29565b610e5e565b60405161060d9190612636565b60405180910390f35b34801561062257600080fd5b5061063d600480360381019061063891906128ab565b610ef2565b005b600061064a82610f75565b9050919050565b60606000805461066090612b98565b80601f016020809104026020016040519081016040528092919081815260200182805461068c90612b98565b80156106d95780601f106106ae576101008083540402835291602001916106d9565b820191906000526020600020905b8154815290600101906020018083116106bc57829003601f168201915b5050505050905090565b60006106ee82610fef565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061073482610a47565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079b90612c3b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107c361103a565b73ffffffffffffffffffffffffffffffffffffffff1614806107f257506107f1816107ec61103a565b610e5e565b5b610831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082890612ccd565b60405180910390fd5b61083b8383611042565b505050565b600c5481565b6000600880549050905090565b600d5481565b61086a61086461103a565b826110fb565b6108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a090612d5f565b60405180910390fd5b6108b4838383611190565b505050565b60006108c483610acd565b8210610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc90612df1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61097983838360405180602001604052806000815250610d81565b505050565b6000610988610846565b82106109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090612e83565b60405180910390fd5b600882815481106109dd576109dc612ea3565b5b90600052602060002001549050919050565b6109f7611489565b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a42573d6000803e3d6000fd5b505050565b600080610a5383611507565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90612f1e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490612fb0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b8c611489565b610b966000611544565b565b610ba0611489565b80600d8190555050565b610bb2611489565b80600e60006101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c0890612b98565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3490612b98565b8015610c815780601f10610c5657610100808354040283529160200191610c81565b820191906000526020600020905b815481529060010190602001808311610c6457829003601f168201915b5050505050905090565b6000610c95610846565b905060008211610ca457600080fd5b6002821115610cb257600080fd5b600d54821115610cc157600080fd5b600b548282610cd09190612fff565b1115610cdb57600080fd5b610ce3610bcf565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610d305781600c54610d239190613033565b341015610d2f57600080fd5b5b6000600190505b828111610d6657610d53338284610d4e9190612fff565b61160a565b8080610d5e90613075565b915050610d37565b505050565b610d7d610d7661103a565b8383611628565b5050565b610d92610d8c61103a565b836110fb565b610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890612d5f565b60405180910390fd5b610ddd84848484611794565b50505050565b600e60009054906101000a900460ff1681565b6060610e0182610fef565b6000610e0b6117f0565b90506000815111610e2b5760405180602001604052806000815250610e56565b80610e3584611810565b604051602001610e46929190613145565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610efa611489565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f60906131e6565b60405180910390fd5b610f7281611544565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610fe85750610fe7826118de565b5b9050919050565b610ff8816119c0565b611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90612f1e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166110b583610a47565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061110783610a47565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061114957506111488185610e5e565b5b8061118757508373ffffffffffffffffffffffffffffffffffffffff1661116f846106e3565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166111b082610a47565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613278565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c9061330a565b60405180910390fd5b6112828383836001611a01565b8273ffffffffffffffffffffffffffffffffffffffff166112a282610a47565b73ffffffffffffffffffffffffffffffffffffffff16146112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90613278565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114848383836001611a13565b505050565b61149161103a565b73ffffffffffffffffffffffffffffffffffffffff166114af610bcf565b73ffffffffffffffffffffffffffffffffffffffff1614611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90613376565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611624828260405180602001604052806000815250611a19565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d906133e2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117879190612636565b60405180910390a3505050565b61179f848484611190565b6117ab84848484611a74565b6117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190613474565b60405180910390fd5b50505050565b606060405180606001604052806036815260200161377460369139905090565b60606000600161181f84611bfb565b01905060008167ffffffffffffffff81111561183e5761183d61297b565b5b6040519080825280601f01601f1916602001820160405280156118705781602001600182028036833780820191505090505b509050600082602001820190505b6001156118d3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816118c7576118c6613494565b5b0494506000850361187e575b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119a957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119b957506119b882611d4e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166119e283611507565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611a0d84848484611db8565b50505050565b50505050565b611a238383611f16565b611a306000848484611a74565b611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690613474565b60405180910390fd5b505050565b6000611a958473ffffffffffffffffffffffffffffffffffffffff16612133565b15611bee578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611abe61103a565b8786866040518563ffffffff1660e01b8152600401611ae09493929190613518565b6020604051808303816000875af1925050508015611b1c57506040513d601f19601f82011682018060405250810190611b199190613579565b60015b611b9e573d8060008114611b4c576040519150601f19603f3d011682016040523d82523d6000602084013e611b51565b606091505b506000815103611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613474565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611bf3565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611c59577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611c4f57611c4e613494565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611c96576d04ee2d6d415b85acef81000000008381611c8c57611c8b613494565b5b0492506020810190505b662386f26fc100008310611cc557662386f26fc100008381611cbb57611cba613494565b5b0492506010810190505b6305f5e1008310611cee576305f5e1008381611ce457611ce3613494565b5b0492506008810190505b6127108310611d13576127108381611d0957611d08613494565b5b0492506004810190505b60648310611d365760648381611d2c57611d2b613494565b5b0492506002810190505b600a8310611d45576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611dc484848484612156565b6001811115611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90613618565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611e4f57611e4a8161227c565b611e8e565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611e8d57611e8c85826122c5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ed057611ecb81612432565b611f0f565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611f0e57611f0d8482612503565b5b5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c90613684565b60405180910390fd5b611f8e816119c0565b15611fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc5906136f0565b60405180910390fd5b611fdc600083836001611a01565b611fe5816119c0565b15612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c906136f0565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461212f600083836001611a13565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600181111561227657600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146121ea5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e29190613710565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122755780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461226d9190612fff565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016122d284610acd565b6122dc9190613710565b90506000600760008481526020019081526020016000205490508181146123c1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506124469190613710565b905060006009600084815260200190815260200160002054905060006008838154811061247657612475612ea3565b5b90600052602060002001549050806008838154811061249857612497612ea3565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806124e7576124e6613744565b5b6001900381819060005260206000200160009055905550505050565b600061250e83610acd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125cb81612596565b81146125d657600080fd5b50565b6000813590506125e8816125c2565b92915050565b6000602082840312156126045761260361258c565b5b6000612612848285016125d9565b91505092915050565b60008115159050919050565b6126308161261b565b82525050565b600060208201905061264b6000830184612627565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561268b578082015181840152602081019050612670565b60008484015250505050565b6000601f19601f8301169050919050565b60006126b382612651565b6126bd818561265c565b93506126cd81856020860161266d565b6126d681612697565b840191505092915050565b600060208201905081810360008301526126fb81846126a8565b905092915050565b6000819050919050565b61271681612703565b811461272157600080fd5b50565b6000813590506127338161270d565b92915050565b60006020828403121561274f5761274e61258c565b5b600061275d84828501612724565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061279182612766565b9050919050565b6127a181612786565b82525050565b60006020820190506127bc6000830184612798565b92915050565b6127cb81612786565b81146127d657600080fd5b50565b6000813590506127e8816127c2565b92915050565b600080604083850312156128055761280461258c565b5b6000612813858286016127d9565b925050602061282485828601612724565b9150509250929050565b61283781612703565b82525050565b6000602082019050612852600083018461282e565b92915050565b6000806000606084860312156128715761287061258c565b5b600061287f868287016127d9565b9350506020612890868287016127d9565b92505060406128a186828701612724565b9150509250925092565b6000602082840312156128c1576128c061258c565b5b60006128cf848285016127d9565b91505092915050565b6128e18161261b565b81146128ec57600080fd5b50565b6000813590506128fe816128d8565b92915050565b60006020828403121561291a5761291961258c565b5b6000612928848285016128ef565b91505092915050565b600080604083850312156129485761294761258c565b5b6000612956858286016127d9565b9250506020612967858286016128ef565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129b382612697565b810181811067ffffffffffffffff821117156129d2576129d161297b565b5b80604052505050565b60006129e5612582565b90506129f182826129aa565b919050565b600067ffffffffffffffff821115612a1157612a1061297b565b5b612a1a82612697565b9050602081019050919050565b82818337600083830152505050565b6000612a49612a44846129f6565b6129db565b905082815260208101848484011115612a6557612a64612976565b5b612a70848285612a27565b509392505050565b600082601f830112612a8d57612a8c612971565b5b8135612a9d848260208601612a36565b91505092915050565b60008060008060808587031215612ac057612abf61258c565b5b6000612ace878288016127d9565b9450506020612adf878288016127d9565b9350506040612af087828801612724565b925050606085013567ffffffffffffffff811115612b1157612b10612591565b5b612b1d87828801612a78565b91505092959194509250565b60008060408385031215612b4057612b3f61258c565b5b6000612b4e858286016127d9565b9250506020612b5f858286016127d9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bb057607f821691505b602082108103612bc357612bc2612b69565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c2560218361265c565b9150612c3082612bc9565b604082019050919050565b60006020820190508181036000830152612c5481612c18565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612cb7603d8361265c565b9150612cc282612c5b565b604082019050919050565b60006020820190508181036000830152612ce681612caa565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612d49602d8361265c565b9150612d5482612ced565b604082019050919050565b60006020820190508181036000830152612d7881612d3c565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612ddb602b8361265c565b9150612de682612d7f565b604082019050919050565b60006020820190508181036000830152612e0a81612dce565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612e6d602c8361265c565b9150612e7882612e11565b604082019050919050565b60006020820190508181036000830152612e9c81612e60565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612f0860188361265c565b9150612f1382612ed2565b602082019050919050565b60006020820190508181036000830152612f3781612efb565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612f9a60298361265c565b9150612fa582612f3e565b604082019050919050565b60006020820190508181036000830152612fc981612f8d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061300a82612703565b915061301583612703565b925082820190508082111561302d5761302c612fd0565b5b92915050565b600061303e82612703565b915061304983612703565b925082820261305781612703565b9150828204841483151761306e5761306d612fd0565b5b5092915050565b600061308082612703565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130b2576130b1612fd0565b5b600182019050919050565b600081905092915050565b60006130d382612651565b6130dd81856130bd565b93506130ed81856020860161266d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061312f6005836130bd565b915061313a826130f9565b600582019050919050565b600061315182856130c8565b915061315d82846130c8565b915061316882613122565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131d060268361265c565b91506131db82613174565b604082019050919050565b600060208201905081810360008301526131ff816131c3565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061326260258361265c565b915061326d82613206565b604082019050919050565b6000602082019050818103600083015261329181613255565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006132f460248361265c565b91506132ff82613298565b604082019050919050565b60006020820190508181036000830152613323816132e7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061336060208361265c565b915061336b8261332a565b602082019050919050565b6000602082019050818103600083015261338f81613353565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006133cc60198361265c565b91506133d782613396565b602082019050919050565b600060208201905081810360008301526133fb816133bf565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061345e60328361265c565b915061346982613402565b604082019050919050565b6000602082019050818103600083015261348d81613451565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006134ea826134c3565b6134f481856134ce565b935061350481856020860161266d565b61350d81612697565b840191505092915050565b600060808201905061352d6000830187612798565b61353a6020830186612798565b613547604083018561282e565b818103606083015261355981846134df565b905095945050505050565b600081519050613573816125c2565b92915050565b60006020828403121561358f5761358e61258c565b5b600061359d84828501613564565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b600061360260358361265c565b915061360d826135a6565b604082019050919050565b60006020820190508181036000830152613631816135f5565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061366e60208361265c565b915061367982613638565b602082019050919050565b6000602082019050818103600083015261369d81613661565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006136da601c8361265c565b91506136e5826136a4565b602082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b600061371b82612703565b915061372683612703565b925082820390508181111561373e5761373d612fd0565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe697066733a2f2f516d5679755256446478426a546f5a3658364c4837793154454a5771656e67636f3133657856797477774a4565612fa26469706673582212205237d0084d0e8c8813dbc8d4229899af25a6ec94e7ddb85b0f215d2357c776a464736f6c63430008110033

Deployed Bytecode Sourcemap

63963:2621:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66361:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42017:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43529:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43047:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64104:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58595:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64144:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44229:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58263:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44635:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58785:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65443:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41727:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41458:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19440:103;;;;;;;;;;;;;:::i;:::-;;65605:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64592:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18792:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42186:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64752:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43772:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44891:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64224:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65743:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43998:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19698:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66361:212;66500:4;66529:36;66553:11;66529:23;:36::i;:::-;66522:43;;66361:212;;;:::o;42017:100::-;42071:13;42104:5;42097:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42017:100;:::o;43529:171::-;43605:7;43625:23;43640:7;43625:14;:23::i;:::-;43668:15;:24;43684:7;43668:24;;;;;;;;;;;;;;;;;;;;;43661:31;;43529:171;;;:::o;43047:416::-;43128:13;43144:23;43159:7;43144:14;:23::i;:::-;43128:39;;43192:5;43186:11;;:2;:11;;;43178:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;43286:5;43270:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;43295:37;43312:5;43319:12;:10;:12::i;:::-;43295:16;:37::i;:::-;43270:62;43248:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;43434:21;43443:2;43447:7;43434:8;:21::i;:::-;43117:346;43047:416;;:::o;64104:33::-;;;;:::o;58595:113::-;58656:7;58683:10;:17;;;;58676:24;;58595:113;:::o;64144:32::-;;;;:::o;44229:335::-;44424:41;44443:12;:10;:12::i;:::-;44457:7;44424:18;:41::i;:::-;44416:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;44528:28;44538:4;44544:2;44548:7;44528:9;:28::i;:::-;44229:335;;;:::o;58263:256::-;58360:7;58396:23;58413:5;58396:16;:23::i;:::-;58388:5;:31;58380:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;58485:12;:19;58498:5;58485:19;;;;;;;;;;;;;;;:26;58505:5;58485:26;;;;;;;;;;;;58478:33;;58263:256;;;;:::o;44635:185::-;44773:39;44790:4;44796:2;44800:7;44773:39;;;;;;;;;;;;:16;:39::i;:::-;44635:185;;;:::o;58785:233::-;58860:7;58896:30;:28;:30::i;:::-;58888:5;:38;58880:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;58993:10;59004:5;58993:17;;;;;;;;:::i;:::-;;;;;;;;;;58986:24;;58785:233;;;:::o;65443:152::-;18678:13;:11;:13::i;:::-;65505:15:::1;65523:21;65505:39;;65563:5;65555:23;;:32;65579:7;65555:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65494:101;65443:152:::0;:::o;41727:223::-;41799:7;41819:13;41835:17;41844:7;41835:8;:17::i;:::-;41819:33;;41888:1;41871:19;;:5;:19;;;41863:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;41937:5;41930:12;;;41727:223;;;:::o;41458:207::-;41530:7;41575:1;41558:19;;:5;:19;;;41550:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41641:9;:16;41651:5;41641:16;;;;;;;;;;;;;;;;41634:23;;41458:207;;;:::o;19440:103::-;18678:13;:11;:13::i;:::-;19505:30:::1;19532:1;19505:18;:30::i;:::-;19440:103::o:0;65605:130::-;18678:13;:11;:13::i;:::-;65706:17:::1;65690:13;:33;;;;65605:130:::0;:::o;64592:152::-;18678:13;:11;:13::i;:::-;64711:15:::1;64694:14;;:32;;;;;;;;;;;;;;;;;;64592:152:::0;:::o;18792:87::-;18838:7;18865:6;;;;;;;;;;;18858:13;;18792:87;:::o;42186:104::-;42242:13;42275:7;42268:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42186:104;:::o;64752:442::-;64809:14;64826:13;:11;:13::i;:::-;64809:30;;64868:1;64854:11;:15;64846:25;;;;;;64900:1;64886:11;:15;;64878:24;;;;;;64932:13;;64917:11;:28;;64909:37;;;;;;64985:9;;64970:11;64961:6;:20;;;;:::i;:::-;:33;;64953:42;;;;;;65022:7;:5;:7::i;:::-;65008:21;;:10;:21;;;65004:84;;65068:11;65061:4;;:18;;;;:::i;:::-;65048:9;:31;;65040:40;;;;;;65004:84;65101:9;65113:1;65101:13;;65096:93;65121:11;65116:1;:16;65096:93;;65148:33;65158:10;65179:1;65170:6;:10;;;;:::i;:::-;65148:9;:33::i;:::-;65134:3;;;;;:::i;:::-;;;;65096:93;;;;64802:392;64752:442;:::o;43772:155::-;43867:52;43886:12;:10;:12::i;:::-;43900:8;43910;43867:18;:52::i;:::-;43772:155;;:::o;44891:322::-;45065:41;45084:12;:10;:12::i;:::-;45098:7;45065:18;:41::i;:::-;45057:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;45167:38;45181:4;45187:2;45191:7;45200:4;45167:13;:38::i;:::-;44891:322;;;;:::o;64224:33::-;;;;;;;;;;;;;:::o;65743:296::-;65816:13;65842:23;65857:7;65842:14;:23::i;:::-;65878:21;65902:10;:8;:10::i;:::-;65878:34;;65954:1;65936:7;65930:21;:25;:101;;;;;;;;;;;;;;;;;65982:7;65991:25;66008:7;65991:16;:25::i;:::-;65965:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65930:101;65923:108;;;65743:296;;;:::o;43998:164::-;44095:4;44119:18;:25;44138:5;44119:25;;;;;;;;;;;;;;;:35;44145:8;44119:35;;;;;;;;;;;;;;;;;;;;;;;;;44112:42;;43998:164;;;;:::o;19698:201::-;18678:13;:11;:13::i;:::-;19807:1:::1;19787:22;;:8;:22;;::::0;19779:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19863:28;19882:8;19863:18;:28::i;:::-;19698:201:::0;:::o;57955:224::-;58057:4;58096:35;58081:50;;;:11;:50;;;;:90;;;;58135:36;58159:11;58135:23;:36::i;:::-;58081:90;58074:97;;57955:224;;;:::o;53348:135::-;53430:16;53438:7;53430;:16::i;:::-;53422:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;53348:135;:::o;17343:98::-;17396:7;17423:10;17416:17;;17343:98;:::o;52627:174::-;52729:2;52702:15;:24;52718:7;52702:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52785:7;52781:2;52747:46;;52756:23;52771:7;52756:14;:23::i;:::-;52747:46;;;;;;;;;;;;52627:174;;:::o;47246:264::-;47339:4;47356:13;47372:23;47387:7;47372:14;:23::i;:::-;47356:39;;47425:5;47414:16;;:7;:16;;;:52;;;;47434:32;47451:5;47458:7;47434:16;:32::i;:::-;47414:52;:87;;;;47494:7;47470:31;;:20;47482:7;47470:11;:20::i;:::-;:31;;;47414:87;47406:96;;;47246:264;;;;:::o;51245:1263::-;51404:4;51377:31;;:23;51392:7;51377:14;:23::i;:::-;:31;;;51369:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51483:1;51469:16;;:2;:16;;;51461:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51539:42;51560:4;51566:2;51570:7;51579:1;51539:20;:42::i;:::-;51711:4;51684:31;;:23;51699:7;51684:14;:23::i;:::-;:31;;;51676:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51829:15;:24;51845:7;51829:24;;;;;;;;;;;;51822:31;;;;;;;;;;;52324:1;52305:9;:15;52315:4;52305:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;52357:1;52340:9;:13;52350:2;52340:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;52399:2;52380:7;:16;52388:7;52380:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;52438:7;52434:2;52419:27;;52428:4;52419:27;;;;;;;;;;;;52459:41;52479:4;52485:2;52489:7;52498:1;52459:19;:41::i;:::-;51245:1263;;;:::o;18957:132::-;19032:12;:10;:12::i;:::-;19021:23;;:7;:5;:7::i;:::-;:23;;;19013:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18957:132::o;46521:117::-;46587:7;46614;:16;46622:7;46614:16;;;;;;;;;;;;;;;;;;;;;46607:23;;46521:117;;;:::o;20059:191::-;20133:16;20152:6;;;;;;;;;;;20133:25;;20178:8;20169:6;;:17;;;;;;;;;;;;;;;;;;20233:8;20202:40;;20223:8;20202:40;;;;;;;;;;;;20122:128;20059:191;:::o;47852:110::-;47928:26;47938:2;47942:7;47928:26;;;;;;;;;;;;:9;:26::i;:::-;47852:110;;:::o;52944:315::-;53099:8;53090:17;;:5;:17;;;53082:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;53186:8;53148:18;:25;53167:5;53148:25;;;;;;;;;;;;;;;:35;53174:8;53148:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;53232:8;53210:41;;53225:5;53210:41;;;53242:8;53210:41;;;;;;:::i;:::-;;;;;;;;52944:315;;;:::o;46094:313::-;46250:28;46260:4;46266:2;46270:7;46250:9;:28::i;:::-;46297:47;46320:4;46326:2;46330:7;46339:4;46297:22;:47::i;:::-;46289:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;46094:313;;;;:::o;64435:149::-;64487:13;64513:63;;;;;;;;;;;;;;;;;;;64435:149;:::o;14770:716::-;14826:13;14877:14;14914:1;14894:17;14905:5;14894:10;:17::i;:::-;:21;14877:38;;14930:20;14964:6;14953:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14930:41;;14986:11;15115:6;15111:2;15107:15;15099:6;15095:28;15088:35;;15152:288;15159:4;15152:288;;;15184:5;;;;;;;;15326:8;15321:2;15314:5;15310:14;15305:30;15300:3;15292:44;15382:2;15373:11;;;;;;:::i;:::-;;;;;15416:1;15407:5;:10;15152:288;15403:21;15152:288;15461:6;15454:13;;;;;14770:716;;;:::o;41089:305::-;41191:4;41243:25;41228:40;;;:11;:40;;;;:105;;;;41300:33;41285:48;;;:11;:48;;;;41228:105;:158;;;;41350:36;41374:11;41350:23;:36::i;:::-;41228:158;41208:178;;41089:305;;;:::o;46951:128::-;47016:4;47069:1;47040:31;;:17;47049:7;47040:8;:17::i;:::-;:31;;;;47033:38;;46951:128;;;:::o;66119:234::-;66289:56;66316:4;66322:2;66326:7;66335:9;66289:26;:56::i;:::-;66119:234;;;;:::o;56764:158::-;;;;;:::o;48189:319::-;48318:18;48324:2;48328:7;48318:5;:18::i;:::-;48369:53;48400:1;48404:2;48408:7;48417:4;48369:22;:53::i;:::-;48347:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;48189:319;;;:::o;54047:853::-;54201:4;54222:15;:2;:13;;;:15::i;:::-;54218:675;;;54274:2;54258:36;;;54295:12;:10;:12::i;:::-;54309:4;54315:7;54324:4;54258:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54254:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54516:1;54499:6;:13;:18;54495:328;;54542:60;;;;;;;;;;:::i;:::-;;;;;;;;54495:328;54773:6;54767:13;54758:6;54754:2;54750:15;54743:38;54254:584;54390:41;;;54380:51;;;:6;:51;;;;54373:58;;;;;54218:675;54877:4;54870:11;;54047:853;;;;;;;:::o;11636:922::-;11689:7;11709:14;11726:1;11709:18;;11776:6;11767:5;:15;11763:102;;11812:6;11803:15;;;;;;:::i;:::-;;;;;11847:2;11837:12;;;;11763:102;11892:6;11883:5;:15;11879:102;;11928:6;11919:15;;;;;;:::i;:::-;;;;;11963:2;11953:12;;;;11879:102;12008:6;11999:5;:15;11995:102;;12044:6;12035:15;;;;;;:::i;:::-;;;;;12079:2;12069:12;;;;11995:102;12124:5;12115;:14;12111:99;;12159:5;12150:14;;;;;;:::i;:::-;;;;;12193:1;12183:11;;;;12111:99;12237:5;12228;:14;12224:99;;12272:5;12263:14;;;;;;:::i;:::-;;;;;12306:1;12296:11;;;;12224:99;12350:5;12341;:14;12337:99;;12385:5;12376:14;;;;;;:::i;:::-;;;;;12419:1;12409:11;;;;12337:99;12463:5;12454;:14;12450:66;;12499:1;12489:11;;;;12450:66;12544:6;12537:13;;;11636:922;;;:::o;32521:157::-;32606:4;32645:25;32630:40;;;:11;:40;;;;32623:47;;32521:157;;;:::o;59092:915::-;59269:61;59296:4;59302:2;59306:12;59320:9;59269:26;:61::i;:::-;59359:1;59347:9;:13;59343:222;;;59490:63;;;;;;;;;;:::i;:::-;;;;;;;;59343:222;59577:15;59595:12;59577:30;;59640:1;59624:18;;:4;:18;;;59620:187;;59659:40;59691:7;59659:31;:40::i;:::-;59620:187;;;59729:2;59721:10;;:4;:10;;;59717:90;;59748:47;59781:4;59787:7;59748:32;:47::i;:::-;59717:90;59620:187;59835:1;59821:16;;:2;:16;;;59817:183;;59854:45;59891:7;59854:36;:45::i;:::-;59817:183;;;59927:4;59921:10;;:2;:10;;;59917:83;;59948:40;59976:2;59980:7;59948:27;:40::i;:::-;59917:83;59817:183;59258:749;59092:915;;;;:::o;48844:942::-;48938:1;48924:16;;:2;:16;;;48916:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48997:16;49005:7;48997;:16::i;:::-;48996:17;48988:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49059:48;49088:1;49092:2;49096:7;49105:1;49059:20;:48::i;:::-;49206:16;49214:7;49206;:16::i;:::-;49205:17;49197:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49621:1;49604:9;:13;49614:2;49604:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;49665:2;49646:7;:16;49654:7;49646:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49710:7;49706:2;49685:33;;49702:1;49685:33;;;;;;;;;;;;49731:47;49759:1;49763:2;49767:7;49776:1;49731:19;:47::i;:::-;48844:942;;:::o;21490:326::-;21550:4;21807:1;21785:7;:19;;;:23;21778:30;;21490:326;;;:::o;55632:410::-;55822:1;55810:9;:13;55806:229;;;55860:1;55844:18;;:4;:18;;;55840:87;;55902:9;55883;:15;55893:4;55883:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;55840:87;55959:1;55945:16;;:2;:16;;;55941:83;;55999:9;55982;:13;55992:2;55982:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;55941:83;55806:229;55632:410;;;;:::o;60730:164::-;60834:10;:17;;;;60807:15;:24;60823:7;60807:24;;;;;;;;;;;:44;;;;60862:10;60878:7;60862:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60730:164;:::o;61521:988::-;61787:22;61837:1;61812:22;61829:4;61812:16;:22::i;:::-;:26;;;;:::i;:::-;61787:51;;61849:18;61870:17;:26;61888:7;61870:26;;;;;;;;;;;;61849:47;;62017:14;62003:10;:28;61999:328;;62048:19;62070:12;:18;62083:4;62070:18;;;;;;;;;;;;;;;:34;62089:14;62070:34;;;;;;;;;;;;62048:56;;62154:11;62121:12;:18;62134:4;62121:18;;;;;;;;;;;;;;;:30;62140:10;62121:30;;;;;;;;;;;:44;;;;62271:10;62238:17;:30;62256:11;62238:30;;;;;;;;;;;:43;;;;62033:294;61999:328;62423:17;:26;62441:7;62423:26;;;;;;;;;;;62416:33;;;62467:12;:18;62480:4;62467:18;;;;;;;;;;;;;;;:34;62486:14;62467:34;;;;;;;;;;;62460:41;;;61602:907;;61521:988;;:::o;62804:1079::-;63057:22;63102:1;63082:10;:17;;;;:21;;;;:::i;:::-;63057:46;;63114:18;63135:15;:24;63151:7;63135:24;;;;;;;;;;;;63114:45;;63486:19;63508:10;63519:14;63508:26;;;;;;;;:::i;:::-;;;;;;;;;;63486:48;;63572:11;63547:10;63558;63547:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;63683:10;63652:15;:28;63668:11;63652:28;;;;;;;;;;;:41;;;;63824:15;:24;63840:7;63824:24;;;;;;;;;;;63817:31;;;63859:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;62875:1008;;;62804:1079;:::o;60308:221::-;60393:14;60410:20;60427:2;60410:16;:20::i;:::-;60393:37;;60468:7;60441:12;:16;60454:2;60441:16;;;;;;;;;;;;;;;:24;60458:6;60441:24;;;;;;;;;;;:34;;;;60515:6;60486:17;:26;60504:7;60486:26;;;;;;;;;;;:35;;;;60382:147;60308:221;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:116::-;6272:21;6287:5;6272:21;:::i;:::-;6265:5;6262:32;6252:60;;6308:1;6305;6298:12;6252:60;6202:116;:::o;6324:133::-;6367:5;6405:6;6392:20;6383:29;;6421:30;6445:5;6421:30;:::i;:::-;6324:133;;;;:::o;6463:323::-;6519:6;6568:2;6556:9;6547:7;6543:23;6539:32;6536:119;;;6574:79;;:::i;:::-;6536:119;6694:1;6719:50;6761:7;6752:6;6741:9;6737:22;6719:50;:::i;:::-;6709:60;;6665:114;6463:323;;;;:::o;6792:468::-;6857:6;6865;6914:2;6902:9;6893:7;6889:23;6885:32;6882:119;;;6920:79;;:::i;:::-;6882:119;7040:1;7065:53;7110:7;7101:6;7090:9;7086:22;7065:53;:::i;:::-;7055:63;;7011:117;7167:2;7193:50;7235:7;7226:6;7215:9;7211:22;7193:50;:::i;:::-;7183:60;;7138:115;6792:468;;;;;:::o;7266:117::-;7375:1;7372;7365:12;7389:117;7498:1;7495;7488:12;7512:180;7560:77;7557:1;7550:88;7657:4;7654:1;7647:15;7681:4;7678:1;7671:15;7698:281;7781:27;7803:4;7781:27;:::i;:::-;7773:6;7769:40;7911:6;7899:10;7896:22;7875:18;7863:10;7860:34;7857:62;7854:88;;;7922:18;;:::i;:::-;7854:88;7962:10;7958:2;7951:22;7741:238;7698:281;;:::o;7985:129::-;8019:6;8046:20;;:::i;:::-;8036:30;;8075:33;8103:4;8095:6;8075:33;:::i;:::-;7985:129;;;:::o;8120:307::-;8181:4;8271:18;8263:6;8260:30;8257:56;;;8293:18;;:::i;:::-;8257:56;8331:29;8353:6;8331:29;:::i;:::-;8323:37;;8415:4;8409;8405:15;8397:23;;8120:307;;;:::o;8433:146::-;8530:6;8525:3;8520;8507:30;8571:1;8562:6;8557:3;8553:16;8546:27;8433:146;;;:::o;8585:423::-;8662:5;8687:65;8703:48;8744:6;8703:48;:::i;:::-;8687:65;:::i;:::-;8678:74;;8775:6;8768:5;8761:21;8813:4;8806:5;8802:16;8851:3;8842:6;8837:3;8833:16;8830:25;8827:112;;;8858:79;;:::i;:::-;8827:112;8948:54;8995:6;8990:3;8985;8948:54;:::i;:::-;8668:340;8585:423;;;;;:::o;9027:338::-;9082:5;9131:3;9124:4;9116:6;9112:17;9108:27;9098:122;;9139:79;;:::i;:::-;9098:122;9256:6;9243:20;9281:78;9355:3;9347:6;9340:4;9332:6;9328:17;9281:78;:::i;:::-;9272:87;;9088:277;9027:338;;;;:::o;9371:943::-;9466:6;9474;9482;9490;9539:3;9527:9;9518:7;9514:23;9510:33;9507:120;;;9546:79;;:::i;:::-;9507:120;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:53;9864:7;9855:6;9844:9;9840:22;9819:53;:::i;:::-;9809:63;;9764:118;9921:2;9947:53;9992:7;9983:6;9972:9;9968:22;9947:53;:::i;:::-;9937:63;;9892:118;10077:2;10066:9;10062:18;10049:32;10108:18;10100:6;10097:30;10094:117;;;10130:79;;:::i;:::-;10094:117;10235:62;10289:7;10280:6;10269:9;10265:22;10235:62;:::i;:::-;10225:72;;10020:287;9371:943;;;;;;;:::o;10320:474::-;10388:6;10396;10445:2;10433:9;10424:7;10420:23;10416:32;10413:119;;;10451:79;;:::i;:::-;10413:119;10571:1;10596:53;10641:7;10632:6;10621:9;10617:22;10596:53;:::i;:::-;10586:63;;10542:117;10698:2;10724:53;10769:7;10760:6;10749:9;10745:22;10724:53;:::i;:::-;10714:63;;10669:118;10320:474;;;;;:::o;10800:180::-;10848:77;10845:1;10838:88;10945:4;10942:1;10935:15;10969:4;10966:1;10959:15;10986:320;11030:6;11067:1;11061:4;11057:12;11047:22;;11114:1;11108:4;11104:12;11135:18;11125:81;;11191:4;11183:6;11179:17;11169:27;;11125:81;11253:2;11245:6;11242:14;11222:18;11219:38;11216:84;;11272:18;;:::i;:::-;11216:84;11037:269;10986:320;;;:::o;11312:220::-;11452:34;11448:1;11440:6;11436:14;11429:58;11521:3;11516:2;11508:6;11504:15;11497:28;11312:220;:::o;11538:366::-;11680:3;11701:67;11765:2;11760:3;11701:67;:::i;:::-;11694:74;;11777:93;11866:3;11777:93;:::i;:::-;11895:2;11890:3;11886:12;11879:19;;11538:366;;;:::o;11910:419::-;12076:4;12114:2;12103:9;12099:18;12091:26;;12163:9;12157:4;12153:20;12149:1;12138:9;12134:17;12127:47;12191:131;12317:4;12191:131;:::i;:::-;12183:139;;11910:419;;;:::o;12335:248::-;12475:34;12471:1;12463:6;12459:14;12452:58;12544:31;12539:2;12531:6;12527:15;12520:56;12335:248;:::o;12589:366::-;12731:3;12752:67;12816:2;12811:3;12752:67;:::i;:::-;12745:74;;12828:93;12917:3;12828:93;:::i;:::-;12946:2;12941:3;12937:12;12930:19;;12589:366;;;:::o;12961:419::-;13127:4;13165:2;13154:9;13150:18;13142:26;;13214:9;13208:4;13204:20;13200:1;13189:9;13185:17;13178:47;13242:131;13368:4;13242:131;:::i;:::-;13234:139;;12961:419;;;:::o;13386:232::-;13526:34;13522:1;13514:6;13510:14;13503:58;13595:15;13590:2;13582:6;13578:15;13571:40;13386:232;:::o;13624:366::-;13766:3;13787:67;13851:2;13846:3;13787:67;:::i;:::-;13780:74;;13863:93;13952:3;13863:93;:::i;:::-;13981:2;13976:3;13972:12;13965:19;;13624:366;;;:::o;13996:419::-;14162:4;14200:2;14189:9;14185:18;14177:26;;14249:9;14243:4;14239:20;14235:1;14224:9;14220:17;14213:47;14277:131;14403:4;14277:131;:::i;:::-;14269:139;;13996:419;;;:::o;14421:230::-;14561:34;14557:1;14549:6;14545:14;14538:58;14630:13;14625:2;14617:6;14613:15;14606:38;14421:230;:::o;14657:366::-;14799:3;14820:67;14884:2;14879:3;14820:67;:::i;:::-;14813:74;;14896:93;14985:3;14896:93;:::i;:::-;15014:2;15009:3;15005:12;14998:19;;14657:366;;;:::o;15029:419::-;15195:4;15233:2;15222:9;15218:18;15210:26;;15282:9;15276:4;15272:20;15268:1;15257:9;15253:17;15246:47;15310:131;15436:4;15310:131;:::i;:::-;15302:139;;15029:419;;;:::o;15454:231::-;15594:34;15590:1;15582:6;15578:14;15571:58;15663:14;15658:2;15650:6;15646:15;15639:39;15454:231;:::o;15691:366::-;15833:3;15854:67;15918:2;15913:3;15854:67;:::i;:::-;15847:74;;15930:93;16019:3;15930:93;:::i;:::-;16048:2;16043:3;16039:12;16032:19;;15691:366;;;:::o;16063:419::-;16229:4;16267:2;16256:9;16252:18;16244:26;;16316:9;16310:4;16306:20;16302:1;16291:9;16287:17;16280:47;16344:131;16470:4;16344:131;:::i;:::-;16336:139;;16063:419;;;:::o;16488:180::-;16536:77;16533:1;16526:88;16633:4;16630:1;16623:15;16657:4;16654:1;16647:15;16674:174;16814:26;16810:1;16802:6;16798:14;16791:50;16674:174;:::o;16854:366::-;16996:3;17017:67;17081:2;17076:3;17017:67;:::i;:::-;17010:74;;17093:93;17182:3;17093:93;:::i;:::-;17211:2;17206:3;17202:12;17195:19;;16854:366;;;:::o;17226:419::-;17392:4;17430:2;17419:9;17415:18;17407:26;;17479:9;17473:4;17469:20;17465:1;17454:9;17450:17;17443:47;17507:131;17633:4;17507:131;:::i;:::-;17499:139;;17226:419;;;:::o;17651:228::-;17791:34;17787:1;17779:6;17775:14;17768:58;17860:11;17855:2;17847:6;17843:15;17836:36;17651:228;:::o;17885:366::-;18027:3;18048:67;18112:2;18107:3;18048:67;:::i;:::-;18041:74;;18124:93;18213:3;18124:93;:::i;:::-;18242:2;18237:3;18233:12;18226:19;;17885:366;;;:::o;18257:419::-;18423:4;18461:2;18450:9;18446:18;18438:26;;18510:9;18504:4;18500:20;18496:1;18485:9;18481:17;18474:47;18538:131;18664:4;18538:131;:::i;:::-;18530:139;;18257:419;;;:::o;18682:180::-;18730:77;18727:1;18720:88;18827:4;18824:1;18817:15;18851:4;18848:1;18841:15;18868:191;18908:3;18927:20;18945:1;18927:20;:::i;:::-;18922:25;;18961:20;18979:1;18961:20;:::i;:::-;18956:25;;19004:1;19001;18997:9;18990:16;;19025:3;19022:1;19019:10;19016:36;;;19032:18;;:::i;:::-;19016:36;18868:191;;;;:::o;19065:410::-;19105:7;19128:20;19146:1;19128:20;:::i;:::-;19123:25;;19162:20;19180:1;19162:20;:::i;:::-;19157:25;;19217:1;19214;19210:9;19239:30;19257:11;19239:30;:::i;:::-;19228:41;;19418:1;19409:7;19405:15;19402:1;19399:22;19379:1;19372:9;19352:83;19329:139;;19448:18;;:::i;:::-;19329:139;19113:362;19065:410;;;;:::o;19481:233::-;19520:3;19543:24;19561:5;19543:24;:::i;:::-;19534:33;;19589:66;19582:5;19579:77;19576:103;;19659:18;;:::i;:::-;19576:103;19706:1;19699:5;19695:13;19688:20;;19481:233;;;:::o;19720:148::-;19822:11;19859:3;19844:18;;19720:148;;;;:::o;19874:390::-;19980:3;20008:39;20041:5;20008:39;:::i;:::-;20063:89;20145:6;20140:3;20063:89;:::i;:::-;20056:96;;20161:65;20219:6;20214:3;20207:4;20200:5;20196:16;20161:65;:::i;:::-;20251:6;20246:3;20242:16;20235:23;;19984:280;19874:390;;;;:::o;20270:155::-;20410:7;20406:1;20398:6;20394:14;20387:31;20270:155;:::o;20431:400::-;20591:3;20612:84;20694:1;20689:3;20612:84;:::i;:::-;20605:91;;20705:93;20794:3;20705:93;:::i;:::-;20823:1;20818:3;20814:11;20807:18;;20431:400;;;:::o;20837:701::-;21118:3;21140:95;21231:3;21222:6;21140:95;:::i;:::-;21133:102;;21252:95;21343:3;21334:6;21252:95;:::i;:::-;21245:102;;21364:148;21508:3;21364:148;:::i;:::-;21357:155;;21529:3;21522:10;;20837:701;;;;;:::o;21544:225::-;21684:34;21680:1;21672:6;21668:14;21661:58;21753:8;21748:2;21740:6;21736:15;21729:33;21544:225;:::o;21775:366::-;21917:3;21938:67;22002:2;21997:3;21938:67;:::i;:::-;21931:74;;22014:93;22103:3;22014:93;:::i;:::-;22132:2;22127:3;22123:12;22116:19;;21775:366;;;:::o;22147:419::-;22313:4;22351:2;22340:9;22336:18;22328:26;;22400:9;22394:4;22390:20;22386:1;22375:9;22371:17;22364:47;22428:131;22554:4;22428:131;:::i;:::-;22420:139;;22147:419;;;:::o;22572:224::-;22712:34;22708:1;22700:6;22696:14;22689:58;22781:7;22776:2;22768:6;22764:15;22757:32;22572:224;:::o;22802:366::-;22944:3;22965:67;23029:2;23024:3;22965:67;:::i;:::-;22958:74;;23041:93;23130:3;23041:93;:::i;:::-;23159:2;23154:3;23150:12;23143:19;;22802:366;;;:::o;23174:419::-;23340:4;23378:2;23367:9;23363:18;23355:26;;23427:9;23421:4;23417:20;23413:1;23402:9;23398:17;23391:47;23455:131;23581:4;23455:131;:::i;:::-;23447:139;;23174:419;;;:::o;23599:223::-;23739:34;23735:1;23727:6;23723:14;23716:58;23808:6;23803:2;23795:6;23791:15;23784:31;23599:223;:::o;23828:366::-;23970:3;23991:67;24055:2;24050:3;23991:67;:::i;:::-;23984:74;;24067:93;24156:3;24067:93;:::i;:::-;24185:2;24180:3;24176:12;24169:19;;23828:366;;;:::o;24200:419::-;24366:4;24404:2;24393:9;24389:18;24381:26;;24453:9;24447:4;24443:20;24439:1;24428:9;24424:17;24417:47;24481:131;24607:4;24481:131;:::i;:::-;24473:139;;24200:419;;;:::o;24625:182::-;24765:34;24761:1;24753:6;24749:14;24742:58;24625:182;:::o;24813:366::-;24955:3;24976:67;25040:2;25035:3;24976:67;:::i;:::-;24969:74;;25052:93;25141:3;25052:93;:::i;:::-;25170:2;25165:3;25161:12;25154:19;;24813:366;;;:::o;25185:419::-;25351:4;25389:2;25378:9;25374:18;25366:26;;25438:9;25432:4;25428:20;25424:1;25413:9;25409:17;25402:47;25466:131;25592:4;25466:131;:::i;:::-;25458:139;;25185:419;;;:::o;25610:175::-;25750:27;25746:1;25738:6;25734:14;25727:51;25610:175;:::o;25791:366::-;25933:3;25954:67;26018:2;26013:3;25954:67;:::i;:::-;25947:74;;26030:93;26119:3;26030:93;:::i;:::-;26148:2;26143:3;26139:12;26132:19;;25791:366;;;:::o;26163:419::-;26329:4;26367:2;26356:9;26352:18;26344:26;;26416:9;26410:4;26406:20;26402:1;26391:9;26387:17;26380:47;26444:131;26570:4;26444:131;:::i;:::-;26436:139;;26163:419;;;:::o;26588:237::-;26728:34;26724:1;26716:6;26712:14;26705:58;26797:20;26792:2;26784:6;26780:15;26773:45;26588:237;:::o;26831:366::-;26973:3;26994:67;27058:2;27053:3;26994:67;:::i;:::-;26987:74;;27070:93;27159:3;27070:93;:::i;:::-;27188:2;27183:3;27179:12;27172:19;;26831:366;;;:::o;27203:419::-;27369:4;27407:2;27396:9;27392:18;27384:26;;27456:9;27450:4;27446:20;27442:1;27431:9;27427:17;27420:47;27484:131;27610:4;27484:131;:::i;:::-;27476:139;;27203:419;;;:::o;27628:180::-;27676:77;27673:1;27666:88;27773:4;27770:1;27763:15;27797:4;27794:1;27787:15;27814:98;27865:6;27899:5;27893:12;27883:22;;27814:98;;;:::o;27918:168::-;28001:11;28035:6;28030:3;28023:19;28075:4;28070:3;28066:14;28051:29;;27918:168;;;;:::o;28092:373::-;28178:3;28206:38;28238:5;28206:38;:::i;:::-;28260:70;28323:6;28318:3;28260:70;:::i;:::-;28253:77;;28339:65;28397:6;28392:3;28385:4;28378:5;28374:16;28339:65;:::i;:::-;28429:29;28451:6;28429:29;:::i;:::-;28424:3;28420:39;28413:46;;28182:283;28092:373;;;;:::o;28471:640::-;28666:4;28704:3;28693:9;28689:19;28681:27;;28718:71;28786:1;28775:9;28771:17;28762:6;28718:71;:::i;:::-;28799:72;28867:2;28856:9;28852:18;28843:6;28799:72;:::i;:::-;28881;28949:2;28938:9;28934:18;28925:6;28881:72;:::i;:::-;29000:9;28994:4;28990:20;28985:2;28974:9;28970:18;28963:48;29028:76;29099:4;29090:6;29028:76;:::i;:::-;29020:84;;28471:640;;;;;;;:::o;29117:141::-;29173:5;29204:6;29198:13;29189:22;;29220:32;29246:5;29220:32;:::i;:::-;29117:141;;;;:::o;29264:349::-;29333:6;29382:2;29370:9;29361:7;29357:23;29353:32;29350:119;;;29388:79;;:::i;:::-;29350:119;29508:1;29533:63;29588:7;29579:6;29568:9;29564:22;29533:63;:::i;:::-;29523:73;;29479:127;29264:349;;;;:::o;29619:240::-;29759:34;29755:1;29747:6;29743:14;29736:58;29828:23;29823:2;29815:6;29811:15;29804:48;29619:240;:::o;29865:366::-;30007:3;30028:67;30092:2;30087:3;30028:67;:::i;:::-;30021:74;;30104:93;30193:3;30104:93;:::i;:::-;30222:2;30217:3;30213:12;30206:19;;29865:366;;;:::o;30237:419::-;30403:4;30441:2;30430:9;30426:18;30418:26;;30490:9;30484:4;30480:20;30476:1;30465:9;30461:17;30454:47;30518:131;30644:4;30518:131;:::i;:::-;30510:139;;30237:419;;;:::o;30662:182::-;30802:34;30798:1;30790:6;30786:14;30779:58;30662:182;:::o;30850:366::-;30992:3;31013:67;31077:2;31072:3;31013:67;:::i;:::-;31006:74;;31089:93;31178:3;31089:93;:::i;:::-;31207:2;31202:3;31198:12;31191:19;;30850:366;;;:::o;31222:419::-;31388:4;31426:2;31415:9;31411:18;31403:26;;31475:9;31469:4;31465:20;31461:1;31450:9;31446:17;31439:47;31503:131;31629:4;31503:131;:::i;:::-;31495:139;;31222:419;;;:::o;31647:178::-;31787:30;31783:1;31775:6;31771:14;31764:54;31647:178;:::o;31831:366::-;31973:3;31994:67;32058:2;32053:3;31994:67;:::i;:::-;31987:74;;32070:93;32159:3;32070:93;:::i;:::-;32188:2;32183:3;32179:12;32172:19;;31831:366;;;:::o;32203:419::-;32369:4;32407:2;32396:9;32392:18;32384:26;;32456:9;32450:4;32446:20;32442:1;32431:9;32427:17;32420:47;32484:131;32610:4;32484:131;:::i;:::-;32476:139;;32203:419;;;:::o;32628:194::-;32668:4;32688:20;32706:1;32688:20;:::i;:::-;32683:25;;32722:20;32740:1;32722:20;:::i;:::-;32717:25;;32766:1;32763;32759:9;32751:17;;32790:1;32784:4;32781:11;32778:37;;;32795:18;;:::i;:::-;32778:37;32628:194;;;;:::o;32828:180::-;32876:77;32873:1;32866:88;32973:4;32970:1;32963:15;32997:4;32994:1;32987:15

Swarm Source

ipfs://5237d0084d0e8c8813dbc8d4229899af25a6ec94e7ddb85b0f215d2357c776a4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.