ETH Price: $3,439.96 (-1.17%)
Gas: 11 Gwei

Token

ELMOFOS (LMFO)
 

Overview

Max Total Supply

486 LMFO

Holders

261

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LMFO
0x772eec10a4fbc49e7bed6bbc4a8a562262b435ed
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:
ElmoNFTContract

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

        uint256 tokenId = firstTokenId;

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/elmo_nft.sol



pragma solidity ^0.8.4;




contract ElmoNFTContract is ERC721Enumerable, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string public baseURI;
    uint256 public constant MAX_SUPPLY = 1000;
    uint256 public constant MAX_MINT_PER_TXN = 10;
    uint256 public constant MAX_MINT_PER_WALLET = 20;
    uint256 public constant NFT_PRICE = 0.3 ether;
    mapping(address => uint256) public walletNFTCount;
    mapping(uint256 => bool) private _mintedTokens;
	
	bool public mintStarted = false;

    event Minted(address indexed to, uint256 indexed tokenId, uint256 amount);
    event Withdrawn(address indexed to, uint256 amount);

    constructor(string memory name, string memory symbol) ERC721(name, symbol) {}

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

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

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

        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"))
            : '';
    }
	
	function startMint() public onlyOwner {
        require(!mintStarted, "Mint has already started");
        mintStarted = true;
    }
	
	function preMint(uint256[] memory tokenIds, address to) public onlyOwner nonReentrant {
		require(!mintStarted, "You cannot premint if mint already started");
		require(tokenIds.length + totalSupply() <= MAX_SUPPLY, "Exceeds maximum NFT supply");
		require(walletNFTCount[to] + tokenIds.length <= MAX_MINT_PER_WALLET, "Exceeds maximum NFT per wallet");

		for (uint256 i = 0; i < tokenIds.length; i++) {
			require(_mintedTokens[tokenIds[i]] == false, "Token already minted");
			_mintedTokens[tokenIds[i]] = true;
			_safeMint(to, tokenIds[i]);
		}

		walletNFTCount[to] += tokenIds.length;
	}

    function mint(uint256 num) public payable nonReentrant {
		require(mintStarted, "Mint has not started yet");
        uint256 supply = totalSupply();
        require(num <= MAX_MINT_PER_TXN, "You cannot mint more than 10 NFTs at once");
        require(supply + num <= MAX_SUPPLY, "Exceeds maximum NFT supply");
        require(NFT_PRICE * num <= msg.value, "Ether value sent is not correct");
        require(walletNFTCount[msg.sender] + num <= MAX_MINT_PER_WALLET, "Exceeds maximum NFT per wallet");

        for(uint256 i; i < num; i++) {
            uint256 newId = _generateRandomTokenId();
            require(_mintedTokens[newId] == false, "Token already minted");
            _mintedTokens[newId] = true;
            _safeMint(msg.sender, newId);
            emit Minted(msg.sender, newId, msg.value);
        }

        walletNFTCount[msg.sender] += num;

        // Refund excess Ether sent
        uint256 price = NFT_PRICE * num;
        if(msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    function _generateRandomTokenId() internal view returns (uint256) {
        uint256 randomNum = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender, totalSupply()))) % MAX_SUPPLY;
        while(_mintedTokens[randomNum]) {
            randomNum = (randomNum + 1) % MAX_SUPPLY;
        }
        return randomNum;
    }

    function walletNftBalance(address _walletAddress) public view returns(uint256) {
        return walletNFTCount[_walletAddress];
    }

    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            for(uint256 i; i < tokenCount; i++){
                result[i] = tokenOfOwnerByIndex(_owner, i);
            }
            return result;
        }
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
        emit Withdrawn(msg.sender, balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"address","name":"to","type":"address"}],"name":"preMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletNFTCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_walletAddress","type":"address"}],"name":"walletNftBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600f60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620053943803806200539483398181016040528101906200005291906200030b565b81818160009081620000659190620005db565b508060019081620000779190620005db565b5050506200009a6200008e620000aa60201b60201c565b620000b260201b60201c565b6001600b819055505050620006c2565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620001e18262000196565b810181811067ffffffffffffffff82111715620002035762000202620001a7565b5b80604052505050565b60006200021862000178565b9050620002268282620001d6565b919050565b600067ffffffffffffffff821115620002495762000248620001a7565b5b620002548262000196565b9050602081019050919050565b60005b838110156200028157808201518184015260208101905062000264565b60008484015250505050565b6000620002a46200029e846200022b565b6200020c565b905082815260208101848484011115620002c357620002c262000191565b5b620002d084828562000261565b509392505050565b600082601f830112620002f057620002ef6200018c565b5b8151620003028482602086016200028d565b91505092915050565b6000806040838503121562000325576200032462000182565b5b600083015167ffffffffffffffff81111562000346576200034562000187565b5b6200035485828601620002d8565b925050602083015167ffffffffffffffff81111562000378576200037762000187565b5b6200038685828601620002d8565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003e357607f821691505b602082108103620003f957620003f86200039b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004637fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000424565b6200046f868362000424565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004bc620004b6620004b08462000487565b62000491565b62000487565b9050919050565b6000819050919050565b620004d8836200049b565b620004f0620004e782620004c3565b84845462000431565b825550505050565b600090565b62000507620004f8565b62000514818484620004cd565b505050565b5b818110156200053c5762000530600082620004fd565b6001810190506200051a565b5050565b601f8211156200058b576200055581620003ff565b620005608462000414565b8101602085101562000570578190505b620005886200057f8562000414565b83018262000519565b50505b505050565b600082821c905092915050565b6000620005b06000198460080262000590565b1980831691505092915050565b6000620005cb83836200059d565b9150826002028217905092915050565b620005e68262000390565b67ffffffffffffffff811115620006025762000601620001a7565b5b6200060e8254620003ca565b6200061b82828562000540565b600060209050601f8311600181146200065357600084156200063e578287015190505b6200064a8582620005bd565b865550620006ba565b601f1984166200066386620003ff565b60005b828110156200068d5784890151825560018201915060208501945060208101905062000666565b86831015620006ad5784890151620006a9601f8916826200059d565b8355505b6001600288020188555050505b505050505050565b614cc280620006d26000396000f3fe6080604052600436106101ee5760003560e01c8063676dd5631161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106e0578063e8d652ce1461071d578063e985e9c51461075a578063f2fde38b14610797578063f4a65ddf146107c0576101ee565b8063a22cb46514610638578063a9722cf314610661578063b19960e61461068c578063b88d4fde146106b7576101ee565b80638462151c116100dc5780638462151c146105895780638da5cb5b146105c657806395d89b41146105f1578063a0712d681461061c576101ee565b8063676dd563146104df5780636c0360eb1461050a57806370a0823114610535578063715018a614610572576101ee565b806332cb6b0c116101855780634bc44f62116101545780634bc44f62146104115780634f6ccce71461043c57806355f804b3146104795780636352211e146104a2576101ee565b806332cb6b0c146103695780633ccfd60b146103945780633ce41636146103ab57806342842e0e146103e8576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780632be09561146103155780632f745c591461032c576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613047565b6107e9565b604051610227919061308f565b60405180910390f35b34801561023c57600080fd5b50610245610863565b604051610252919061313a565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190613192565b6108f5565b60405161028f9190613200565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190613247565b61093b565b005b3480156102cd57600080fd5b506102d6610a52565b6040516102e39190613296565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e91906132b1565b610a5f565b005b34801561032157600080fd5b5061032a610abf565b005b34801561033857600080fd5b50610353600480360381019061034e9190613247565b610b34565b6040516103609190613296565b60405180910390f35b34801561037557600080fd5b5061037e610bd9565b60405161038b9190613296565b60405180910390f35b3480156103a057600080fd5b506103a9610bdf565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190613304565b610c84565b6040516103df9190613296565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a91906132b1565b610c9c565b005b34801561041d57600080fd5b50610426610cbc565b6040516104339190613296565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e9190613192565b610cc1565b6040516104709190613296565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190613466565b610d32565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190613192565b610d4d565b6040516104d69190613200565b60405180910390f35b3480156104eb57600080fd5b506104f4610dd3565b6040516105019190613296565b60405180910390f35b34801561051657600080fd5b5061051f610ddf565b60405161052c919061313a565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613304565b610e6d565b6040516105699190613296565b60405180910390f35b34801561057e57600080fd5b50610587610f24565b005b34801561059557600080fd5b506105b060048036038101906105ab9190613304565b610f38565b6040516105bd919061356d565b60405180910390f35b3480156105d257600080fd5b506105db611041565b6040516105e89190613200565b60405180910390f35b3480156105fd57600080fd5b5061060661106b565b604051610613919061313a565b60405180910390f35b61063660048036038101906106319190613192565b6110fd565b005b34801561064457600080fd5b5061065f600480360381019061065a91906135bb565b6114c6565b005b34801561066d57600080fd5b506106766114dc565b604051610683919061308f565b60405180910390f35b34801561069857600080fd5b506106a16114ef565b6040516106ae9190613296565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d9919061369c565b6114f4565b005b3480156106ec57600080fd5b5061070760048036038101906107029190613192565b611556565b604051610714919061313a565b60405180910390f35b34801561072957600080fd5b50610744600480360381019061073f9190613304565b611604565b6040516107519190613296565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c919061371f565b61164d565b60405161078e919061308f565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b99190613304565b6116e1565b005b3480156107cc57600080fd5b506107e760048036038101906107e29190613827565b611764565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085c575061085b82611a19565b5b9050919050565b606060008054610872906138b2565b80601f016020809104026020016040519081016040528092919081815260200182805461089e906138b2565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b5050505050905090565b600061090082611afb565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094682610d4d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad90613955565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d5611b46565b73ffffffffffffffffffffffffffffffffffffffff161480610a045750610a03816109fe611b46565b61164d565b5b610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a906139e7565b60405180910390fd5b610a4d8383611b4e565b505050565b6000600880549050905090565b610a70610a6a611b46565b82611c07565b610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690613a79565b60405180910390fd5b610aba838383611c9c565b505050565b610ac7611f95565b600f60009054906101000a900460ff1615610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90613ae5565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b6000610b3f83610e6d565b8210610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7790613b77565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6103e881565b610be7611f95565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c32573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d582604051610c799190613296565b60405180910390a250565b600d6020528060005260406000206000915090505481565b610cb7838383604051806020016040528060008152506114f4565b505050565b600a81565b6000610ccb610a52565b8210610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390613c09565b60405180910390fd5b60088281548110610d2057610d1f613c29565b5b90600052602060002001549050919050565b610d3a611f95565b80600c9081610d499190613e04565b5050565b600080610d5983612013565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190613f22565b60405180910390fd5b80915050919050565b670429d069189e000081565b600c8054610dec906138b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e18906138b2565b8015610e655780601f10610e3a57610100808354040283529160200191610e65565b820191906000526020600020905b815481529060010190602001808311610e4857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed490613fb4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f2c611f95565b610f366000612050565b565b60606000610f4583610e6d565b905060008103610fa157600067ffffffffffffffff811115610f6a57610f6961333b565b5b604051908082528060200260200182016040528015610f985781602001602082028036833780820191505090505b5091505061103c565b60008167ffffffffffffffff811115610fbd57610fbc61333b565b5b604051908082528060200260200182016040528015610feb5781602001602082028036833780820191505090505b50905060005b82811015611035576110038582610b34565b82828151811061101657611015613c29565b5b602002602001018181525050808061102d90614003565b915050610ff1565b5080925050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461107a906138b2565b80601f01602080910402602001604051908101604052809291908181526020018280546110a6906138b2565b80156110f35780601f106110c8576101008083540402835291602001916110f3565b820191906000526020600020905b8154815290600101906020018083116110d657829003601f168201915b5050505050905090565b611105612116565b600f60009054906101000a900460ff16611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90614097565b60405180910390fd5b600061115e610a52565b9050600a8211156111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b90614129565b60405180910390fd5b6103e882826111b39190614149565b11156111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb906141c9565b60405180910390fd5b3482670429d069189e000061120991906141e9565b111561124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124190614277565b60405180910390fd5b601482600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112979190614149565b11156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf906142e3565b60405180910390fd5b60005b828110156113ef5760006112ed612165565b905060001515600e600083815260200190815260200160002060009054906101000a900460ff16151514611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d9061434f565b60405180910390fd5b6001600e600083815260200190815260200160002060006101000a81548160ff02191690831515021790555061138c33826121fb565b803373ffffffffffffffffffffffffffffffffffffffff167f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff346040516113d39190613296565b60405180910390a35080806113e790614003565b9150506112db565b5081600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461143f9190614149565b92505081905550600082670429d069189e000061145c91906141e9565b9050803411156114b9573373ffffffffffffffffffffffffffffffffffffffff166108fc823461148c919061436f565b9081150290604051600060405180830381858888f193505050501580156114b7573d6000803e3d6000fd5b505b50506114c3612219565b50565b6114d86114d1611b46565b8383612223565b5050565b600f60009054906101000a900460ff1681565b601481565b6115056114ff611b46565b83611c07565b611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613a79565b60405180910390fd5b6115508484848461238f565b50505050565b6060611561826123eb565b6115a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159790614415565b60405180910390fd5b6000600c80546115af906138b2565b9050116115cb57604051806020016040528060008152506115fd565b6115d361242c565b6115dc836124be565b6040516020016115ed9291906144bd565b6040516020818303038152906040525b9050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116e9611f95565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f9061455e565b60405180910390fd5b61176181612050565b50565b61176c611f95565b611774612116565b600f60009054906101000a900460ff16156117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb906145f0565b60405180910390fd5b6103e86117cf610a52565b83516117db9190614149565b111561181c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611813906141c9565b60405180910390fd5b60148251600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186a9190614149565b11156118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a2906142e3565b60405180910390fd5b60005b82518110156119b55760001515600e60008584815181106118d2576118d1613c29565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16151514611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f9061434f565b60405180910390fd5b6001600e600085848151811061195157611950613c29565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506119a28284838151811061199557611994613c29565b5b60200260200101516121fb565b80806119ad90614003565b9150506118ae565b508151600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a069190614149565b92505081905550611a15612219565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ae457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611af45750611af38261258c565b5b9050919050565b611b04816123eb565b611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90613f22565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bc183610d4d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611c1383610d4d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c555750611c54818561164d565b5b80611c9357508373ffffffffffffffffffffffffffffffffffffffff16611c7b846108f5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cbc82610d4d565b73ffffffffffffffffffffffffffffffffffffffff1614611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0990614682565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890614714565b60405180910390fd5b611d8e83838360016125f6565b8273ffffffffffffffffffffffffffffffffffffffff16611dae82610d4d565b73ffffffffffffffffffffffffffffffffffffffff1614611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb90614682565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f908383836001612754565b505050565b611f9d611b46565b73ffffffffffffffffffffffffffffffffffffffff16611fbb611041565b73ffffffffffffffffffffffffffffffffffffffff1614612011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200890614780565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6002600b540361215b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612152906147ec565b60405180910390fd5b6002600b81905550565b6000806103e84233612175610a52565b60405160200161218793929190614875565b6040516020818303038152906040528051906020012060001c6121aa91906148e1565b90505b600e600082815260200190815260200160002060009054906101000a900460ff16156121f4576103e86001826121e39190614149565b6121ed91906148e1565b90506121ad565b8091505090565b61221582826040518060200160405280600081525061275a565b5050565b6001600b81905550565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612291576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122889061495e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612382919061308f565b60405180910390a3505050565b61239a848484611c9c565b6123a6848484846127b5565b6123e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dc906149f0565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661240d83612013565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600c805461243b906138b2565b80601f0160208091040260200160405190810160405280929190818152602001828054612467906138b2565b80156124b45780601f10612489576101008083540402835291602001916124b4565b820191906000526020600020905b81548152906001019060200180831161249757829003601f168201915b5050505050905090565b6060600060016124cd8461293c565b01905060008167ffffffffffffffff8111156124ec576124eb61333b565b5b6040519080825280601f01601f19166020018201604052801561251e5781602001600182028036833780820191505090505b509050600082602001820190505b600115612581578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612575576125746148b2565b5b0494506000850361252c575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61260284848484612a8f565b6001811115612646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263d90614a82565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361268d5761268881612a95565b6126cc565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146126cb576126ca8582612ade565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361270e5761270981612c4b565b61274d565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461274c5761274b8482612d1c565b5b5b5050505050565b50505050565b6127648383612d9b565b61277160008484846127b5565b6127b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a7906149f0565b60405180910390fd5b505050565b60006127d68473ffffffffffffffffffffffffffffffffffffffff16612fb8565b1561292f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127ff611b46565b8786866040518563ffffffff1660e01b81526004016128219493929190614af7565b6020604051808303816000875af192505050801561285d57506040513d601f19601f8201168201806040525081019061285a9190614b58565b60015b6128df573d806000811461288d576040519150601f19603f3d011682016040523d82523d6000602084013e612892565b606091505b5060008151036128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce906149f0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612934565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061299a577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816129905761298f6148b2565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106129d7576d04ee2d6d415b85acef810000000083816129cd576129cc6148b2565b5b0492506020810190505b662386f26fc100008310612a0657662386f26fc1000083816129fc576129fb6148b2565b5b0492506010810190505b6305f5e1008310612a2f576305f5e1008381612a2557612a246148b2565b5b0492506008810190505b6127108310612a54576127108381612a4a57612a496148b2565b5b0492506004810190505b60648310612a775760648381612a6d57612a6c6148b2565b5b0492506002810190505b600a8310612a86576001810190505b80915050919050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612aeb84610e6d565b612af5919061436f565b9050600060076000848152602001908152602001600020549050818114612bda576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c5f919061436f565b9050600060096000848152602001908152602001600020549050600060088381548110612c8f57612c8e613c29565b5b906000526020600020015490508060088381548110612cb157612cb0613c29565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d0057612cff614b85565b5b6001900381819060005260206000200160009055905550505050565b6000612d2783610e6d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0190614c00565b60405180910390fd5b612e13816123eb565b15612e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4a90614c6c565b60405180910390fd5b612e616000838360016125f6565b612e6a816123eb565b15612eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea190614c6c565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fb4600083836001612754565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61302481612fef565b811461302f57600080fd5b50565b6000813590506130418161301b565b92915050565b60006020828403121561305d5761305c612fe5565b5b600061306b84828501613032565b91505092915050565b60008115159050919050565b61308981613074565b82525050565b60006020820190506130a46000830184613080565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130e45780820151818401526020810190506130c9565b60008484015250505050565b6000601f19601f8301169050919050565b600061310c826130aa565b61311681856130b5565b93506131268185602086016130c6565b61312f816130f0565b840191505092915050565b600060208201905081810360008301526131548184613101565b905092915050565b6000819050919050565b61316f8161315c565b811461317a57600080fd5b50565b60008135905061318c81613166565b92915050565b6000602082840312156131a8576131a7612fe5565b5b60006131b68482850161317d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131ea826131bf565b9050919050565b6131fa816131df565b82525050565b600060208201905061321560008301846131f1565b92915050565b613224816131df565b811461322f57600080fd5b50565b6000813590506132418161321b565b92915050565b6000806040838503121561325e5761325d612fe5565b5b600061326c85828601613232565b925050602061327d8582860161317d565b9150509250929050565b6132908161315c565b82525050565b60006020820190506132ab6000830184613287565b92915050565b6000806000606084860312156132ca576132c9612fe5565b5b60006132d886828701613232565b93505060206132e986828701613232565b92505060406132fa8682870161317d565b9150509250925092565b60006020828403121561331a57613319612fe5565b5b600061332884828501613232565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613373826130f0565b810181811067ffffffffffffffff821117156133925761339161333b565b5b80604052505050565b60006133a5612fdb565b90506133b1828261336a565b919050565b600067ffffffffffffffff8211156133d1576133d061333b565b5b6133da826130f0565b9050602081019050919050565b82818337600083830152505050565b6000613409613404846133b6565b61339b565b90508281526020810184848401111561342557613424613336565b5b6134308482856133e7565b509392505050565b600082601f83011261344d5761344c613331565b5b813561345d8482602086016133f6565b91505092915050565b60006020828403121561347c5761347b612fe5565b5b600082013567ffffffffffffffff81111561349a57613499612fea565b5b6134a684828501613438565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134e48161315c565b82525050565b60006134f683836134db565b60208301905092915050565b6000602082019050919050565b600061351a826134af565b61352481856134ba565b935061352f836134cb565b8060005b8381101561356057815161354788826134ea565b975061355283613502565b925050600181019050613533565b5085935050505092915050565b60006020820190508181036000830152613587818461350f565b905092915050565b61359881613074565b81146135a357600080fd5b50565b6000813590506135b58161358f565b92915050565b600080604083850312156135d2576135d1612fe5565b5b60006135e085828601613232565b92505060206135f1858286016135a6565b9150509250929050565b600067ffffffffffffffff8211156136165761361561333b565b5b61361f826130f0565b9050602081019050919050565b600061363f61363a846135fb565b61339b565b90508281526020810184848401111561365b5761365a613336565b5b6136668482856133e7565b509392505050565b600082601f83011261368357613682613331565b5b813561369384826020860161362c565b91505092915050565b600080600080608085870312156136b6576136b5612fe5565b5b60006136c487828801613232565b94505060206136d587828801613232565b93505060406136e68782880161317d565b925050606085013567ffffffffffffffff81111561370757613706612fea565b5b6137138782880161366e565b91505092959194509250565b6000806040838503121561373657613735612fe5565b5b600061374485828601613232565b925050602061375585828601613232565b9150509250929050565b600067ffffffffffffffff82111561377a5761377961333b565b5b602082029050602081019050919050565b600080fd5b60006137a361379e8461375f565b61339b565b905080838252602082019050602084028301858111156137c6576137c561378b565b5b835b818110156137ef57806137db888261317d565b8452602084019350506020810190506137c8565b5050509392505050565b600082601f83011261380e5761380d613331565b5b813561381e848260208601613790565b91505092915050565b6000806040838503121561383e5761383d612fe5565b5b600083013567ffffffffffffffff81111561385c5761385b612fea565b5b613868858286016137f9565b925050602061387985828601613232565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138ca57607f821691505b6020821081036138dd576138dc613883565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061393f6021836130b5565b915061394a826138e3565b604082019050919050565b6000602082019050818103600083015261396e81613932565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006139d1603d836130b5565b91506139dc82613975565b604082019050919050565b60006020820190508181036000830152613a00816139c4565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613a63602d836130b5565b9150613a6e82613a07565b604082019050919050565b60006020820190508181036000830152613a9281613a56565b9050919050565b7f4d696e742068617320616c726561647920737461727465640000000000000000600082015250565b6000613acf6018836130b5565b9150613ada82613a99565b602082019050919050565b60006020820190508181036000830152613afe81613ac2565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613b61602b836130b5565b9150613b6c82613b05565b604082019050919050565b60006020820190508181036000830152613b9081613b54565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613bf3602c836130b5565b9150613bfe82613b97565b604082019050919050565b60006020820190508181036000830152613c2281613be6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613cba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613c7d565b613cc48683613c7d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613d01613cfc613cf78461315c565b613cdc565b61315c565b9050919050565b6000819050919050565b613d1b83613ce6565b613d2f613d2782613d08565b848454613c8a565b825550505050565b600090565b613d44613d37565b613d4f818484613d12565b505050565b5b81811015613d7357613d68600082613d3c565b600181019050613d55565b5050565b601f821115613db857613d8981613c58565b613d9284613c6d565b81016020851015613da1578190505b613db5613dad85613c6d565b830182613d54565b50505b505050565b600082821c905092915050565b6000613ddb60001984600802613dbd565b1980831691505092915050565b6000613df48383613dca565b9150826002028217905092915050565b613e0d826130aa565b67ffffffffffffffff811115613e2657613e2561333b565b5b613e3082546138b2565b613e3b828285613d77565b600060209050601f831160018114613e6e5760008415613e5c578287015190505b613e668582613de8565b865550613ece565b601f198416613e7c86613c58565b60005b82811015613ea457848901518255600182019150602085019450602081019050613e7f565b86831015613ec15784890151613ebd601f891682613dca565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613f0c6018836130b5565b9150613f1782613ed6565b602082019050919050565b60006020820190508181036000830152613f3b81613eff565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613f9e6029836130b5565b9150613fa982613f42565b604082019050919050565b60006020820190508181036000830152613fcd81613f91565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061400e8261315c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036140405761403f613fd4565b5b600182019050919050565b7f4d696e7420686173206e6f742073746172746564207965740000000000000000600082015250565b60006140816018836130b5565b915061408c8261404b565b602082019050919050565b600060208201905081810360008301526140b081614074565b9050919050565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e203130204e465460008201527f73206174206f6e63650000000000000000000000000000000000000000000000602082015250565b60006141136029836130b5565b915061411e826140b7565b604082019050919050565b6000602082019050818103600083015261414281614106565b9050919050565b60006141548261315c565b915061415f8361315c565b925082820190508082111561417757614176613fd4565b5b92915050565b7f45786365656473206d6178696d756d204e465420737570706c79000000000000600082015250565b60006141b3601a836130b5565b91506141be8261417d565b602082019050919050565b600060208201905081810360008301526141e2816141a6565b9050919050565b60006141f48261315c565b91506141ff8361315c565b925082820261420d8161315c565b9150828204841483151761422457614223613fd4565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000614261601f836130b5565b915061426c8261422b565b602082019050919050565b6000602082019050818103600083015261429081614254565b9050919050565b7f45786365656473206d6178696d756d204e4654207065722077616c6c65740000600082015250565b60006142cd601e836130b5565b91506142d882614297565b602082019050919050565b600060208201905081810360008301526142fc816142c0565b9050919050565b7f546f6b656e20616c7265616479206d696e746564000000000000000000000000600082015250565b60006143396014836130b5565b915061434482614303565b602082019050919050565b600060208201905081810360008301526143688161432c565b9050919050565b600061437a8261315c565b91506143858361315c565b925082820390508181111561439d5761439c613fd4565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006143ff602f836130b5565b915061440a826143a3565b604082019050919050565b6000602082019050818103600083015261442e816143f2565b9050919050565b600081905092915050565b600061444b826130aa565b6144558185614435565b93506144658185602086016130c6565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006144a7600583614435565b91506144b282614471565b600582019050919050565b60006144c98285614440565b91506144d58284614440565b91506144e08261449a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145486026836130b5565b9150614553826144ec565b604082019050919050565b600060208201905081810360008301526145778161453b565b9050919050565b7f596f752063616e6e6f74207072656d696e74206966206d696e7420616c72656160008201527f6479207374617274656400000000000000000000000000000000000000000000602082015250565b60006145da602a836130b5565b91506145e58261457e565b604082019050919050565b60006020820190508181036000830152614609816145cd565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061466c6025836130b5565b915061467782614610565b604082019050919050565b6000602082019050818103600083015261469b8161465f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006146fe6024836130b5565b9150614709826146a2565b604082019050919050565b6000602082019050818103600083015261472d816146f1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061476a6020836130b5565b915061477582614734565b602082019050919050565b600060208201905081810360008301526147998161475d565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006147d6601f836130b5565b91506147e1826147a0565b602082019050919050565b60006020820190508181036000830152614805816147c9565b9050919050565b6000819050919050565b6148276148228261315c565b61480c565b82525050565b60008160601b9050919050565b60006148458261482d565b9050919050565b60006148578261483a565b9050919050565b61486f61486a826131df565b61484c565b82525050565b60006148818286614816565b602082019150614891828561485e565b6014820191506148a18284614816565b602082019150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148ec8261315c565b91506148f78361315c565b925082614907576149066148b2565b5b828206905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006149486019836130b5565b915061495382614912565b602082019050919050565b600060208201905081810360008301526149778161493b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006149da6032836130b5565b91506149e58261497e565b604082019050919050565b60006020820190508181036000830152614a09816149cd565b9050919050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000614a6c6035836130b5565b9150614a7782614a10565b604082019050919050565b60006020820190508181036000830152614a9b81614a5f565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614ac982614aa2565b614ad38185614aad565b9350614ae38185602086016130c6565b614aec816130f0565b840191505092915050565b6000608082019050614b0c60008301876131f1565b614b1960208301866131f1565b614b266040830185613287565b8181036060830152614b388184614abe565b905095945050505050565b600081519050614b528161301b565b92915050565b600060208284031215614b6e57614b6d612fe5565b5b6000614b7c84828501614b43565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614bea6020836130b5565b9150614bf582614bb4565b602082019050919050565b60006020820190508181036000830152614c1981614bdd565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614c56601c836130b5565b9150614c6182614c20565b602082019050919050565b60006020820190508181036000830152614c8581614c49565b905091905056fea264697066735822122023bb8fe67bd612502865662c02440089d9fafaa2f6a02f92842bd63b05b043b664736f6c63430008120033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007454c4d4f464f530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c4d464f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063676dd5631161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106e0578063e8d652ce1461071d578063e985e9c51461075a578063f2fde38b14610797578063f4a65ddf146107c0576101ee565b8063a22cb46514610638578063a9722cf314610661578063b19960e61461068c578063b88d4fde146106b7576101ee565b80638462151c116100dc5780638462151c146105895780638da5cb5b146105c657806395d89b41146105f1578063a0712d681461061c576101ee565b8063676dd563146104df5780636c0360eb1461050a57806370a0823114610535578063715018a614610572576101ee565b806332cb6b0c116101855780634bc44f62116101545780634bc44f62146104115780634f6ccce71461043c57806355f804b3146104795780636352211e146104a2576101ee565b806332cb6b0c146103695780633ccfd60b146103945780633ce41636146103ab57806342842e0e146103e8576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780632be09561146103155780632f745c591461032c576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613047565b6107e9565b604051610227919061308f565b60405180910390f35b34801561023c57600080fd5b50610245610863565b604051610252919061313a565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190613192565b6108f5565b60405161028f9190613200565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190613247565b61093b565b005b3480156102cd57600080fd5b506102d6610a52565b6040516102e39190613296565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e91906132b1565b610a5f565b005b34801561032157600080fd5b5061032a610abf565b005b34801561033857600080fd5b50610353600480360381019061034e9190613247565b610b34565b6040516103609190613296565b60405180910390f35b34801561037557600080fd5b5061037e610bd9565b60405161038b9190613296565b60405180910390f35b3480156103a057600080fd5b506103a9610bdf565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190613304565b610c84565b6040516103df9190613296565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a91906132b1565b610c9c565b005b34801561041d57600080fd5b50610426610cbc565b6040516104339190613296565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e9190613192565b610cc1565b6040516104709190613296565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190613466565b610d32565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190613192565b610d4d565b6040516104d69190613200565b60405180910390f35b3480156104eb57600080fd5b506104f4610dd3565b6040516105019190613296565b60405180910390f35b34801561051657600080fd5b5061051f610ddf565b60405161052c919061313a565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613304565b610e6d565b6040516105699190613296565b60405180910390f35b34801561057e57600080fd5b50610587610f24565b005b34801561059557600080fd5b506105b060048036038101906105ab9190613304565b610f38565b6040516105bd919061356d565b60405180910390f35b3480156105d257600080fd5b506105db611041565b6040516105e89190613200565b60405180910390f35b3480156105fd57600080fd5b5061060661106b565b604051610613919061313a565b60405180910390f35b61063660048036038101906106319190613192565b6110fd565b005b34801561064457600080fd5b5061065f600480360381019061065a91906135bb565b6114c6565b005b34801561066d57600080fd5b506106766114dc565b604051610683919061308f565b60405180910390f35b34801561069857600080fd5b506106a16114ef565b6040516106ae9190613296565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d9919061369c565b6114f4565b005b3480156106ec57600080fd5b5061070760048036038101906107029190613192565b611556565b604051610714919061313a565b60405180910390f35b34801561072957600080fd5b50610744600480360381019061073f9190613304565b611604565b6040516107519190613296565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c919061371f565b61164d565b60405161078e919061308f565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b99190613304565b6116e1565b005b3480156107cc57600080fd5b506107e760048036038101906107e29190613827565b611764565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085c575061085b82611a19565b5b9050919050565b606060008054610872906138b2565b80601f016020809104026020016040519081016040528092919081815260200182805461089e906138b2565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b5050505050905090565b600061090082611afb565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094682610d4d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad90613955565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d5611b46565b73ffffffffffffffffffffffffffffffffffffffff161480610a045750610a03816109fe611b46565b61164d565b5b610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a906139e7565b60405180910390fd5b610a4d8383611b4e565b505050565b6000600880549050905090565b610a70610a6a611b46565b82611c07565b610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690613a79565b60405180910390fd5b610aba838383611c9c565b505050565b610ac7611f95565b600f60009054906101000a900460ff1615610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90613ae5565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b6000610b3f83610e6d565b8210610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7790613b77565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6103e881565b610be7611f95565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c32573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d582604051610c799190613296565b60405180910390a250565b600d6020528060005260406000206000915090505481565b610cb7838383604051806020016040528060008152506114f4565b505050565b600a81565b6000610ccb610a52565b8210610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390613c09565b60405180910390fd5b60088281548110610d2057610d1f613c29565b5b90600052602060002001549050919050565b610d3a611f95565b80600c9081610d499190613e04565b5050565b600080610d5983612013565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190613f22565b60405180910390fd5b80915050919050565b670429d069189e000081565b600c8054610dec906138b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e18906138b2565b8015610e655780601f10610e3a57610100808354040283529160200191610e65565b820191906000526020600020905b815481529060010190602001808311610e4857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed490613fb4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f2c611f95565b610f366000612050565b565b60606000610f4583610e6d565b905060008103610fa157600067ffffffffffffffff811115610f6a57610f6961333b565b5b604051908082528060200260200182016040528015610f985781602001602082028036833780820191505090505b5091505061103c565b60008167ffffffffffffffff811115610fbd57610fbc61333b565b5b604051908082528060200260200182016040528015610feb5781602001602082028036833780820191505090505b50905060005b82811015611035576110038582610b34565b82828151811061101657611015613c29565b5b602002602001018181525050808061102d90614003565b915050610ff1565b5080925050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461107a906138b2565b80601f01602080910402602001604051908101604052809291908181526020018280546110a6906138b2565b80156110f35780601f106110c8576101008083540402835291602001916110f3565b820191906000526020600020905b8154815290600101906020018083116110d657829003601f168201915b5050505050905090565b611105612116565b600f60009054906101000a900460ff16611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90614097565b60405180910390fd5b600061115e610a52565b9050600a8211156111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b90614129565b60405180910390fd5b6103e882826111b39190614149565b11156111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb906141c9565b60405180910390fd5b3482670429d069189e000061120991906141e9565b111561124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124190614277565b60405180910390fd5b601482600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112979190614149565b11156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf906142e3565b60405180910390fd5b60005b828110156113ef5760006112ed612165565b905060001515600e600083815260200190815260200160002060009054906101000a900460ff16151514611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d9061434f565b60405180910390fd5b6001600e600083815260200190815260200160002060006101000a81548160ff02191690831515021790555061138c33826121fb565b803373ffffffffffffffffffffffffffffffffffffffff167f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff346040516113d39190613296565b60405180910390a35080806113e790614003565b9150506112db565b5081600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461143f9190614149565b92505081905550600082670429d069189e000061145c91906141e9565b9050803411156114b9573373ffffffffffffffffffffffffffffffffffffffff166108fc823461148c919061436f565b9081150290604051600060405180830381858888f193505050501580156114b7573d6000803e3d6000fd5b505b50506114c3612219565b50565b6114d86114d1611b46565b8383612223565b5050565b600f60009054906101000a900460ff1681565b601481565b6115056114ff611b46565b83611c07565b611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613a79565b60405180910390fd5b6115508484848461238f565b50505050565b6060611561826123eb565b6115a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159790614415565b60405180910390fd5b6000600c80546115af906138b2565b9050116115cb57604051806020016040528060008152506115fd565b6115d361242c565b6115dc836124be565b6040516020016115ed9291906144bd565b6040516020818303038152906040525b9050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116e9611f95565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f9061455e565b60405180910390fd5b61176181612050565b50565b61176c611f95565b611774612116565b600f60009054906101000a900460ff16156117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb906145f0565b60405180910390fd5b6103e86117cf610a52565b83516117db9190614149565b111561181c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611813906141c9565b60405180910390fd5b60148251600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186a9190614149565b11156118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a2906142e3565b60405180910390fd5b60005b82518110156119b55760001515600e60008584815181106118d2576118d1613c29565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16151514611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f9061434f565b60405180910390fd5b6001600e600085848151811061195157611950613c29565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506119a28284838151811061199557611994613c29565b5b60200260200101516121fb565b80806119ad90614003565b9150506118ae565b508151600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a069190614149565b92505081905550611a15612219565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ae457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611af45750611af38261258c565b5b9050919050565b611b04816123eb565b611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90613f22565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bc183610d4d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611c1383610d4d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c555750611c54818561164d565b5b80611c9357508373ffffffffffffffffffffffffffffffffffffffff16611c7b846108f5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cbc82610d4d565b73ffffffffffffffffffffffffffffffffffffffff1614611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0990614682565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890614714565b60405180910390fd5b611d8e83838360016125f6565b8273ffffffffffffffffffffffffffffffffffffffff16611dae82610d4d565b73ffffffffffffffffffffffffffffffffffffffff1614611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb90614682565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f908383836001612754565b505050565b611f9d611b46565b73ffffffffffffffffffffffffffffffffffffffff16611fbb611041565b73ffffffffffffffffffffffffffffffffffffffff1614612011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200890614780565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6002600b540361215b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612152906147ec565b60405180910390fd5b6002600b81905550565b6000806103e84233612175610a52565b60405160200161218793929190614875565b6040516020818303038152906040528051906020012060001c6121aa91906148e1565b90505b600e600082815260200190815260200160002060009054906101000a900460ff16156121f4576103e86001826121e39190614149565b6121ed91906148e1565b90506121ad565b8091505090565b61221582826040518060200160405280600081525061275a565b5050565b6001600b81905550565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612291576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122889061495e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612382919061308f565b60405180910390a3505050565b61239a848484611c9c565b6123a6848484846127b5565b6123e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dc906149f0565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661240d83612013565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600c805461243b906138b2565b80601f0160208091040260200160405190810160405280929190818152602001828054612467906138b2565b80156124b45780601f10612489576101008083540402835291602001916124b4565b820191906000526020600020905b81548152906001019060200180831161249757829003601f168201915b5050505050905090565b6060600060016124cd8461293c565b01905060008167ffffffffffffffff8111156124ec576124eb61333b565b5b6040519080825280601f01601f19166020018201604052801561251e5781602001600182028036833780820191505090505b509050600082602001820190505b600115612581578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612575576125746148b2565b5b0494506000850361252c575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61260284848484612a8f565b6001811115612646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263d90614a82565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361268d5761268881612a95565b6126cc565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146126cb576126ca8582612ade565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361270e5761270981612c4b565b61274d565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461274c5761274b8482612d1c565b5b5b5050505050565b50505050565b6127648383612d9b565b61277160008484846127b5565b6127b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a7906149f0565b60405180910390fd5b505050565b60006127d68473ffffffffffffffffffffffffffffffffffffffff16612fb8565b1561292f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127ff611b46565b8786866040518563ffffffff1660e01b81526004016128219493929190614af7565b6020604051808303816000875af192505050801561285d57506040513d601f19601f8201168201806040525081019061285a9190614b58565b60015b6128df573d806000811461288d576040519150601f19603f3d011682016040523d82523d6000602084013e612892565b606091505b5060008151036128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce906149f0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612934565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061299a577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816129905761298f6148b2565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106129d7576d04ee2d6d415b85acef810000000083816129cd576129cc6148b2565b5b0492506020810190505b662386f26fc100008310612a0657662386f26fc1000083816129fc576129fb6148b2565b5b0492506010810190505b6305f5e1008310612a2f576305f5e1008381612a2557612a246148b2565b5b0492506008810190505b6127108310612a54576127108381612a4a57612a496148b2565b5b0492506004810190505b60648310612a775760648381612a6d57612a6c6148b2565b5b0492506002810190505b600a8310612a86576001810190505b80915050919050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612aeb84610e6d565b612af5919061436f565b9050600060076000848152602001908152602001600020549050818114612bda576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c5f919061436f565b9050600060096000848152602001908152602001600020549050600060088381548110612c8f57612c8e613c29565b5b906000526020600020015490508060088381548110612cb157612cb0613c29565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d0057612cff614b85565b5b6001900381819060005260206000200160009055905550505050565b6000612d2783610e6d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0190614c00565b60405180910390fd5b612e13816123eb565b15612e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4a90614c6c565b60405180910390fd5b612e616000838360016125f6565b612e6a816123eb565b15612eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea190614c6c565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fb4600083836001612754565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61302481612fef565b811461302f57600080fd5b50565b6000813590506130418161301b565b92915050565b60006020828403121561305d5761305c612fe5565b5b600061306b84828501613032565b91505092915050565b60008115159050919050565b61308981613074565b82525050565b60006020820190506130a46000830184613080565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130e45780820151818401526020810190506130c9565b60008484015250505050565b6000601f19601f8301169050919050565b600061310c826130aa565b61311681856130b5565b93506131268185602086016130c6565b61312f816130f0565b840191505092915050565b600060208201905081810360008301526131548184613101565b905092915050565b6000819050919050565b61316f8161315c565b811461317a57600080fd5b50565b60008135905061318c81613166565b92915050565b6000602082840312156131a8576131a7612fe5565b5b60006131b68482850161317d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131ea826131bf565b9050919050565b6131fa816131df565b82525050565b600060208201905061321560008301846131f1565b92915050565b613224816131df565b811461322f57600080fd5b50565b6000813590506132418161321b565b92915050565b6000806040838503121561325e5761325d612fe5565b5b600061326c85828601613232565b925050602061327d8582860161317d565b9150509250929050565b6132908161315c565b82525050565b60006020820190506132ab6000830184613287565b92915050565b6000806000606084860312156132ca576132c9612fe5565b5b60006132d886828701613232565b93505060206132e986828701613232565b92505060406132fa8682870161317d565b9150509250925092565b60006020828403121561331a57613319612fe5565b5b600061332884828501613232565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613373826130f0565b810181811067ffffffffffffffff821117156133925761339161333b565b5b80604052505050565b60006133a5612fdb565b90506133b1828261336a565b919050565b600067ffffffffffffffff8211156133d1576133d061333b565b5b6133da826130f0565b9050602081019050919050565b82818337600083830152505050565b6000613409613404846133b6565b61339b565b90508281526020810184848401111561342557613424613336565b5b6134308482856133e7565b509392505050565b600082601f83011261344d5761344c613331565b5b813561345d8482602086016133f6565b91505092915050565b60006020828403121561347c5761347b612fe5565b5b600082013567ffffffffffffffff81111561349a57613499612fea565b5b6134a684828501613438565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134e48161315c565b82525050565b60006134f683836134db565b60208301905092915050565b6000602082019050919050565b600061351a826134af565b61352481856134ba565b935061352f836134cb565b8060005b8381101561356057815161354788826134ea565b975061355283613502565b925050600181019050613533565b5085935050505092915050565b60006020820190508181036000830152613587818461350f565b905092915050565b61359881613074565b81146135a357600080fd5b50565b6000813590506135b58161358f565b92915050565b600080604083850312156135d2576135d1612fe5565b5b60006135e085828601613232565b92505060206135f1858286016135a6565b9150509250929050565b600067ffffffffffffffff8211156136165761361561333b565b5b61361f826130f0565b9050602081019050919050565b600061363f61363a846135fb565b61339b565b90508281526020810184848401111561365b5761365a613336565b5b6136668482856133e7565b509392505050565b600082601f83011261368357613682613331565b5b813561369384826020860161362c565b91505092915050565b600080600080608085870312156136b6576136b5612fe5565b5b60006136c487828801613232565b94505060206136d587828801613232565b93505060406136e68782880161317d565b925050606085013567ffffffffffffffff81111561370757613706612fea565b5b6137138782880161366e565b91505092959194509250565b6000806040838503121561373657613735612fe5565b5b600061374485828601613232565b925050602061375585828601613232565b9150509250929050565b600067ffffffffffffffff82111561377a5761377961333b565b5b602082029050602081019050919050565b600080fd5b60006137a361379e8461375f565b61339b565b905080838252602082019050602084028301858111156137c6576137c561378b565b5b835b818110156137ef57806137db888261317d565b8452602084019350506020810190506137c8565b5050509392505050565b600082601f83011261380e5761380d613331565b5b813561381e848260208601613790565b91505092915050565b6000806040838503121561383e5761383d612fe5565b5b600083013567ffffffffffffffff81111561385c5761385b612fea565b5b613868858286016137f9565b925050602061387985828601613232565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138ca57607f821691505b6020821081036138dd576138dc613883565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061393f6021836130b5565b915061394a826138e3565b604082019050919050565b6000602082019050818103600083015261396e81613932565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006139d1603d836130b5565b91506139dc82613975565b604082019050919050565b60006020820190508181036000830152613a00816139c4565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613a63602d836130b5565b9150613a6e82613a07565b604082019050919050565b60006020820190508181036000830152613a9281613a56565b9050919050565b7f4d696e742068617320616c726561647920737461727465640000000000000000600082015250565b6000613acf6018836130b5565b9150613ada82613a99565b602082019050919050565b60006020820190508181036000830152613afe81613ac2565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613b61602b836130b5565b9150613b6c82613b05565b604082019050919050565b60006020820190508181036000830152613b9081613b54565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613bf3602c836130b5565b9150613bfe82613b97565b604082019050919050565b60006020820190508181036000830152613c2281613be6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613cba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613c7d565b613cc48683613c7d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613d01613cfc613cf78461315c565b613cdc565b61315c565b9050919050565b6000819050919050565b613d1b83613ce6565b613d2f613d2782613d08565b848454613c8a565b825550505050565b600090565b613d44613d37565b613d4f818484613d12565b505050565b5b81811015613d7357613d68600082613d3c565b600181019050613d55565b5050565b601f821115613db857613d8981613c58565b613d9284613c6d565b81016020851015613da1578190505b613db5613dad85613c6d565b830182613d54565b50505b505050565b600082821c905092915050565b6000613ddb60001984600802613dbd565b1980831691505092915050565b6000613df48383613dca565b9150826002028217905092915050565b613e0d826130aa565b67ffffffffffffffff811115613e2657613e2561333b565b5b613e3082546138b2565b613e3b828285613d77565b600060209050601f831160018114613e6e5760008415613e5c578287015190505b613e668582613de8565b865550613ece565b601f198416613e7c86613c58565b60005b82811015613ea457848901518255600182019150602085019450602081019050613e7f565b86831015613ec15784890151613ebd601f891682613dca565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613f0c6018836130b5565b9150613f1782613ed6565b602082019050919050565b60006020820190508181036000830152613f3b81613eff565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613f9e6029836130b5565b9150613fa982613f42565b604082019050919050565b60006020820190508181036000830152613fcd81613f91565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061400e8261315c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036140405761403f613fd4565b5b600182019050919050565b7f4d696e7420686173206e6f742073746172746564207965740000000000000000600082015250565b60006140816018836130b5565b915061408c8261404b565b602082019050919050565b600060208201905081810360008301526140b081614074565b9050919050565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e203130204e465460008201527f73206174206f6e63650000000000000000000000000000000000000000000000602082015250565b60006141136029836130b5565b915061411e826140b7565b604082019050919050565b6000602082019050818103600083015261414281614106565b9050919050565b60006141548261315c565b915061415f8361315c565b925082820190508082111561417757614176613fd4565b5b92915050565b7f45786365656473206d6178696d756d204e465420737570706c79000000000000600082015250565b60006141b3601a836130b5565b91506141be8261417d565b602082019050919050565b600060208201905081810360008301526141e2816141a6565b9050919050565b60006141f48261315c565b91506141ff8361315c565b925082820261420d8161315c565b9150828204841483151761422457614223613fd4565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000614261601f836130b5565b915061426c8261422b565b602082019050919050565b6000602082019050818103600083015261429081614254565b9050919050565b7f45786365656473206d6178696d756d204e4654207065722077616c6c65740000600082015250565b60006142cd601e836130b5565b91506142d882614297565b602082019050919050565b600060208201905081810360008301526142fc816142c0565b9050919050565b7f546f6b656e20616c7265616479206d696e746564000000000000000000000000600082015250565b60006143396014836130b5565b915061434482614303565b602082019050919050565b600060208201905081810360008301526143688161432c565b9050919050565b600061437a8261315c565b91506143858361315c565b925082820390508181111561439d5761439c613fd4565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006143ff602f836130b5565b915061440a826143a3565b604082019050919050565b6000602082019050818103600083015261442e816143f2565b9050919050565b600081905092915050565b600061444b826130aa565b6144558185614435565b93506144658185602086016130c6565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006144a7600583614435565b91506144b282614471565b600582019050919050565b60006144c98285614440565b91506144d58284614440565b91506144e08261449a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145486026836130b5565b9150614553826144ec565b604082019050919050565b600060208201905081810360008301526145778161453b565b9050919050565b7f596f752063616e6e6f74207072656d696e74206966206d696e7420616c72656160008201527f6479207374617274656400000000000000000000000000000000000000000000602082015250565b60006145da602a836130b5565b91506145e58261457e565b604082019050919050565b60006020820190508181036000830152614609816145cd565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061466c6025836130b5565b915061467782614610565b604082019050919050565b6000602082019050818103600083015261469b8161465f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006146fe6024836130b5565b9150614709826146a2565b604082019050919050565b6000602082019050818103600083015261472d816146f1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061476a6020836130b5565b915061477582614734565b602082019050919050565b600060208201905081810360008301526147998161475d565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006147d6601f836130b5565b91506147e1826147a0565b602082019050919050565b60006020820190508181036000830152614805816147c9565b9050919050565b6000819050919050565b6148276148228261315c565b61480c565b82525050565b60008160601b9050919050565b60006148458261482d565b9050919050565b60006148578261483a565b9050919050565b61486f61486a826131df565b61484c565b82525050565b60006148818286614816565b602082019150614891828561485e565b6014820191506148a18284614816565b602082019150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148ec8261315c565b91506148f78361315c565b925082614907576149066148b2565b5b828206905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006149486019836130b5565b915061495382614912565b602082019050919050565b600060208201905081810360008301526149778161493b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006149da6032836130b5565b91506149e58261497e565b604082019050919050565b60006020820190508181036000830152614a09816149cd565b9050919050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000614a6c6035836130b5565b9150614a7782614a10565b604082019050919050565b60006020820190508181036000830152614a9b81614a5f565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614ac982614aa2565b614ad38185614aad565b9350614ae38185602086016130c6565b614aec816130f0565b840191505092915050565b6000608082019050614b0c60008301876131f1565b614b1960208301866131f1565b614b266040830185613287565b8181036060830152614b388184614abe565b905095945050505050565b600081519050614b528161301b565b92915050565b600060208284031215614b6e57614b6d612fe5565b5b6000614b7c84828501614b43565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614bea6020836130b5565b9150614bf582614bb4565b602082019050919050565b60006020820190508181036000830152614c1981614bdd565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614c56601c836130b5565b9150614c6182614c20565b602082019050919050565b60006020820190508181036000830152614c8581614c49565b905091905056fea264697066735822122023bb8fe67bd612502865662c02440089d9fafaa2f6a02f92842bd63b05b043b664736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007454c4d4f464f530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c4d464f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): ELMOFOS
