ETH Price: $3,319.57 (+1.56%)
Gas: 7 Gwei

Token

MILADY TOKYO (MILJP)
 

Overview

Max Total Supply

453 MILJP

Holders

420

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MILJP
0x829a49ec090b11176ea27848bceb0b3ae98d3531
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:
MiladyTokyo

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 2023-06-03
*/

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


/*
  __  __ ___ _      _   _____   __  _____ ___  _  ____   _____  
 |  \/  |_ _| |    /_\ |   \ \ / / |_   _/ _ \| |/ /\ \ / / _ \ 
 | |\/| || || |__ / _ \| |) \ V /    | || (_) | ' <  \ V / (_) |
 |_|  |_|___|____/_/ \_\___/ |_|     |_| \___/|_|\_\  |_| \___/ 
                                                                
*/
// SPDX-License-Identifier: MIT

// 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/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/ERC721Burnable.sol


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

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _burn(tokenId);
    }
}

// File: miladytokyo.sol



pragma solidity >=0.7.0 <0.9.0;





contract MiladyTokyo is ERC721, Ownable, ERC721Burnable {
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private supply;

    string public uriPrefix = "ipfs://bafybeibpx74yumxhbkbjbxk3af4mnbexuwy6ll4mj7sr2ubmi5a2lkmfmy/";
    string public uriSuffix = ".json";

    uint256 public cost = 0.01 ether;
    uint256 public maxSupply = 5000;
    uint256 public maxMintAmountPerTx = 10;
    uint256 public maxFreeMints = 420;

    bool public paused = false;

    mapping(address => bool) public hasClaimedFreeNFT;

    constructor() ERC721("MILADY TOKYO", "MILJP") {
        _mintLoop(msg.sender, 15);
    }

    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0, "Invalid mint amount!");
        require(_mintAmount <= maxMintAmountPerTx, "Exceeded max mint amount per transaction!");
        require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
        _;
    }

    function totalSupply() public view returns (uint256) {
        return supply.current();
    }

    function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(!paused, "The contract is paused!");

        uint256 discountedMints = 0;

        if (maxFreeMints > 0 && !hasClaimedFreeNFT[msg.sender]) {
            discountedMints += 1;
            maxFreeMints -= 1;
            hasClaimedFreeNFT[msg.sender] = true;
        }

        uint256 totalCost = cost * (_mintAmount - discountedMints);
        uint256 discount = 0;

        if ((_mintAmount - discountedMints) >= maxMintAmountPerTx) {
            // Apply 10% discount if purchasing max (when no free mints in place)
            discount = totalCost * 10 / 100;
        }

        uint256 finalCost = totalCost - discount;
        require(msg.value >= finalCost, "Insufficient funds!");

        _mintLoop(msg.sender, _mintAmount);
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

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

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

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

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    function setMaxFreeMints(uint256 _maxFreeMints) public onlyOwner {
        maxFreeMints = _maxFreeMints;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

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

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

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        uint256 i = 0;
        while (i < _mintAmount) {
            supply.increment();
            _safeMint(_receiver, supply.current());
            i++;
        }
    }

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

    function hasClaimed(address _address) public view returns (bool) {
        return hasClaimedFreeNFT[_address];
    }
}

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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasClaimedFreeNFT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"paused","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":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMints","type":"uint256"}],"name":"setMaxFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060800160405280604381526020016200529160439139600890816200002e919062000bb7565b506040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506009908162000075919062000bb7565b50662386f26fc10000600a55611388600b55600a600c556101a4600d556000600e60006101000a81548160ff021916908315150217905550348015620000ba57600080fd5b506040518060400160405280600c81526020017f4d494c41445920544f4b594f00000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d494c4a50000000000000000000000000000000000000000000000000000000815250816000908162000138919062000bb7565b5080600190816200014a919062000bb7565b5050506200016d620001616200018660201b60201c565b6200018e60201b60201c565b6200018033600f6200025460201b60201c565b620010f5565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015620002b557620002776007620002ba60201b6200171f1760201c565b6200029f83620002936007620002d060201b620017351760201c565b620002de60201b60201c565b8080620002ac9062000ccd565b91505062000257565b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b620003008282604051806020016040528060008152506200030460201b60201c565b5050565b6200031683836200037260201b60201c565b6200032b6000848484620005b860201b60201c565b6200036d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003649062000da1565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003db9062000e13565b60405180910390fd5b620003f5816200076160201b60201c565b1562000438576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042f9062000e85565b60405180910390fd5b6200044e600083836001620007aa60201b60201c565b6200045f816200076160201b60201c565b15620004a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004999062000e85565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620005b4600083836001620008d760201b60201c565b5050565b6000620005e68473ffffffffffffffffffffffffffffffffffffffff16620008dd60201b620017431760201c565b1562000754578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006186200018660201b60201c565b8786866040518563ffffffff1660e01b81526004016200063c949392919062000f97565b6020604051808303816000875af19250505080156200067b57506040513d601f19601f820116820180604052508101906200067891906200104d565b60015b62000703573d8060008114620006ae576040519150601f19603f3d011682016040523d82523d6000602084013e620006b3565b606091505b506000815103620006fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f29062000da1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000759565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166200078b836200090060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6001811115620008d157600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614620008425780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200083a91906200107f565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620008d05780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620008c89190620010ba565b925050819055505b5b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009bf57607f821691505b602082108103620009d557620009d462000977565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a3f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a00565b62000a4b868362000a00565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a9862000a9262000a8c8462000a63565b62000a6d565b62000a63565b9050919050565b6000819050919050565b62000ab48362000a77565b62000acc62000ac38262000a9f565b84845462000a0d565b825550505050565b600090565b62000ae362000ad4565b62000af081848462000aa9565b505050565b5b8181101562000b185762000b0c60008262000ad9565b60018101905062000af6565b5050565b601f82111562000b675762000b3181620009db565b62000b3c84620009f0565b8101602085101562000b4c578190505b62000b6462000b5b85620009f0565b83018262000af5565b50505b505050565b600082821c905092915050565b600062000b8c6000198460080262000b6c565b1980831691505092915050565b600062000ba7838362000b79565b9150826002028217905092915050565b62000bc2826200093d565b67ffffffffffffffff81111562000bde5762000bdd62000948565b5b62000bea8254620009a6565b62000bf782828562000b1c565b600060209050601f83116001811462000c2f576000841562000c1a578287015190505b62000c26858262000b99565b86555062000c96565b601f19841662000c3f86620009db565b60005b8281101562000c695784890151825560018201915060208501945060208101905062000c42565b8683101562000c89578489015162000c85601f89168262000b79565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cda8262000a63565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000d0f5762000d0e62000c9e565b5b600182019050919050565b600082825260208201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600062000d8960328362000d1a565b915062000d968262000d2b565b604082019050919050565b6000602082019050818103600083015262000dbc8162000d7a565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000dfb60208362000d1a565b915062000e088262000dc3565b602082019050919050565b6000602082019050818103600083015262000e2e8162000dec565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000e6d601c8362000d1a565b915062000e7a8262000e35565b602082019050919050565b6000602082019050818103600083015262000ea08162000e5e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ed48262000ea7565b9050919050565b62000ee68162000ec7565b82525050565b62000ef78162000a63565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000f3957808201518184015260208101905062000f1c565b60008484015250505050565b6000601f19601f8301169050919050565b600062000f638262000efd565b62000f6f818562000f08565b935062000f8181856020860162000f19565b62000f8c8162000f45565b840191505092915050565b600060808201905062000fae600083018762000edb565b62000fbd602083018662000edb565b62000fcc604083018562000eec565b818103606083015262000fe0818462000f56565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620010278162000ff0565b81146200103357600080fd5b50565b60008151905062001047816200101c565b92915050565b60006020828403121562001066576200106562000feb565b5b6000620010768482850162001036565b91505092915050565b60006200108c8262000a63565b9150620010998362000a63565b9250828203905081811115620010b457620010b362000c9e565b5b92915050565b6000620010c78262000a63565b9150620010d48362000a63565b9250828201905080821115620010ef57620010ee62000c9e565b5b92915050565b61418c80620011056000396000f3fe60806040526004361061020f5760003560e01c806362b99ad41161011857806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde1461077a578063c87b56dd146107a3578063d5abeb01146107e0578063e985e9c51461080b578063f2fde38b146108485761020f565b806395d89b41146106e1578063a0712d681461070c578063a22cb46514610728578063b071401b146107515761020f565b8063732496c9116100e7578063732496c9146105fa57806373b2e80e146106255780637ec4a659146106625780638da5cb5b1461068b57806394354fd0146106b65761020f565b806362b99ad41461053e5780636352211e1461056957806370a08231146105a6578063715018a6146105e35761020f565b80633ccfd60b1161019b578063438b63001161016a578063438b63001461044557806344a0d68a146104825780635503a0e8146104ab578063555a03cb146104d65780635c975abb146105135761020f565b80633ccfd60b146103b3578063407043fc146103ca57806342842e0e146103f357806342966c681461041c5761020f565b806313faede6116101e257806313faede6146102e257806316ba10e01461030d57806316c38b3c1461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906129ea565b610871565b6040516102489190612a32565b60405180910390f35b34801561025d57600080fd5b50610266610953565b6040516102739190612add565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612b35565b6109e5565b6040516102b09190612ba3565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612bea565b610a2b565b005b3480156102ee57600080fd5b506102f7610b42565b6040516103049190612c39565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612d89565b610b48565b005b34801561034257600080fd5b5061035d60048036038101906103589190612dfe565b610b63565b005b34801561036b57600080fd5b50610374610b88565b6040516103819190612c39565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612e2b565b610b99565b005b3480156103bf57600080fd5b506103c8610bf9565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612b35565b610c81565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612e2b565b610c93565b005b34801561042857600080fd5b50610443600480360381019061043e9190612b35565b610cb3565b005b34801561045157600080fd5b5061046c60048036038101906104679190612e7e565b610d0f565b6040516104799190612f69565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190612b35565b610e19565b005b3480156104b757600080fd5b506104c0610e2b565b6040516104cd9190612add565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190612e7e565b610eb9565b60405161050a9190612a32565b60405180910390f35b34801561051f57600080fd5b50610528610ed9565b6040516105359190612a32565b60405180910390f35b34801561054a57600080fd5b50610553610eec565b6040516105609190612add565b60405180910390f35b34801561057557600080fd5b50610590600480360381019061058b9190612b35565b610f7a565b60405161059d9190612ba3565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190612e7e565b611000565b6040516105da9190612c39565b60405180910390f35b3480156105ef57600080fd5b506105f86110b7565b005b34801561060657600080fd5b5061060f6110cb565b60405161061c9190612c39565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190612e7e565b6110d1565b6040516106599190612a32565b60405180910390f35b34801561066e57600080fd5b5061068960048036038101906106849190612d89565b611127565b005b34801561069757600080fd5b506106a0611142565b6040516106ad9190612ba3565b60405180910390f35b3480156106c257600080fd5b506106cb61116c565b6040516106d89190612c39565b60405180910390f35b3480156106ed57600080fd5b506106f6611172565b6040516107039190612add565b60405180910390f35b61072660048036038101906107219190612b35565b611204565b005b34801561073457600080fd5b5061074f600480360381019061074a9190612f8b565b6114ce565b005b34801561075d57600080fd5b5061077860048036038101906107739190612b35565b6114e4565b005b34801561078657600080fd5b506107a1600480360381019061079c919061306c565b6114f6565b005b3480156107af57600080fd5b506107ca60048036038101906107c59190612b35565b611558565b6040516107d79190612add565b60405180910390f35b3480156107ec57600080fd5b506107f5611602565b6040516108029190612c39565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d91906130ef565b611608565b60405161083f9190612a32565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a9190612e7e565b61169c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094c575061094b82611766565b5b9050919050565b6060600080546109629061315e565b80601f016020809104026020016040519081016040528092919081815260200182805461098e9061315e565b80156109db5780601f106109b0576101008083540402835291602001916109db565b820191906000526020600020905b8154815290600101906020018083116109be57829003601f168201915b5050505050905090565b60006109f0826117d0565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3682610f7a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d90613201565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac561181b565b73ffffffffffffffffffffffffffffffffffffffff161480610af45750610af381610aee61181b565b611608565b5b610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90613293565b60405180910390fd5b610b3d8383611823565b505050565b600a5481565b610b506118dc565b8060099081610b5f919061345f565b5050565b610b6b6118dc565b80600e60006101000a81548160ff02191690831515021790555050565b6000610b946007611735565b905090565b610baa610ba461181b565b8261195a565b610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be0906135a3565b60405180910390fd5b610bf48383836119ef565b505050565b610c016118dc565b6000610c0b611142565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c2e906135f4565b60006040518083038185875af1925050503d8060008114610c6b576040519150601f19603f3d011682016040523d82523d6000602084013e610c70565b606091505b5050905080610c7e57600080fd5b50565b610c896118dc565b80600d8190555050565b610cae838383604051806020016040528060008152506114f6565b505050565b610cc4610cbe61181b565b8261195a565b610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa906135a3565b60405180910390fd5b610d0c81611ce8565b50565b60606000610d1c83611000565b905060008167ffffffffffffffff811115610d3a57610d39612c5e565b5b604051908082528060200260200182016040528015610d685781602001602082028036833780820191505090505b50905060006001905060005b8381108015610d855750600b548211155b15610e0d576000610d9583610f7a565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610df95782848381518110610dde57610ddd613609565b5b6020026020010181815250508180610df590613667565b9250505b8280610e0490613667565b93505050610d74565b82945050505050919050565b610e216118dc565b80600a8190555050565b60098054610e389061315e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e649061315e565b8015610eb15780601f10610e8657610100808354040283529160200191610eb1565b820191906000526020600020905b815481529060010190602001808311610e9457829003601f168201915b505050505081565b600f6020528060005260406000206000915054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b60088054610ef99061315e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f259061315e565b8015610f725780601f10610f4757610100808354040283529160200191610f72565b820191906000526020600020905b815481529060010190602001808311610f5557829003601f168201915b505050505081565b600080610f8683611e36565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee906136fb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110679061378d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110bf6118dc565b6110c96000611e73565b565b600d5481565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61112f6118dc565b806008908161113e919061345f565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b6060600180546111819061315e565b80601f01602080910402602001604051908101604052809291908181526020018280546111ad9061315e565b80156111fa5780601f106111cf576101008083540402835291602001916111fa565b820191906000526020600020905b8154815290600101906020018083116111dd57829003601f168201915b5050505050905090565b8060008111611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f906137f9565b60405180910390fd5b600c5481111561128d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112849061388b565b60405180910390fd5b600b548161129b6007611735565b6112a591906138ab565b11156112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd9061392b565b60405180910390fd5b600e60009054906101000a900460ff1615611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d90613997565b60405180910390fd5b600080600d541180156113935750600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561141a576001816113a591906138ab565b90506001600d60008282546113ba91906139b7565b925050819055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000818461142891906139b7565b600a5461143591906139eb565b90506000600c54838661144891906139b7565b10611469576064600a8361145c91906139eb565b6114669190613a5c565b90505b6000818361147791906139b7565b9050803410156114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390613ad9565b60405180910390fd5b6114c63387611f39565b505050505050565b6114e06114d961181b565b8383611f79565b5050565b6114ec6118dc565b80600c8190555050565b61150761150161181b565b8361195a565b611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d906135a3565b60405180910390fd5b611552848484846120e5565b50505050565b606061156382612141565b6115a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159990613b6b565b60405180910390fd5b60006115ac612182565b905060008151116115cc57604051806020016040528060008152506115fa565b806115d684612214565b60096040516020016115ea93929190613c4a565b6040516020818303038152906040525b915050919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116a46118dc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a90613ced565b60405180910390fd5b61171c81611e73565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6117d981612141565b611818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180f906136fb565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661189683610f7a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118e461181b565b73ffffffffffffffffffffffffffffffffffffffff16611902611142565b73ffffffffffffffffffffffffffffffffffffffff1614611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90613d59565b60405180910390fd5b565b60008061196683610f7a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119a857506119a78185611608565b5b806119e657508373ffffffffffffffffffffffffffffffffffffffff166119ce846109e5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a0f82610f7a565b73ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90613deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acb90613e7d565b60405180910390fd5b611ae183838360016122e2565b8273ffffffffffffffffffffffffffffffffffffffff16611b0182610f7a565b73ffffffffffffffffffffffffffffffffffffffff1614611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e90613deb565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ce38383836001612408565b505050565b6000611cf382610f7a565b9050611d038160008460016122e2565b611d0c82610f7a565b90506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e32816000846001612408565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611f7457611f4e600761171f565b611f6183611f5c6007611735565b61240e565b8080611f6c90613667565b915050611f3c565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fde90613ee9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120d89190612a32565b60405180910390a3505050565b6120f08484846119ef565b6120fc8484848461242c565b61213b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213290613f7b565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661216383611e36565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600880546121919061315e565b80601f01602080910402602001604051908101604052809291908181526020018280546121bd9061315e565b801561220a5780601f106121df5761010080835404028352916020019161220a565b820191906000526020600020905b8154815290600101906020018083116121ed57829003601f168201915b5050505050905090565b606060006001612223846125b3565b01905060008167ffffffffffffffff81111561224257612241612c5e565b5b6040519080825280601f01601f1916602001820160405280156122745781602001600182028036833780820191505090505b509050600082602001820190505b6001156122d7578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816122cb576122ca613a2d565b5b04945060008503612282575b819350505050919050565b600181111561240257600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146123765780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461236e91906139b7565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124015780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f991906138ab565b925050819055505b5b50505050565b50505050565b612428828260405180602001604052806000815250612706565b5050565b600061244d8473ffffffffffffffffffffffffffffffffffffffff16611743565b156125a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261247661181b565b8786866040518563ffffffff1660e01b81526004016124989493929190613ff0565b6020604051808303816000875af19250505080156124d457506040513d601f19601f820116820180604052508101906124d19190614051565b60015b612556573d8060008114612504576040519150601f19603f3d011682016040523d82523d6000602084013e612509565b606091505b50600081510361254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254590613f7b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125ab565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612611577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161260757612606613a2d565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061264e576d04ee2d6d415b85acef8100000000838161264457612643613a2d565b5b0492506020810190505b662386f26fc10000831061267d57662386f26fc10000838161267357612672613a2d565b5b0492506010810190505b6305f5e10083106126a6576305f5e100838161269c5761269b613a2d565b5b0492506008810190505b61271083106126cb5761271083816126c1576126c0613a2d565b5b0492506004810190505b606483106126ee57606483816126e4576126e3613a2d565b5b0492506002810190505b600a83106126fd576001810190505b80915050919050565b6127108383612761565b61271d600084848461242c565b61275c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275390613f7b565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c7906140ca565b60405180910390fd5b6127d981612141565b15612819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281090614136565b60405180910390fd5b6128276000838360016122e2565b61283081612141565b15612870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286790614136565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461297a600083836001612408565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129c781612992565b81146129d257600080fd5b50565b6000813590506129e4816129be565b92915050565b600060208284031215612a00576129ff612988565b5b6000612a0e848285016129d5565b91505092915050565b60008115159050919050565b612a2c81612a17565b82525050565b6000602082019050612a476000830184612a23565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a87578082015181840152602081019050612a6c565b60008484015250505050565b6000601f19601f8301169050919050565b6000612aaf82612a4d565b612ab98185612a58565b9350612ac9818560208601612a69565b612ad281612a93565b840191505092915050565b60006020820190508181036000830152612af78184612aa4565b905092915050565b6000819050919050565b612b1281612aff565b8114612b1d57600080fd5b50565b600081359050612b2f81612b09565b92915050565b600060208284031215612b4b57612b4a612988565b5b6000612b5984828501612b20565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b8d82612b62565b9050919050565b612b9d81612b82565b82525050565b6000602082019050612bb86000830184612b94565b92915050565b612bc781612b82565b8114612bd257600080fd5b50565b600081359050612be481612bbe565b92915050565b60008060408385031215612c0157612c00612988565b5b6000612c0f85828601612bd5565b9250506020612c2085828601612b20565b9150509250929050565b612c3381612aff565b82525050565b6000602082019050612c4e6000830184612c2a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c9682612a93565b810181811067ffffffffffffffff82111715612cb557612cb4612c5e565b5b80604052505050565b6000612cc861297e565b9050612cd48282612c8d565b919050565b600067ffffffffffffffff821115612cf457612cf3612c5e565b5b612cfd82612a93565b9050602081019050919050565b82818337600083830152505050565b6000612d2c612d2784612cd9565b612cbe565b905082815260208101848484011115612d4857612d47612c59565b5b612d53848285612d0a565b509392505050565b600082601f830112612d7057612d6f612c54565b5b8135612d80848260208601612d19565b91505092915050565b600060208284031215612d9f57612d9e612988565b5b600082013567ffffffffffffffff811115612dbd57612dbc61298d565b5b612dc984828501612d5b565b91505092915050565b612ddb81612a17565b8114612de657600080fd5b50565b600081359050612df881612dd2565b92915050565b600060208284031215612e1457612e13612988565b5b6000612e2284828501612de9565b91505092915050565b600080600060608486031215612e4457612e43612988565b5b6000612e5286828701612bd5565b9350506020612e6386828701612bd5565b9250506040612e7486828701612b20565b9150509250925092565b600060208284031215612e9457612e93612988565b5b6000612ea284828501612bd5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612ee081612aff565b82525050565b6000612ef28383612ed7565b60208301905092915050565b6000602082019050919050565b6000612f1682612eab565b612f208185612eb6565b9350612f2b83612ec7565b8060005b83811015612f5c578151612f438882612ee6565b9750612f4e83612efe565b925050600181019050612f2f565b5085935050505092915050565b60006020820190508181036000830152612f838184612f0b565b905092915050565b60008060408385031215612fa257612fa1612988565b5b6000612fb085828601612bd5565b9250506020612fc185828601612de9565b9150509250929050565b600067ffffffffffffffff821115612fe657612fe5612c5e565b5b612fef82612a93565b9050602081019050919050565b600061300f61300a84612fcb565b612cbe565b90508281526020810184848401111561302b5761302a612c59565b5b613036848285612d0a565b509392505050565b600082601f83011261305357613052612c54565b5b8135613063848260208601612ffc565b91505092915050565b6000806000806080858703121561308657613085612988565b5b600061309487828801612bd5565b94505060206130a587828801612bd5565b93505060406130b687828801612b20565b925050606085013567ffffffffffffffff8111156130d7576130d661298d565b5b6130e38782880161303e565b91505092959194509250565b6000806040838503121561310657613105612988565b5b600061311485828601612bd5565b925050602061312585828601612bd5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061317657607f821691505b6020821081036131895761318861312f565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006131eb602183612a58565b91506131f68261318f565b604082019050919050565b6000602082019050818103600083015261321a816131de565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061327d603d83612a58565b915061328882613221565b604082019050919050565b600060208201905081810360008301526132ac81613270565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026133157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132d8565b61331f86836132d8565b95508019841693508086168417925050509392505050565b6000819050919050565b600061335c61335761335284612aff565b613337565b612aff565b9050919050565b6000819050919050565b61337683613341565b61338a61338282613363565b8484546132e5565b825550505050565b600090565b61339f613392565b6133aa81848461336d565b505050565b5b818110156133ce576133c3600082613397565b6001810190506133b0565b5050565b601f821115613413576133e4816132b3565b6133ed846132c8565b810160208510156133fc578190505b613410613408856132c8565b8301826133af565b50505b505050565b600082821c905092915050565b600061343660001984600802613418565b1980831691505092915050565b600061344f8383613425565b9150826002028217905092915050565b61346882612a4d565b67ffffffffffffffff81111561348157613480612c5e565b5b61348b825461315e565b6134968282856133d2565b600060209050601f8311600181146134c957600084156134b7578287015190505b6134c18582613443565b865550613529565b601f1984166134d7866132b3565b60005b828110156134ff578489015182556001820191506020850194506020810190506134da565b8683101561351c5784890151613518601f891682613425565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b600061358d602d83612a58565b915061359882613531565b604082019050919050565b600060208201905081810360008301526135bc81613580565b9050919050565b600081905092915050565b50565b60006135de6000836135c3565b91506135e9826135ce565b600082019050919050565b60006135ff826135d1565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061367282612aff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136a4576136a3613638565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006136e5601883612a58565b91506136f0826136af565b602082019050919050565b60006020820190508181036000830152613714816136d8565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613777602983612a58565b91506137828261371b565b604082019050919050565b600060208201905081810360008301526137a68161376a565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006137e3601483612a58565b91506137ee826137ad565b602082019050919050565b60006020820190508181036000830152613812816137d6565b9050919050565b7f4578636565646564206d6178206d696e7420616d6f756e74207065722074726160008201527f6e73616374696f6e210000000000000000000000000000000000000000000000602082015250565b6000613875602983612a58565b915061388082613819565b604082019050919050565b600060208201905081810360008301526138a481613868565b9050919050565b60006138b682612aff565b91506138c183612aff565b92508282019050808211156138d9576138d8613638565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613915601483612a58565b9150613920826138df565b602082019050919050565b6000602082019050818103600083015261394481613908565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613981601783612a58565b915061398c8261394b565b602082019050919050565b600060208201905081810360008301526139b081613974565b9050919050565b60006139c282612aff565b91506139cd83612aff565b92508282039050818111156139e5576139e4613638565b5b92915050565b60006139f682612aff565b9150613a0183612aff565b9250828202613a0f81612aff565b91508282048414831517613a2657613a25613638565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a6782612aff565b9150613a7283612aff565b925082613a8257613a81613a2d565b5b828204905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613ac3601383612a58565b9150613ace82613a8d565b602082019050919050565b60006020820190508181036000830152613af281613ab6565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613b55602f83612a58565b9150613b6082613af9565b604082019050919050565b60006020820190508181036000830152613b8481613b48565b9050919050565b600081905092915050565b6000613ba182612a4d565b613bab8185613b8b565b9350613bbb818560208601612a69565b80840191505092915050565b60008154613bd48161315e565b613bde8186613b8b565b94506001821660008114613bf95760018114613c0e57613c41565b60ff1983168652811515820286019350613c41565b613c17856132b3565b60005b83811015613c3957815481890152600182019150602081019050613c1a565b838801955050505b50505092915050565b6000613c568286613b96565b9150613c628285613b96565b9150613c6e8284613bc7565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613cd7602683612a58565b9150613ce282613c7b565b604082019050919050565b60006020820190508181036000830152613d0681613cca565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d43602083612a58565b9150613d4e82613d0d565b602082019050919050565b60006020820190508181036000830152613d7281613d36565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613dd5602583612a58565b9150613de082613d79565b604082019050919050565b60006020820190508181036000830152613e0481613dc8565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613e67602483612a58565b9150613e7282613e0b565b604082019050919050565b60006020820190508181036000830152613e9681613e5a565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613ed3601983612a58565b9150613ede82613e9d565b602082019050919050565b60006020820190508181036000830152613f0281613ec6565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f65603283612a58565b9150613f7082613f09565b604082019050919050565b60006020820190508181036000830152613f9481613f58565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613fc282613f9b565b613fcc8185613fa6565b9350613fdc818560208601612a69565b613fe581612a93565b840191505092915050565b60006080820190506140056000830187612b94565b6140126020830186612b94565b61401f6040830185612c2a565b81810360608301526140318184613fb7565b905095945050505050565b60008151905061404b816129be565b92915050565b60006020828403121561406757614066612988565b5b60006140758482850161403c565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006140b4602083612a58565b91506140bf8261407e565b602082019050919050565b600060208201905081810360008301526140e3816140a7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614120601c83612a58565b915061412b826140ea565b602082019050919050565b6000602082019050818103600083015261414f81614113565b905091905056fea264697066735822122080590e20cc848999dc96e0f00655795b28f4da60dca643e060018e107d9eb11b64736f6c63430008110033697066733a2f2f62616679626569627078373479756d7868626b626a62786b336166346d6e626578757779366c6c346d6a3773723275626d693561326c6b6d666d792f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806362b99ad41161011857806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde1461077a578063c87b56dd146107a3578063d5abeb01146107e0578063e985e9c51461080b578063f2fde38b146108485761020f565b806395d89b41146106e1578063a0712d681461070c578063a22cb46514610728578063b071401b146107515761020f565b8063732496c9116100e7578063732496c9146105fa57806373b2e80e146106255780637ec4a659146106625780638da5cb5b1461068b57806394354fd0146106b65761020f565b806362b99ad41461053e5780636352211e1461056957806370a08231146105a6578063715018a6146105e35761020f565b80633ccfd60b1161019b578063438b63001161016a578063438b63001461044557806344a0d68a146104825780635503a0e8146104ab578063555a03cb146104d65780635c975abb146105135761020f565b80633ccfd60b146103b3578063407043fc146103ca57806342842e0e146103f357806342966c681461041c5761020f565b806313faede6116101e257806313faede6146102e257806316ba10e01461030d57806316c38b3c1461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906129ea565b610871565b6040516102489190612a32565b60405180910390f35b34801561025d57600080fd5b50610266610953565b6040516102739190612add565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612b35565b6109e5565b6040516102b09190612ba3565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612bea565b610a2b565b005b3480156102ee57600080fd5b506102f7610b42565b6040516103049190612c39565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612d89565b610b48565b005b34801561034257600080fd5b5061035d60048036038101906103589190612dfe565b610b63565b005b34801561036b57600080fd5b50610374610b88565b6040516103819190612c39565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612e2b565b610b99565b005b3480156103bf57600080fd5b506103c8610bf9565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612b35565b610c81565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612e2b565b610c93565b005b34801561042857600080fd5b50610443600480360381019061043e9190612b35565b610cb3565b005b34801561045157600080fd5b5061046c60048036038101906104679190612e7e565b610d0f565b6040516104799190612f69565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190612b35565b610e19565b005b3480156104b757600080fd5b506104c0610e2b565b6040516104cd9190612add565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190612e7e565b610eb9565b60405161050a9190612a32565b60405180910390f35b34801561051f57600080fd5b50610528610ed9565b6040516105359190612a32565b60405180910390f35b34801561054a57600080fd5b50610553610eec565b6040516105609190612add565b60405180910390f35b34801561057557600080fd5b50610590600480360381019061058b9190612b35565b610f7a565b60405161059d9190612ba3565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190612e7e565b611000565b6040516105da9190612c39565b60405180910390f35b3480156105ef57600080fd5b506105f86110b7565b005b34801561060657600080fd5b5061060f6110cb565b60405161061c9190612c39565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190612e7e565b6110d1565b6040516106599190612a32565b60405180910390f35b34801561066e57600080fd5b5061068960048036038101906106849190612d89565b611127565b005b34801561069757600080fd5b506106a0611142565b6040516106ad9190612ba3565b60405180910390f35b3480156106c257600080fd5b506106cb61116c565b6040516106d89190612c39565b60405180910390f35b3480156106ed57600080fd5b506106f6611172565b6040516107039190612add565b60405180910390f35b61072660048036038101906107219190612b35565b611204565b005b34801561073457600080fd5b5061074f600480360381019061074a9190612f8b565b6114ce565b005b34801561075d57600080fd5b5061077860048036038101906107739190612b35565b6114e4565b005b34801561078657600080fd5b506107a1600480360381019061079c919061306c565b6114f6565b005b3480156107af57600080fd5b506107ca60048036038101906107c59190612b35565b611558565b6040516107d79190612add565b60405180910390f35b3480156107ec57600080fd5b506107f5611602565b6040516108029190612c39565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d91906130ef565b611608565b60405161083f9190612a32565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a9190612e7e565b61169c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094c575061094b82611766565b5b9050919050565b6060600080546109629061315e565b80601f016020809104026020016040519081016040528092919081815260200182805461098e9061315e565b80156109db5780601f106109b0576101008083540402835291602001916109db565b820191906000526020600020905b8154815290600101906020018083116109be57829003601f168201915b5050505050905090565b60006109f0826117d0565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3682610f7a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d90613201565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac561181b565b73ffffffffffffffffffffffffffffffffffffffff161480610af45750610af381610aee61181b565b611608565b5b610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90613293565b60405180910390fd5b610b3d8383611823565b505050565b600a5481565b610b506118dc565b8060099081610b5f919061345f565b5050565b610b6b6118dc565b80600e60006101000a81548160ff02191690831515021790555050565b6000610b946007611735565b905090565b610baa610ba461181b565b8261195a565b610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be0906135a3565b60405180910390fd5b610bf48383836119ef565b505050565b610c016118dc565b6000610c0b611142565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c2e906135f4565b60006040518083038185875af1925050503d8060008114610c6b576040519150601f19603f3d011682016040523d82523d6000602084013e610c70565b606091505b5050905080610c7e57600080fd5b50565b610c896118dc565b80600d8190555050565b610cae838383604051806020016040528060008152506114f6565b505050565b610cc4610cbe61181b565b8261195a565b610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa906135a3565b60405180910390fd5b610d0c81611ce8565b50565b60606000610d1c83611000565b905060008167ffffffffffffffff811115610d3a57610d39612c5e565b5b604051908082528060200260200182016040528015610d685781602001602082028036833780820191505090505b50905060006001905060005b8381108015610d855750600b548211155b15610e0d576000610d9583610f7a565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610df95782848381518110610dde57610ddd613609565b5b6020026020010181815250508180610df590613667565b9250505b8280610e0490613667565b93505050610d74565b82945050505050919050565b610e216118dc565b80600a8190555050565b60098054610e389061315e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e649061315e565b8015610eb15780601f10610e8657610100808354040283529160200191610eb1565b820191906000526020600020905b815481529060010190602001808311610e9457829003601f168201915b505050505081565b600f6020528060005260406000206000915054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b60088054610ef99061315e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f259061315e565b8015610f725780601f10610f4757610100808354040283529160200191610f72565b820191906000526020600020905b815481529060010190602001808311610f5557829003601f168201915b505050505081565b600080610f8683611e36565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee906136fb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110679061378d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110bf6118dc565b6110c96000611e73565b565b600d5481565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61112f6118dc565b806008908161113e919061345f565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b6060600180546111819061315e565b80601f01602080910402602001604051908101604052809291908181526020018280546111ad9061315e565b80156111fa5780601f106111cf576101008083540402835291602001916111fa565b820191906000526020600020905b8154815290600101906020018083116111dd57829003601f168201915b5050505050905090565b8060008111611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f906137f9565b60405180910390fd5b600c5481111561128d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112849061388b565b60405180910390fd5b600b548161129b6007611735565b6112a591906138ab565b11156112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd9061392b565b60405180910390fd5b600e60009054906101000a900460ff1615611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d90613997565b60405180910390fd5b600080600d541180156113935750600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561141a576001816113a591906138ab565b90506001600d60008282546113ba91906139b7565b925050819055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000818461142891906139b7565b600a5461143591906139eb565b90506000600c54838661144891906139b7565b10611469576064600a8361145c91906139eb565b6114669190613a5c565b90505b6000818361147791906139b7565b9050803410156114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390613ad9565b60405180910390fd5b6114c63387611f39565b505050505050565b6114e06114d961181b565b8383611f79565b5050565b6114ec6118dc565b80600c8190555050565b61150761150161181b565b8361195a565b611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d906135a3565b60405180910390fd5b611552848484846120e5565b50505050565b606061156382612141565b6115a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159990613b6b565b60405180910390fd5b60006115ac612182565b905060008151116115cc57604051806020016040528060008152506115fa565b806115d684612214565b60096040516020016115ea93929190613c4a565b6040516020818303038152906040525b915050919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116a46118dc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a90613ced565b60405180910390fd5b61171c81611e73565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6117d981612141565b611818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180f906136fb565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661189683610f7a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118e461181b565b73ffffffffffffffffffffffffffffffffffffffff16611902611142565b73ffffffffffffffffffffffffffffffffffffffff1614611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90613d59565b60405180910390fd5b565b60008061196683610f7a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119a857506119a78185611608565b5b806119e657508373ffffffffffffffffffffffffffffffffffffffff166119ce846109e5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a0f82610f7a565b73ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90613deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acb90613e7d565b60405180910390fd5b611ae183838360016122e2565b8273ffffffffffffffffffffffffffffffffffffffff16611b0182610f7a565b73ffffffffffffffffffffffffffffffffffffffff1614611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e90613deb565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ce38383836001612408565b505050565b6000611cf382610f7a565b9050611d038160008460016122e2565b611d0c82610f7a565b90506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e32816000846001612408565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611f7457611f4e600761171f565b611f6183611f5c6007611735565b61240e565b8080611f6c90613667565b915050611f3c565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fde90613ee9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120d89190612a32565b60405180910390a3505050565b6120f08484846119ef565b6120fc8484848461242c565b61213b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213290613f7b565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661216383611e36565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600880546121919061315e565b80601f01602080910402602001604051908101604052809291908181526020018280546121bd9061315e565b801561220a5780601f106121df5761010080835404028352916020019161220a565b820191906000526020600020905b8154815290600101906020018083116121ed57829003601f168201915b5050505050905090565b606060006001612223846125b3565b01905060008167ffffffffffffffff81111561224257612241612c5e565b5b6040519080825280601f01601f1916602001820160405280156122745781602001600182028036833780820191505090505b509050600082602001820190505b6001156122d7578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816122cb576122ca613a2d565b5b04945060008503612282575b819350505050919050565b600181111561240257600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146123765780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461236e91906139b7565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124015780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f991906138ab565b925050819055505b5b50505050565b50505050565b612428828260405180602001604052806000815250612706565b5050565b600061244d8473ffffffffffffffffffffffffffffffffffffffff16611743565b156125a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261247661181b565b8786866040518563ffffffff1660e01b81526004016124989493929190613ff0565b6020604051808303816000875af19250505080156124d457506040513d601f19601f820116820180604052508101906124d19190614051565b60015b612556573d8060008114612504576040519150601f19603f3d011682016040523d82523d6000602084013e612509565b606091505b50600081510361254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254590613f7b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125ab565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612611577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161260757612606613a2d565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061264e576d04ee2d6d415b85acef8100000000838161264457612643613a2d565b5b0492506020810190505b662386f26fc10000831061267d57662386f26fc10000838161267357612672613a2d565b5b0492506010810190505b6305f5e10083106126a6576305f5e100838161269c5761269b613a2d565b5b0492506008810190505b61271083106126cb5761271083816126c1576126c0613a2d565b5b0492506004810190505b606483106126ee57606483816126e4576126e3613a2d565b5b0492506002810190505b600a83106126fd576001810190505b80915050919050565b6127108383612761565b61271d600084848461242c565b61275c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275390613f7b565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c7906140ca565b60405180910390fd5b6127d981612141565b15612819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281090614136565b60405180910390fd5b6128276000838360016122e2565b61283081612141565b15612870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286790614136565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461297a600083836001612408565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129c781612992565b81146129d257600080fd5b50565b6000813590506129e4816129be565b92915050565b600060208284031215612a00576129ff612988565b5b6000612a0e848285016129d5565b91505092915050565b60008115159050919050565b612a2c81612a17565b82525050565b6000602082019050612a476000830184612a23565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a87578082015181840152602081019050612a6c565b60008484015250505050565b6000601f19601f8301169050919050565b6000612aaf82612a4d565b612ab98185612a58565b9350612ac9818560208601612a69565b612ad281612a93565b840191505092915050565b60006020820190508181036000830152612af78184612aa4565b905092915050565b6000819050919050565b612b1281612aff565b8114612b1d57600080fd5b50565b600081359050612b2f81612b09565b92915050565b600060208284031215612b4b57612b4a612988565b5b6000612b5984828501612b20565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b8d82612b62565b9050919050565b612b9d81612b82565b82525050565b6000602082019050612bb86000830184612b94565b92915050565b612bc781612b82565b8114612bd257600080fd5b50565b600081359050612be481612bbe565b92915050565b60008060408385031215612c0157612c00612988565b5b6000612c0f85828601612bd5565b9250506020612c2085828601612b20565b9150509250929050565b612c3381612aff565b82525050565b6000602082019050612c4e6000830184612c2a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c9682612a93565b810181811067ffffffffffffffff82111715612cb557612cb4612c5e565b5b80604052505050565b6000612cc861297e565b9050612cd48282612c8d565b919050565b600067ffffffffffffffff821115612cf457612cf3612c5e565b5b612cfd82612a93565b9050602081019050919050565b82818337600083830152505050565b6000612d2c612d2784612cd9565b612cbe565b905082815260208101848484011115612d4857612d47612c59565b5b612d53848285612d0a565b509392505050565b600082601f830112612d7057612d6f612c54565b5b8135612d80848260208601612d19565b91505092915050565b600060208284031215612d9f57612d9e612988565b5b600082013567ffffffffffffffff811115612dbd57612dbc61298d565b5b612dc984828501612d5b565b91505092915050565b612ddb81612a17565b8114612de657600080fd5b50565b600081359050612df881612dd2565b92915050565b600060208284031215612e1457612e13612988565b5b6000612e2284828501612de9565b91505092915050565b600080600060608486031215612e4457612e43612988565b5b6000612e5286828701612bd5565b9350506020612e6386828701612bd5565b9250506040612e7486828701612b20565b9150509250925092565b600060208284031215612e9457612e93612988565b5b6000612ea284828501612bd5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612ee081612aff565b82525050565b6000612ef28383612ed7565b60208301905092915050565b6000602082019050919050565b6000612f1682612eab565b612f208185612eb6565b9350612f2b83612ec7565b8060005b83811015612f5c578151612f438882612ee6565b9750612f4e83612efe565b925050600181019050612f2f565b5085935050505092915050565b60006020820190508181036000830152612f838184612f0b565b905092915050565b60008060408385031215612fa257612fa1612988565b5b6000612fb085828601612bd5565b9250506020612fc185828601612de9565b9150509250929050565b600067ffffffffffffffff821115612fe657612fe5612c5e565b5b612fef82612a93565b9050602081019050919050565b600061300f61300a84612fcb565b612cbe565b90508281526020810184848401111561302b5761302a612c59565b5b613036848285612d0a565b509392505050565b600082601f83011261305357613052612c54565b5b8135613063848260208601612ffc565b91505092915050565b6000806000806080858703121561308657613085612988565b5b600061309487828801612bd5565b94505060206130a587828801612bd5565b93505060406130b687828801612b20565b925050606085013567ffffffffffffffff8111156130d7576130d661298d565b5b6130e38782880161303e565b91505092959194509250565b6000806040838503121561310657613105612988565b5b600061311485828601612bd5565b925050602061312585828601612bd5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061317657607f821691505b6020821081036131895761318861312f565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006131eb602183612a58565b91506131f68261318f565b604082019050919050565b6000602082019050818103600083015261321a816131de565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061327d603d83612a58565b915061328882613221565b604082019050919050565b600060208201905081810360008301526132ac81613270565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026133157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132d8565b61331f86836132d8565b95508019841693508086168417925050509392505050565b6000819050919050565b600061335c61335761335284612aff565b613337565b612aff565b9050919050565b6000819050919050565b61337683613341565b61338a61338282613363565b8484546132e5565b825550505050565b600090565b61339f613392565b6133aa81848461336d565b505050565b5b818110156133ce576133c3600082613397565b6001810190506133b0565b5050565b601f821115613413576133e4816132b3565b6133ed846132c8565b810160208510156133fc578190505b613410613408856132c8565b8301826133af565b50505b505050565b600082821c905092915050565b600061343660001984600802613418565b1980831691505092915050565b600061344f8383613425565b9150826002028217905092915050565b61346882612a4d565b67ffffffffffffffff81111561348157613480612c5e565b5b61348b825461315e565b6134968282856133d2565b600060209050601f8311600181146134c957600084156134b7578287015190505b6134c18582613443565b865550613529565b601f1984166134d7866132b3565b60005b828110156134ff578489015182556001820191506020850194506020810190506134da565b8683101561351c5784890151613518601f891682613425565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b600061358d602d83612a58565b915061359882613531565b604082019050919050565b600060208201905081810360008301526135bc81613580565b9050919050565b600081905092915050565b50565b60006135de6000836135c3565b91506135e9826135ce565b600082019050919050565b60006135ff826135d1565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061367282612aff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136a4576136a3613638565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006136e5601883612a58565b91506136f0826136af565b602082019050919050565b60006020820190508181036000830152613714816136d8565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613777602983612a58565b91506137828261371b565b604082019050919050565b600060208201905081810360008301526137a68161376a565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006137e3601483612a58565b91506137ee826137ad565b602082019050919050565b60006020820190508181036000830152613812816137d6565b9050919050565b7f4578636565646564206d6178206d696e7420616d6f756e74207065722074726160008201527f6e73616374696f6e210000000000000000000000000000000000000000000000602082015250565b6000613875602983612a58565b915061388082613819565b604082019050919050565b600060208201905081810360008301526138a481613868565b9050919050565b60006138b682612aff565b91506138c183612aff565b92508282019050808211156138d9576138d8613638565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613915601483612a58565b9150613920826138df565b602082019050919050565b6000602082019050818103600083015261394481613908565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613981601783612a58565b915061398c8261394b565b602082019050919050565b600060208201905081810360008301526139b081613974565b9050919050565b60006139c282612aff565b91506139cd83612aff565b92508282039050818111156139e5576139e4613638565b5b92915050565b60006139f682612aff565b9150613a0183612aff565b9250828202613a0f81612aff565b91508282048414831517613a2657613a25613638565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a6782612aff565b9150613a7283612aff565b925082613a8257613a81613a2d565b5b828204905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613ac3601383612a58565b9150613ace82613a8d565b602082019050919050565b60006020820190508181036000830152613af281613ab6565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613b55602f83612a58565b9150613b6082613af9565b604082019050919050565b60006020820190508181036000830152613b8481613b48565b9050919050565b600081905092915050565b6000613ba182612a4d565b613bab8185613b8b565b9350613bbb818560208601612a69565b80840191505092915050565b60008154613bd48161315e565b613bde8186613b8b565b94506001821660008114613bf95760018114613c0e57613c41565b60ff1983168652811515820286019350613c41565b613c17856132b3565b60005b83811015613c3957815481890152600182019150602081019050613c1a565b838801955050505b50505092915050565b6000613c568286613b96565b9150613c628285613b96565b9150613c6e8284613bc7565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613cd7602683612a58565b9150613ce282613c7b565b604082019050919050565b60006020820190508181036000830152613d0681613cca565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d43602083612a58565b9150613d4e82613d0d565b602082019050919050565b60006020820190508181036000830152613d7281613d36565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613dd5602583612a58565b9150613de082613d79565b604082019050919050565b60006020820190508181036000830152613e0481613dc8565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613e67602483612a58565b9150613e7282613e0b565b604082019050919050565b60006020820190508181036000830152613e9681613e5a565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613ed3601983612a58565b9150613ede82613e9d565b602082019050919050565b60006020820190508181036000830152613f0281613ec6565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f65603283612a58565b9150613f7082613f09565b604082019050919050565b60006020820190508181036000830152613f9481613f58565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613fc282613f9b565b613fcc8185613fa6565b9350613fdc818560208601612a69565b613fe581612a93565b840191505092915050565b60006080820190506140056000830187612b94565b6140126020830186612b94565b61401f6040830185612c2a565b81810360608301526140318184613fb7565b905095945050505050565b60008151905061404b816129be565b92915050565b60006020828403121561406757614066612988565b5b60006140758482850161403c565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006140b4602083612a58565b91506140bf8261407e565b602082019050919050565b600060208201905081810360008301526140e3816140a7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614120601c83612a58565b915061412b826140ea565b602082019050919050565b6000602082019050818103600083015261414f81614113565b905091905056fea264697066735822122080590e20cc848999dc96e0f00655795b28f4da60dca643e060018e107d9eb11b64736f6c63430008110033