Arg [1] : symbol (string): LMFO

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 454c4d4f464f5300000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4c4d464f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

67959:4257:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61952:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46001:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47513:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47031:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62592:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48213:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69243:135;;;;;;;;;;;;;:::i;:::-;;62260:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68099:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72027:186;;;;;;;;;;;;;:::i;:::-;;68306:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48585:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68147:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62782:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68680:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45711:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68254:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68071:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45442:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23331:103;;;;;;;;;;;;;:::i;:::-;;71563:456;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22690:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46170:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69998:1072;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47756:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68415:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68199:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48807:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68910:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71420:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47982:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23589:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69384:606;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61952:224;62054:4;62093:35;62078:50;;;:11;:50;;;;:90;;;;62132:36;62156:11;62132:23;:36::i;:::-;62078:90;62071:97;;61952:224;;;:::o;46001:100::-;46055:13;46088:5;46081:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46001:100;:::o;47513:171::-;47589:7;47609:23;47624:7;47609:14;:23::i;:::-;47652:15;:24;47668:7;47652:24;;;;;;;;;;;;;;;;;;;;;47645:31;;47513:171;;;:::o;47031:416::-;47112:13;47128:23;47143:7;47128:14;:23::i;:::-;47112:39;;47176:5;47170:11;;:2;:11;;;47162:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47270:5;47254:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;47279:37;47296:5;47303:12;:10;:12::i;:::-;47279:16;:37::i;:::-;47254:62;47232:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;47418:21;47427:2;47431:7;47418:8;:21::i;:::-;47101:346;47031:416;;:::o;62592:113::-;62653:7;62680:10;:17;;;;62673:24;;62592:113;:::o;48213:301::-;48374:41;48393:12;:10;:12::i;:::-;48407:7;48374:18;:41::i;:::-;48366:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;48478:28;48488:4;48494:2;48498:7;48478:9;:28::i;:::-;48213:301;;;:::o;69243:135::-;22576:13;:11;:13::i;:::-;69301:11:::1;;;;;;;;;;;69300:12;69292:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;69366:4;69352:11;;:18;;;;;;;;;;;;;;;;;;69243:135::o:0;62260:256::-;62357:7;62393:23;62410:5;62393:16;:23::i;:::-;62385:5;:31;62377:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;62482:12;:19;62495:5;62482:19;;;;;;;;;;;;;;;:26;62502:5;62482:26;;;;;;;;;;;;62475:33;;62260:256;;;;:::o;68099:41::-;68136:4;68099:41;:::o;72027:186::-;22576:13;:11;:13::i;:::-;72075:12:::1;72090:21;72075:36;;72130:10;72122:28;;:37;72151:7;72122:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;72185:10;72175:30;;;72197:7;72175:30;;;;;;:::i;:::-;;;;;;;;72064:149;72027:186::o:0;68306:49::-;;;;;;;;;;;;;;;;;:::o;48585:151::-;48689:39;48706:4;48712:2;48716:7;48689:39;;;;;;;;;;;;:16;:39::i;:::-;48585:151;;;:::o;68147:45::-;68190:2;68147:45;:::o;62782:233::-;62857:7;62893:30;:28;:30::i;:::-;62885:5;:38;62877:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;62990:10;63001:5;62990:17;;;;;;;;:::i;:::-;;;;;;;;;;62983:24;;62782:233;;;:::o;68680:106::-;22576:13;:11;:13::i;:::-;68767:11:::1;68757:7;:21;;;;;;:::i;:::-;;68680:106:::0;:::o;45711:223::-;45783:7;45803:13;45819:17;45828:7;45819:8;:17::i;:::-;45803:33;;45872:1;45855:19;;:5;:19;;;45847:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;45921:5;45914:12;;;45711:223;;;:::o;68254:45::-;68290:9;68254:45;:::o;68071:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45442:207::-;45514:7;45559:1;45542:19;;:5;:19;;;45534:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45625:9;:16;45635:5;45625:16;;;;;;;;;;;;;;;;45618:23;;45442:207;;;:::o;23331:103::-;22576:13;:11;:13::i;:::-;23396:30:::1;23423:1;23396:18;:30::i;:::-;23331:103::o:0;71563:456::-;71624:16;71654:18;71675:17;71685:6;71675:9;:17::i;:::-;71654:38;;71721:1;71707:10;:15;71703:309;;71760:1;71746:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71739:23;;;;;71703:309;71795:23;71835:10;71821:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71795:51;;71865:9;71861:112;71880:10;71876:1;:14;71861:112;;;71927:30;71947:6;71955:1;71927:19;:30::i;:::-;71915:6;71922:1;71915:9;;;;;;;;:::i;:::-;;;;;;;:42;;;;;71892:3;;;;;:::i;:::-;;;;71861:112;;;;71994:6;71987:13;;;;71563:456;;;;:::o;22690:87::-;22736:7;22763:6;;;;;;;;;;;22756:13;;22690:87;:::o;46170:104::-;46226:13;46259:7;46252:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46170:104;:::o;69998:1072::-;2345:21;:19;:21::i;:::-;70066:11:::1;;;;;;;;;;;70058:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;70117:14;70134:13;:11;:13::i;:::-;70117:30;;68190:2;70166:3;:23;;70158:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;68136:4;70263:3;70254:6;:12;;;;:::i;:::-;:26;;70246:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;70349:9;70342:3;68290:9;70330:15;;;;:::i;:::-;:28;;70322:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;68245:2;70442:3;70413:14;:26;70428:10;70413:26;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:55;;70405:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;70520:9;70516:314;70535:3;70531:1;:7;70516:314;;;70560:13;70576:24;:22;:24::i;:::-;70560:40;;70647:5;70623:29;;:13;:20;70637:5;70623:20;;;;;;;;;;;;;;;;;;;;;:29;;;70615:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;70715:4;70692:13;:20;70706:5;70692:20;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;70734:28;70744:10;70756:5;70734:9;:28::i;:::-;70801:5;70789:10;70782:36;;;70808:9;70782:36;;;;;;:::i;:::-;;;;;;;;70545:285;70540:3;;;;;:::i;:::-;;;;70516:314;;;;70872:3;70842:14;:26;70857:10;70842:26;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;70925:13;70953:3;68290:9;70941:15;;;;:::i;:::-;70925:31;;70982:5;70970:9;:17;70967:96;;;71012:10;71004:28;;:47;71045:5;71033:9;:17;;;;:::i;:::-;71004:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;70967:96;70053:1017;;2389:20:::0;:18;:20::i;:::-;69998:1072;:::o;47756:155::-;47851:52;47870:12;:10;:12::i;:::-;47884:8;47894;47851:18;:52::i;:::-;47756:155;;:::o;68415:31::-;;;;;;;;;;;;;:::o;68199:48::-;68245:2;68199:48;:::o;48807:279::-;48938:41;48957:12;:10;:12::i;:::-;48971:7;48938:18;:41::i;:::-;48930:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;49040:38;49054:4;49060:2;49064:7;49073:4;49040:13;:38::i;:::-;48807:279;;;;:::o;68910:327::-;68983:13;69017:16;69025:7;69017;:16::i;:::-;69009:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;69129:1;69111:7;69105:21;;;;;:::i;:::-;;;:25;:124;;;;;;;;;;;;;;;;;69170:10;:8;:10::i;:::-;69182:18;:7;:16;:18::i;:::-;69153:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69105:124;69098:131;;68910:327;;;:::o;71420:135::-;71490:7;71517:14;:30;71532:14;71517:30;;;;;;;;;;;;;;;;71510:37;;71420:135;;;:::o;47982:164::-;48079:4;48103:18;:25;48122:5;48103:25;;;;;;;;;;;;;;;:35;48129:8;48103:35;;;;;;;;;;;;;;;;;;;;;;;;;48096:42;;47982:164;;;;:::o;23589:201::-;22576:13;:11;:13::i;:::-;23698:1:::1;23678:22;;:8;:22;;::::0;23670:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23754:28;23773:8;23754:18;:28::i;:::-;23589:201:::0;:::o;69384:606::-;22576:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;69484:11:::2;;;;;;;;;;;69483:12;69475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;68136:4;69573:13;:11;:13::i;:::-;69555:8;:15;:31;;;;:::i;:::-;:45;;69547:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;68245:2;69665:8;:15;69644:14;:18;69659:2;69644:18;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:59;;69636:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;69750:9;69745:197;69769:8;:15;69765:1;:19;69745:197;;;69835:5;69805:35;;:13;:26;69819:8;69828:1;69819:11;;;;;;;;:::i;:::-;;;;;;;;69805:26;;;;;;;;;;;;;;;;;;;;;:35;;;69797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69900:4;69871:13;:26;69885:8;69894:1;69885:11;;;;;;;;:::i;:::-;;;;;;;;69871:26;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;69910:26;69920:2;69924:8;69933:1;69924:11;;;;;;;;:::i;:::-;;;;;;;;69910:9;:26::i;:::-;69786:3;;;;;:::i;:::-;;;;69745:197;;;;69970:8;:15;69948:14;:18;69963:2;69948:18;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;2389:20:::1;:18;:20::i;:::-;69384:606:::0;;:::o;45073:305::-;45175:4;45227:25;45212:40;;;:11;:40;;;;:105;;;;45284:33;45269:48;;;:11;:48;;;;45212:105;:158;;;;45334:36;45358:11;45334:23;:36::i;:::-;45212:158;45192:178;;45073:305;;;:::o;57076:135::-;57158:16;57166:7;57158;:16::i;:::-;57150:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;57076:135;:::o;21241:98::-;21294:7;21321:10;21314:17;;21241:98;:::o;56389:174::-;56491:2;56464:15;:24;56480:7;56464:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;56547:7;56543:2;56509:46;;56518:23;56533:7;56518:14;:23::i;:::-;56509:46;;;;;;;;;;;;56389:174;;:::o;51076:264::-;51169:4;51186:13;51202:23;51217:7;51202:14;:23::i;:::-;51186:39;;51255:5;51244:16;;:7;:16;;;:52;;;;51264:32;51281:5;51288:7;51264:16;:32::i;:::-;51244:52;:87;;;;51324:7;51300:31;;:20;51312:7;51300:11;:20::i;:::-;:31;;;51244:87;51236:96;;;51076:264;;;;:::o;55041:1229::-;55166:4;55139:31;;:23;55154:7;55139:14;:23::i;:::-;:31;;;55131:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;55245:1;55231:16;;:2;:16;;;55223:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;55301:42;55322:4;55328:2;55332:7;55341:1;55301:20;:42::i;:::-;55473:4;55446:31;;:23;55461:7;55446:14;:23::i;:::-;:31;;;55438:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;55591:15;:24;55607:7;55591:24;;;;;;;;;;;;55584:31;;;;;;;;;;;56086:1;56067:9;:15;56077:4;56067:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;56119:1;56102:9;:13;56112:2;56102:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;56161:2;56142:7;:16;56150:7;56142:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;56200:7;56196:2;56181:27;;56190:4;56181:27;;;;;;;;;;;;56221:41;56241:4;56247:2;56251:7;56260:1;56221:19;:41::i;:::-;55041:1229;;;:::o;22855:132::-;22930:12;:10;:12::i;:::-;22919:23;;:7;:5;:7::i;:::-;:23;;;22911:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22855:132::o;50351:117::-;50417:7;50444;:16;50452:7;50444:16;;;;;;;;;;;;;;;;;;;;;50437:23;;50351:117;;;:::o;23950:191::-;24024:16;24043:6;;;;;;;;;;;24024:25;;24069:8;24060:6;;:17;;;;;;;;;;;;;;;;;;24124:8;24093:40;;24114:8;24093:40;;;;;;;;;;;;24013:128;23950:191;:::o;2425:293::-;1827:1;2559:7;;:19;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;71078:334::-;71135:7;71155:17;68136:4;71210:15;71227:10;71239:13;:11;:13::i;:::-;71193:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71183:71;;;;;;71175:80;;:93;;;;:::i;:::-;71155:113;;71279:99;71285:13;:24;71299:9;71285:24;;;;;;;;;;;;;;;;;;;;;71279:99;;;68136:4;71351:1;71339:9;:13;;;;:::i;:::-;71338:28;;;;:::i;:::-;71326:40;;71279:99;;;71395:9;71388:16;;;71078:334;:::o;51682:110::-;51758:26;51768:2;51772:7;51758:26;;;;;;;;;;;;:9;:26::i;:::-;51682:110;;:::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;56706:281::-;56827:8;56818:17;;:5;:17;;;56810:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;56914:8;56876:18;:25;56895:5;56876:25;;;;;;;;;;;;;;;:35;56902:8;56876:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;56960:8;56938:41;;56953:5;56938:41;;;56970:8;56938:41;;;;;;:::i;:::-;;;;;;;;56706:281;;;:::o;49967:270::-;50080:28;50090:4;50096:2;50100:7;50080:9;:28::i;:::-;50127:47;50150:4;50156:2;50160:7;50169:4;50127:22;:47::i;:::-;50119:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;49967:270;;;;:::o;50781:128::-;50846:4;50899:1;50870:31;;:17;50879:7;50870:8;:17::i;:::-;:31;;;;50863:38;;50781:128;;;:::o;68794:108::-;68854:13;68887:7;68880:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68794:108;:::o;18160:716::-;18216:13;18267:14;18304:1;18284:17;18295:5;18284:10;:17::i;:::-;:21;18267:38;;18320:20;18354:6;18343:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18320:41;;18376:11;18505:6;18501:2;18497:15;18489:6;18485:28;18478:35;;18542:288;18549:4;18542:288;;;18574:5;;;;;;;;18716:8;18711:2;18704:5;18700:14;18695:30;18690:3;18682:44;18772:2;18763:11;;;;;;:::i;:::-;;;;;18806:1;18797:5;:10;18542:288;18793:21;18542:288;18851:6;18844:13;;;;;18160:716;;;:::o;36617:157::-;36702:4;36741:25;36726:40;;;:11;:40;;;;36719:47;;36617:157;;;:::o;63089:915::-;63266:61;63293:4;63299:2;63303:12;63317:9;63266:26;:61::i;:::-;63356:1;63344:9;:13;63340:222;;;63487:63;;;;;;;;;;:::i;:::-;;;;;;;;63340:222;63574:15;63592:12;63574:30;;63637:1;63621:18;;:4;:18;;;63617:187;;63656:40;63688:7;63656:31;:40::i;:::-;63617:187;;;63726:2;63718:10;;:4;:10;;;63714:90;;63745:47;63778:4;63784:7;63745:32;:47::i;:::-;63714:90;63617:187;63832:1;63818:16;;:2;:16;;;63814:183;;63851:45;63888:7;63851:36;:45::i;:::-;63814:183;;;63924:4;63918:10;;:2;:10;;;63914:83;;63945:40;63973:2;63977:7;63945:27;:40::i;:::-;63914:83;63814:183;63255:749;63089:915;;;;:::o;60198:115::-;;;;;:::o;52019:285::-;52114:18;52120:2;52124:7;52114:5;:18::i;:::-;52165:53;52196:1;52200:2;52204:7;52213:4;52165:22;:53::i;:::-;52143:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;52019:285;;;:::o;57775:853::-;57929:4;57950:15;:2;:13;;;:15::i;:::-;57946:675;;;58002:2;57986:36;;;58023:12;:10;:12::i;:::-;58037:4;58043:7;58052:4;57986:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57982:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58244:1;58227:6;:13;:18;58223:328;;58270:60;;;;;;;;;;:::i;:::-;;;;;;;;58223:328;58501:6;58495:13;58486:6;58482:2;58478:15;58471:38;57982:584;58118:41;;;58108:51;;;:6;:51;;;;58101:58;;;;;57946:675;58605:4;58598:11;;57775:853;;;;;;;:::o;14994:948::-;15047:7;15067:14;15084:1;15067:18;;15134:8;15125:5;:17;15121:106;;15172:8;15163:17;;;;;;:::i;:::-;;;;;15209:2;15199:12;;;;15121:106;15254:8;15245:5;:17;15241:106;;15292:8;15283:17;;;;;;:::i;:::-;;;;;15329:2;15319:12;;;;15241:106;15374:8;15365:5;:17;15361:106;;15412:8;15403:17;;;;;;:::i;:::-;;;;;15449:2;15439:12;;;;15361:106;15494:7;15485:5;:16;15481:103;;15531:7;15522:16;;;;;;:::i;:::-;;;;;15567:1;15557:11;;;;15481:103;15611:7;15602:5;:16;15598:103;;15648:7;15639:16;;;;;;:::i;:::-;;;;;15684:1;15674:11;;;;15598:103;15728:7;15719:5;:16;15715:103;;15765:7;15756:16;;;;;;:::i;:::-;;;;;15801:1;15791:11;;;;15715:103;15845:7;15836:5;:16;15832:68;;15883:1;15873:11;;;;15832:68;15928:6;15921:13;;;14994:948;;;:::o;59360:116::-;;;;;:::o;64727:164::-;64831:10;:17;;;;64804:15;:24;64820:7;64804:24;;;;;;;;;;;:44;;;;64859:10;64875:7;64859:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64727:164;:::o;65518:988::-;65784:22;65834:1;65809:22;65826:4;65809:16;:22::i;:::-;:26;;;;:::i;:::-;65784:51;;65846:18;65867:17;:26;65885:7;65867:26;;;;;;;;;;;;65846:47;;66014:14;66000:10;:28;65996:328;;66045:19;66067:12;:18;66080:4;66067:18;;;;;;;;;;;;;;;:34;66086:14;66067:34;;;;;;;;;;;;66045:56;;66151:11;66118:12;:18;66131:4;66118:18;;;;;;;;;;;;;;;:30;66137:10;66118:30;;;;;;;;;;;:44;;;;66268:10;66235:17;:30;66253:11;66235:30;;;;;;;;;;;:43;;;;66030:294;65996:328;66420:17;:26;66438:7;66420:26;;;;;;;;;;;66413:33;;;66464:12;:18;66477:4;66464:18;;;;;;;;;;;;;;;:34;66483:14;66464:34;;;;;;;;;;;66457:41;;;65599:907;;65518:988;;:::o;66801:1079::-;67054:22;67099:1;67079:10;:17;;;;:21;;;;:::i;:::-;67054:46;;67111:18;67132:15;:24;67148:7;67132:24;;;;;;;;;;;;67111:45;;67483:19;67505:10;67516:14;67505:26;;;;;;;;:::i;:::-;;;;;;;;;;67483:48;;67569:11;67544:10;67555;67544:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;67680:10;67649:15;:28;67665:11;67649:28;;;;;;;;;;;:41;;;;67821:15;:24;67837:7;67821:24;;;;;;;;;;;67814:31;;;67856:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66872:1008;;;66801:1079;:::o;64305:221::-;64390:14;64407:20;64424:2;64407:16;:20::i;:::-;64390:37;;64465:7;64438:12;:16;64451:2;64438:16;;;;;;;;;;;;;;;:24;64455:6;64438:24;;;;;;;;;;;:34;;;;64512:6;64483:17;:26;64501:7;64483:26;;;;;;;;;;;:35;;;;64379:147;64305:221;;:::o;52640:942::-;52734:1;52720:16;;:2;:16;;;52712:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;52793:16;52801:7;52793;:16::i;:::-;52792:17;52784:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52855:48;52884:1;52888:2;52892:7;52901:1;52855:20;:48::i;:::-;53002:16;53010:7;53002;:16::i;:::-;53001:17;52993:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;53417:1;53400:9;:13;53410:2;53400:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;53461:2;53442:7;:16;53450:7;53442:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;53506:7;53502:2;53481:33;;53498:1;53481:33;;;;;;;;;;;;53527:47;53555:1;53559:2;53563:7;53572:1;53527:19;:47::i;:::-;52640:942;;:::o;25622:326::-;25682:4;25939:1;25917:7;:19;;;:23;25910:30;;25622:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:180;6496:77;6493:1;6486:88;6593:4;6590:1;6583:15;6617:4;6614:1;6607:15;6634:281;6717:27;6739:4;6717:27;:::i;:::-;6709:6;6705:40;6847:6;6835:10;6832:22;6811:18;6799:10;6796:34;6793:62;6790:88;;;6858:18;;:::i;:::-;6790:88;6898:10;6894:2;6887:22;6677:238;6634:281;;:::o;6921:129::-;6955:6;6982:20;;:::i;:::-;6972:30;;7011:33;7039:4;7031:6;7011:33;:::i;:::-;6921:129;;;:::o;7056:308::-;7118:4;7208:18;7200:6;7197:30;7194:56;;;7230:18;;:::i;:::-;7194:56;7268:29;7290:6;7268:29;:::i;:::-;7260:37;;7352:4;7346;7342:15;7334:23;;7056:308;;;:::o;7370:146::-;7467:6;7462:3;7457;7444:30;7508:1;7499:6;7494:3;7490:16;7483:27;7370:146;;;:::o;7522:425::-;7600:5;7625:66;7641:49;7683:6;7641:49;:::i;:::-;7625:66;:::i;:::-;7616:75;;7714:6;7707:5;7700:21;7752:4;7745:5;7741:16;7790:3;7781:6;7776:3;7772:16;7769:25;7766:112;;;7797:79;;:::i;:::-;7766:112;7887:54;7934:6;7929:3;7924;7887:54;:::i;:::-;7606:341;7522:425;;;;;:::o;7967:340::-;8023:5;8072:3;8065:4;8057:6;8053:17;8049:27;8039:122;;8080:79;;:::i;:::-;8039:122;8197:6;8184:20;8222:79;8297:3;8289:6;8282:4;8274:6;8270:17;8222:79;:::i;:::-;8213:88;;8029:278;7967:340;;;;:::o;8313:509::-;8382:6;8431:2;8419:9;8410:7;8406:23;8402:32;8399:119;;;8437:79;;:::i;:::-;8399:119;8585:1;8574:9;8570:17;8557:31;8615:18;8607:6;8604:30;8601:117;;;8637:79;;:::i;:::-;8601:117;8742:63;8797:7;8788:6;8777:9;8773:22;8742:63;:::i;:::-;8732:73;;8528:287;8313:509;;;;:::o;8828:114::-;8895:6;8929:5;8923:12;8913:22;;8828:114;;;:::o;8948:184::-;9047:11;9081:6;9076:3;9069:19;9121:4;9116:3;9112:14;9097:29;;8948:184;;;;:::o;9138:132::-;9205:4;9228:3;9220:11;;9258:4;9253:3;9249:14;9241:22;;9138:132;;;:::o;9276:108::-;9353:24;9371:5;9353:24;:::i;:::-;9348:3;9341:37;9276:108;;:::o;9390:179::-;9459:10;9480:46;9522:3;9514:6;9480:46;:::i;:::-;9558:4;9553:3;9549:14;9535:28;;9390:179;;;;:::o;9575:113::-;9645:4;9677;9672:3;9668:14;9660:22;;9575:113;;;:::o;9724:732::-;9843:3;9872:54;9920:5;9872:54;:::i;:::-;9942:86;10021:6;10016:3;9942:86;:::i;:::-;9935:93;;10052:56;10102:5;10052:56;:::i;:::-;10131:7;10162:1;10147:284;10172:6;10169:1;10166:13;10147:284;;;10248:6;10242:13;10275:63;10334:3;10319:13;10275:63;:::i;:::-;10268:70;;10361:60;10414:6;10361:60;:::i;:::-;10351:70;;10207:224;10194:1;10191;10187:9;10182:14;;10147:284;;;10151:14;10447:3;10440:10;;9848:608;;;9724:732;;;;:::o;10462:373::-;10605:4;10643:2;10632:9;10628:18;10620:26;;10692:9;10686:4;10682:20;10678:1;10667:9;10663:17;10656:47;10720:108;10823:4;10814:6;10720:108;:::i;:::-;10712:116;;10462:373;;;;:::o;10841:116::-;10911:21;10926:5;10911:21;:::i;:::-;10904:5;10901:32;10891:60;;10947:1;10944;10937:12;10891:60;10841:116;:::o;10963:133::-;11006:5;11044:6;11031:20;11022:29;;11060:30;11084:5;11060:30;:::i;:::-;10963:133;;;;:::o;11102:468::-;11167:6;11175;11224:2;11212:9;11203:7;11199:23;11195:32;11192:119;;;11230:79;;:::i;:::-;11192:119;11350:1;11375:53;11420:7;11411:6;11400:9;11396:22;11375:53;:::i;:::-;11365:63;;11321:117;11477:2;11503:50;11545:7;11536:6;11525:9;11521:22;11503:50;:::i;:::-;11493:60;;11448:115;11102:468;;;;;:::o;11576:307::-;11637:4;11727:18;11719:6;11716:30;11713:56;;;11749:18;;:::i;:::-;11713:56;11787:29;11809:6;11787:29;:::i;:::-;11779:37;;11871:4;11865;11861:15;11853:23;;11576:307;;;:::o;11889:423::-;11966:5;11991:65;12007:48;12048:6;12007:48;:::i;:::-;11991:65;:::i;:::-;11982:74;;12079:6;12072:5;12065:21;12117:4;12110:5;12106:16;12155:3;12146:6;12141:3;12137:16;12134:25;12131:112;;;12162:79;;:::i;:::-;12131:112;12252:54;12299:6;12294:3;12289;12252:54;:::i;:::-;11972:340;11889:423;;;;;:::o;12331:338::-;12386:5;12435:3;12428:4;12420:6;12416:17;12412:27;12402:122;;12443:79;;:::i;:::-;12402:122;12560:6;12547:20;12585:78;12659:3;12651:6;12644:4;12636:6;12632:17;12585:78;:::i;:::-;12576:87;;12392:277;12331:338;;;;:::o;12675:943::-;12770:6;12778;12786;12794;12843:3;12831:9;12822:7;12818:23;12814:33;12811:120;;;12850:79;;:::i;:::-;12811:120;12970:1;12995:53;13040:7;13031:6;13020:9;13016:22;12995:53;:::i;:::-;12985:63;;12941:117;13097:2;13123:53;13168:7;13159:6;13148:9;13144:22;13123:53;:::i;:::-;13113:63;;13068:118;13225:2;13251:53;13296:7;13287:6;13276:9;13272:22;13251:53;:::i;:::-;13241:63;;13196:118;13381:2;13370:9;13366:18;13353:32;13412:18;13404:6;13401:30;13398:117;;;13434:79;;:::i;:::-;13398:117;13539:62;13593:7;13584:6;13573:9;13569:22;13539:62;:::i;:::-;13529:72;;13324:287;12675:943;;;;;;;:::o;13624:474::-;13692:6;13700;13749:2;13737:9;13728:7;13724:23;13720:32;13717:119;;;13755:79;;:::i;:::-;13717:119;13875:1;13900:53;13945:7;13936:6;13925:9;13921:22;13900:53;:::i;:::-;13890:63;;13846:117;14002:2;14028:53;14073:7;14064:6;14053:9;14049:22;14028:53;:::i;:::-;14018:63;;13973:118;13624:474;;;;;:::o;14104:311::-;14181:4;14271:18;14263:6;14260:30;14257:56;;;14293:18;;:::i;:::-;14257:56;14343:4;14335:6;14331:17;14323:25;;14403:4;14397;14393:15;14385:23;;14104:311;;;:::o;14421:117::-;14530:1;14527;14520:12;14561:710;14657:5;14682:81;14698:64;14755:6;14698:64;:::i;:::-;14682:81;:::i;:::-;14673:90;;14783:5;14812:6;14805:5;14798:21;14846:4;14839:5;14835:16;14828:23;;14899:4;14891:6;14887:17;14879:6;14875:30;14928:3;14920:6;14917:15;14914:122;;;14947:79;;:::i;:::-;14914:122;15062:6;15045:220;15079:6;15074:3;15071:15;15045:220;;;15154:3;15183:37;15216:3;15204:10;15183:37;:::i;:::-;15178:3;15171:50;15250:4;15245:3;15241:14;15234:21;;15121:144;15105:4;15100:3;15096:14;15089:21;;15045:220;;;15049:21;14663:608;;14561:710;;;;;:::o;15294:370::-;15365:5;15414:3;15407:4;15399:6;15395:17;15391:27;15381:122;;15422:79;;:::i;:::-;15381:122;15539:6;15526:20;15564:94;15654:3;15646:6;15639:4;15631:6;15627:17;15564:94;:::i;:::-;15555:103;;15371:293;15294:370;;;;:::o;15670:684::-;15763:6;15771;15820:2;15808:9;15799:7;15795:23;15791:32;15788:119;;;15826:79;;:::i;:::-;15788:119;15974:1;15963:9;15959:17;15946:31;16004:18;15996:6;15993:30;15990:117;;;16026:79;;:::i;:::-;15990:117;16131:78;16201:7;16192:6;16181:9;16177:22;16131:78;:::i;:::-;16121:88;;15917:302;16258:2;16284:53;16329:7;16320:6;16309:9;16305:22;16284:53;:::i;:::-;16274:63;;16229:118;15670:684;;;;;:::o;16360:180::-;16408:77;16405:1;16398:88;16505:4;16502:1;16495:15;16529:4;16526:1;16519:15;16546:320;16590:6;16627:1;16621:4;16617:12;16607:22;;16674:1;16668:4;16664:12;16695:18;16685:81;;16751:4;16743:6;16739:17;16729:27;;16685:81;16813:2;16805:6;16802:14;16782:18;16779:38;16776:84;;16832:18;;:::i;:::-;16776:84;16597:269;16546:320;;;:::o;16872:220::-;17012:34;17008:1;17000:6;16996:14;16989:58;17081:3;17076:2;17068:6;17064:15;17057:28;16872:220;:::o;17098:366::-;17240:3;17261:67;17325:2;17320:3;17261:67;:::i;:::-;17254:74;;17337:93;17426:3;17337:93;:::i;:::-;17455:2;17450:3;17446:12;17439:19;;17098:366;;;:::o;17470:419::-;17636:4;17674:2;17663:9;17659:18;17651:26;;17723:9;17717:4;17713:20;17709:1;17698:9;17694:17;17687:47;17751:131;17877:4;17751:131;:::i;:::-;17743:139;;17470:419;;;:::o;17895:248::-;18035:34;18031:1;18023:6;18019:14;18012:58;18104:31;18099:2;18091:6;18087:15;18080:56;17895:248;:::o;18149:366::-;18291:3;18312:67;18376:2;18371:3;18312:67;:::i;:::-;18305:74;;18388:93;18477:3;18388:93;:::i;:::-;18506:2;18501:3;18497:12;18490:19;;18149:366;;;:::o;18521:419::-;18687:4;18725:2;18714:9;18710:18;18702:26;;18774:9;18768:4;18764:20;18760:1;18749:9;18745:17;18738:47;18802:131;18928:4;18802:131;:::i;:::-;18794:139;;18521:419;;;:::o;18946:232::-;19086:34;19082:1;19074:6;19070:14;19063:58;19155:15;19150:2;19142:6;19138:15;19131:40;18946:232;:::o;19184:366::-;19326:3;19347:67;19411:2;19406:3;19347:67;:::i;:::-;19340:74;;19423:93;19512:3;19423:93;:::i;:::-;19541:2;19536:3;19532:12;19525:19;;19184:366;;;:::o;19556:419::-;19722:4;19760:2;19749:9;19745:18;19737:26;;19809:9;19803:4;19799:20;19795:1;19784:9;19780:17;19773:47;19837:131;19963:4;19837:131;:::i;:::-;19829:139;;19556:419;;;:::o;19981:174::-;20121:26;20117:1;20109:6;20105:14;20098:50;19981:174;:::o;20161:366::-;20303:3;20324:67;20388:2;20383:3;20324:67;:::i;:::-;20317:74;;20400:93;20489:3;20400:93;:::i;:::-;20518:2;20513:3;20509:12;20502:19;;20161:366;;;:::o;20533:419::-;20699:4;20737:2;20726:9;20722:18;20714:26;;20786:9;20780:4;20776:20;20772:1;20761:9;20757:17;20750:47;20814:131;20940:4;20814:131;:::i;:::-;20806:139;;20533:419;;;:::o;20958:230::-;21098:34;21094:1;21086:6;21082:14;21075:58;21167:13;21162:2;21154:6;21150:15;21143:38;20958:230;:::o;21194:366::-;21336:3;21357:67;21421:2;21416:3;21357:67;:::i;:::-;21350:74;;21433:93;21522:3;21433:93;:::i;:::-;21551:2;21546:3;21542:12;21535:19;;21194:366;;;:::o;21566:419::-;21732:4;21770:2;21759:9;21755:18;21747:26;;21819:9;21813:4;21809:20;21805:1;21794:9;21790:17;21783:47;21847:131;21973:4;21847:131;:::i;:::-;21839:139;;21566:419;;;:::o;21991:231::-;22131:34;22127:1;22119:6;22115:14;22108:58;22200:14;22195:2;22187:6;22183:15;22176:39;21991:231;:::o;22228:366::-;22370:3;22391:67;22455:2;22450:3;22391:67;:::i;:::-;22384:74;;22467:93;22556:3;22467:93;:::i;:::-;22585:2;22580:3;22576:12;22569:19;;22228:366;;;:::o;22600:419::-;22766:4;22804:2;22793:9;22789:18;22781:26;;22853:9;22847:4;22843:20;22839:1;22828:9;22824:17;22817:47;22881:131;23007:4;22881:131;:::i;:::-;22873:139;;22600:419;;;:::o;23025:180::-;23073:77;23070:1;23063:88;23170:4;23167:1;23160:15;23194:4;23191:1;23184:15;23211:141;23260:4;23283:3;23275:11;;23306:3;23303:1;23296:14;23340:4;23337:1;23327:18;23319:26;;23211:141;;;:::o;23358:93::-;23395:6;23442:2;23437;23430:5;23426:14;23422:23;23412:33;;23358:93;;;:::o;23457:107::-;23501:8;23551:5;23545:4;23541:16;23520:37;;23457:107;;;;:::o;23570:393::-;23639:6;23689:1;23677:10;23673:18;23712:97;23742:66;23731:9;23712:97;:::i;:::-;23830:39;23860:8;23849:9;23830:39;:::i;:::-;23818:51;;23902:4;23898:9;23891:5;23887:21;23878:30;;23951:4;23941:8;23937:19;23930:5;23927:30;23917:40;;23646:317;;23570:393;;;;;:::o;23969:60::-;23997:3;24018:5;24011:12;;23969:60;;;:::o;24035:142::-;24085:9;24118:53;24136:34;24145:24;24163:5;24145:24;:::i;:::-;24136:34;:::i;:::-;24118:53;:::i;:::-;24105:66;;24035:142;;;:::o;24183:75::-;24226:3;24247:5;24240:12;;24183:75;;;:::o;24264:269::-;24374:39;24405:7;24374:39;:::i;:::-;24435:91;24484:41;24508:16;24484:41;:::i;:::-;24476:6;24469:4;24463:11;24435:91;:::i;:::-;24429:4;24422:105;24340:193;24264:269;;;:::o;24539:73::-;24584:3;24539:73;:::o;24618:189::-;24695:32;;:::i;:::-;24736:65;24794:6;24786;24780:4;24736:65;:::i;:::-;24671:136;24618:189;;:::o;24813:186::-;24873:120;24890:3;24883:5;24880:14;24873:120;;;24944:39;24981:1;24974:5;24944:39;:::i;:::-;24917:1;24910:5;24906:13;24897:22;;24873:120;;;24813:186;;:::o;25005:543::-;25106:2;25101:3;25098:11;25095:446;;;25140:38;25172:5;25140:38;:::i;:::-;25224:29;25242:10;25224:29;:::i;:::-;25214:8;25210:44;25407:2;25395:10;25392:18;25389:49;;;25428:8;25413:23;;25389:49;25451:80;25507:22;25525:3;25507:22;:::i;:::-;25497:8;25493:37;25480:11;25451:80;:::i;:::-;25110:431;;25095:446;25005:543;;;:::o;25554:117::-;25608:8;25658:5;25652:4;25648:16;25627:37;;25554:117;;;;:::o;25677:169::-;25721:6;25754:51;25802:1;25798:6;25790:5;25787:1;25783:13;25754:51;:::i;:::-;25750:56;25835:4;25829;25825:15;25815:25;;25728:118;25677:169;;;;:::o;25851:295::-;25927:4;26073:29;26098:3;26092:4;26073:29;:::i;:::-;26065:37;;26135:3;26132:1;26128:11;26122:4;26119:21;26111:29;;25851:295;;;;:::o;26151:1395::-;26268:37;26301:3;26268:37;:::i;:::-;26370:18;26362:6;26359:30;26356:56;;;26392:18;;:::i;:::-;26356:56;26436:38;26468:4;26462:11;26436:38;:::i;:::-;26521:67;26581:6;26573;26567:4;26521:67;:::i;:::-;26615:1;26639:4;26626:17;;26671:2;26663:6;26660:14;26688:1;26683:618;;;;27345:1;27362:6;27359:77;;;27411:9;27406:3;27402:19;27396:26;27387:35;;27359:77;27462:67;27522:6;27515:5;27462:67;:::i;:::-;27456:4;27449:81;27318:222;26653:887;;26683:618;26735:4;26731:9;26723:6;26719:22;26769:37;26801:4;26769:37;:::i;:::-;26828:1;26842:208;26856:7;26853:1;26850:14;26842:208;;;26935:9;26930:3;26926:19;26920:26;26912:6;26905:42;26986:1;26978:6;26974:14;26964:24;;27033:2;27022:9;27018:18;27005:31;;26879:4;26876:1;26872:12;26867:17;;26842:208;;;27078:6;27069:7;27066:19;27063:179;;;27136:9;27131:3;27127:19;27121:26;27179:48;27221:4;27213:6;27209:17;27198:9;27179:48;:::i;:::-;27171:6;27164:64;27086:156;27063:179;27288:1;27284;27276:6;27272:14;27268:22;27262:4;27255:36;26690:611;;;26653:887;;26243:1303;;;26151:1395;;:::o;27552:174::-;27692:26;27688:1;27680:6;27676:14;27669:50;27552:174;:::o;27732:366::-;27874:3;27895:67;27959:2;27954:3;27895:67;:::i;:::-;27888:74;;27971:93;28060:3;27971:93;:::i;:::-;28089:2;28084:3;28080:12;28073:19;;27732:366;;;:::o;28104:419::-;28270:4;28308:2;28297:9;28293:18;28285:26;;28357:9;28351:4;28347:20;28343:1;28332:9;28328:17;28321:47;28385:131;28511:4;28385:131;:::i;:::-;28377:139;;28104:419;;;:::o;28529:228::-;28669:34;28665:1;28657:6;28653:14;28646:58;28738:11;28733:2;28725:6;28721:15;28714:36;28529:228;:::o;28763:366::-;28905:3;28926:67;28990:2;28985:3;28926:67;:::i;:::-;28919:74;;29002:93;29091:3;29002:93;:::i;:::-;29120:2;29115:3;29111:12;29104:19;;28763:366;;;:::o;29135:419::-;29301:4;29339:2;29328:9;29324:18;29316:26;;29388:9;29382:4;29378:20;29374:1;29363:9;29359:17;29352:47;29416:131;29542:4;29416:131;:::i;:::-;29408:139;;29135:419;;;:::o;29560:180::-;29608:77;29605:1;29598:88;29705:4;29702:1;29695:15;29729:4;29726:1;29719:15;29746:233;29785:3;29808:24;29826:5;29808:24;:::i;:::-;29799:33;;29854:66;29847:5;29844:77;29841:103;;29924:18;;:::i;:::-;29841:103;29971:1;29964:5;29960:13;29953:20;;29746:233;;;:::o;29985:174::-;30125:26;30121:1;30113:6;30109:14;30102:50;29985:174;:::o;30165:366::-;30307:3;30328:67;30392:2;30387:3;30328:67;:::i;:::-;30321:74;;30404:93;30493:3;30404:93;:::i;:::-;30522:2;30517:3;30513:12;30506:19;;30165:366;;;:::o;30537:419::-;30703:4;30741:2;30730:9;30726:18;30718:26;;30790:9;30784:4;30780:20;30776:1;30765:9;30761:17;30754:47;30818:131;30944:4;30818:131;:::i;:::-;30810:139;;30537:419;;;:::o;30962:228::-;31102:34;31098:1;31090:6;31086:14;31079:58;31171:11;31166:2;31158:6;31154:15;31147:36;30962:228;:::o;31196:366::-;31338:3;31359:67;31423:2;31418:3;31359:67;:::i;:::-;31352:74;;31435:93;31524:3;31435:93;:::i;:::-;31553:2;31548:3;31544:12;31537:19;;31196:366;;;:::o;31568:419::-;31734:4;31772:2;31761:9;31757:18;31749:26;;31821:9;31815:4;31811:20;31807:1;31796:9;31792:17;31785:47;31849:131;31975:4;31849:131;:::i;:::-;31841:139;;31568:419;;;:::o;31993:191::-;32033:3;32052:20;32070:1;32052:20;:::i;:::-;32047:25;;32086:20;32104:1;32086:20;:::i;:::-;32081:25;;32129:1;32126;32122:9;32115:16;;32150:3;32147:1;32144:10;32141:36;;;32157:18;;:::i;:::-;32141:36;31993:191;;;;:::o;32190:176::-;32330:28;32326:1;32318:6;32314:14;32307:52;32190:176;:::o;32372:366::-;32514:3;32535:67;32599:2;32594:3;32535:67;:::i;:::-;32528:74;;32611:93;32700:3;32611:93;:::i;:::-;32729:2;32724:3;32720:12;32713:19;;32372:366;;;:::o;32744:419::-;32910:4;32948:2;32937:9;32933:18;32925:26;;32997:9;32991:4;32987:20;32983:1;32972:9;32968:17;32961:47;33025:131;33151:4;33025:131;:::i;:::-;33017:139;;32744:419;;;:::o;33169:410::-;33209:7;33232:20;33250:1;33232:20;:::i;:::-;33227:25;;33266:20;33284:1;33266:20;:::i;:::-;33261:25;;33321:1;33318;33314:9;33343:30;33361:11;33343:30;:::i;:::-;33332:41;;33522:1;33513:7;33509:15;33506:1;33503:22;33483:1;33476:9;33456:83;33433:139;;33552:18;;:::i;:::-;33433:139;33217:362;33169:410;;;;:::o;33585:181::-;33725:33;33721:1;33713:6;33709:14;33702:57;33585:181;:::o;33772:366::-;33914:3;33935:67;33999:2;33994:3;33935:67;:::i;:::-;33928:74;;34011:93;34100:3;34011:93;:::i;:::-;34129:2;34124:3;34120:12;34113:19;;33772:366;;;:::o;34144:419::-;34310:4;34348:2;34337:9;34333:18;34325:26;;34397:9;34391:4;34387:20;34383:1;34372:9;34368:17;34361:47;34425:131;34551:4;34425:131;:::i;:::-;34417:139;;34144:419;;;:::o;34569:180::-;34709:32;34705:1;34697:6;34693:14;34686:56;34569:180;:::o;34755:366::-;34897:3;34918:67;34982:2;34977:3;34918:67;:::i;:::-;34911:74;;34994:93;35083:3;34994:93;:::i;:::-;35112:2;35107:3;35103:12;35096:19;;34755:366;;;:::o;35127:419::-;35293:4;35331:2;35320:9;35316:18;35308:26;;35380:9;35374:4;35370:20;35366:1;35355:9;35351:17;35344:47;35408:131;35534:4;35408:131;:::i;:::-;35400:139;;35127:419;;;:::o;35552:170::-;35692:22;35688:1;35680:6;35676:14;35669:46;35552:170;:::o;35728:366::-;35870:3;35891:67;35955:2;35950:3;35891:67;:::i;:::-;35884:74;;35967:93;36056:3;35967:93;:::i;:::-;36085:2;36080:3;36076:12;36069:19;;35728:366;;;:::o;36100:419::-;36266:4;36304:2;36293:9;36289:18;36281:26;;36353:9;36347:4;36343:20;36339:1;36328:9;36324:17;36317:47;36381:131;36507:4;36381:131;:::i;:::-;36373:139;;36100:419;;;:::o;36525:194::-;36565:4;36585:20;36603:1;36585:20;:::i;:::-;36580:25;;36619:20;36637:1;36619:20;:::i;:::-;36614:25;;36663:1;36660;36656:9;36648:17;;36687:1;36681:4;36678:11;36675:37;;;36692:18;;:::i;:::-;36675:37;36525:194;;;;:::o;36725:234::-;36865:34;36861:1;36853:6;36849:14;36842:58;36934:17;36929:2;36921:6;36917:15;36910:42;36725:234;:::o;36965:366::-;37107:3;37128:67;37192:2;37187:3;37128:67;:::i;:::-;37121:74;;37204:93;37293:3;37204:93;:::i;:::-;37322:2;37317:3;37313:12;37306:19;;36965:366;;;:::o;37337:419::-;37503:4;37541:2;37530:9;37526:18;37518:26;;37590:9;37584:4;37580:20;37576:1;37565:9;37561:17;37554:47;37618:131;37744:4;37618:131;:::i;:::-;37610:139;;37337:419;;;:::o;37762:148::-;37864:11;37901:3;37886:18;;37762:148;;;;:::o;37916:390::-;38022:3;38050:39;38083:5;38050:39;:::i;:::-;38105:89;38187:6;38182:3;38105:89;:::i;:::-;38098:96;;38203:65;38261:6;38256:3;38249:4;38242:5;38238:16;38203:65;:::i;:::-;38293:6;38288:3;38284:16;38277:23;;38026:280;37916:390;;;;:::o;38312:155::-;38452:7;38448:1;38440:6;38436:14;38429:31;38312:155;:::o;38473:400::-;38633:3;38654:84;38736:1;38731:3;38654:84;:::i;:::-;38647:91;;38747:93;38836:3;38747:93;:::i;:::-;38865:1;38860:3;38856:11;38849:18;;38473:400;;;:::o;38879:701::-;39160:3;39182:95;39273:3;39264:6;39182:95;:::i;:::-;39175:102;;39294:95;39385:3;39376:6;39294:95;:::i;:::-;39287:102;;39406:148;39550:3;39406:148;:::i;:::-;39399:155;;39571:3;39564:10;;38879:701;;;;;:::o;39586:225::-;39726:34;39722:1;39714:6;39710:14;39703:58;39795:8;39790:2;39782:6;39778:15;39771:33;39586:225;:::o;39817:366::-;39959:3;39980:67;40044:2;40039:3;39980:67;:::i;:::-;39973:74;;40056:93;40145:3;40056:93;:::i;:::-;40174:2;40169:3;40165:12;40158:19;;39817:366;;;:::o;40189:419::-;40355:4;40393:2;40382:9;40378:18;40370:26;;40442:9;40436:4;40432:20;40428:1;40417:9;40413:17;40406:47;40470:131;40596:4;40470:131;:::i;:::-;40462:139;;40189:419;;;:::o;40614:229::-;40754:34;40750:1;40742:6;40738:14;40731:58;40823:12;40818:2;40810:6;40806:15;40799:37;40614:229;:::o;40849:366::-;40991:3;41012:67;41076:2;41071:3;41012:67;:::i;:::-;41005:74;;41088:93;41177:3;41088:93;:::i;:::-;41206:2;41201:3;41197:12;41190:19;;40849:366;;;:::o;41221:419::-;41387:4;41425:2;41414:9;41410:18;41402:26;;41474:9;41468:4;41464:20;41460:1;41449:9;41445:17;41438:47;41502:131;41628:4;41502:131;:::i;:::-;41494:139;;41221:419;;;:::o;41646:224::-;41786:34;41782:1;41774:6;41770:14;41763:58;41855:7;41850:2;41842:6;41838:15;41831:32;41646:224;:::o;41876:366::-;42018:3;42039:67;42103:2;42098:3;42039:67;:::i;:::-;42032:74;;42115:93;42204:3;42115:93;:::i;:::-;42233:2;42228:3;42224:12;42217:19;;41876:366;;;:::o;42248:419::-;42414:4;42452:2;42441:9;42437:18;42429:26;;42501:9;42495:4;42491:20;42487:1;42476:9;42472:17;42465:47;42529:131;42655:4;42529:131;:::i;:::-;42521:139;;42248:419;;;:::o;42673:223::-;42813:34;42809:1;42801:6;42797:14;42790:58;42882:6;42877:2;42869:6;42865:15;42858:31;42673:223;:::o;42902:366::-;43044:3;43065:67;43129:2;43124:3;43065:67;:::i;:::-;43058:74;;43141:93;43230:3;43141:93;:::i;:::-;43259:2;43254:3;43250:12;43243:19;;42902:366;;;:::o;43274:419::-;43440:4;43478:2;43467:9;43463:18;43455:26;;43527:9;43521:4;43517:20;43513:1;43502:9;43498:17;43491:47;43555:131;43681:4;43555:131;:::i;:::-;43547:139;;43274:419;;;:::o;43699:182::-;43839:34;43835:1;43827:6;43823:14;43816:58;43699:182;:::o;43887:366::-;44029:3;44050:67;44114:2;44109:3;44050:67;:::i;:::-;44043:74;;44126:93;44215:3;44126:93;:::i;:::-;44244:2;44239:3;44235:12;44228:19;;43887:366;;;:::o;44259:419::-;44425:4;44463:2;44452:9;44448:18;44440:26;;44512:9;44506:4;44502:20;44498:1;44487:9;44483:17;44476:47;44540:131;44666:4;44540:131;:::i;:::-;44532:139;;44259:419;;;:::o;44684:181::-;44824:33;44820:1;44812:6;44808:14;44801:57;44684:181;:::o;44871:366::-;45013:3;45034:67;45098:2;45093:3;45034:67;:::i;:::-;45027:74;;45110:93;45199:3;45110:93;:::i;:::-;45228:2;45223:3;45219:12;45212:19;;44871:366;;;:::o;45243:419::-;45409:4;45447:2;45436:9;45432:18;45424:26;;45496:9;45490:4;45486:20;45482:1;45471:9;45467:17;45460:47;45524:131;45650:4;45524:131;:::i;:::-;45516:139;;45243:419;;;:::o;45668:79::-;45707:7;45736:5;45725:16;;45668:79;;;:::o;45753:157::-;45858:45;45878:24;45896:5;45878:24;:::i;:::-;45858:45;:::i;:::-;45853:3;45846:58;45753:157;;:::o;45916:94::-;45949:8;45997:5;45993:2;45989:14;45968:35;;45916:94;;;:::o;46016:::-;46055:7;46084:20;46098:5;46084:20;:::i;:::-;46073:31;;46016:94;;;:::o;46116:100::-;46155:7;46184:26;46204:5;46184:26;:::i;:::-;46173:37;;46116:100;;;:::o;46222:157::-;46327:45;46347:24;46365:5;46347:24;:::i;:::-;46327:45;:::i;:::-;46322:3;46315:58;46222:157;;:::o;46385:538::-;46553:3;46568:75;46639:3;46630:6;46568:75;:::i;:::-;46668:2;46663:3;46659:12;46652:19;;46681:75;46752:3;46743:6;46681:75;:::i;:::-;46781:2;46776:3;46772:12;46765:19;;46794:75;46865:3;46856:6;46794:75;:::i;:::-;46894:2;46889:3;46885:12;46878:19;;46914:3;46907:10;;46385:538;;;;;;:::o;46929:180::-;46977:77;46974:1;46967:88;47074:4;47071:1;47064:15;47098:4;47095:1;47088:15;47115:176;47147:1;47164:20;47182:1;47164:20;:::i;:::-;47159:25;;47198:20;47216:1;47198:20;:::i;:::-;47193:25;;47237:1;47227:35;;47242:18;;:::i;:::-;47227:35;47283:1;47280;47276:9;47271:14;;47115:176;;;;:::o;47297:175::-;47437:27;47433:1;47425:6;47421:14;47414:51;47297:175;:::o;47478:366::-;47620:3;47641:67;47705:2;47700:3;47641:67;:::i;:::-;47634:74;;47717:93;47806:3;47717:93;:::i;:::-;47835:2;47830:3;47826:12;47819:19;;47478:366;;;:::o;47850:419::-;48016:4;48054:2;48043:9;48039:18;48031:26;;48103:9;48097:4;48093:20;48089:1;48078:9;48074:17;48067:47;48131:131;48257:4;48131:131;:::i;:::-;48123:139;;47850:419;;;:::o;48275:237::-;48415:34;48411:1;48403:6;48399:14;48392:58;48484:20;48479:2;48471:6;48467:15;48460:45;48275:237;:::o;48518:366::-;48660:3;48681:67;48745:2;48740:3;48681:67;:::i;:::-;48674:74;;48757:93;48846:3;48757:93;:::i;:::-;48875:2;48870:3;48866:12;48859:19;;48518:366;;;:::o;48890:419::-;49056:4;49094:2;49083:9;49079:18;49071:26;;49143:9;49137:4;49133:20;49129:1;49118:9;49114:17;49107:47;49171:131;49297:4;49171:131;:::i;:::-;49163:139;;48890:419;;;:::o;49315:240::-;49455:34;49451:1;49443:6;49439:14;49432:58;49524:23;49519:2;49511:6;49507:15;49500:48;49315:240;:::o;49561:366::-;49703:3;49724:67;49788:2;49783:3;49724:67;:::i;:::-;49717:74;;49800:93;49889:3;49800:93;:::i;:::-;49918:2;49913:3;49909:12;49902:19;;49561:366;;;:::o;49933:419::-;50099:4;50137:2;50126:9;50122:18;50114:26;;50186:9;50180:4;50176:20;50172:1;50161:9;50157:17;50150:47;50214:131;50340:4;50214:131;:::i;:::-;50206:139;;49933:419;;;:::o;50358:98::-;50409:6;50443:5;50437:12;50427:22;;50358:98;;;:::o;50462:168::-;50545:11;50579:6;50574:3;50567:19;50619:4;50614:3;50610:14;50595:29;;50462:168;;;;:::o;50636:373::-;50722:3;50750:38;50782:5;50750:38;:::i;:::-;50804:70;50867:6;50862:3;50804:70;:::i;:::-;50797:77;;50883:65;50941:6;50936:3;50929:4;50922:5;50918:16;50883:65;:::i;:::-;50973:29;50995:6;50973:29;:::i;:::-;50968:3;50964:39;50957:46;;50726:283;50636:373;;;;:::o;51015:640::-;51210:4;51248:3;51237:9;51233:19;51225:27;;51262:71;51330:1;51319:9;51315:17;51306:6;51262:71;:::i;:::-;51343:72;51411:2;51400:9;51396:18;51387:6;51343:72;:::i;:::-;51425;51493:2;51482:9;51478:18;51469:6;51425:72;:::i;:::-;51544:9;51538:4;51534:20;51529:2;51518:9;51514:18;51507:48;51572:76;51643:4;51634:6;51572:76;:::i;:::-;51564:84;;51015:640;;;;;;;:::o;51661:141::-;51717:5;51748:6;51742:13;51733:22;;51764:32;51790:5;51764:32;:::i;:::-;51661:141;;;;:::o;51808:349::-;51877:6;51926:2;51914:9;51905:7;51901:23;51897:32;51894:119;;;51932:79;;:::i;:::-;51894:119;52052:1;52077:63;52132:7;52123:6;52112:9;52108:22;52077:63;:::i;:::-;52067:73;;52023:127;51808:349;;;;:::o;52163:180::-;52211:77;52208:1;52201:88;52308:4;52305:1;52298:15;52332:4;52329:1;52322:15;52349:182;52489:34;52485:1;52477:6;52473:14;52466:58;52349:182;:::o;52537:366::-;52679:3;52700:67;52764:2;52759:3;52700:67;:::i;:::-;52693:74;;52776:93;52865:3;52776:93;:::i;:::-;52894:2;52889:3;52885:12;52878:19;;52537:366;;;:::o;52909:419::-;53075:4;53113:2;53102:9;53098:18;53090:26;;53162:9;53156:4;53152:20;53148:1;53137:9;53133:17;53126:47;53190:131;53316:4;53190:131;:::i;:::-;53182:139;;52909:419;;;:::o;53334:178::-;53474:30;53470:1;53462:6;53458:14;53451:54;53334:178;:::o;53518:366::-;53660:3;53681:67;53745:2;53740:3;53681:67;:::i;:::-;53674:74;;53757:93;53846:3;53757:93;:::i;:::-;53875:2;53870:3;53866:12;53859:19;;53518:366;;;:::o;53890:419::-;54056:4;54094:2;54083:9;54079:18;54071:26;;54143:9;54137:4;54133:20;54129:1;54118:9;54114:17;54107:47;54171:131;54297:4;54171:131;:::i;:::-;54163:139;;53890:419;;;:::o

Swarm Source

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