Deployed Bytecode Sourcemap

57084:4356:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40382:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41310:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42822:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42340:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57407:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60583:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60697:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58079:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43522:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60788:147;;;;;;;;;;;;;:::i;:::-;;60349:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43928:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56760:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59047:685;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60117:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57365:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57606:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57571:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57263:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41020:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40751:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19813:103;;;;;;;;;;;;;:::i;:::-;;57529:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61319:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60469:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19165:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57484:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41479:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58182:857;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43065:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60205:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44184:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59740:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57446:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43291:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20071:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40382:305;40484:4;40536:25;40521:40;;;:11;:40;;;;:105;;;;40593:33;40578:48;;;:11;:48;;;;40521:105;:158;;;;40643:36;40667:11;40643:23;:36::i;:::-;40521:158;40501:178;;40382:305;;;:::o;41310:100::-;41364:13;41397:5;41390:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41310:100;:::o;42822:171::-;42898:7;42918:23;42933:7;42918:14;:23::i;:::-;42961:15;:24;42977:7;42961:24;;;;;;;;;;;;;;;;;;;;;42954:31;;42822:171;;;:::o;42340:416::-;42421:13;42437:23;42452:7;42437:14;:23::i;:::-;42421:39;;42485:5;42479:11;;:2;:11;;;42471:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;42579:5;42563:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;42588:37;42605:5;42612:12;:10;:12::i;:::-;42588:16;:37::i;:::-;42563:62;42541:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;42727:21;42736:2;42740:7;42727:8;:21::i;:::-;42410:346;42340:416;;:::o;57407:32::-;;;;:::o;60583:106::-;19051:13;:11;:13::i;:::-;60671:10:::1;60659:9;:22;;;;;;:::i;:::-;;60583:106:::0;:::o;60697:83::-;19051:13;:11;:13::i;:::-;60766:6:::1;60757;;:15;;;;;;;;;;;;;;;;;;60697:83:::0;:::o;58079:95::-;58123:7;58150:16;:6;:14;:16::i;:::-;58143:23;;58079:95;:::o;43522:335::-;43717:41;43736:12;:10;:12::i;:::-;43750:7;43717:18;:41::i;:::-;43709:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;43821:28;43831:4;43837:2;43841:7;43821:9;:28::i;:::-;43522:335;;;:::o;60788:147::-;19051:13;:11;:13::i;:::-;60837:7:::1;60858;:5;:7::i;:::-;60850:21;;60879;60850:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60836:69;;;60924:2;60916:11;;;::::0;::::1;;60825:110;60788:147::o:0;60349:112::-;19051:13;:11;:13::i;:::-;60440::::1;60425:12;:28;;;;60349:112:::0;:::o;43928:185::-;44066:39;44083:4;44089:2;44093:7;44066:39;;;;;;;;;;;;:16;:39::i;:::-;43928:185;;;:::o;56760:242::-;56878:41;56897:12;:10;:12::i;:::-;56911:7;56878:18;:41::i;:::-;56870:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;56980:14;56986:7;56980:5;:14::i;:::-;56760:242;:::o;59047:685::-;59107:16;59136:23;59162:17;59172:6;59162:9;:17::i;:::-;59136:43;;59190:30;59237:15;59223:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59190:63;;59264:22;59289:1;59264:26;;59301:23;59341:351;59366:15;59348;:33;:64;;;;;59403:9;;59385:14;:27;;59348:64;59341:351;;;59429:25;59457:23;59465:14;59457:7;:23::i;:::-;59429:51;;59522:6;59501:27;;:17;:27;;;59497:151;;59582:14;59549:13;59563:15;59549:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;59615:17;;;;;:::i;:::-;;;;59497:151;59664:16;;;;;:::i;:::-;;;;59414:278;59341:351;;;59711:13;59704:20;;;;;;59047:685;;;:::o;60117:80::-;19051:13;:11;:13::i;:::-;60184:5:::1;60177:4;:12;;;;60117:80:::0;:::o;57365:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57606:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;57571:26::-;;;;;;;;;;;;;:::o;57263:95::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41020:223::-;41092:7;41112:13;41128:17;41137:7;41128:8;:17::i;:::-;41112:33;;41181:1;41164:19;;:5;:19;;;41156:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;41230:5;41223:12;;;41020:223;;;:::o;40751:207::-;40823:7;40868:1;40851:19;;:5;:19;;;40843:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40934:9;:16;40944:5;40934:16;;;;;;;;;;;;;;;;40927:23;;40751:207;;;:::o;19813:103::-;19051:13;:11;:13::i;:::-;19878:30:::1;19905:1;19878:18;:30::i;:::-;19813:103::o:0;57529:33::-;;;;:::o;61319:118::-;61378:4;61402:17;:27;61420:8;61402:27;;;;;;;;;;;;;;;;;;;;;;;;;61395:34;;61319:118;;;:::o;60469:106::-;19051:13;:11;:13::i;:::-;60557:10:::1;60545:9;:22;;;;;;:::i;:::-;;60469:106:::0;:::o;19165:87::-;19211:7;19238:6;;;;;;;;;;;19231:13;;19165:87;:::o;57484:38::-;;;;:::o;41479:104::-;41535:13;41568:7;41561:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41479:104;:::o;58182:857::-;58247:11;57840:1;57826:11;:15;57818:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;57900:18;;57885:11;:33;;57877:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;58017:9;;58002:11;57983:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;57975:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;58280:6:::1;;;;;;;;;;;58279:7;58271:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;58327:23;58386:1:::0;58371:12:::1;;:16;:50;;;;;58392:17;:29;58410:10;58392:29;;;;;;;;;;;;;;;;;;;;;;;;;58391:30;58371:50;58367:186;;;58457:1;58438:20;;;;;:::i;:::-;;;58489:1;58473:12;;:17;;;;;;;:::i;:::-;;;;;;;;58537:4;58505:17;:29;58523:10;58505:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;58367:186;58565:17;58607:15;58593:11;:29;;;;:::i;:::-;58585:4;;:38;;;;:::i;:::-;58565:58;;58634:16;58706:18;;58686:15;58672:11;:29;;;;:::i;:::-;58671:53;58667:200;;58852:3;58847:2;58835:9;:14;;;;:::i;:::-;:20;;;;:::i;:::-;58824:31;;58667:200;58879:17;58911:8;58899:9;:20;;;;:::i;:::-;58879:40;;58951:9;58938;:22;;58930:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;58997:34;59007:10;59019:11;58997:9;:34::i;:::-;58260:779;;;;58182:857:::0;;:::o;43065:155::-;43160:52;43179:12;:10;:12::i;:::-;43193:8;43203;43160:18;:52::i;:::-;43065:155;;:::o;60205:136::-;19051:13;:11;:13::i;:::-;60314:19:::1;60293:18;:40;;;;60205:136:::0;:::o;44184:322::-;44358:41;44377:12;:10;:12::i;:::-;44391:7;44358:18;:41::i;:::-;44350:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;44460:38;44474:4;44480:2;44484:7;44493:4;44460:13;:38::i;:::-;44184:322;;;;:::o;59740:369::-;59814:13;59848:17;59856:8;59848:7;:17::i;:::-;59840:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;59930:28;59961:10;:8;:10::i;:::-;59930:41;;60020:1;59995:14;59989:28;:32;:112;;;;;;;;;;;;;;;;;60048:14;60064:19;:8;:17;:19::i;:::-;60085:9;60031:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59989:112;59982:119;;;59740:369;;;:::o;57446:31::-;;;;:::o;43291:164::-;43388:4;43412:18;:25;43431:5;43412:25;;;;;;;;;;;;;;;:35;43438:8;43412:35;;;;;;;;;;;;;;;;;;;;;;;;;43405:42;;43291:164;;;;:::o;20071:201::-;19051:13;:11;:13::i;:::-;20180:1:::1;20160:22;;:8;:22;;::::0;20152:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;20236:28;20255:8;20236:18;:28::i;:::-;20071:201:::0;:::o;1367:127::-;1474:1;1456:7;:14;;;:19;;;;;;;;;;;1367:127;:::o;1245:114::-;1310:7;1337;:14;;;1330:21;;1245:114;;;:::o;21863:326::-;21923:4;22180:1;22158:7;:19;;;:23;22151:30;;21863:326;;;:::o;32894:157::-;32979:4;33018:25;33003:40;;;:11;:40;;;;32996:47;;32894:157;;;:::o;52641:135::-;52723:16;52731:7;52723;:16::i;:::-;52715:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;52641:135;:::o;17716:98::-;17769:7;17796:10;17789:17;;17716:98;:::o;51920:174::-;52022:2;51995:15;:24;52011:7;51995:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52078:7;52074:2;52040:46;;52049:23;52064:7;52049:14;:23::i;:::-;52040:46;;;;;;;;;;;;51920:174;;:::o;19330:132::-;19405:12;:10;:12::i;:::-;19394:23;;:7;:5;:7::i;:::-;:23;;;19386:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19330:132::o;46539:264::-;46632:4;46649:13;46665:23;46680:7;46665:14;:23::i;:::-;46649:39;;46718:5;46707:16;;:7;:16;;;:52;;;;46727:32;46744:5;46751:7;46727:16;:32::i;:::-;46707:52;:87;;;;46787:7;46763:31;;:20;46775:7;46763:11;:20::i;:::-;:31;;;46707:87;46699:96;;;46539:264;;;;:::o;50538:1263::-;50697:4;50670:31;;:23;50685:7;50670:14;:23::i;:::-;:31;;;50662:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;50776:1;50762:16;;:2;:16;;;50754:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50832:42;50853:4;50859:2;50863:7;50872:1;50832:20;:42::i;:::-;51004:4;50977:31;;:23;50992:7;50977:14;:23::i;:::-;:31;;;50969:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51122:15;:24;51138:7;51122:24;;;;;;;;;;;;51115:31;;;;;;;;;;;51617:1;51598:9;:15;51608:4;51598:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;51650:1;51633:9;:13;51643:2;51633:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;51692:2;51673:7;:16;51681:7;51673:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;51731:7;51727:2;51712:27;;51721:4;51712:27;;;;;;;;;;;;51752:41;51772:4;51778:2;51782:7;51791:1;51752:19;:41::i;:::-;50538:1263;;;:::o;49418:783::-;49478:13;49494:23;49509:7;49494:14;:23::i;:::-;49478:39;;49530:51;49551:5;49566:1;49570:7;49579:1;49530:20;:51::i;:::-;49694:23;49709:7;49694:14;:23::i;:::-;49686:31;;49765:15;:24;49781:7;49765:24;;;;;;;;;;;;49758:31;;;;;;;;;;;50030:1;50010:9;:16;50020:5;50010:16;;;;;;;;;;;;;;;;:21;;;;;;;;;;;50060:7;:16;50068:7;50060:16;;;;;;;;;;;;50053:23;;;;;;;;;;;50122:7;50118:1;50094:36;;50103:5;50094:36;;;;;;;;;;;;50143:50;50163:5;50178:1;50182:7;50191:1;50143:19;:50::i;:::-;49467:734;49418:783;:::o;45814:117::-;45880:7;45907;:16;45915:7;45907:16;;;;;;;;;;;;;;;;;;;;;45900:23;;45814:117;;;:::o;20432:191::-;20506:16;20525:6;;;;;;;;;;;20506:25;;20551:8;20542:6;;:17;;;;;;;;;;;;;;;;;;20606:8;20575:40;;20596:8;20575:40;;;;;;;;;;;;20495:128;20432:191;:::o;60943:250::-;61022:9;61046:140;61057:11;61053:1;:15;61046:140;;;61085:18;:6;:16;:18::i;:::-;61118:38;61128:9;61139:16;:6;:14;:16::i;:::-;61118:9;:38::i;:::-;61171:3;;;;;:::i;:::-;;;;61046:140;;;61011:182;60943:250;;:::o;52237:315::-;52392:8;52383:17;;:5;:17;;;52375:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;52479:8;52441:18;:25;52460:5;52441:25;;;;;;;;;;;;;;;:35;52467:8;52441:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;52525:8;52503:41;;52518:5;52503:41;;;52535:8;52503:41;;;;;;:::i;:::-;;;;;;;;52237:315;;;:::o;45387:313::-;45543:28;45553:4;45559:2;45563:7;45543:9;:28::i;:::-;45590:47;45613:4;45619:2;45623:7;45632:4;45590:22;:47::i;:::-;45582:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;45387:313;;;;:::o;46244:128::-;46309:4;46362:1;46333:31;;:17;46342:7;46333:8;:17::i;:::-;:31;;;;46326:38;;46244:128;;;:::o;61201:110::-;61261:13;61294:9;61287:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61201:110;:::o;15143:716::-;15199:13;15250:14;15287:1;15267:17;15278:5;15267:10;:17::i;:::-;:21;15250:38;;15303:20;15337:6;15326:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15303:41;;15359:11;15488:6;15484:2;15480:15;15472:6;15468:28;15461:35;;15525:288;15532:4;15525:288;;;15557:5;;;;;;;;15699:8;15694:2;15687:5;15683:14;15678:30;15673:3;15665:44;15755:2;15746:11;;;;;;:::i;:::-;;;;;15789:1;15780:5;:10;15525:288;15776:21;15525:288;15834:6;15827:13;;;;;15143:716;;;:::o;54925:410::-;55115:1;55103:9;:13;55099:229;;;55153:1;55137:18;;:4;:18;;;55133:87;;55195:9;55176;:15;55186:4;55176:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;55133:87;55252:1;55238:16;;:2;:16;;;55234:83;;55292:9;55275;:13;55285:2;55275:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;55234:83;55099:229;54925:410;;;;:::o;56057:158::-;;;;;:::o;47145:110::-;47221:26;47231:2;47235:7;47221:26;;;;;;;;;;;;:9;:26::i;:::-;47145:110;;:::o;53340:853::-;53494:4;53515:15;:2;:13;;;:15::i;:::-;53511:675;;;53567:2;53551:36;;;53588:12;:10;:12::i;:::-;53602:4;53608:7;53617:4;53551:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53547:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53809:1;53792:6;:13;:18;53788:328;;53835:60;;;;;;;;;;:::i;:::-;;;;;;;;53788:328;54066:6;54060:13;54051:6;54047:2;54043:15;54036:38;53547:584;53683:41;;;53673:51;;;:6;:51;;;;53666:58;;;;;53511:675;54170:4;54163:11;;53340:853;;;;;;;:::o;12009:922::-;12062:7;12082:14;12099:1;12082:18;;12149:6;12140:5;:15;12136:102;;12185:6;12176:15;;;;;;:::i;:::-;;;;;12220:2;12210:12;;;;12136:102;12265:6;12256:5;:15;12252:102;;12301:6;12292:15;;;;;;:::i;:::-;;;;;12336:2;12326:12;;;;12252:102;12381:6;12372:5;:15;12368:102;;12417:6;12408:15;;;;;;:::i;:::-;;;;;12452:2;12442:12;;;;12368:102;12497:5;12488;:14;12484:99;;12532:5;12523:14;;;;;;:::i;:::-;;;;;12566:1;12556:11;;;;12484:99;12610:5;12601;:14;12597:99;;12645:5;12636:14;;;;;;:::i;:::-;;;;;12679:1;12669:11;;;;12597:99;12723:5;12714;:14;12710:99;;12758:5;12749:14;;;;;;:::i;:::-;;;;;12792:1;12782:11;;;;12710:99;12836:5;12827;:14;12823:66;;12872:1;12862:11;;;;12823:66;12917:6;12910:13;;;12009:922;;;:::o;47482:319::-;47611:18;47617:2;47621:7;47611:5;:18::i;:::-;47662:53;47693:1;47697:2;47701:7;47710:4;47662:22;:53::i;:::-;47640:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;47482:319;;;:::o;48137:942::-;48231:1;48217:16;;:2;:16;;;48209:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48290:16;48298:7;48290;:16::i;:::-;48289:17;48281:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48352:48;48381:1;48385:2;48389:7;48398:1;48352:20;:48::i;:::-;48499:16;48507:7;48499;:16::i;:::-;48498:17;48490:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48914:1;48897:9;:13;48907:2;48897:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;48958:2;48939:7;:16;48947:7;48939:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49003:7;48999:2;48978:33;;48995:1;48978:33;;;;;;;;;;;;49024:47;49052:1;49056:2;49060:7;49069:1;49024:19;:47::i;:::-;48137:942;;:::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:117::-;5351:1;5348;5341:12;5365:117;5474:1;5471;5464:12;5488:180;5536:77;5533:1;5526:88;5633:4;5630:1;5623:15;5657:4;5654:1;5647:15;5674:281;5757:27;5779:4;5757:27;:::i;:::-;5749:6;5745:40;5887:6;5875:10;5872:22;5851:18;5839:10;5836:34;5833:62;5830:88;;;5898:18;;:::i;:::-;5830:88;5938:10;5934:2;5927:22;5717:238;5674:281;;:::o;5961:129::-;5995:6;6022:20;;:::i;:::-;6012:30;;6051:33;6079:4;6071:6;6051:33;:::i;:::-;5961:129;;;:::o;6096:308::-;6158:4;6248:18;6240:6;6237:30;6234:56;;;6270:18;;:::i;:::-;6234:56;6308:29;6330:6;6308:29;:::i;:::-;6300:37;;6392:4;6386;6382:15;6374:23;;6096:308;;;:::o;6410:146::-;6507:6;6502:3;6497;6484:30;6548:1;6539:6;6534:3;6530:16;6523:27;6410:146;;;:::o;6562:425::-;6640:5;6665:66;6681:49;6723:6;6681:49;:::i;:::-;6665:66;:::i;:::-;6656:75;;6754:6;6747:5;6740:21;6792:4;6785:5;6781:16;6830:3;6821:6;6816:3;6812:16;6809:25;6806:112;;;6837:79;;:::i;:::-;6806:112;6927:54;6974:6;6969:3;6964;6927:54;:::i;:::-;6646:341;6562:425;;;;;:::o;7007:340::-;7063:5;7112:3;7105:4;7097:6;7093:17;7089:27;7079:122;;7120:79;;:::i;:::-;7079:122;7237:6;7224:20;7262:79;7337:3;7329:6;7322:4;7314:6;7310:17;7262:79;:::i;:::-;7253:88;;7069:278;7007:340;;;;:::o;7353:509::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7625:1;7614:9;7610:17;7597:31;7655:18;7647:6;7644:30;7641:117;;;7677:79;;:::i;:::-;7641:117;7782:63;7837:7;7828:6;7817:9;7813:22;7782:63;:::i;:::-;7772:73;;7568:287;7353:509;;;;:::o;7868:116::-;7938:21;7953:5;7938:21;:::i;:::-;7931:5;7928:32;7918:60;;7974:1;7971;7964:12;7918:60;7868:116;:::o;7990:133::-;8033:5;8071:6;8058:20;8049:29;;8087:30;8111:5;8087:30;:::i;:::-;7990:133;;;;:::o;8129:323::-;8185:6;8234:2;8222:9;8213:7;8209:23;8205:32;8202:119;;;8240:79;;:::i;:::-;8202:119;8360:1;8385:50;8427:7;8418:6;8407:9;8403:22;8385:50;:::i;:::-;8375:60;;8331:114;8129:323;;;;:::o;8458:619::-;8535:6;8543;8551;8600:2;8588:9;8579:7;8575:23;8571:32;8568:119;;;8606:79;;:::i;:::-;8568:119;8726:1;8751:53;8796:7;8787:6;8776:9;8772:22;8751:53;:::i;:::-;8741:63;;8697:117;8853:2;8879:53;8924:7;8915:6;8904:9;8900:22;8879:53;:::i;:::-;8869:63;;8824:118;8981:2;9007:53;9052:7;9043:6;9032:9;9028:22;9007:53;:::i;:::-;8997:63;;8952:118;8458:619;;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:114::-;9485:6;9519:5;9513:12;9503:22;;9418:114;;;:::o;9538:184::-;9637:11;9671:6;9666:3;9659:19;9711:4;9706:3;9702:14;9687:29;;9538:184;;;;:::o;9728:132::-;9795:4;9818:3;9810:11;;9848:4;9843:3;9839:14;9831:22;;9728:132;;;:::o;9866:108::-;9943:24;9961:5;9943:24;:::i;:::-;9938:3;9931:37;9866:108;;:::o;9980:179::-;10049:10;10070:46;10112:3;10104:6;10070:46;:::i;:::-;10148:4;10143:3;10139:14;10125:28;;9980:179;;;;:::o;10165:113::-;10235:4;10267;10262:3;10258:14;10250:22;;10165:113;;;:::o;10314:732::-;10433:3;10462:54;10510:5;10462:54;:::i;:::-;10532:86;10611:6;10606:3;10532:86;:::i;:::-;10525:93;;10642:56;10692:5;10642:56;:::i;:::-;10721:7;10752:1;10737:284;10762:6;10759:1;10756:13;10737:284;;;10838:6;10832:13;10865:63;10924:3;10909:13;10865:63;:::i;:::-;10858:70;;10951:60;11004:6;10951:60;:::i;:::-;10941:70;;10797:224;10784:1;10781;10777:9;10772:14;;10737:284;;;10741:14;11037:3;11030:10;;10438:608;;;10314:732;;;;:::o;11052:373::-;11195:4;11233:2;11222:9;11218:18;11210:26;;11282:9;11276:4;11272:20;11268:1;11257:9;11253:17;11246:47;11310:108;11413:4;11404:6;11310:108;:::i;:::-;11302:116;;11052:373;;;;:::o;11431:468::-;11496:6;11504;11553:2;11541:9;11532:7;11528:23;11524:32;11521:119;;;11559:79;;:::i;:::-;11521:119;11679:1;11704:53;11749:7;11740:6;11729:9;11725:22;11704:53;:::i;:::-;11694:63;;11650:117;11806:2;11832:50;11874:7;11865:6;11854:9;11850:22;11832:50;:::i;:::-;11822:60;;11777:115;11431:468;;;;;:::o;11905:307::-;11966:4;12056:18;12048:6;12045:30;12042:56;;;12078:18;;:::i;:::-;12042:56;12116:29;12138:6;12116:29;:::i;:::-;12108:37;;12200:4;12194;12190:15;12182:23;;11905:307;;;:::o;12218:423::-;12295:5;12320:65;12336:48;12377:6;12336:48;:::i;:::-;12320:65;:::i;:::-;12311:74;;12408:6;12401:5;12394:21;12446:4;12439:5;12435:16;12484:3;12475:6;12470:3;12466:16;12463:25;12460:112;;;12491:79;;:::i;:::-;12460:112;12581:54;12628:6;12623:3;12618;12581:54;:::i;:::-;12301:340;12218:423;;;;;:::o;12660:338::-;12715:5;12764:3;12757:4;12749:6;12745:17;12741:27;12731:122;;12772:79;;:::i;:::-;12731:122;12889:6;12876:20;12914:78;12988:3;12980:6;12973:4;12965:6;12961:17;12914:78;:::i;:::-;12905:87;;12721:277;12660:338;;;;:::o;13004:943::-;13099:6;13107;13115;13123;13172:3;13160:9;13151:7;13147:23;13143:33;13140:120;;;13179:79;;:::i;:::-;13140:120;13299:1;13324:53;13369:7;13360:6;13349:9;13345:22;13324:53;:::i;:::-;13314:63;;13270:117;13426:2;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13397:118;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13710:2;13699:9;13695:18;13682:32;13741:18;13733:6;13730:30;13727:117;;;13763:79;;:::i;:::-;13727:117;13868:62;13922:7;13913:6;13902:9;13898:22;13868:62;:::i;:::-;13858:72;;13653:287;13004:943;;;;;;;:::o;13953:474::-;14021:6;14029;14078:2;14066:9;14057:7;14053:23;14049:32;14046:119;;;14084:79;;:::i;:::-;14046:119;14204:1;14229:53;14274:7;14265:6;14254:9;14250:22;14229:53;:::i;:::-;14219:63;;14175:117;14331:2;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14302:118;13953:474;;;;;:::o;14433:180::-;14481:77;14478:1;14471:88;14578:4;14575:1;14568:15;14602:4;14599:1;14592:15;14619:320;14663:6;14700:1;14694:4;14690:12;14680:22;;14747:1;14741:4;14737:12;14768:18;14758:81;;14824:4;14816:6;14812:17;14802:27;;14758:81;14886:2;14878:6;14875:14;14855:18;14852:38;14849:84;;14905:18;;:::i;:::-;14849:84;14670:269;14619:320;;;:::o;14945:220::-;15085:34;15081:1;15073:6;15069:14;15062:58;15154:3;15149:2;15141:6;15137:15;15130:28;14945:220;:::o;15171:366::-;15313:3;15334:67;15398:2;15393:3;15334:67;:::i;:::-;15327:74;;15410:93;15499:3;15410:93;:::i;:::-;15528:2;15523:3;15519:12;15512:19;;15171:366;;;:::o;15543:419::-;15709:4;15747:2;15736:9;15732:18;15724:26;;15796:9;15790:4;15786:20;15782:1;15771:9;15767:17;15760:47;15824:131;15950:4;15824:131;:::i;:::-;15816:139;;15543:419;;;:::o;15968:248::-;16108:34;16104:1;16096:6;16092:14;16085:58;16177:31;16172:2;16164:6;16160:15;16153:56;15968:248;:::o;16222:366::-;16364:3;16385:67;16449:2;16444:3;16385:67;:::i;:::-;16378:74;;16461:93;16550:3;16461:93;:::i;:::-;16579:2;16574:3;16570:12;16563:19;;16222:366;;;:::o;16594:419::-;16760:4;16798:2;16787:9;16783:18;16775:26;;16847:9;16841:4;16837:20;16833:1;16822:9;16818:17;16811:47;16875:131;17001:4;16875:131;:::i;:::-;16867:139;;16594:419;;;:::o;17019:141::-;17068:4;17091:3;17083:11;;17114:3;17111:1;17104:14;17148:4;17145:1;17135:18;17127:26;;17019:141;;;:::o;17166:93::-;17203:6;17250:2;17245;17238:5;17234:14;17230:23;17220:33;;17166:93;;;:::o;17265:107::-;17309:8;17359:5;17353:4;17349:16;17328:37;;17265:107;;;;:::o;17378:393::-;17447:6;17497:1;17485:10;17481:18;17520:97;17550:66;17539:9;17520:97;:::i;:::-;17638:39;17668:8;17657:9;17638:39;:::i;:::-;17626:51;;17710:4;17706:9;17699:5;17695:21;17686:30;;17759:4;17749:8;17745:19;17738:5;17735:30;17725:40;;17454:317;;17378:393;;;;;:::o;17777:60::-;17805:3;17826:5;17819:12;;17777:60;;;:::o;17843:142::-;17893:9;17926:53;17944:34;17953:24;17971:5;17953:24;:::i;:::-;17944:34;:::i;:::-;17926:53;:::i;:::-;17913:66;;17843:142;;;:::o;17991:75::-;18034:3;18055:5;18048:12;;17991:75;;;:::o;18072:269::-;18182:39;18213:7;18182:39;:::i;:::-;18243:91;18292:41;18316:16;18292:41;:::i;:::-;18284:6;18277:4;18271:11;18243:91;:::i;:::-;18237:4;18230:105;18148:193;18072:269;;;:::o;18347:73::-;18392:3;18347:73;:::o;18426:189::-;18503:32;;:::i;:::-;18544:65;18602:6;18594;18588:4;18544:65;:::i;:::-;18479:136;18426:189;;:::o;18621:186::-;18681:120;18698:3;18691:5;18688:14;18681:120;;;18752:39;18789:1;18782:5;18752:39;:::i;:::-;18725:1;18718:5;18714:13;18705:22;;18681:120;;;18621:186;;:::o;18813:543::-;18914:2;18909:3;18906:11;18903:446;;;18948:38;18980:5;18948:38;:::i;:::-;19032:29;19050:10;19032:29;:::i;:::-;19022:8;19018:44;19215:2;19203:10;19200:18;19197:49;;;19236:8;19221:23;;19197:49;19259:80;19315:22;19333:3;19315:22;:::i;:::-;19305:8;19301:37;19288:11;19259:80;:::i;:::-;18918:431;;18903:446;18813:543;;;:::o;19362:117::-;19416:8;19466:5;19460:4;19456:16;19435:37;;19362:117;;;;:::o;19485:169::-;19529:6;19562:51;19610:1;19606:6;19598:5;19595:1;19591:13;19562:51;:::i;:::-;19558:56;19643:4;19637;19633:15;19623:25;;19536:118;19485:169;;;;:::o;19659:295::-;19735:4;19881:29;19906:3;19900:4;19881:29;:::i;:::-;19873:37;;19943:3;19940:1;19936:11;19930:4;19927:21;19919:29;;19659:295;;;;:::o;19959:1395::-;20076:37;20109:3;20076:37;:::i;:::-;20178:18;20170:6;20167:30;20164:56;;;20200:18;;:::i;:::-;20164:56;20244:38;20276:4;20270:11;20244:38;:::i;:::-;20329:67;20389:6;20381;20375:4;20329:67;:::i;:::-;20423:1;20447:4;20434:17;;20479:2;20471:6;20468:14;20496:1;20491:618;;;;21153:1;21170:6;21167:77;;;21219:9;21214:3;21210:19;21204:26;21195:35;;21167:77;21270:67;21330:6;21323:5;21270:67;:::i;:::-;21264:4;21257:81;21126:222;20461:887;;20491:618;20543:4;20539:9;20531:6;20527:22;20577:37;20609:4;20577:37;:::i;:::-;20636:1;20650:208;20664:7;20661:1;20658:14;20650:208;;;20743:9;20738:3;20734:19;20728:26;20720:6;20713:42;20794:1;20786:6;20782:14;20772:24;;20841:2;20830:9;20826:18;20813:31;;20687:4;20684:1;20680:12;20675:17;;20650:208;;;20886:6;20877:7;20874:19;20871:179;;;20944:9;20939:3;20935:19;20929:26;20987:48;21029:4;21021:6;21017:17;21006:9;20987:48;:::i;:::-;20979:6;20972:64;20894:156;20871:179;21096:1;21092;21084:6;21080:14;21076:22;21070:4;21063:36;20498:611;;;20461:887;;20051:1303;;;19959:1395;;:::o;21360:232::-;21500:34;21496:1;21488:6;21484:14;21477:58;21569:15;21564:2;21556:6;21552:15;21545:40;21360:232;:::o;21598:366::-;21740:3;21761:67;21825:2;21820:3;21761:67;:::i;:::-;21754:74;;21837:93;21926:3;21837:93;:::i;:::-;21955:2;21950:3;21946:12;21939:19;;21598:366;;;:::o;21970:419::-;22136:4;22174:2;22163:9;22159:18;22151:26;;22223:9;22217:4;22213:20;22209:1;22198:9;22194:17;22187:47;22251:131;22377:4;22251:131;:::i;:::-;22243:139;;21970:419;;;:::o;22395:147::-;22496:11;22533:3;22518:18;;22395:147;;;;:::o;22548:114::-;;:::o;22668:398::-;22827:3;22848:83;22929:1;22924:3;22848:83;:::i;:::-;22841:90;;22940:93;23029:3;22940:93;:::i;:::-;23058:1;23053:3;23049:11;23042:18;;22668:398;;;:::o;23072:379::-;23256:3;23278:147;23421:3;23278:147;:::i;:::-;23271:154;;23442:3;23435:10;;23072:379;;;:::o;23457:180::-;23505:77;23502:1;23495:88;23602:4;23599:1;23592:15;23626:4;23623:1;23616:15;23643:180;23691:77;23688:1;23681:88;23788:4;23785:1;23778:15;23812:4;23809:1;23802:15;23829:233;23868:3;23891:24;23909:5;23891:24;:::i;:::-;23882:33;;23937:66;23930:5;23927:77;23924:103;;24007:18;;:::i;:::-;23924:103;24054:1;24047:5;24043:13;24036:20;;23829:233;;;:::o;24068:174::-;24208:26;24204:1;24196:6;24192:14;24185:50;24068:174;:::o;24248:366::-;24390:3;24411:67;24475:2;24470:3;24411:67;:::i;:::-;24404:74;;24487:93;24576:3;24487:93;:::i;:::-;24605:2;24600:3;24596:12;24589:19;;24248:366;;;:::o;24620:419::-;24786:4;24824:2;24813:9;24809:18;24801:26;;24873:9;24867:4;24863:20;24859:1;24848:9;24844:17;24837:47;24901:131;25027:4;24901:131;:::i;:::-;24893:139;;24620:419;;;:::o;25045:228::-;25185:34;25181:1;25173:6;25169:14;25162:58;25254:11;25249:2;25241:6;25237:15;25230:36;25045:228;:::o;25279:366::-;25421:3;25442:67;25506:2;25501:3;25442:67;:::i;:::-;25435:74;;25518:93;25607:3;25518:93;:::i;:::-;25636:2;25631:3;25627:12;25620:19;;25279:366;;;:::o;25651:419::-;25817:4;25855:2;25844:9;25840:18;25832:26;;25904:9;25898:4;25894:20;25890:1;25879:9;25875:17;25868:47;25932:131;26058:4;25932:131;:::i;:::-;25924:139;;25651:419;;;:::o;26076:170::-;26216:22;26212:1;26204:6;26200:14;26193:46;26076:170;:::o;26252:366::-;26394:3;26415:67;26479:2;26474:3;26415:67;:::i;:::-;26408:74;;26491:93;26580:3;26491:93;:::i;:::-;26609:2;26604:3;26600:12;26593:19;;26252:366;;;:::o;26624:419::-;26790:4;26828:2;26817:9;26813:18;26805:26;;26877:9;26871:4;26867:20;26863:1;26852:9;26848:17;26841:47;26905:131;27031:4;26905:131;:::i;:::-;26897:139;;26624:419;;;:::o;27049:228::-;27189:34;27185:1;27177:6;27173:14;27166:58;27258:11;27253:2;27245:6;27241:15;27234:36;27049:228;:::o;27283:366::-;27425:3;27446:67;27510:2;27505:3;27446:67;:::i;:::-;27439:74;;27522:93;27611:3;27522:93;:::i;:::-;27640:2;27635:3;27631:12;27624:19;;27283:366;;;:::o;27655:419::-;27821:4;27859:2;27848:9;27844:18;27836:26;;27908:9;27902:4;27898:20;27894:1;27883:9;27879:17;27872:47;27936:131;28062:4;27936:131;:::i;:::-;27928:139;;27655:419;;;:::o;28080:191::-;28120:3;28139:20;28157:1;28139:20;:::i;:::-;28134:25;;28173:20;28191:1;28173:20;:::i;:::-;28168:25;;28216:1;28213;28209:9;28202:16;;28237:3;28234:1;28231:10;28228:36;;;28244:18;;:::i;:::-;28228:36;28080:191;;;;:::o;28277:170::-;28417:22;28413:1;28405:6;28401:14;28394:46;28277:170;:::o;28453:366::-;28595:3;28616:67;28680:2;28675:3;28616:67;:::i;:::-;28609:74;;28692:93;28781:3;28692:93;:::i;:::-;28810:2;28805:3;28801:12;28794:19;;28453:366;;;:::o;28825:419::-;28991:4;29029:2;29018:9;29014:18;29006:26;;29078:9;29072:4;29068:20;29064:1;29053:9;29049:17;29042:47;29106:131;29232:4;29106:131;:::i;:::-;29098:139;;28825:419;;;:::o;29250:173::-;29390:25;29386:1;29378:6;29374:14;29367:49;29250:173;:::o;29429:366::-;29571:3;29592:67;29656:2;29651:3;29592:67;:::i;:::-;29585:74;;29668:93;29757:3;29668:93;:::i;:::-;29786:2;29781:3;29777:12;29770:19;;29429:366;;;:::o;29801:419::-;29967:4;30005:2;29994:9;29990:18;29982:26;;30054:9;30048:4;30044:20;30040:1;30029:9;30025:17;30018:47;30082:131;30208:4;30082:131;:::i;:::-;30074:139;;29801:419;;;:::o;30226:194::-;30266:4;30286:20;30304:1;30286:20;:::i;:::-;30281:25;;30320:20;30338:1;30320:20;:::i;:::-;30315:25;;30364:1;30361;30357:9;30349:17;;30388:1;30382:4;30379:11;30376:37;;;30393:18;;:::i;:::-;30376:37;30226:194;;;;:::o;30426:410::-;30466:7;30489:20;30507:1;30489:20;:::i;:::-;30484:25;;30523:20;30541:1;30523:20;:::i;:::-;30518:25;;30578:1;30575;30571:9;30600:30;30618:11;30600:30;:::i;:::-;30589:41;;30779:1;30770:7;30766:15;30763:1;30760:22;30740:1;30733:9;30713:83;30690:139;;30809:18;;:::i;:::-;30690:139;30474:362;30426:410;;;;:::o;30842:180::-;30890:77;30887:1;30880:88;30987:4;30984:1;30977:15;31011:4;31008:1;31001:15;31028:185;31068:1;31085:20;31103:1;31085:20;:::i;:::-;31080:25;;31119:20;31137:1;31119:20;:::i;:::-;31114:25;;31158:1;31148:35;;31163:18;;:::i;:::-;31148:35;31205:1;31202;31198:9;31193:14;;31028:185;;;;:::o;31219:169::-;31359:21;31355:1;31347:6;31343:14;31336:45;31219:169;:::o;31394:366::-;31536:3;31557:67;31621:2;31616:3;31557:67;:::i;:::-;31550:74;;31633:93;31722:3;31633:93;:::i;:::-;31751:2;31746:3;31742:12;31735:19;;31394:366;;;:::o;31766:419::-;31932:4;31970:2;31959:9;31955:18;31947:26;;32019:9;32013:4;32009:20;32005:1;31994:9;31990:17;31983:47;32047:131;32173:4;32047:131;:::i;:::-;32039:139;;31766:419;;;:::o;32191:234::-;32331:34;32327:1;32319:6;32315:14;32308:58;32400:17;32395:2;32387:6;32383:15;32376:42;32191:234;:::o;32431:366::-;32573:3;32594:67;32658:2;32653:3;32594:67;:::i;:::-;32587:74;;32670:93;32759:3;32670:93;:::i;:::-;32788:2;32783:3;32779:12;32772:19;;32431:366;;;:::o;32803:419::-;32969:4;33007:2;32996:9;32992:18;32984:26;;33056:9;33050:4;33046:20;33042:1;33031:9;33027:17;33020:47;33084:131;33210:4;33084:131;:::i;:::-;33076:139;;32803:419;;;:::o;33228:148::-;33330:11;33367:3;33352:18;;33228:148;;;;:::o;33382:390::-;33488:3;33516:39;33549:5;33516:39;:::i;:::-;33571:89;33653:6;33648:3;33571:89;:::i;:::-;33564:96;;33669:65;33727:6;33722:3;33715:4;33708:5;33704:16;33669:65;:::i;:::-;33759:6;33754:3;33750:16;33743:23;;33492:280;33382:390;;;;:::o;33802:874::-;33905:3;33942:5;33936:12;33971:36;33997:9;33971:36;:::i;:::-;34023:89;34105:6;34100:3;34023:89;:::i;:::-;34016:96;;34143:1;34132:9;34128:17;34159:1;34154:166;;;;34334:1;34329:341;;;;34121:549;;34154:166;34238:4;34234:9;34223;34219:25;34214:3;34207:38;34300:6;34293:14;34286:22;34278:6;34274:35;34269:3;34265:45;34258:52;;34154:166;;34329:341;34396:38;34428:5;34396:38;:::i;:::-;34456:1;34470:154;34484:6;34481:1;34478:13;34470:154;;;34558:7;34552:14;34548:1;34543:3;34539:11;34532:35;34608:1;34599:7;34595:15;34584:26;;34506:4;34503:1;34499:12;34494:17;;34470:154;;;34653:6;34648:3;34644:16;34637:23;;34336:334;;34121:549;;33909:767;;33802:874;;;;:::o;34682:589::-;34907:3;34929:95;35020:3;35011:6;34929:95;:::i;:::-;34922:102;;35041:95;35132:3;35123:6;35041:95;:::i;:::-;35034:102;;35153:92;35241:3;35232:6;35153:92;:::i;:::-;35146:99;;35262:3;35255:10;;34682:589;;;;;;:::o;35277:225::-;35417:34;35413:1;35405:6;35401:14;35394:58;35486:8;35481:2;35473:6;35469:15;35462:33;35277:225;:::o;35508:366::-;35650:3;35671:67;35735:2;35730:3;35671:67;:::i;:::-;35664:74;;35747:93;35836:3;35747:93;:::i;:::-;35865:2;35860:3;35856:12;35849:19;;35508:366;;;:::o;35880:419::-;36046:4;36084:2;36073:9;36069:18;36061:26;;36133:9;36127:4;36123:20;36119:1;36108:9;36104:17;36097:47;36161:131;36287:4;36161:131;:::i;:::-;36153:139;;35880:419;;;:::o;36305:182::-;36445:34;36441:1;36433:6;36429:14;36422:58;36305:182;:::o;36493:366::-;36635:3;36656:67;36720:2;36715:3;36656:67;:::i;:::-;36649:74;;36732:93;36821:3;36732:93;:::i;:::-;36850:2;36845:3;36841:12;36834:19;;36493:366;;;:::o;36865:419::-;37031:4;37069:2;37058:9;37054:18;37046:26;;37118:9;37112:4;37108:20;37104:1;37093:9;37089:17;37082:47;37146:131;37272:4;37146:131;:::i;:::-;37138:139;;36865:419;;;:::o;37290:224::-;37430:34;37426:1;37418:6;37414:14;37407:58;37499:7;37494:2;37486:6;37482:15;37475:32;37290:224;:::o;37520:366::-;37662:3;37683:67;37747:2;37742:3;37683:67;:::i;:::-;37676:74;;37759:93;37848:3;37759:93;:::i;:::-;37877:2;37872:3;37868:12;37861:19;;37520:366;;;:::o;37892:419::-;38058:4;38096:2;38085:9;38081:18;38073:26;;38145:9;38139:4;38135:20;38131:1;38120:9;38116:17;38109:47;38173:131;38299:4;38173:131;:::i;:::-;38165:139;;37892:419;;;:::o;38317:223::-;38457:34;38453:1;38445:6;38441:14;38434:58;38526:6;38521:2;38513:6;38509:15;38502:31;38317:223;:::o;38546:366::-;38688:3;38709:67;38773:2;38768:3;38709:67;:::i;:::-;38702:74;;38785:93;38874:3;38785:93;:::i;:::-;38903:2;38898:3;38894:12;38887:19;;38546:366;;;:::o;38918:419::-;39084:4;39122:2;39111:9;39107:18;39099:26;;39171:9;39165:4;39161:20;39157:1;39146:9;39142:17;39135:47;39199:131;39325:4;39199:131;:::i;:::-;39191:139;;38918:419;;;:::o;39343:175::-;39483:27;39479:1;39471:6;39467:14;39460:51;39343:175;:::o;39524:366::-;39666:3;39687:67;39751:2;39746:3;39687:67;:::i;:::-;39680:74;;39763:93;39852:3;39763:93;:::i;:::-;39881:2;39876:3;39872:12;39865:19;;39524:366;;;:::o;39896:419::-;40062:4;40100:2;40089:9;40085:18;40077:26;;40149:9;40143:4;40139:20;40135:1;40124:9;40120:17;40113:47;40177:131;40303:4;40177:131;:::i;:::-;40169:139;;39896:419;;;:::o;40321:237::-;40461:34;40457:1;40449:6;40445:14;40438:58;40530:20;40525:2;40517:6;40513:15;40506:45;40321:237;:::o;40564:366::-;40706:3;40727:67;40791:2;40786:3;40727:67;:::i;:::-;40720:74;;40803:93;40892:3;40803:93;:::i;:::-;40921:2;40916:3;40912:12;40905:19;;40564:366;;;:::o;40936:419::-;41102:4;41140:2;41129:9;41125:18;41117:26;;41189:9;41183:4;41179:20;41175:1;41164:9;41160:17;41153:47;41217:131;41343:4;41217:131;:::i;:::-;41209:139;;40936:419;;;:::o;41361:98::-;41412:6;41446:5;41440:12;41430:22;;41361:98;;;:::o;41465:168::-;41548:11;41582:6;41577:3;41570:19;41622:4;41617:3;41613:14;41598:29;;41465:168;;;;:::o;41639:373::-;41725:3;41753:38;41785:5;41753:38;:::i;:::-;41807:70;41870:6;41865:3;41807:70;:::i;:::-;41800:77;;41886:65;41944:6;41939:3;41932:4;41925:5;41921:16;41886:65;:::i;:::-;41976:29;41998:6;41976:29;:::i;:::-;41971:3;41967:39;41960:46;;41729:283;41639:373;;;;:::o;42018:640::-;42213:4;42251:3;42240:9;42236:19;42228:27;;42265:71;42333:1;42322:9;42318:17;42309:6;42265:71;:::i;:::-;42346:72;42414:2;42403:9;42399:18;42390:6;42346:72;:::i;:::-;42428;42496:2;42485:9;42481:18;42472:6;42428:72;:::i;:::-;42547:9;42541:4;42537:20;42532:2;42521:9;42517:18;42510:48;42575:76;42646:4;42637:6;42575:76;:::i;:::-;42567:84;;42018:640;;;;;;;:::o;42664:141::-;42720:5;42751:6;42745:13;42736:22;;42767:32;42793:5;42767:32;:::i;:::-;42664:141;;;;:::o;42811:349::-;42880:6;42929:2;42917:9;42908:7;42904:23;42900:32;42897:119;;;42935:79;;:::i;:::-;42897:119;43055:1;43080:63;43135:7;43126:6;43115:9;43111:22;43080:63;:::i;:::-;43070:73;;43026:127;42811:349;;;;:::o;43166:182::-;43306:34;43302:1;43294:6;43290:14;43283:58;43166:182;:::o;43354:366::-;43496:3;43517:67;43581:2;43576:3;43517:67;:::i;:::-;43510:74;;43593:93;43682:3;43593:93;:::i;:::-;43711:2;43706:3;43702:12;43695:19;;43354:366;;;:::o;43726:419::-;43892:4;43930:2;43919:9;43915:18;43907:26;;43979:9;43973:4;43969:20;43965:1;43954:9;43950:17;43943:47;44007:131;44133:4;44007:131;:::i;:::-;43999:139;;43726:419;;;:::o;44151:178::-;44291:30;44287:1;44279:6;44275:14;44268:54;44151:178;:::o;44335:366::-;44477:3;44498:67;44562:2;44557:3;44498:67;:::i;:::-;44491:74;;44574:93;44663:3;44574:93;:::i;:::-;44692:2;44687:3;44683:12;44676:19;;44335:366;;;:::o;44707:419::-;44873:4;44911:2;44900:9;44896:18;44888:26;;44960:9;44954:4;44950:20;44946:1;44935:9;44931:17;44924:47;44988:131;45114:4;44988:131;:::i;:::-;44980:139;;44707:419;;;:::o

Swarm Source

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